[P] Mushroom: Reinforcement Learning library
Hi everyone,
during my PhD I worked on a RL python library which has the purpose to simplify the developing of RL experiments and which is highly customizable to let user add and test their own algorithms. It uses Gym and Pytorch (one can also use Tensorflow or other libraries transparently) to exploit already developed powerful libraries and just to focus on RL aspects. Recently, we added several policy gradient and actor-critic algorithms, such as the recent DPG. I'd really appreciate if you give a look to Mushroom and consider it for doing your research, or simply to give me a feedback on it. Here are the GitHub link: [https://github.com/AIRLab-POLIMI/mushroom](https://github.com/AIRLab-POLIMI/mushroom) and the doc link: [https://mushroomrl.readthedocs.io/en/latest/](https://mushroomrl.readthedocs.io/en/latest/).
Cheers!
/r/MachineLearning
https://redd.it/an3cqz
Hi everyone,
during my PhD I worked on a RL python library which has the purpose to simplify the developing of RL experiments and which is highly customizable to let user add and test their own algorithms. It uses Gym and Pytorch (one can also use Tensorflow or other libraries transparently) to exploit already developed powerful libraries and just to focus on RL aspects. Recently, we added several policy gradient and actor-critic algorithms, such as the recent DPG. I'd really appreciate if you give a look to Mushroom and consider it for doing your research, or simply to give me a feedback on it. Here are the GitHub link: [https://github.com/AIRLab-POLIMI/mushroom](https://github.com/AIRLab-POLIMI/mushroom) and the doc link: [https://mushroomrl.readthedocs.io/en/latest/](https://mushroomrl.readthedocs.io/en/latest/).
Cheers!
/r/MachineLearning
https://redd.it/an3cqz
GitHub
AIRLab-POLIMI/mushroom
Python library for Reinforcement Learning experiments. - AIRLab-POLIMI/mushroom
Practical Machine Learning Tutorial Using Keras
https://kite.com/blog/python/python-machine-learning-keras
/r/Python
https://redd.it/an7m6n
https://kite.com/blog/python/python-machine-learning-keras
/r/Python
https://redd.it/an7m6n
Code Faster with Kite
Practical Machine Learning with Python and Keras
Learn the basics of machine learning and neural networks, and test out your skills with a simple tutorial using Keras.
During logout on the web the DRF token is also logging out the native app, how do I stop this?
I have an API that is consumed by web client and native clients, when the user on the web logs out the token is invalidated and they are then logged out on mobile which is a bad user experience. How do I solve this?
It is conceivable to just forget the token on the web during logout but then it never changes and there is credit card data stored in the DB so that is not ideal.
/r/django
https://redd.it/an9wja
I have an API that is consumed by web client and native clients, when the user on the web logs out the token is invalidated and they are then logged out on mobile which is a bad user experience. How do I solve this?
It is conceivable to just forget the token on the web during logout but then it never changes and there is credit card data stored in the DB so that is not ideal.
/r/django
https://redd.it/an9wja
reddit
r/django - During logout on the web the DRF token is also logging out the native app, how do I stop this?
1 vote and 1 comment so far on Reddit
How to organize my django website
Hello all! I am super super super new to Django and python in general. I have begun the process of reading the documentation and going through tutorials and have come here for guidance.
The site I want to build would be for speakers at conferences to be able to upload their files prior to the event. I can easily wrap my head around having an app with a model of the general fields associated with this and a simple file upload form.
The part that I can't really figure out is how I would be able to have multiple conferences able to upload at the same time. As well as how non programming people would be able to set up a new conference to begin uploading to using only the admin interface.
Is there a way to create a new db table via admin interface? Should all of the entries just live in the same table with an entry determining which conference the entry belongs to? Am I being too ambitious for my first non-guided Django project?
/r/django
https://redd.it/an9jfe
Hello all! I am super super super new to Django and python in general. I have begun the process of reading the documentation and going through tutorials and have come here for guidance.
The site I want to build would be for speakers at conferences to be able to upload their files prior to the event. I can easily wrap my head around having an app with a model of the general fields associated with this and a simple file upload form.
The part that I can't really figure out is how I would be able to have multiple conferences able to upload at the same time. As well as how non programming people would be able to set up a new conference to begin uploading to using only the admin interface.
Is there a way to create a new db table via admin interface? Should all of the entries just live in the same table with an entry determining which conference the entry belongs to? Am I being too ambitious for my first non-guided Django project?
/r/django
https://redd.it/an9jfe
reddit
r/django - How to organize my django website
0 votes and 1 comment so far on Reddit
A Django extension that implements PostgreSQL tables for partitioning and management based on dates.
https://django-pg-timepart.readthedocs.io/en/latest/
/r/django
https://redd.it/an9ieq
https://django-pg-timepart.readthedocs.io/en/latest/
/r/django
https://redd.it/an9ieq
reddit
r/django - A Django extension that implements PostgreSQL tables for partitioning and management based on dates.
1 vote and 0 comments so far on Reddit
Replacing a spreadsheet...
I've successfully used Jupyter before, as a beginner for a few machine learning lessons, but I'm wondering if it's possible to use/abuse Jupyter to behave more like a spreadsheet, just in terms of having cells depend on other cells and continually update.
I've always felt limited by Excel because I really want to document my thinking in the way that Jupyter allows, with markdown blocks etc. (Before getting into Jupyter I've also been using Calca for the mac.) I also feel limited by Excel's functions, while I'm very comfortable with software programming - there have been so many times I've thought, ugh, this would be so much easier if I could just call 'map' on this array of data...
So I've been hoping to find something like Jupyter, where I can actually write my own functions and document my thinking, but where I can also input new data and have it be persistently stored, and have other cells update to changed data.
I know this isn't exactly what Jupyter is usually used for, since it's more to explore data in a linear fashion rather than in a reactive-programming fashion. So I guess this is a dual question:
Is it possible to make Jupyter behave
/r/IPython
https://redd.it/anb73f
I've successfully used Jupyter before, as a beginner for a few machine learning lessons, but I'm wondering if it's possible to use/abuse Jupyter to behave more like a spreadsheet, just in terms of having cells depend on other cells and continually update.
I've always felt limited by Excel because I really want to document my thinking in the way that Jupyter allows, with markdown blocks etc. (Before getting into Jupyter I've also been using Calca for the mac.) I also feel limited by Excel's functions, while I'm very comfortable with software programming - there have been so many times I've thought, ugh, this would be so much easier if I could just call 'map' on this array of data...
So I've been hoping to find something like Jupyter, where I can actually write my own functions and document my thinking, but where I can also input new data and have it be persistently stored, and have other cells update to changed data.
I know this isn't exactly what Jupyter is usually used for, since it's more to explore data in a linear fashion rather than in a reactive-programming fashion. So I guess this is a dual question:
Is it possible to make Jupyter behave
/r/IPython
https://redd.it/anb73f
reddit
r/IPython - Replacing a spreadsheet...
0 votes and 1 comment so far on Reddit
Here's a quick tutorial on using virtual environments in Jupyter notebook and Python
https://janakiev.com/til/jupyter-virtual-envs/
/r/JupyterNotebooks
https://redd.it/an01e7
https://janakiev.com/til/jupyter-virtual-envs/
/r/JupyterNotebooks
https://redd.it/an01e7
Parametric Thoughts
Using Virtual Environments in Jupyter Notebook and Python
Are you working with Jupyter Notebook and Python? Do you also want to benefit from virtual environments? In this tutorial you will see how to do just that with Anaconda or Virtualenv/venv.
Honestly, just sharing because I'm stoked I figured this out on my own, even though it's very simple.
/r/Python
https://redd.it/anbjyx
/r/Python
https://redd.it/anbjyx
What's everyone working on this week?
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share.
/r/Python
https://redd.it/anefyq
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share.
/r/Python
https://redd.it/anefyq
reddit
r/Python - What's everyone working on this week?
0 votes and 0 comments so far on Reddit
Which frontend do you prefer with Django?
Hey I am building Django app and I am wondering if React would be good choice for frontend or not.If not, what do you prefer? It's a simple app and only admin will use it but not in Django Admin.
/r/django
https://redd.it/ancuh7
Hey I am building Django app and I am wondering if React would be good choice for frontend or not.If not, what do you prefer? It's a simple app and only admin will use it but not in Django Admin.
/r/django
https://redd.it/ancuh7
reddit
r/django - Which frontend do you prefer with Django?
11 votes and 35 comments so far on Reddit
Free Python books
I recently started learning Python and I’ve come across several great resources, including a number of ebooks that can be read online or downloaded for free. Some are well known, others less. Here’s the list of those books:
* [Python 101](https://python101.pythonlibrary.org/)
* [A Python Book: Beginning Python, Advanced Python, and Python Exercises](http://www.davekuhlman.org/python_book_01.html)
* [Boxes: Your Second Python Book](http://ralsina.gitlab.io/boxes-book/)
* [The Hitchhiker’s Guide to Python!](https://docs.python-guide.org/)
* [Automate the Boring Stuff with Python](https://automatetheboringstuff.com/)
* [Problem Solving with Algorithms and Data Structures using Python](https://interactivepython.org/runestone/static/pythonds/index.html#problem-solving-with-algorithms-and-data-structures-using-python)
* [Python for Scientists and Engineers](https://www.pythonforengineers.com/python-for-scientists-and-engineers/)
* [Think Python: How to Think Like a Computer Scientist](https://greenteapress.com/wp/think-python-2e/)
* [Clean Architectures in Python](https://leanpub.com/clean-architectures-in-python)
* [Teaching and Learning with Jupyter](https://jupyter4edu.github.io/jupyter-edu-book/)
What are your favorite free Python books?
/r/Python
https://redd.it/anfdyh
I recently started learning Python and I’ve come across several great resources, including a number of ebooks that can be read online or downloaded for free. Some are well known, others less. Here’s the list of those books:
* [Python 101](https://python101.pythonlibrary.org/)
* [A Python Book: Beginning Python, Advanced Python, and Python Exercises](http://www.davekuhlman.org/python_book_01.html)
* [Boxes: Your Second Python Book](http://ralsina.gitlab.io/boxes-book/)
* [The Hitchhiker’s Guide to Python!](https://docs.python-guide.org/)
* [Automate the Boring Stuff with Python](https://automatetheboringstuff.com/)
* [Problem Solving with Algorithms and Data Structures using Python](https://interactivepython.org/runestone/static/pythonds/index.html#problem-solving-with-algorithms-and-data-structures-using-python)
* [Python for Scientists and Engineers](https://www.pythonforengineers.com/python-for-scientists-and-engineers/)
* [Think Python: How to Think Like a Computer Scientist](https://greenteapress.com/wp/think-python-2e/)
* [Clean Architectures in Python](https://leanpub.com/clean-architectures-in-python)
* [Teaching and Learning with Jupyter](https://jupyter4edu.github.io/jupyter-edu-book/)
What are your favorite free Python books?
/r/Python
https://redd.it/anfdyh
www.davekuhlman.org
A Python Book: Beginning Python, Advanced Python, and Python Exercises
Flask Email Validation - Stop Nonsense Emails
For example, I get some emails that are clearly nonsense like sfdjhkj@kjh.com...
is there no way to mitigate this or some kind of library/algorithm to verify the validity of an email?
Doesn't have to be 100% of the time just in general.
/r/flask
https://redd.it/aneutz
For example, I get some emails that are clearly nonsense like sfdjhkj@kjh.com...
is there no way to mitigate this or some kind of library/algorithm to verify the validity of an email?
Doesn't have to be 100% of the time just in general.
/r/flask
https://redd.it/aneutz
reddit
r/flask - Flask Email Validation - Stop Nonsense Emails
4 votes and 5 comments so far on Reddit
Goodbye Virtual Environments?
https://medium.com/@grassfedcode/goodbye-virtual-environments-b9f8115bc2b6
/r/Python
https://redd.it/angnjz
https://medium.com/@grassfedcode/goodbye-virtual-environments-b9f8115bc2b6
/r/Python
https://redd.it/angnjz
Medium
Goodbye Virtual Environments?
If you’re a Python developer you’ve likely heard of virtual environments — “a self-contained directory tree that contains a Python…
Python Developers Survey 2018 Results
https://www.jetbrains.com/research/python-developers-survey-2018/
/r/Python
https://redd.it/anjjos
https://www.jetbrains.com/research/python-developers-survey-2018/
/r/Python
https://redd.it/anjjos
JetBrains
Python Developers Survey 2018 Results
Results of the official Python Developers Survey 2018 by Python Software Foundation and JetBrains: more than 20k responses from more than 150 countries.
Full Stack React & Django [1] - Basic REST API
https://www.youtube.com/watch?v=Uyei2iDA4Hs
/r/django
https://redd.it/anks6n
https://www.youtube.com/watch?v=Uyei2iDA4Hs
/r/django
https://redd.it/anks6n
YouTube
Full Stack React & Django [1] - Basic REST API
In part 1 of this series we will setup a Django app and create a REST API with the Django Rest Framework. We will use Postman for API testing.
Sponsor: DevMountain Bootcamp
https://goo.gl/6q0dEa
Code:
https://github.com/bradtraversy/lead_manager_react_django…
Sponsor: DevMountain Bootcamp
https://goo.gl/6q0dEa
Code:
https://github.com/bradtraversy/lead_manager_react_django…
[R] Facebook has released code and pretrained models for Cross-lingual Language Model Pretraining
It's an impressive piece of work that get state-of-the-art results on Cross-lingual Natural Language Inference and unsupervised Machine Translation (even out-performing supervised Machine Translation in some settings).
The model is a cross-lingual implementation of BERT.
PyTorch implementation and pre-trained models: [https://github.com/facebookresearch/XLM](https://github.com/facebookresearch/XLM)
Paper: [Cross-lingual Language Model Pretraining](https://arxiv.org/abs/1901.07291)
/r/MachineLearning
https://redd.it/anfgwc
It's an impressive piece of work that get state-of-the-art results on Cross-lingual Natural Language Inference and unsupervised Machine Translation (even out-performing supervised Machine Translation in some settings).
The model is a cross-lingual implementation of BERT.
PyTorch implementation and pre-trained models: [https://github.com/facebookresearch/XLM](https://github.com/facebookresearch/XLM)
Paper: [Cross-lingual Language Model Pretraining](https://arxiv.org/abs/1901.07291)
/r/MachineLearning
https://redd.it/anfgwc
GitHub
GitHub - facebookresearch/XLM: PyTorch original implementation of Cross-lingual Language Model Pretraining.
PyTorch original implementation of Cross-lingual Language Model Pretraining. - facebookresearch/XLM
Discussion: What to call the "main" app in your Django Project?
I'm starting a new project and it will be a collection of Django Apps with their own functionality (as intended by the Django Framework). However, I usually create a home/base/main app for the landing page, all of the base templates, static files, ... What is the preferred way to call this or handle this?
/r/django
https://redd.it/anirli
I'm starting a new project and it will be a collection of Django Apps with their own functionality (as intended by the Django Framework). However, I usually create a home/base/main app for the landing page, all of the base templates, static files, ... What is the preferred way to call this or handle this?
/r/django
https://redd.it/anirli
reddit
r/django - Discussion: What to call the "main" app in your Django Project?
5 votes and 17 comments so far on Reddit
Following Flask production deployment tutorials, how safe is it to host a small scale webshop using Flask?
I want to host a really small scale webshop - only meant for a Facebook group - on my Raspberry Pi. I've read that I need to properly deploy it for production, which I intend to do.
My plan is to store addresses locally and have PayPal take care of the payments.
How safe/unsafe is this? Is there something I oughta know before I make this?
/r/flask
https://redd.it/anjos8
I want to host a really small scale webshop - only meant for a Facebook group - on my Raspberry Pi. I've read that I need to properly deploy it for production, which I intend to do.
My plan is to store addresses locally and have PayPal take care of the payments.
How safe/unsafe is this? Is there something I oughta know before I make this?
/r/flask
https://redd.it/anjos8
reddit
r/flask - Following Flask production deployment tutorials, how safe is it to host a small scale webshop using Flask?
8 votes and 11 comments so far on Reddit
Error in documentation
Hi,
I am a beginner. I was going through the getting started documentation and found some typos and error.
[https://docs.djangoproject.com/en/2.1/intro/tutorial03/#writing-more-views](https://docs.djangoproject.com/en/2.1/intro/tutorial03/#writing-more-views)
def detail(request, question_id):
return HttpResponse("You're looking at question %s." % question_id)
def results(request, question_id):
response = "You're looking at the results of question %s."
return HttpResponse(response % question_id)
def vote(request, question_id):
return HttpResponse("You're voting on question %s." % question_id)
Gives the following error:
return HttpResponse("You're voting on question %s", % question_id)
SyntaxError: invalid syntax
To solve the problem I performed
*return* HttpResponse("You're voting on question %s", question\_id) #excluded the '%' prefixed to question\_id
​
I am using Linux python3.7 django 2.1.5.
Will the changes be made or should I make an official report on their site?
If so, How should I sent the error to the django team.
/r/django
https://redd.it/ano2kr
Hi,
I am a beginner. I was going through the getting started documentation and found some typos and error.
[https://docs.djangoproject.com/en/2.1/intro/tutorial03/#writing-more-views](https://docs.djangoproject.com/en/2.1/intro/tutorial03/#writing-more-views)
def detail(request, question_id):
return HttpResponse("You're looking at question %s." % question_id)
def results(request, question_id):
response = "You're looking at the results of question %s."
return HttpResponse(response % question_id)
def vote(request, question_id):
return HttpResponse("You're voting on question %s." % question_id)
Gives the following error:
return HttpResponse("You're voting on question %s", % question_id)
SyntaxError: invalid syntax
To solve the problem I performed
*return* HttpResponse("You're voting on question %s", question\_id) #excluded the '%' prefixed to question\_id
​
I am using Linux python3.7 django 2.1.5.
Will the changes be made or should I make an official report on their site?
If so, How should I sent the error to the django team.
/r/django
https://redd.it/ano2kr