<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Hi Ernest, in Intel® Distribution for Python*</title>
    <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108416#M597</link>
    <description>&lt;P&gt;Hi Ernest,&lt;/P&gt;

&lt;P&gt;If you're using conda to manage your environments, I would recommend creating a new environment with our 2018 packages.&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda create -n daal_2018 -c intel pydaal
. activate daal_2018&lt;/PRE&gt;

&lt;P&gt;The other option is to use conda to update your current packages:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda update -c intel --all&lt;/PRE&gt;

&lt;P&gt;As for the Github tutorials, Preethi mentioned above that they would be ready by the end of this week or early next week. &amp;nbsp;She will let you know when they are posted.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
    <pubDate>Thu, 14 Sep 2017 14:02:27 GMT</pubDate>
    <dc:creator>Christophe_H_Intel2</dc:creator>
    <dc:date>2017-09-14T14:02:27Z</dc:date>
    <item>
      <title>Jupiter Notebooks for pyDAAL tutorials and code samples available on Github!</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108401#M582</link>
      <description>&lt;P&gt;A Jupyter Notebook based tutorial series of using pyDAAL (the Python API for Intel DAAL) is now available on Github:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://github.com/daaltces/pydaal-tutorials" rel="nofollow"&gt;https://github.com/daaltces/pydaal-tutorials&lt;/A&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;It is designed for new users to quickly ramp up understanding of the pyDAAL API and usage model.&amp;nbsp;There are only a few examples at this time, but we will gradually grow to cover more DAAL algorithms. You are more than welcome to use, share, fork, and contribute.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2016 19:30:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108401#M582</guid>
      <dc:creator>Sergey_M_Intel2</dc:creator>
      <dc:date>2016-10-10T19:30:27Z</dc:date>
    </item>
    <item>
      <title>Sergey,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108402#M583</link>
      <description>&lt;P&gt;Sergey,&lt;/P&gt;

&lt;P&gt;It would be great if this thread is configured as a Sticky one. This way, anybody that enters the forum will know about these examples.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Apr 2017 16:48:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108402#M583</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-01T16:48:31Z</dc:date>
    </item>
    <item>
      <title>Hi Sergey,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108403#M584</link>
      <description>&lt;P&gt;Hi Sergey,&lt;/P&gt;

&lt;P&gt;I have followed the pyDAAL installation as:&lt;/P&gt;

&lt;OL&gt;
	&lt;LI&gt;&lt;STRONG&gt;conda update conda&lt;/STRONG&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;STRONG&gt;conda config --add channels intel&lt;/STRONG&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;STRONG&gt;conda create -n idp intelpython3_core python=3&lt;/STRONG&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;STRONG&gt;activate idp&lt;/STRONG&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;STRONG&gt;conda install mkl-devel&lt;/STRONG&gt;&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;The whole installation was good. I'm using Eclipse IDE/PyDev 64-bit, Below is the code:&lt;/P&gt;

&lt;PRE class="brush:;"&gt;&lt;STRONG&gt;from daal.data_management import HomogenNumericTable

from utils import *

import numpy as np
import matplotlib
import matplotlib.pyplot as plt

def main():
    print("Testting Intel pyDAAL Framework!")

if __name__ == '__main__':
    main()&lt;/STRONG&gt;&lt;/PRE&gt;

&lt;P&gt;And here is the error. Let me know if I missed something?&lt;/P&gt;

&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;
	&amp;nbsp; File "C:\Users\ebonat\eclipse-workspace\python_test\src\test.py", line 2, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; from daal.data_management import HomogenNumericTable&lt;BR /&gt;
	&lt;STRONG&gt;ImportError: No module named 'daal'&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Thanks for your time,&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2017 15:16:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108403#M584</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-08-30T15:16:04Z</dc:date>
    </item>
    <item>
      <title>Hi Sergey,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108404#M585</link>
      <description>&lt;P&gt;Hi Sergey,&lt;/P&gt;

&lt;P&gt;I have followed the steps to install Intel pyDAAL:&lt;/P&gt;

&lt;OL&gt;
	&lt;LI&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-s"&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-pds"&gt;conda update conda&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-s"&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-pds"&gt;conda config --add channels intel&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-s"&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-pds"&gt;conda create -n idp intelpython3_core python=3&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-s"&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-pds"&gt;activate idp&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-s"&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-pds"&gt;conda install mkl-devel&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;There was no error at all in any of the deployment.&lt;/P&gt;

&lt;P&gt;I created a new Python project in Eclipse IDE/PyDev and wrote the following simple code:&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-s"&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-pds"&gt;from daal.data_management import HomogenNumericTable&lt;BR /&gt;
	&lt;BR /&gt;
	from utils import *&lt;BR /&gt;
	&lt;BR /&gt;
	import numpy as np&lt;BR /&gt;
	import matplotlib&lt;BR /&gt;
	import matplotlib.pyplot as plt&lt;BR /&gt;
	&lt;BR /&gt;
	def main():&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; print("Testting Intel pyDAAL Framework!")&lt;BR /&gt;
	&lt;BR /&gt;
	if __name__ == '__main__':&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; main()&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Run the program and got the error:&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-s"&gt;&lt;SPAN class="m_6410861928397469466gmail-m_4628350949986839858gmail-pl-pds"&gt;Traceback (most recent call last):&lt;BR /&gt;
	&amp;nbsp; File "C:\Users\ebonat\eclipse-&lt;WBR /&gt;workspace\python_test\src\&lt;WBR /&gt;test.py", line 2, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; from daal.data_management import HomogenNumericTable&lt;BR /&gt;
	ImportError: No module named 'daal'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Did I missed some thing?&lt;/P&gt;

&lt;P&gt;Thank you,&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2017 16:30:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108404#M585</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-08-30T16:30:24Z</dc:date>
    </item>
    <item>
      <title>Hi Sergey,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108405#M586</link>
      <description>&lt;P&gt;Hi Sergey,&lt;/P&gt;

&lt;P&gt;Any help with this issue? I'm very excited to test the Intel pyDAAL library this long coming weekend.&lt;/P&gt;

&lt;P&gt;Thank you for your time,&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 16:08:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108405#M586</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-08-31T16:08:39Z</dc:date>
    </item>
    <item>
      <title>Hi Ernest,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108406#M587</link>
      <description>&lt;P&gt;Hi Ernest,&lt;/P&gt;

&lt;P&gt;PyDAAL is not part of the intelpython3_core package, so you will have to install it separately.&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda install -c intel pydaal&lt;/PRE&gt;

&lt;P&gt;You will also find that matplotlib is not part of the core package. &amp;nbsp;You can install it separately too.&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda install -c intel matplotlib&lt;/PRE&gt;

&lt;P&gt;Alternatively, you can get an environment with the full Intel distribution like this:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda create -n idp -c intel intelpython3_full

&lt;/PRE&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Chris&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 16:37:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108406#M587</guid>
      <dc:creator>Christophe_H_Intel2</dc:creator>
      <dc:date>2017-08-31T16:37:00Z</dc:date>
    </item>
    <item>
      <title>Hi Chris,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108407#M588</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;

&lt;P&gt;Thank you for your feedback. After:&lt;/P&gt;

&lt;PRE class="brush:python;"&gt;conda create -n idp -c intel intelpython3_full&lt;/PRE&gt;

&lt;P&gt;&lt;CODE class="plain"&gt;Do I need to activate the idp as:&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE class="brush:python;"&gt;activate idp&lt;/PRE&gt;

&lt;P&gt;Thank you for your help,&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 17:17:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108407#M588</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-08-31T17:17:32Z</dc:date>
    </item>
    <item>
      <title>Hi Ernest,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108408#M589</link>
      <description>&lt;P&gt;Hi Ernest,&lt;/P&gt;

&lt;P&gt;Yes, you will need to activate the environment before using it.&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 17:21:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108408#M589</guid>
      <dc:creator>Christophe_H_Intel2</dc:creator>
      <dc:date>2017-08-31T17:21:18Z</dc:date>
    </item>
    <item>
      <title>Hi Chris,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108409#M590</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;

&lt;P&gt;Is this one time setting only or I need to do it all the time after I turn my development laptop on to work on pyDAAL projects?&lt;/P&gt;

&lt;P&gt;Thank&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 17:25:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108409#M590</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-08-31T17:25:37Z</dc:date>
    </item>
    <item>
      <title>Ernest,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108410#M591</link>
      <description>&lt;P&gt;Ernest,&lt;/P&gt;

&lt;P&gt;The "activate" script modifies your PATH for the current terminal session, so starting new sessions will reset your PATH to its default.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 18:18:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108410#M591</guid>
      <dc:creator>Christophe_H_Intel2</dc:creator>
      <dc:date>2017-08-31T18:18:20Z</dc:date>
    </item>
    <item>
      <title>Thank you, I go it!</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108411#M592</link>
      <description>&lt;P&gt;Thank you, I go it!&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 20:41:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108411#M592</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-08-31T20:41:43Z</dc:date>
    </item>
    <item>
      <title>Hi</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108412#M593</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;I have reviewed the following class files:&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;kmeans.py &lt;/STRONG&gt;– no errors appear!&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;pca.py&lt;/STRONG&gt; – an error occurred: “Undefined variable: warnings”&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;24 warnings.warn(method + ' method is not supported. Default method is used', UserWarning&lt;/EM&gt;) – I believe the import is missed!&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;regression.py &lt;/STRONG&gt;– the following errors occurred:&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;“Undefined variable from import: Batch_Float64DefaultDense”&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;165 ridge_training_alg = ridge_training.Batch_Float64DefaultDense() &lt;/EM&gt;– I believe the import is missed!&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;85 warnings.warn(method + ' method is not supported. Default method is used', UserWarning)&lt;/EM&gt; – I believe the import is missed!&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;svm_multi_class.py&lt;/STRONG&gt; – the following errors occurred:&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;“Undefined variable from import: Batch_Float64DefaultDense”&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;27 self._svm_training_alg = svm_training.Batch_Float64DefaultDense() &lt;/EM&gt;– I believe the import is missed!&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;“Undefined variable from import: Batch_Float64DefaultDenseOneAgainstOne”&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;96 &amp;nbsp;multiclass_prediction_alg = multiclass_prediction.Batch_Float64DefaultDenseOneAgainstOne()&lt;/EM&gt; - I believe the import is missed!&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;utils.py&lt;/STRONG&gt; – the following errors occurred:&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;“Undefined variable: BlockDescriptor”&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;6 &amp;nbsp;bd = BlockDescriptor() &lt;/EM&gt;- I believe the import is missed!&lt;/P&gt;

&lt;P&gt;It should be:&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;bd = BlockDescriptor_Float64()&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;Let me know when theses syntax errors are fixed so I can the test the classes files.&lt;/P&gt;

&lt;P&gt;Thank you for your time,&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 03:57:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108412#M593</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-09-08T03:57:00Z</dc:date>
    </item>
    <item>
      <title>Hi Ernest,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108413#M594</link>
      <description>&lt;P&gt;Hi Ernest,&lt;/P&gt;

&lt;P&gt;We are currently reworking&amp;nbsp;on the&amp;nbsp;GitHub examples with the fix&amp;nbsp;and adding new ones to sync with&amp;nbsp;the upcoming pyDAAL 2018 version. These&amp;nbsp;examples&amp;nbsp;should be out end of next week or early week after.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;Preethi&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 21:00:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108413#M594</guid>
      <dc:creator>Preethi_V_Intel</dc:creator>
      <dc:date>2017-09-08T21:00:02Z</dc:date>
    </item>
    <item>
      <title>Hi Preethi,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108414#M595</link>
      <description>&lt;P&gt;Hi Preethi,&lt;/P&gt;

&lt;P&gt;Thank you for letting me know. I'll be happy to test the upcoming pyDAAL 2018 version. Feel free to let me know when it's ready!&lt;/P&gt;

&lt;P&gt;Thank you for your time,&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 21:44:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108414#M595</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-09-08T21:44:10Z</dc:date>
    </item>
    <item>
      <title>Hi Sergey,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108415#M596</link>
      <description>&lt;P&gt;Hi Sergey,&lt;/P&gt;

&lt;P&gt;Two questions for you:&lt;/P&gt;

&lt;P&gt;1. I have downloaded the pyDAAL 2018 library this morning. Do I need to uninstall the previous version or just install 2018 on top? Explain?&lt;/P&gt;

&lt;P&gt;2. When will we have the GibHub Tutorials ready for testing 2018 initials release?&lt;/P&gt;

&lt;P&gt;Thank you for your time,&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2017 14:44:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108415#M596</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-09-13T14:44:02Z</dc:date>
    </item>
    <item>
      <title>Hi Ernest,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108416#M597</link>
      <description>&lt;P&gt;Hi Ernest,&lt;/P&gt;

&lt;P&gt;If you're using conda to manage your environments, I would recommend creating a new environment with our 2018 packages.&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda create -n daal_2018 -c intel pydaal
. activate daal_2018&lt;/PRE&gt;

&lt;P&gt;The other option is to use conda to update your current packages:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda update -c intel --all&lt;/PRE&gt;

&lt;P&gt;As for the Github tutorials, Preethi mentioned above that they would be ready by the end of this week or early next week. &amp;nbsp;She will let you know when they are posted.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2017 14:02:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108416#M597</guid>
      <dc:creator>Christophe_H_Intel2</dc:creator>
      <dc:date>2017-09-14T14:02:27Z</dc:date>
    </item>
    <item>
      <title>Thanks Chris,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108417#M598</link>
      <description>&lt;P&gt;Thanks Chris,&lt;/P&gt;

&lt;P&gt;What's the simple way to check which version of pyDAAL am I using in Python now?&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2017 15:26:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108417#M598</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-09-14T15:26:35Z</dc:date>
    </item>
    <item>
      <title>Ernest,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108418#M599</link>
      <description>&lt;P&gt;Ernest,&lt;/P&gt;

&lt;P&gt;To see the package versions of your current environment, run&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda list&lt;/PRE&gt;

&lt;P&gt;You could also run&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt; python -c 'import daal; print(daal.__version__)'
&lt;/PRE&gt;

&lt;P&gt;Also, if you decide to update your current environment as opposed to creating a new one, be aware that if you were using python 3.5, Intel Python 2018 only includes python 3.6, so you would have to explicitly install python 3.6:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda install python=3.6 -c intel&lt;/PRE&gt;

&lt;P&gt;That said, I would still recommend creating a separate environment to test pydaal 2018.&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2017 15:34:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108418#M599</guid>
      <dc:creator>Christophe_H_Intel2</dc:creator>
      <dc:date>2017-09-14T15:34:23Z</dc:date>
    </item>
    <item>
      <title>Thanks Chris,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108419#M600</link>
      <description>&lt;P&gt;Thanks Chris,&lt;/P&gt;

&lt;P&gt;I'll be creating a new separate environment to test pyDAAL 2018.&lt;/P&gt;

&lt;P&gt;Ernest Bonat, Ph.D.&lt;BR /&gt;
	Senior Software Engineer&lt;BR /&gt;
	Senior Data Scientist&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2017 15:49:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Jupiter-Notebooks-for-pyDAAL-tutorials-and-code-samples/m-p/1108419#M600</guid>
      <dc:creator>Ernest_B_1</dc:creator>
      <dc:date>2017-09-14T15:49:56Z</dc:date>
    </item>
  </channel>
</rss>

