What would you ask Guido if you had the chance ?
What if you had the chance to interview the creator of python himself ? What would you ask him?
/r/Python
https://redd.it/8amnrd
What if you had the chance to interview the creator of python himself ? What would you ask him?
/r/Python
https://redd.it/8amnrd
reddit
What would you ask Guido if you had the chance ? • r/Python
What if you had the chance to interview the creator of python himself ? What would you ask him?
[N] LSTM inference shoot-out: Intel Skylake vs NVIDIA V100
https://medium.com/@julsimon/lstm-inference-shoot-out-intel-skylake-vs-nvidia-v100-9b7d3f855ea3
/r/MachineLearning
https://redd.it/8ao4w1
https://medium.com/@julsimon/lstm-inference-shoot-out-intel-skylake-vs-nvidia-v100-9b7d3f855ea3
/r/MachineLearning
https://redd.it/8ao4w1
Medium
LSTM inference shoot-out: Intel Skylake vs NVIDIA V100
In a previous post, I showed you how to speed up Deep Learning inference for Apache MXNet by a factor of 7x to 10x, thanks to the Amazon…
Django Rest Framework Nested Models Api Help
https://stackoverflow.com/questions/49715780/connect-nested-models-django-rest-framework-api-serializer
/r/djangolearning
https://redd.it/8aorbb
https://stackoverflow.com/questions/49715780/connect-nested-models-django-rest-framework-api-serializer
/r/djangolearning
https://redd.it/8aorbb
Stackoverflow
Connect nested models django rest framework API serializer
I want to achieve this: a API to get all products for a category.
Models.py
class Category(models.Model):
main_category = models.CharField(max_length=200, default = '')
def __str__(self)...
Models.py
class Category(models.Model):
main_category = models.CharField(max_length=200, default = '')
def __str__(self)...
Serializing a dictionary that is not a model in Django restframework
I have read a few answers and posts about serializing an dictionary . But I still can't get it to work. Here is the problem. I do some data processing in django app , and it returns this dictionary (It has information about a quiz):
{101: {'subject': 'General-Intelligence', 'topics': ['Coding Decoding', 'Dice & Boxes', 'Statement & Conclusion', 'Venn Diagram', 'Mirror and Water Image', 'Paper Cutting and Folding', 'Clock/Time', 'Matrix', 'Direction', 'Blood Relation', 'Series Test', 'Ranking', 'Mathematical Operations', 'Alphabet Test', 'Odd one out', 'Analogy'], 'num_questions': 25, 'creator': 'Rajesh K Swami'}}
I want to serialize this dictionary. So what I have done is created a class for this dictionary. ie.
class PsudoTests:
def __init__(self,body):
self.body = body
Also a serializer:
class PsudoTestSerializer(serializers.Serializer):
body = serializers.DictField()
Now in api view :
class TestListView(generics.ListAPIView):
def get_serializer_class(self):
serializer = PsudoTestSerializer
def get_queryset(self):
me = Studs(self.request.user)
tests = me.toTake_Tests(1) # this method brings in the above dictionary that i want to serialize
p_test = PsudoTests(tests) #this creates an instance of class created above
return p_test
Now when i go to the url there is a key error:
"Got KeyError when attempting to get a value for field body on serializer PsudoTestSerializer.\nThe serializer field might be named incorrectly and not match any attribute or key on the dict instance.\nOriginal exception text was: 'body'."
/r/django
https://redd.it/8apaxg
I have read a few answers and posts about serializing an dictionary . But I still can't get it to work. Here is the problem. I do some data processing in django app , and it returns this dictionary (It has information about a quiz):
{101: {'subject': 'General-Intelligence', 'topics': ['Coding Decoding', 'Dice & Boxes', 'Statement & Conclusion', 'Venn Diagram', 'Mirror and Water Image', 'Paper Cutting and Folding', 'Clock/Time', 'Matrix', 'Direction', 'Blood Relation', 'Series Test', 'Ranking', 'Mathematical Operations', 'Alphabet Test', 'Odd one out', 'Analogy'], 'num_questions': 25, 'creator': 'Rajesh K Swami'}}
I want to serialize this dictionary. So what I have done is created a class for this dictionary. ie.
class PsudoTests:
def __init__(self,body):
self.body = body
Also a serializer:
class PsudoTestSerializer(serializers.Serializer):
body = serializers.DictField()
Now in api view :
class TestListView(generics.ListAPIView):
def get_serializer_class(self):
serializer = PsudoTestSerializer
def get_queryset(self):
me = Studs(self.request.user)
tests = me.toTake_Tests(1) # this method brings in the above dictionary that i want to serialize
p_test = PsudoTests(tests) #this creates an instance of class created above
return p_test
Now when i go to the url there is a key error:
"Got KeyError when attempting to get a value for field body on serializer PsudoTestSerializer.\nThe serializer field might be named incorrectly and not match any attribute or key on the dict instance.\nOriginal exception text was: 'body'."
/r/django
https://redd.it/8apaxg
reddit
Serializing a dictionary that is not a model in Django... • r/django
I have read a few answers and posts about serializing an dictionary . But I still can't get it to work. Here is the problem. I do some data...
Why use threads in Python?
I just learned about the GIL and from the looks of it, it appears even if we use threads in python, our program will take the same time if we just use a single thread due to GIL. If that's the case, using threads for performance isn't really the ideal use case in python, so why use it?
/r/Python
https://redd.it/8ao7lt
I just learned about the GIL and from the looks of it, it appears even if we use threads in python, our program will take the same time if we just use a single thread due to GIL. If that's the case, using threads for performance isn't really the ideal use case in python, so why use it?
/r/Python
https://redd.it/8ao7lt
reddit
Why use threads in Python? • r/Python
I just learned about the GIL and from the looks of it, it appears even if we use threads in python, our program will take the same time if we just...
Create your own Twitter Bot with Python and Tweepy!
https://medium.com/@Fidel_Willis/creating-a-twitter-bot-in-python-with-tweepy-ac524157a607?source=linkShare-11f6119feee0-1523198095
/r/Python
https://redd.it/8aqc1x
https://medium.com/@Fidel_Willis/creating-a-twitter-bot-in-python-with-tweepy-ac524157a607?source=linkShare-11f6119feee0-1523198095
/r/Python
https://redd.it/8aqc1x
Medium
Creating a Twitter Bot in Python with Tweepy
With about 15% of Twitter being composed of bots, I wanted to try my hand in it.
Cryptocurrency from scratch: part 1 Consistent Transactions
https://youtu.be/S0hmc5su4xc
/r/Python
https://redd.it/8apv9z
https://youtu.be/S0hmc5su4xc
/r/Python
https://redd.it/8apv9z
YouTube
Cryptocurrency from scratch: part 1 Consistent Transactions
Part 1: Consistent Transactions. Showing how Bitcoin and other cryptocurrencies handle transactions by writing my own in Python. This first installment just ...
Is Django for freelancing worth it?
I am interested in learning webdev for freelancing. I've tried php, asp mvc and django. I heard from most people that php is the way to go but i prefer python and django.
So how is the freelance landscape for django and python?
/r/django
https://redd.it/8aqdxo
I am interested in learning webdev for freelancing. I've tried php, asp mvc and django. I heard from most people that php is the way to go but i prefer python and django.
So how is the freelance landscape for django and python?
/r/django
https://redd.it/8aqdxo
reddit
Is Django for freelancing worth it? • r/django
I am interested in learning webdev for freelancing. I've tried php, asp mvc and django. I heard from most people that php is the way to go but i...
“The Cathedral and the Bazaar”: Mathematica vs. python, IPython and Jupyter, and their application to scientific papers
https://www.theatlantic.com/science/archive/2018/04/the-scientific-paper-is-obsolete/556676/
/r/Python
https://redd.it/8aqmzk
https://www.theatlantic.com/science/archive/2018/04/the-scientific-paper-is-obsolete/556676/
/r/Python
https://redd.it/8aqmzk
The Atlantic
The Scientific Paper Is Obsolete
Here's what's next.
Pyforms: Embedding a pyplot into a pyForm using ControlMatplotlib
I have come across the ControlMatplotlib control, however I cannot for the life of me figure out how to pass the pyplot to this control.
There is little to no example code for the use of this control and the docs don't have example code.
Any insight is greatly appreciated.
/r/Python
https://redd.it/8apvjp
I have come across the ControlMatplotlib control, however I cannot for the life of me figure out how to pass the pyplot to this control.
There is little to no example code for the use of this control and the docs don't have example code.
Any insight is greatly appreciated.
/r/Python
https://redd.it/8apvjp
reddit
Pyforms: Embedding a pyplot into a pyForm using... • r/Python
I have come across the ControlMatplotlib control, however I cannot for the life of me figure out how to pass the pyplot to this control. There...
[AF] Does anyone use webtest? If so, why use it over flask's built-in test client?
I've been learning unit/integration testing following [sloria/cookiecutter-flask](https://github.com/sloria/cookiecutter-flask) as an example. I know this approach is opinionated, but does anyone know what value webtest brings over flask's built-in test client? I'm relatively new to flask but I suspect that the author simply prefers using webtest (perhaps since it's a more general tool).
/r/flask
https://redd.it/89tvn5
I've been learning unit/integration testing following [sloria/cookiecutter-flask](https://github.com/sloria/cookiecutter-flask) as an example. I know this approach is opinionated, but does anyone know what value webtest brings over flask's built-in test client? I'm relatively new to flask but I suspect that the author simply prefers using webtest (perhaps since it's a more general tool).
/r/flask
https://redd.it/89tvn5
GitHub
GitHub - cookiecutter-flask/cookiecutter-flask: A flask template with Bootstrap, asset bundling+minification with webpack, starter…
A flask template with Bootstrap, asset bundling+minification with webpack, starter templates, and registration/authentication. For use with cookiecutter. - cookiecutter-flask/cookiecutter-flask
Thumbnail in form or formset
Hi everyone,
What's the easiest way to display the image that has been uploaded to the form in addition to or rather than just the filepath of the image within a form or formset. Really struggling with this one.
Thanks!
/r/django
https://redd.it/8as2gu
Hi everyone,
What's the easiest way to display the image that has been uploaded to the form in addition to or rather than just the filepath of the image within a form or formset. Really struggling with this one.
Thanks!
/r/django
https://redd.it/8as2gu
reddit
Thumbnail in form or formset • r/django
Hi everyone, What's the easiest way to display the image that has been uploaded to the form in addition to or rather than just the filepath of...
Allowing user to add details to flask-mail message
So I have a modal on my site from which I want my user to be able to enter their email, hit submit, and then the app to message me with the users email. So far I've got the site sending a message but I'm unsure how to get the users email into the message. Any help would be much appreciated.
My code for sending the email
@app.route('/sendmail/', methods=['POST','GET'])
def send_mail():
try:
#emaiil = request.form['email']
msg = Message("Access request",
sender="SENDING_EMAIL",
recipients=["MY_EMAIL"])
msg.body = "Users email is"
mail.send(msg)
flash('Request sent!')
return redirect(url_for('main'))
except Exception, e:
return(str(e))
My modal for which the user enters their email
<div class="modal-body">
<p>Password can be obtained from somewhere</p>
<form action="{% print url_for('send_mail') %}" class ="form- inline" method="post">
<input type = "email" class = "form-control" placeholder="Email" name = "email">
<a href="/sendmail" class ="btn btn-default">Submit</a>
<button type="button" class="btn btn-secondary" data- dismiss="modal modal2">Close</button>
</form>
The modal is called from here
@app.route("/", methods=['POST','GET'])
def main():
return render_template('main.html')
/r/flask
https://redd.it/8at9sg
So I have a modal on my site from which I want my user to be able to enter their email, hit submit, and then the app to message me with the users email. So far I've got the site sending a message but I'm unsure how to get the users email into the message. Any help would be much appreciated.
My code for sending the email
@app.route('/sendmail/', methods=['POST','GET'])
def send_mail():
try:
#emaiil = request.form['email']
msg = Message("Access request",
sender="SENDING_EMAIL",
recipients=["MY_EMAIL"])
msg.body = "Users email is"
mail.send(msg)
flash('Request sent!')
return redirect(url_for('main'))
except Exception, e:
return(str(e))
My modal for which the user enters their email
<div class="modal-body">
<p>Password can be obtained from somewhere</p>
<form action="{% print url_for('send_mail') %}" class ="form- inline" method="post">
<input type = "email" class = "form-control" placeholder="Email" name = "email">
<a href="/sendmail" class ="btn btn-default">Submit</a>
<button type="button" class="btn btn-secondary" data- dismiss="modal modal2">Close</button>
</form>
The modal is called from here
@app.route("/", methods=['POST','GET'])
def main():
return render_template('main.html')
/r/flask
https://redd.it/8at9sg
reddit
Allowing user to add details to flask-mail message • r/flask
So I have a modal on my site from which I want my user to be able to enter their email, hit submit, and then the app to message me with the users...
How do you code in css without running collectstatic with each change?
How do you guys write css without collecting static on each change to see the effect?
Thanks!
/r/django
https://redd.it/8atv09
How do you guys write css without collecting static on each change to see the effect?
Thanks!
/r/django
https://redd.it/8atv09
reddit
How do you code in css without running collectstatic... • r/django
How do you guys write css without collecting static on each change to see the effect? Thanks!
Programming is awesome! [Rus with Eng. subs, live coding in Python, imdb, beginner level]
https://www.youtube.com/watch?v=QEoiSNNkwTU
/r/Python
https://redd.it/8auamt
https://www.youtube.com/watch?v=QEoiSNNkwTU
/r/Python
https://redd.it/8auamt
YouTube
Programming is Awesome, supposedly (with English subtitles)
Talk I gave at CodeDay 2018 in Khabarovsk for local highschool and freshman students about awesomeness of programming.
With a taste of livecoding.
https://github.com/valignatev/codeday2018 - code and slides
https://twitter.com/valignatev - my Twitter
Also…
With a taste of livecoding.
https://github.com/valignatev/codeday2018 - code and slides
https://twitter.com/valignatev - my Twitter
Also…
Domain Tree Structure Best Practices?
I'm curious as to what judgement criteria is generally used when organizing the placement of apps (or sections) of a website within the tree structure?
In particular, when is it best practice to place an app name in front of your domain www.appname.domain.com vs behind it www.domain/appname.com? Is this related more to SPA's?
/r/django
https://redd.it/8atrk0
I'm curious as to what judgement criteria is generally used when organizing the placement of apps (or sections) of a website within the tree structure?
In particular, when is it best practice to place an app name in front of your domain www.appname.domain.com vs behind it www.domain/appname.com? Is this related more to SPA's?
/r/django
https://redd.it/8atrk0
reddit
Domain Tree Structure Best Practices? • r/django
I'm curious as to what judgement criteria is generally used when organizing the placement of apps (or sections) of a website within the tree...
[AF] How do I test my CLI scripts?
With help from this [repo](https://github.com/sloria/cookiecutter-flask), I was able to test my routes, models, and forms, but I can't figure out how to test my CLI scripts. Does anyone have an example?
/r/flask
https://redd.it/89f6by
With help from this [repo](https://github.com/sloria/cookiecutter-flask), I was able to test my routes, models, and forms, but I can't figure out how to test my CLI scripts. Does anyone have an example?
/r/flask
https://redd.it/89f6by
GitHub
GitHub - cookiecutter-flask/cookiecutter-flask: A flask template with Bootstrap, asset bundling+minification with webpack, starter…
A flask template with Bootstrap, asset bundling+minification with webpack, starter templates, and registration/authentication. For use with cookiecutter. - cookiecutter-flask/cookiecutter-flask
Combinations in Python
Need help counting the different ways I can get 10 pairs of couples from a ballroom dance club with 10 males and 12 females to choose from. I was thinking importing itertools would be helpful.
/r/Python
https://redd.it/8auuzu
Need help counting the different ways I can get 10 pairs of couples from a ballroom dance club with 10 males and 12 females to choose from. I was thinking importing itertools would be helpful.
/r/Python
https://redd.it/8auuzu
reddit
Combinations in Python • r/Python
Need help counting the different ways I can get 10 pairs of couples from a ballroom dance club with 10 males and 12 females to choose from. I was...
Bruteforce protection for Django projects (Redis based). Simple, powerful, extendable.
https://github.com/orsinium/django-bruteforce-protection
/r/Python
https://redd.it/8awn1r
https://github.com/orsinium/django-bruteforce-protection
/r/Python
https://redd.it/8awn1r
GitHub
orsinium/django-bruteforce-protection
Bruteforce protection for Django projects based on Redis. Simple, powerful, extendable. - orsinium/django-bruteforce-protection
[D] Machine Learning - WAYR (What Are You Reading) - Week 44
This is a place to share machine learning research papers, journals, and articles that you're reading this week. If it relates to what you're researching, by all means elaborate and give us your insight, otherwise it could just be an interesting paper you've read.
Please try to provide some insight from your understanding and please don't post things which are present in wiki.
Preferably you should link the arxiv page (not the PDF, you can easily access the PDF from the summary page but not the other way around) or any other pertinent links.
Previous weeks :
|1-10|11-20|21-30|31-40|41-50|
|----|-----|-----|-----|-----|
|[Week 1](https://www.reddit.com/r/MachineLearning/comments/4qyjiq/machine_learning_wayr_what_are_you_reading_week_1/)|[Week 11](https://www.reddit.com/r/MachineLearning/comments/57xw56/discussion_machine_learning_wayr_what_are_you/)|[Week 21](https://www.reddit.com/r/MachineLearning/comments/60ildf/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 31](https://www.reddit.com/r/MachineLearning/comments/6s0k1u/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 41](https://www.reddit.com/r/MachineLearning/comments/7tn2ax/d_machine_learning_wayr_what_are_you_reading_week/)|||
|[Week 2](https://www.reddit.com/r/MachineLearning/comments/4s2xqm/machine_learning_wayr_what_are_you_reading_week_2/)|[Week 12](https://www.reddit.com/r/MachineLearning/comments/5acb1t/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 22](https://www.reddit.com/r/MachineLearning/comments/64jwde/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 32](https://www.reddit.com/r/MachineLearning/comments/72ab5y/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 42](https://www.reddit.com/r/MachineLearning/comments/7wvjfk/d_machine_learning_wayr_what_are_you_reading_week/)||
|[Week 3](https://www.reddit.com/r/MachineLearning/comments/4t7mqm/machine_learning_wayr_what_are_you_reading_week_3/)|[Week 13](https://www.reddit.com/r/MachineLearning/comments/5cwfb6/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 23](https://www.reddit.com/r/MachineLearning/comments/674331/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 33](https://www.reddit.com/r/MachineLearning/comments/75405d/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 43](https://www.reddit.com/r/MachineLearning/comments/807ex4/d_machine_learning_wayr_what_are_you_reading_week/)||
|[Week 4](https://www.reddit.com/r/MachineLearning/comments/4ub2kw/machine_learning_wayr_what_are_you_reading_week_4/)|[Week 14](https://www.reddit.com/r/MachineLearning/comments/5fc5mh/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 24](https://www.reddit.com/r/MachineLearning/comments/68hhhb/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 34](https://www.reddit.com/r/MachineLearning/comments/782js9/d_machine_learning_wayr_what_are_you_reading_week/)||
|[Week 5](https://www.reddit.com/r/MachineLearning/comments/4xomf7/machine_learning_wayr_what_are_you_reading_week_5/)|[Week 15](https://www.reddit.com/r/MachineLearning/comments/5hy4ur/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 25](https://www.reddit.com/r/MachineLearning/comments/69teiz/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 35](https://www.reddit.com/r/MachineLearning/comments/7b0av0/d_machine_learning_wayr_what_are_you_reading_week/)||
|[Week 6](https://www.reddit.com/r/MachineLearning/comments/4zcyvk/machine_learning_wayr_what_are_you_reading_week_6/)|[Week 16](https://www.reddit.com/r/MachineLearning/comments/5kd6vd/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 26](https://www.reddit.com/r/MachineLearning/comments/6d7nb1/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 36](https://www.reddit.com/r/MachineLearning/comments/7e3fx6/d_machine_learning_wayr_what_are_you_reading_week/)||
|[Week 7](https://www.reddit.com/r/MachineLearning/comments/52t6mo/machine_learning_wayr_what_are_you_reading_week_7/)|[Week 17](https://www.reddit.com/r/MachineLearning/comments/5o
This is a place to share machine learning research papers, journals, and articles that you're reading this week. If it relates to what you're researching, by all means elaborate and give us your insight, otherwise it could just be an interesting paper you've read.
Please try to provide some insight from your understanding and please don't post things which are present in wiki.
Preferably you should link the arxiv page (not the PDF, you can easily access the PDF from the summary page but not the other way around) or any other pertinent links.
Previous weeks :
|1-10|11-20|21-30|31-40|41-50|
|----|-----|-----|-----|-----|
|[Week 1](https://www.reddit.com/r/MachineLearning/comments/4qyjiq/machine_learning_wayr_what_are_you_reading_week_1/)|[Week 11](https://www.reddit.com/r/MachineLearning/comments/57xw56/discussion_machine_learning_wayr_what_are_you/)|[Week 21](https://www.reddit.com/r/MachineLearning/comments/60ildf/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 31](https://www.reddit.com/r/MachineLearning/comments/6s0k1u/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 41](https://www.reddit.com/r/MachineLearning/comments/7tn2ax/d_machine_learning_wayr_what_are_you_reading_week/)|||
|[Week 2](https://www.reddit.com/r/MachineLearning/comments/4s2xqm/machine_learning_wayr_what_are_you_reading_week_2/)|[Week 12](https://www.reddit.com/r/MachineLearning/comments/5acb1t/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 22](https://www.reddit.com/r/MachineLearning/comments/64jwde/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 32](https://www.reddit.com/r/MachineLearning/comments/72ab5y/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 42](https://www.reddit.com/r/MachineLearning/comments/7wvjfk/d_machine_learning_wayr_what_are_you_reading_week/)||
|[Week 3](https://www.reddit.com/r/MachineLearning/comments/4t7mqm/machine_learning_wayr_what_are_you_reading_week_3/)|[Week 13](https://www.reddit.com/r/MachineLearning/comments/5cwfb6/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 23](https://www.reddit.com/r/MachineLearning/comments/674331/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 33](https://www.reddit.com/r/MachineLearning/comments/75405d/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 43](https://www.reddit.com/r/MachineLearning/comments/807ex4/d_machine_learning_wayr_what_are_you_reading_week/)||
|[Week 4](https://www.reddit.com/r/MachineLearning/comments/4ub2kw/machine_learning_wayr_what_are_you_reading_week_4/)|[Week 14](https://www.reddit.com/r/MachineLearning/comments/5fc5mh/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 24](https://www.reddit.com/r/MachineLearning/comments/68hhhb/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 34](https://www.reddit.com/r/MachineLearning/comments/782js9/d_machine_learning_wayr_what_are_you_reading_week/)||
|[Week 5](https://www.reddit.com/r/MachineLearning/comments/4xomf7/machine_learning_wayr_what_are_you_reading_week_5/)|[Week 15](https://www.reddit.com/r/MachineLearning/comments/5hy4ur/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 25](https://www.reddit.com/r/MachineLearning/comments/69teiz/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 35](https://www.reddit.com/r/MachineLearning/comments/7b0av0/d_machine_learning_wayr_what_are_you_reading_week/)||
|[Week 6](https://www.reddit.com/r/MachineLearning/comments/4zcyvk/machine_learning_wayr_what_are_you_reading_week_6/)|[Week 16](https://www.reddit.com/r/MachineLearning/comments/5kd6vd/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 26](https://www.reddit.com/r/MachineLearning/comments/6d7nb1/d_machine_learning_wayr_what_are_you_reading_week/)|[Week 36](https://www.reddit.com/r/MachineLearning/comments/7e3fx6/d_machine_learning_wayr_what_are_you_reading_week/)||
|[Week 7](https://www.reddit.com/r/MachineLearning/comments/52t6mo/machine_learning_wayr_what_are_you_reading_week_7/)|[Week 17](https://www.reddit.com/r/MachineLearning/comments/5o
Reddit
From the MachineLearning community on Reddit
Explore this post and more from the MachineLearning community