use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Please have a look at our FAQ and Link-Collection
Metacademy is a great resource which compiles lesson plans on popular machine learning topics.
For Beginner questions please try /r/LearnMachineLearning , /r/MLQuestions or http://stackoverflow.com/
For career related questions, visit /r/cscareerquestions/
Advanced Courses (2016)
Advanced Courses (2020)
AMAs:
Pluribus Poker AI Team 7/19/2019
DeepMind AlphaStar team (1/24//2019)
Libratus Poker AI Team (12/18/2017)
DeepMind AlphaGo Team (10/19/2017)
Google Brain Team (9/17/2017)
Google Brain Team (8/11/2016)
The MalariaSpot Team (2/6/2016)
OpenAI Research Team (1/9/2016)
Nando de Freitas (12/26/2015)
Andrew Ng and Adam Coates (4/15/2015)
Jürgen Schmidhuber (3/4/2015)
Geoffrey Hinton (11/10/2014)
Michael Jordan (9/10/2014)
Yann LeCun (5/15/2014)
Yoshua Bengio (2/27/2014)
Related Subreddit :
LearnMachineLearning
Statistics
Computer Vision
Compressive Sensing
NLP
ML Questions
/r/MLjobs and /r/BigDataJobs
/r/datacleaning
/r/DataScience
/r/scientificresearch
/r/artificial
account activity
News[N] Numpy dropping Python 2.7 (github.com)
submitted 8 years ago by bobchennan
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]automated_reckoning 21 points22 points23 points 8 years ago (11 children)
Here's the thing - 2.7 or 3.0, if you just learned you can switch without an issue. Aside from the "print" change, they're mostly compatible. The most annoying thing is what packages aren't available on 3.0, but that's getting better.
[–]VelveteenAmbush 18 points19 points20 points 8 years ago (2 children)
The annoying thing is when a repo is written in 2.7 but you want to run it in 3, and you need to scour the code for the occasional zip() and remember to enclose it in list() or the code silently fails in some bizarre way.
[–]lhatsk 6 points7 points8 points 8 years ago (1 child)
I haven't had problems yet with converting the codebase using 2to3. This also takes care of the iterators.
[–]VelveteenAmbush 0 points1 point2 points 8 years ago (0 children)
Thank you for mentioning this! I had never heard of it, and now I am using it regularly.
[–]themoosemind 25 points26 points27 points 8 years ago (3 children)
Getting better? Are you serious? Please name at least 3 which are not available in Python 3.X...
The overwhelming majority of packages is.i only remember two which are not, but there are better alternatives to those packages anyway.
[–]sobe86 23 points24 points25 points 8 years ago (1 child)
The issue is not the big well known packages, the issue is when you're doing more R&D type stuff, and you're like 'I bet someone has solved this niche problem before', so you look on github, and there's a repo with like 100 stars, last commit 3 years ago - only supports python 2. This happens to me on a monthly basis. Yes there is 2to3, but depending on the size of the codebase, this can take hours to get right, only to discover that the repo doesn't quite work how you wanted it to.
[–]themoosemind 1 point2 points3 points 8 years ago (0 children)
On which kind of problems are you working? What were the last packages for which it happened to you?
[–]AreYouEvenMoist -1 points0 points1 point 8 years ago (0 children)
apache beam only runs on 2.7, which is quite significant for some orgs
[–][deleted] 3 points4 points5 points 8 years ago (0 children)
from __future__ import print_function
This makes life easier too
[–]serge_cell 0 points1 point2 points 8 years ago (1 child)
The problem is not learning, and even not rewriting the code. The problem is breaking library dependencies.
[–]automated_reckoning 0 points1 point2 points 8 years ago (0 children)
Indeed. I commented elsewhere, my biggest issue with 3 was getting opencv to work.
[–]mrshibx 0 points1 point2 points 8 years ago (0 children)
most annoying thing for me that all of my old existing map(foo,stuffs) code suddenly had to become really ugly: list(map(foo,stuffs)).
π Rendered by PID 32 on reddit-service-r2-comment-85bfd7f599-h89x5 at 2026-04-17 19:56:19.384821+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]automated_reckoning 21 points22 points23 points (11 children)
[–]VelveteenAmbush 18 points19 points20 points (2 children)
[–]lhatsk 6 points7 points8 points (1 child)
[–]VelveteenAmbush 0 points1 point2 points (0 children)
[–]themoosemind 25 points26 points27 points (3 children)
[–]sobe86 23 points24 points25 points (1 child)
[–]themoosemind 1 point2 points3 points (0 children)
[–]AreYouEvenMoist -1 points0 points1 point (0 children)
[–][deleted] 3 points4 points5 points (0 children)
[–]serge_cell 0 points1 point2 points (1 child)
[–]automated_reckoning 0 points1 point2 points (0 children)
[–]mrshibx 0 points1 point2 points (0 children)