Re: [AUDITORY] Query about Python software (Ronald van Elburg )


Subject: Re: [AUDITORY] Query about Python software
From:    Ronald van Elburg  <RonaldAJ@xxxxxxxx>
Date:    Tue, 9 Mar 2021 11:56:20 +0100

This is a multi-part message in MIME format. --------------6E471E7D4BB4C07E4B6BDEE6 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by edgeum3.it.mcgill.ca id 129AuZut097429 Dear Tim, I might have been responding to something I perceived in your email=20 rather than something that is there. I think you were right on pointing out that bashing a programming=20 language serves no purpose. However, and that is probably something I=20 perceived in your message but don't find on rereading, one can therefore=20 not dismiss the possibility that a sensible comparison can be made. I do=20 think we should be able to say something along the lines of=20 '(programming language) X is not suitable for Y because of Z' without=20 worrying that someone will be offended. I thought the latter statement=20 was in disagreement with what you wrote. I like to apologize for misrepresenting your position. Kind regards, Ronald van Elburg On 3/8/2021 5:32 PM, Timothy Beechey wrote: > Ronald: > > What is not right about what I said? Note that I did not advocate for=20 > the use of a particular language. You are correct that different=20 > languages are more or less suitable for different applications. You=20 > are also correct that Python is rightly considered a relatively easy=20 > language for novice programmers. Neither of these points are=20 > inconsistent with what I said. My point is that disparaging other=20 > people's tools of choice, as was done by an earlier poster, is=20 > unnecessary in the course of advocating for whichever tool you wish to=20 > advocate. If someone finds a language inconsistent, unpredictable or=20 > horrible it is often because they are expecting it to be like another=20 > language they are more familiar with. Such differences are=20 > particularly noticeable when the languages in question are based in=20 > different paradigms. For example, a functional language such as R is=20 > based on concepts like immutability which is very useful for data=20 > analysis but requires different memory usage and programming style.=20 > Again, I am not advocating that the original poster use R. I am=20 > suggesting that people refrain from attacking other people's tools of=20 > choice since that is really an equal opportunity passtime. > > Tim > > On Sun, Mar 7, 2021 at 11:14 PM Ronald van Elburg=20 > <RonaldAJ@xxxxxxxx <mailto:RonaldAJ@xxxxxxxx>> wrote: > > Dear All, > > Tim is right and not right about dismissing a language. Most > popular languages have a target application for which they are > well suited. For novices some languages are however more suited > than others. > > I made a switch from Matlab to Python in 2011 after also briefly > considering octave. > > What drove that switch was a combination of developments: > > =C2=A0- I was increasingly frustrated with not being able to offer = my > students the same tool as I had available. With standalone > licenses for Matlab with required toolboxes coming at a price of > 1200 euro's students where not able to afford themselves a > license. Of course many students find their way around this, but > we should teach them to use legal options. > > - We were developing an IoT application which made the price tag > mentioned above even more problematic. Matlab seems to have made > policy changes here, but, alas for them, they had lost me already. > > -=C2=A0 Python was very much mature and supported by a large commun= ity > with also involvement from some larger companies. This is an > important aspect in choosing open source software. Recent example > of a failing choice: I have been using portaudio with the pyaudio > Python wrapper but because the community was small these are now > effectively discontinued projects and I am forced to find new > solutions. That means I have to refactor and redo a lot of work. > Alternatively, it is possible to take over maintenance of the > module but with complex software that is often not a feasible optio= n. > > - Python was designed with readability in mind which makes it > superior to most other languages when teaching novice programmers. > > - Python had and has many extensions in the form of community > supported modules. In particular numpy makes it possible to work > with numerical data in a way very similar to Matlab's handling of > matrices and arrays. > > - Python had good support for visualization with the Matplotlib > module. > > - Python supported parallel processing (in its infancy, but it did) > > Most of these considerations still stand and because of the large > community other aspects mostly improved: > > - There is more choice for visualization now with modules like > Seaborn and Bokeh and probably others as well. > > - There are the very nice Jupyter notebooks (as is encoded in the > name these are available for Julia, Python and R). Which allow you > to create documents which mix code, text and visualizations. > > - Strong support for deep learning and machine learning in general. > > - Python interfaces very well with OpenCV for image processing > > Still Matlab also developed: > > - they support compilation of Matlab code to some IoT devices. > Something I haven't found for Python yet. Although there is now > micropython which also serves similar platforms. > > - they support visual programming with Simulink (this is not new, > but I don't think Python caught up) > > In functionality I think we mostly see convergence between general > purpose programming languages. And with interoperability added to > the mix functionality is often not the right guide to make a > choice. R can for example be called from Python and I suppose the > opposite is also true. > > Python has also effectively replaced some special purpose > scripting languages. The example I know is the NEURON simulator > which used Hoc originally, but moved to Python as the main > scripting language.=C2=A0 Also popular databases often have a Pytho= n > interface. Again this is probably a side effect of the community > size and I guess R also supports most databases. For Python this > applies to most scientific software: many of them offer a Python > interface. > > I think several of the Ten Simple Rules articles from PLOS > Computational Biology are also worth reading in this context: > > Ten simple rules for biologists learning to program: > https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journal= .pcbi.1005871 > <https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journa= l.pcbi.1005871> > Ten Simple Rules for Digital Data Storage: > https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journal= .pcbi.1005097 > <https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journa= l.pcbi.1005097> > Ten simple rules for documenting scientific software: > https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journal= .pcbi.1006561 > <https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journa= l.pcbi.1006561> > Ten simple rules to colorize biological data visualization: > https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journal= .pcbi.1008259 > <https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journa= l.pcbi.1008259> > > I would be tempted to say Python is the language of choice to > teach or to learn when starting to program for scientific > purposes. But your personal context can give counter indications. > So it is probably wise to ask around what other people are using > in the same work environment, but keeping in mind that these > choices might be driven more by tradition or personal history than > a critical evaluation of the options available. And then, each > time when you start a large project it is worth to reevaluate the > language and software choices. > > Kind regards, > > Ronald van Elburg > > > > > On 3/6/2021 1:46 PM, Timothy Beechey wrote: >> The different languages you mention are each based on different >> programming paradigms (e.g. object-oriented, functional, etc.). >> This is often a source of confusion and frustration when moving >> from one language to another. Dismissing a widely used language >> because it is different from what you are used to or expecting >> tends to offend people who use that language productively. >> >> Tim >> >> On Sat, Mar 6, 2021 at 12:48 AM Richard F. Lyon <dicklyon@xxxxxxxx >> <mailto:dicklyon@xxxxxxxx>> wrote: >> >> >=C2=A0 =C2=A0if you need proper statistics, R might be a bett= er choice >> >> I'm mostly a Matlab user for the last 30 years or so, but >> getting to be more comfortable with Python.=C2=A0 I had >> occasion=C2=A0to do a bit of R programming, and it was pretty >> horrible, with what seemed like a pretty irregular syntax and >> unpredictable set of idioms.=C2=A0 Don't go there. >> >> Dick >> >> >> On Thu, Mar 4, 2021 at 9:19 PM Krzysztof Basi=C5=84ski >> <k.basinski@xxxxxxxx <mailto:k.basinski@xxxxxxxx>> wro= te: >> >> Dear Kishorekumar, >> >> I'm a Python aficionado but I had spent a lot of time >> with different languages before settling in on Python >> (Java, C, JS, Ruby, R...). I can wholeheartedly recommend >> it for (what I guess) is your use case and in general as >> a first programming language to learn. Why? >> >> 1. Python is super easy to learn in comparison to other >> programming languages. It has an easy syntax and you >> don=E2=80=99t have to worry about a lot of technical thing= s such >> as memory management, strict typing, garbage collection et= c. >> >> 2. There are wonderful free resources, as others >> mentioned. I can recommend A Byte of Python as a starting >> point https://python.swaroopch.com >> <https://python.swaroopch.com>. >> >> 3. Python Standard Library offers great solutions for >> common problems (such as file handling, http, json >> interfaces etc) >> >> 4. Python docs is something that you can actually read >> and understand. Same thing with error messages. These can >> be cryptic in other languages (like R!:) >> >> 5. There is the Jupyter ecosystem for interactive >> programming in Python. I know, I know, it supports other >> languages as well but Python Jupyter Kernels are really >> great (in comparison to R kernels for example). Also, >> Google Colab provides a free, interactive Python >> environment without the need to setup anything. >> >> 6. Most ML is done in Python and TensorFlow and PyTorch >> are industry standards. >> >> 7. Librosa (https://librosa.org <https://librosa.org>) >> and Surfboard (https://github.com/novoic/surfboard >> <https://github.com/novoic/surfboard>) are great packages >> for audio feature extraction if you want to do that. >> >> 8. Python is fun! Try `import this` to see what I mean. >> >> >> That said, Python can be kind of slow in some cases >> (though you can overcome this easily if you know what >> you=E2=80=99re doing). If you really need the speed, Julia >> promises to be as efficient and as fast as C. To be >> honest though, in 3+ years of working in Python the whole >> =E2=80=9CPython is slow=E2=80=9D thing didn=E2=80=99t real= ly bother me. I would >> say it=E2=80=99s faster than R, at least in my use cases. >> >> Also, if you need proper statistics, R might be a better >> choice. Statsmodels is the standard package for >> statistics in Python and you can do a lot with it. >> Unfortunately it can be a bit challenging and the docs >> are not so great. My current favourite for statistics in >> Python is Pingouin (https://pingouin-stats.org >> <https://pingouin-stats.org>), though it is missing some >> stuff (no mixed models yet). >> >> Best of luck, >> Chris >> >> -- >> Krzysztof Basi=C5=84ski, PhD >> Assistant Professor >> Department of Psychology >> Medical University of Gda=C5=84sk, Poland >> http://mug.edu.pl <http://mug.edu.pl>=C2=A0| >> http://kbas.gumed.edu.pl <http://kbas.gumed.edu.pl> >> >>> On 2 Mar 2021, at 09:50, kishorekumar Bharshetty >>> <kumarbharshetty@xxxxxxxx >>> <mailto:kumarbharshetty@xxxxxxxx>> wrote: >>> >>> Dear all, >>> I am Kishorekumar Bharshetty, Audiologist from India. I >>> am currently working as an Clinical Audiologist at >>> Amplifon India Pvt Ltd. >>> >>> I am curious to learn about Python software which is a >>> language coding software, thinking that it will help me >>> to set a base to learn more about Machine Learning >>> technology. >>> >>> I wanted to know, whether learning Python software for >>> an audiologist is a good idea? If yes, how can I be >>> benefitted with this in future? >>> >>> Kindly, help me with this query. >>> >>> >>> Thanks, and Regards >>> Kishorekumar Bharshetty >>> Audiologist >>> Amplifon India Pvt Ltd, India >>> +91-9663148361 >>> kumarbharshetty@xxxxxxxx >>> <mailto:kumarbharshetty@xxxxxxxx> >> >> >> >> --=20 >> Timothy Beechey, PhD >> Postdoctoral Associate >> Department of Speech-Language-Hearing Sciences >> 215C Shevlin Hall, 164 Pillsbury Dr SE, Minneapolis, MN 55455 >> University of Minnesota >> tbeechey@xxxxxxxx <mailto:tbeechey@xxxxxxxx> > > > > --=20 > Timothy Beechey, PhD > Postdoctoral Associate > Department of Speech-Language-Hearing Sciences > 215C Shevlin Hall, 164 Pillsbury Dr SE, Minneapolis, MN 55455 > University of Minnesota > tbeechey@xxxxxxxx <mailto:tbeechey@xxxxxxxx> --------------6E471E7D4BB4C07E4B6BDEE6 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by edgeum3.it.mcgill.ca id 129AuZut097429 <html> <head> <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3DUTF= -8"> </head> <body> <p>Dear Tim,</p> <p>I might have been responding to something I perceived in your email rather than something that is there. <br> </p> <p>I think you were right on pointing out that bashing a programming language serves no purpose. However, and that is probably something I perceived in your message but don't find on rereading, one can therefore not dismiss the possibility that a sensible comparison can be made. I do think we should be able to say something along the lines of '(programming language) X is not suitable for Y because of Z' without worrying that someone will be offended. I thought the latter statement was in disagreement with what you wrote. <br> </p> <p>I like to apologize for misrepresenting your position.<br> </p> <p>Kind regards,</p> <p>Ronald van Elburg<br> </p> <p><br> </p> <div class=3D"moz-cite-prefix">On 3/8/2021 5:32 PM, Timothy Beechey wrote:<br> </div> <blockquote type=3D"cite" cite=3D"mid:CALhLtpPOk4TYM3hu3stKrp7fxZJWgn81V7nAw-m=3DMquz5pZCQw@xxxxxxxx= ail.com"> <meta http-equiv=3D"content-type" content=3D"text/html; charset=3DU= TF-8"> <div dir=3D"ltr"> <div>Ronald:</div> <div><br> </div> <div>What is not right about what I said? Note that I did not advocate for the use of a particular language. You are correct that different languages are more or less suitable for different applications. You are also correct that Python is rightly considered a relatively easy language for novice programmers. Neither of these points are inconsistent with what I said. My point is that disparaging other people's tools of choice, as was done by an earlier poster, is unnecessary in the course of advocating for whichever tool you wish to advocate. If someone finds a language inconsistent, unpredictable or horrible it is often because they are expecting it to be like another language they are more familiar with. Such differences are particularly noticeable when the languages in question are based in different paradigms. For example, a functional language such as R is based on concepts like immutability which is very useful for data analysis but requires different memory usage and programming style. Again, I am not advocating that the original poster use R. I am suggesting that people refrain from attacking other people's tools of choice since that is really an equal opportunity passtime.</div> <div><br> </div> <div>Tim<br> </div> <br> <div class=3D"gmail_quote"> <div dir=3D"ltr" class=3D"gmail_attr">On Sun, Mar 7, 2021 at 11= :14 PM Ronald van Elburg &lt;<a href=3D"mailto:RonaldAJ@xxxxxxxx" moz-do-not-send=3D"tr= ue">RonaldAJ@xxxxxxxx</a>&gt; wrote:<br> </div> <blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"> <div> <p>Dear All,</p> <p>Tim is right and not right about dismissing a language. Most popular languages have a target application for which they are well suited. For novices some languages are however more suited than others. <br> </p> <p>I made a switch from Matlab to Python in 2011 after also briefly considering octave. <br> </p> <p>What drove that switch was a combination of developments:</p> <p>=C2=A0- I was increasingly frustrated with not being abl= e to offer my students the same tool as I had available. With standalone licenses for Matlab with required toolboxes coming at a price of 1200 euro's students where not able to afford themselves a license. Of course many students find their way around this, but we should teach them to use legal options.<br> </p> <p>- We were developing an IoT application which made the price tag mentioned above even more problematic. Matlab seems to have made policy changes here, but, alas for them, they had lost me already.<br> </p> <p>-=C2=A0 Python was very much mature and supported by a l= arge community with also involvement from some larger companies. This is an important aspect in choosing open source software. Recent example of a failing choice: I have been using portaudio with the pyaudio Python wrapper but because the community was small these are now effectively discontinued projects and I am forced to find new solutions. That means I have to refactor and redo a lot of work. Alternatively, it is possible to take over maintenance of the module but with complex=C2=A0 software that is often not a feasible option.<br> </p> <p> - Python was designed with readability in mind which makes it superior to most other languages when teaching novice programmers. <br> </p> <p>- Python had and has many extensions in the form of community supported modules. In particular numpy makes it possible to work with numerical data in a way very similar to Matlab's handling of matrices and arrays.</p> <p>- Python had good support for visualization with the Matplotlib module.</p> <p>- Python supported parallel processing (in its infancy, but it did)<br> </p> <p>Most of these considerations still stand and because of the large community other aspects mostly improved:</p> <p>- There is more choice for visualization now with modules like Seaborn and Bokeh and probably others as well. =C2=A0 <br> </p> <p>- There are the very nice Jupyter notebooks (as is encoded in the name these are available for Julia, Python and R). Which allow you to create documents which mix code, text and visualizations.<br> </p> <p>- Strong support for deep learning and machine learning in general. </p> <p>- Python interfaces very well with OpenCV for image processing<br> </p> <p>Still Matlab also developed:</p> <p>- they support compilation of Matlab code to some IoT devices. Something I haven't found for Python yet. Although there is now micropython which also serves similar platforms.</p> <p>- they support visual programming with Simulink (this is not new, but I don't think Python caught up)<br> </p> <p>In functionality I think we mostly see convergence between general purpose programming languages. And with interoperability added to the mix functionality is often not the right guide to make a choice. R can for example be called from Python and I suppose the opposite is also true. <br> </p> <p>Python has also effectively replaced some special purpose scripting languages. The example I know is the NEURON simulator which used Hoc originally, but moved to Python as the main scripting language.=C2=A0 Also popular databases often have a Python interface. Again this is probably a side effect of the community size and I guess R also supports most databases. For Python this applies to most scientific software: many of them offer a Python interface.</p> <p>I think several of the Ten Simple Rules articles from PLOS Computational Biology are also worth reading in this context:</p> Ten simple rules for biologists learning to program: <a href=3D"https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journ= al.pcbi.1005871" target=3D"_blank" moz-do-not-send=3D"true">https://journa= ls.plos.org/ploscompbiol/article?id=3D10.1371/journal.pcbi.1005871</a><br= > Ten Simple Rules for Digital Data Storage: <a href=3D"https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journ= al.pcbi.1005097" target=3D"_blank" moz-do-not-send=3D"true">https://journa= ls.plos.org/ploscompbiol/article?id=3D10.1371/journal.pcbi.1005097</a><br= > Ten simple rules for documenting scientific software: <a href=3D"https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journ= al.pcbi.1006561" target=3D"_blank" moz-do-not-send=3D"true">https://journa= ls.plos.org/ploscompbiol/article?id=3D10.1371/journal.pcbi.1006561</a><br= > Ten simple rules to colorize biological data visualization: <a href=3D"https://journals.plos.org/ploscompbiol/article?id=3D10.1371/journ= al.pcbi.1008259" target=3D"_blank" moz-do-not-send=3D"true">https://journa= ls.plos.org/ploscompbiol/article?id=3D10.1371/journal.pcbi.1008259</a><br= > <p>I would be tempted to say Python is the language of choice to teach or to learn when starting to program for scientific purposes. But your personal context can give counter indications. So it is probably wise to ask around what other people are using in the same work environment, but keeping in mind that these choices might be driven more by tradition or personal history than a critical evaluation of the options available. And then, each time when you start a large project it is worth to reevaluate the language and software choices.</p= > <p>Kind regards,</p> <p>Ronald van Elburg<br> </p> <p><br> </p> <p><br> </p> <p><br> </p> <div>On 3/6/2021 1:46 PM, Timothy Beechey wrote:<br> </div> <blockquote type=3D"cite"> <div dir=3D"ltr"> <div>The different languages you mention are each based on different programming paradigms (e.g. object-oriented, functional, etc.). This is often a source of confusion and frustration when moving from one language to another. Dismissing a widely used language because it is different from what you are used to or expecting tends to offend people who use that language productively.<br> </div> <div><br> </div> <div>Tim<br> </div> <br> <div class=3D"gmail_quote"> <div dir=3D"ltr" class=3D"gmail_attr">On Sat, Mar 6, 2021 at 12:48 AM Richard F. Lyon &lt;<a href=3D"mailto:dicklyon@xxxxxxxx" target=3D"_blank= " moz-do-not-send=3D"true">dicklyon@xxxxxxxx</a>&gt; wrote:<br> </div> <blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"> <div dir=3D"ltr"> <div style=3D"font-size:small">&gt;=C2=A0 =C2=A0i= f you need proper statistics, R might be a better choice</= div> <div style=3D"font-size:small"><br> </div> <div style=3D"font-size:small">I'm mostly a Matla= b user for the last 30 years or so, but getting to be more comfortable with Python.=C2=A0 I had occasion=C2=A0to do a bit of R programming, and= it was pretty horrible, with what seemed like a pretty irregular syntax and unpredictable set of idioms.=C2=A0 Don't go there.</div> <div style=3D"font-size:small"><br> </div> <div style=3D"font-size:small">Dick</div> <div style=3D"font-size:small"><br> </div> </div> <br> <div class=3D"gmail_quote"> <div dir=3D"ltr" class=3D"gmail_attr">On Thu, Mar= 4, 2021 at 9:19 PM Krzysztof Basi=C5=84ski &lt;<a href=3D"mailto:k.basinski@xxxxxxxx" target=3D"_blank" moz-do-not-send=3D"true">k.= basinski@xxxxxxxx</a>&gt; wrote:<br> </div> <blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"> <div>Dear Kishorekumar, <div><br> </div> <div>I'm a Python aficionado but I had spent a lot of time with different languages before settling in on Python (Java, C, JS, Ruby, R...). I can wholeheartedly recommend it for (what I guess) is your use case and in general as a first programming language to learn. Why?</div> <div><br> </div> <div>1. Python is super easy to learn in comparison to other programming languages. It has an easy syntax and you don=E2=80=99t= have to worry about a lot of technical things such as memory management, strict typing, garbage collection etc.</div> <div><br> </div> <div>2. There are wonderful free resources, as others mentioned. I can recommend A Byte of Python as a starting point=C2=A0<a href=3D"https://python.swaroopch.com" target=3D"_blank" moz-do-not-send=3D"true= ">https://python.swaroopch.com</a>.</div> <div><br> </div> <div>3. Python Standard Library offers great solutions for common problems (such as file handling, http, json interfaces etc)</= div> <div><br> </div> <div>4. Python docs is something that you can actually read and understand. Same thing with error messages. These can be cryptic in other languages (like R!:)</div> <div><br> </div> <div>5. There is the Jupyter ecosystem for interactive programming in Python. I know, I know, it supports other languages as well but Python Jupyter Kernels are really great (in comparison to R kernels for example). Also, Google Colab provides a free, interactive Python environment without the need to setup anything.</div> <div><br> </div> <div>6. Most ML is done in Python and TensorFlow and PyTorch are industry standards.</div> <div><br> </div> <div>7. Librosa (<a href=3D"https://librosa.org" target=3D"_blank" moz-do-not-send=3D"true= ">https://librosa.org</a>) and Surfboard (<a href=3D"https://github.com/novoic/surfboa= rd" target=3D"_blank" moz-do-not-send=3D"true= ">https://github.com/novoic/surfboard</a>) are great packages for audio feature extraction if you want to do that.</div> <div><br> </div> <div>8. Python is fun! Try `import this` to see what I mean.</div> <div><br> </div> <div><br> </div> <div>That said, Python can be kind of slow in some cases (though you can overcome this easily if you know what you=E2=80=99re doing). If you really need the speed, Julia promises to be as efficient and as fast as C. To be honest though, in 3+ years of working in Python the whole =E2=80=9CPython is slow=E2=80=9D thing didn= =E2=80=99t really bother me. I would say it=E2=80=99s faster = than R, at least in my use cases.</div> <div><br> </div> <div>Also, if you need proper statistics, R might be a better choice. Statsmodels is the standard package for statistics in Python and you can do a lot with it. Unfortunately it can be a bit challenging and the docs are not so great. My current favourite for statistics in Python is Pingouin (<a href=3D"https://pingouin-stats.org" target=3D"_blank" moz-do-not-send=3D"true= ">https://pingouin-stats.org</a>), though it is missing some stuff (no mixed models yet).</div> <div><br> </div> <div>Best of luck,</div> <div>Chris</div> <div><br> <div> <div dir=3D"auto" style=3D"color:rgb(0,0,0);letter-spacing:normal;text-align:start;text-ind= ent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-deco= ration:none"> <div>--</div> <div>Krzysztof Basi=C5=84ski, PhD<br> Assistant Professor<br> Department of Psychology<br> Medical University of Gda=C5=84sk, Po= land<br> <a href=3D"http://mug.edu.pl" target=3D"_blank" moz-do-not-send=3D"true">http://mug= .edu.pl</a>=C2=A0|=C2=A0<a href=3D"http://kbas.gumed.edu.pl" target=3D"_blank" moz-do-not-send=3D"true">http://kba= s.gumed.edu.pl</a></div> </div> </div> <div><br> <blockquote type=3D"cite"> <div>On 2 Mar 2021, at 09:50, kishorekumar Bharshetty &lt;<a href=3D"mailto:kumarbharshetty@xxxxxxxx= L.COM" target=3D"_blank" moz-do-not-send=3D"true">kumarbhars= hetty@xxxxxxxx</a>&gt; wrote:</div> <br> <div> <div dir=3D"auto">Dear all,=C2=A0 <div dir=3D"auto">I am Kishorekumar Bharshetty, Audiologist from India. I am currently working as an Clinical Audiologist at Amplifon India Pvt Ltd.=C2=A0</di= v> <div dir=3D"auto"><br> </div> <div dir=3D"auto">I am curious to learn about Python software which is a language coding software, thinking that it will help me to set a base to learn more about Machine Learning technology.=C2=A0</div> <div dir=3D"auto"><br> </div> <div dir=3D"auto">I wanted to know, whether learning Python software for an audiologist is a good idea? If yes, how can I be benefitted with this in future?=C2= =A0</div> <div dir=3D"auto"><br> </div> <div dir=3D"auto">Kindly, help me with this query.=C2=A0</div> <div dir=3D"auto"><br> </div> <div dir=3D"auto"><br> </div> <div dir=3D"auto">Thanks, and Regards</div> <div dir=3D"auto">Kishorekumar Bharshetty</div> <div dir=3D"auto">Audiologist</div> <div dir=3D"auto">Amplifon India Pv= t Ltd, India</div> <div dir=3D"auto">+91-9663148361</d= iv> <div dir=3D"auto"><a href=3D"mailto:kumarbharshetty@xxxxxxxx= gmail.com" target=3D"_blank" moz-do-not-send=3D"true">kumarb= harshetty@xxxxxxxx</a>=C2=A0</div> </div> </div> </blockquote> </div> <br> </div> </div> </blockquote> </div> </blockquote> </div> <br clear=3D"all"> <br> -- <br> <div dir=3D"ltr"> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div>Timothy Beechey, PhD<b= r> </div> <div>Postdoctoral Associate</div> <div>Department of Speech-Language-Hearing Sciences</div> <div><span><font color=3D"#888888"><sp= an><font style=3D"color:rgb(136,136,136);font-size:12.8px" color=3D"#888888"><span style=3D"color:= rgb(0,0,0)"><span style=3D"background-color:rgb(255,255,255)">215C Shevlin Hall, 164 Pillsbury Dr SE, Minneapolis, MN 55455</span>= </span><span style=3D"color:rgb(102,102,102);border-bottom:1px dashed rgb(204,204,204)= "><span style=3D"color:rgb(0,0,0)"><span style=3D"background-color:rgb(255,255,25= 5)"><span></span></span></span><br> </span></font></s= pan></font></span></div> <div>University of Minnesota</div> <div><a href=3D"mailto:tbeechey= @xxxxxxxx" target=3D"_blank" moz-do-not-send=3D"true= ">tbeechey@xxxxxxxx</a></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </blockquote> </div> </blockquote> </div> <br clear=3D"all"> <br> -- <br> <div dir=3D"ltr" class=3D"gmail_signature"> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div> <div dir=3D"ltr"> <div>Timothy Beechey, PhD<br> </div> <div>Postdoctoral Associate</div> <div>Department of Speech-Language-Hearing Sciences</d= iv> <div><span><font color=3D"#888888"><s= pan><font style=3D"color:rgb(136,136,136);font-size:12.8px" color=3D"#888888"><span style=3D"color:rgb(0,0,0)= "><span style=3D"background-color:rgb(255,255,255)">215C Shevlin Hall, 164 Pillsbury Dr SE, Minneapolis, MN 55455</= span></span><span style=3D"color:rgb(102,102,102);border-bottom:1px dashed rgb(204,204,204)= "><span style=3D"color:rgb(0,0,0)"><span style=3D"background-color:rgb(255,255,25= 5)"><span></span></span></span><br> </span></font></span></font= ></span></div> <div>University of Minnesota</div> <div><a href=3D"mailto:tbeechey@xxxxxxxx" target=3D"_blank" moz-do-not-send=3D"true">tbeechey= @xxxxxxxx</a></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </blockquote> </body> </html> --------------6E471E7D4BB4C07E4B6BDEE6--


This message came from the mail archive
src/postings/2021/
maintained by:
DAn Ellis <dpwe@ee.columbia.edu>
Electrical Engineering Dept., Columbia University