On Building an Instagram Street Art Dataset and Detection Model
https://blog.floydhub.com/instagram-street-art/
https://blog.floydhub.com/instagram-street-art/
FloydHub Blog
Building an Instagram Street Art Model
Build your own deep learning dataset and detection model using public Instagram photos of #streetart.
Algorithmically Detecting (and Trading) Technical Chart Patterns with Python
https://medium.com/automation-generation/algorithmically-detecting-and-trading-technical-chart-patterns-with-python-c577b3a396ed
https://medium.com/automation-generation/algorithmically-detecting-and-trading-technical-chart-patterns-with-python-c577b3a396ed
Medium
Algorithmically Detecting (and Trading) Technical Chart Patterns with Python
Algorithmically trade technical Chart patterns using Python and the Alpaca API.
Deploying completely serverless Django with Zappa and Aurora Serverless
https://agiliq.com/blog/2019/01/complete-serverless-django/
https://agiliq.com/blog/2019/01/complete-serverless-django/
Agiliq
Deploying completely serverless Django with Zappa and Aurora Serverless
Make django completely serverless using Lambda & Aurora-Serverless
Regrettable Code, Episode 1 – Jeremy Noring – Medium
https://medium.com/@jeremy.noring/regrettable-code-episode-1-767dc1b92bd1
https://medium.com/@jeremy.noring/regrettable-code-episode-1-767dc1b92bd1
Medium
Regrettable Code, Episode 1
It’s easy to talk about pretty code. Let’s talk about nasty code and see what we can learn from it.
How to Get Free Domain Email with Django and SendGrid
https://medium.com/@info_93479/how-to-get-free-domain-email-with-django-and-sendgrid-96c1e0b1b360
https://medium.com/@info_93479/how-to-get-free-domain-email-with-django-and-sendgrid-96c1e0b1b360
Medium
How to Get Free Domain Email with Django and SendGrid
Use django-anymail and an ESP to get free domain email sending, receiving, and forwarding
Keras, Regression, and CNNs - PyImageSearch
https://www.pyimagesearch.com/2019/01/28/keras-regression-and-cnns/
https://www.pyimagesearch.com/2019/01/28/keras-regression-and-cnns/
PyImageSearch
Keras, Regression, and CNNs - PyImageSearch
In this tutorial you will learn how to train a Convolutional Neural Network (CNN) for regression prediction with Keras and deep learning.
Matplotlib Tutorial - A Complete Guide to Python Plot w/ Examples | ML+
https://www.machinelearningplus.com/plots/matplotlib-tutorial-complete-guide-python-plot-examples/
https://www.machinelearningplus.com/plots/matplotlib-tutorial-complete-guide-python-plot-examples/
Machine Learning Plus
Matplotlib Tutorial – A Complete Guide to Python Plot with Examples
Learn Complete Data Science Online
Build a Django RESTful API on Fedora. - Fedora Magazine
https://fedoramagazine.org/build-a-django-restful-api-on-fedora/
https://fedoramagazine.org/build-a-django-restful-api-on-fedora/
Fedora Magazine
Build a Django RESTful API on Fedora. - Fedora Magazine
This article introduce the basic concept of Django and the Django REST Framework and let you build a basic CRUD API on Fedora.
A comprehensive guide to putting a machine learning model in production using Flask, Docker, and…
https://mikulskibartosz.name/a-comprehensive-guide-to-putting-a-machine-learning-model-in-production-using-flask-docker-and-e3176aa8d1ce
https://mikulskibartosz.name/a-comprehensive-guide-to-putting-a-machine-learning-model-in-production-using-flask-docker-and-e3176aa8d1ce
Bartosz Mikulski
A comprehensive guide to putting a machine learning model in production using Flask, Docker, and Kubernetes
How to use Docker and Flask to put a Scikit model in production as a microservice.
Realtime Flight Tracking with Pandas and Bokeh
https://www.geodose.com/2019/01/realtime-flight-tracking-pandas-bokeh-python.html
https://www.geodose.com/2019/01/realtime-flight-tracking-pandas-bokeh-python.html
Geodose
Realtime Flight Tracking with Pandas and Bokeh
How To Setup Flask Project and Create URL Routing [Tutorial] - YouTube
https://www.youtube.com/watch?v=uB7dKHTaRsI
https://www.youtube.com/watch?v=uB7dKHTaRsI
YouTube
Python Flask Tutorial: Project Setup + URL Routing
How To Setup Flask Project and Create URL Routing Topics included in this video: - Setup virtualenv and install Flask using PIP - Add base flaskapp.py with "...
Stuck with slow tests? Speed up your feedback loop
https://pythonspeed.com/articles/slow-tests-fast-feedback/
https://pythonspeed.com/articles/slow-tests-fast-feedback/
Python⇒Speed
Stuck with slow tests? Speed up your feedback loop
Sometimes you can’t speed up your Python test suite. What you can do, however, is find failures faster with linters, partial testing, and more.
A Complete Program // Richard Mavis dot info
http://richardmavis.info/a-complete-program
http://richardmavis.info/a-complete-program
richardmavis.info
A Complete Program // Richard Mavis dot info
Or: how to expand one compound command into a 200-line script.
Stanislas Morbieu – Dense matrices implementation in Python
https://smorbieu.gitlab.io/dense-matrices-implementation-in-python/
https://smorbieu.gitlab.io/dense-matrices-implementation-in-python/
Stanislas Morbieu
Dense matrices implementation in Python
Machine learning algorithms often use matrices to store data and compute operations such as multiplications or singular value decomposition. The purpose of this article is to see how matrices are implemented in Python: how the data is stored and how much…
Simple dependent types in Python
https://sobolevn.me/2019/01/simple-dependent-types-in-python
https://sobolevn.me/2019/01/simple-dependent-types-in-python
GitHub - torfsen/python-systemd-tutorial: A tutorial for writing a systemd service in Python
https://github.com/torfsen/python-systemd-tutorial
https://github.com/torfsen/python-systemd-tutorial
GitHub
GitHub - torfsen/python-systemd-tutorial: A tutorial for writing a systemd service in Python
A tutorial for writing a systemd service in Python - torfsen/python-systemd-tutorial
Hashable Objects Must Be Immutable - The Invent with Python Blog
https://inventwithpython.com/blog/2019/02/01/hashable-objects-must-be-immutable/
https://inventwithpython.com/blog/2019/02/01/hashable-objects-must-be-immutable/
Inventwithpython
Hashable Objects Must Be Immutable
A recent post to Reddit sparked some comments, so I wanted to clarify: In Python, hashable objects must be immutable and mutable objects cannot be hashable. (With one exception.)
Linked Lists in Detail with Python Examples: Single Linked Lists
https://stackabuse.com/linked-lists-in-detail-with-python-examples-single-linked-lists/
https://stackabuse.com/linked-lists-in-detail-with-python-examples-single-linked-lists/
Stack Abuse
Linked Lists in Detail with Python Examples: Single Linked Lists
Linked lists are one of the most commonly used data structures in any programming language since they offer dynamic memory allocation that arrays often simply...