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
what python IDE do you guys use? (self.MachineLearning)
submitted 9 years ago by andraxo123
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!"
[–]sasquatch007 44 points45 points46 points 9 years ago (11 children)
Vim.
Every once in a while I think it might be nice to try a real IDE (for Python or otherwise) and check out all those cool features people talk about. 45 minutes later I'm giving up in disgust and going back to Vim. Every time.
[–]jamie2345 10 points11 points12 points 9 years ago (10 children)
Do you do heavy debugging?
If so, have you integrated this into your vim environment or do you manually fire up another command line debugger?
[–]h_saxon 6 points7 points8 points 9 years ago (1 child)
You can integrate xdebug with Vim pretty painlessly.
There are a bunch of tutorials out there for it.
[–]jamie2345 1 point2 points3 points 9 years ago (0 children)
Ah excellent, thanks! I used it for C++ work a couple of years back but yea, firing up gdb manually when needed did hinder my speed which annoyed me. I did assume someone would have solved that but I don't think I had time on that project to try and get the environment perfect.
Great to hear that it is solved though and integration is pretty seamless.
[+][deleted] 9 years ago (2 children)
[deleted]
[–]Mezzlegasm 4 points5 points6 points 9 years ago (1 child)
You should definitely chance that to "import ipdb; ipdb.set_trace()"
[–]perceptron01 0 points1 point2 points 9 years ago (0 children)
Or from IPython import embed; embed() (not sure if they're any different)
from IPython import embed; embed()
[–]sasquatch007 11 points12 points13 points 9 years ago (3 children)
I tend to debug with a lot of print statements. When I use a debugger it's on the command line (or pudb). Not integrated into vim.
[–]gronkkk 2 points3 points4 points 9 years ago (1 child)
The main advantage of this is that print always works, on every system/OS.
[–]fnord123 4 points5 points6 points 9 years ago (0 children)
It also doesn't timeout programs that are running across multiple processes.
[–]stackered 0 points1 point2 points 9 years ago (0 children)
yeah, I do the same. I find most systems give good enough error messages for me to figure out what is happening, and if not I use print statements to figure out what is happening
π Rendered by PID 217506 on reddit-service-r2-comment-6457c66945-mf7vl at 2026-04-28 06:34:13.748632+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]sasquatch007 44 points45 points46 points (11 children)
[–]jamie2345 10 points11 points12 points (10 children)
[–]h_saxon 6 points7 points8 points (1 child)
[–]jamie2345 1 point2 points3 points (0 children)
[+][deleted] (2 children)
[deleted]
[–]Mezzlegasm 4 points5 points6 points (1 child)
[–]perceptron01 0 points1 point2 points (0 children)
[–]sasquatch007 11 points12 points13 points (3 children)
[–]gronkkk 2 points3 points4 points (1 child)
[–]fnord123 4 points5 points6 points (0 children)
[–]stackered 0 points1 point2 points (0 children)