eriklindernoren / ML-From-Scratch
Machine Learning From Scratch. Bare bones NumPy implementations of machine learning models and algorithms with a focus on accessibility. Aims to cover everything from linear regression to deep learning.
https://github.com/eriklindernoren/ML-From-Scratch
Machine Learning From Scratch. Bare bones NumPy implementations of machine learning models and algorithms with a focus on accessibility. Aims to cover everything from linear regression to deep learning.
https://github.com/eriklindernoren/ML-From-Scratch
GitHub
GitHub - eriklindernoren/ML-From-Scratch: Machine Learning From Scratch. Bare bones NumPy implementations of machine learning models…
Machine Learning From Scratch. Bare bones NumPy implementations of machine learning models and algorithms with a focus on accessibility. Aims to cover everything from linear regression to deep lear...
Let’s Build A Web Server. Part 1.
Out for a walk one day, a woman came across a construction site and saw three men working.
She ...
https://ruslanspivak.com/lsbaws-part1/
Out for a walk one day, a woman came across a construction site and saw three men working.
She ...
https://ruslanspivak.com/lsbaws-part1/
Ruslan's Blog
Let’s Build A Web Server. Part 1.
Out for a walk one day, a woman came across a construction site and saw three men working. She asked the first man, “What are you doing?” Annoyed by the question, the first man barked, “Can’t you see that I’m laying bricks?” Not satisfied with the answer…
Hosting Flask servers on Firebase from scratch
Firebase Hosting is more than static files. Learn how…
https://medium.com/firebase-developers/hosting-flask-servers-on-firebase-from-scratch-c97cfb204579
Firebase Hosting is more than static files. Learn how…
https://medium.com/firebase-developers/hosting-flask-servers-on-firebase-from-scratch-c97cfb204579
End To End Python Implementation Of Finding Optimised Efficient Investment Portfolios
https://medium.com/fintechexplained/end-to-end-python-implementation-of-finding-optimised-efficient-investment-portfolios-8d12693f537d
https://medium.com/fintechexplained/end-to-end-python-implementation-of-finding-optimised-efficient-investment-portfolios-8d12693f537d
Jupyter Lab: Evolution of the Jupyter Notebook
All good things (must) come to an end to make way for…
https://towardsdatascience.com/jupyter-lab-evolution-of-the-jupyter-notebook-5297cacde6b
All good things (must) come to an end to make way for…
https://towardsdatascience.com/jupyter-lab-evolution-of-the-jupyter-notebook-5297cacde6b
Cohort Analysis with Python
Or how to visualize your customer retention — a code-along guide
https://medium.com/better-programming/cohort-analysis-with-python-e81d9d740a9b
Or how to visualize your customer retention — a code-along guide
https://medium.com/better-programming/cohort-analysis-with-python-e81d9d740a9b
Getting Started with Jupyter Notebook for Python
By Paritosh Gupta
Jupyter Notebook is a web application that allows you to create and share ...
https://www.pylenin.com/blogs/jupyter-notebook-tutorial/
By Paritosh Gupta
Jupyter Notebook is a web application that allows you to create and share ...
https://www.pylenin.com/blogs/jupyter-notebook-tutorial/
Pylenin
Getting Started with Jupyter Notebook for Python
This article helps in installing Jupyter Notebook and exploring its various functionalities for programming in Python.
Steps to Proficiency in Any Programming Language
Seven steps to proficiency, from being an active…
https://medium.com/better-programming/steps-to-proficiency-in-any-programming-language-8931ed4fe766
Seven steps to proficiency, from being an active…
https://medium.com/better-programming/steps-to-proficiency-in-any-programming-language-8931ed4fe766
Python 2 is dying, so fix your code NOW, says “British NSA”
https://www.reddit.com/r/Python/comments/cx40n3/python_2_is_dying_so_fix_your_code_now_says/
https://www.reddit.com/r/Python/comments/cx40n3/python_2_is_dying_so_fix_your_code_now_says/
reddit
r/Python - Python 2 is dying, so fix your code NOW, says “British NSA”
580 votes and 99 comments so far on Reddit
Extracting data from various sheets with Python
https://towardsdatascience.com/replacing-sheets-with-python-f1608e58d2ca
https://towardsdatascience.com/replacing-sheets-with-python-f1608e58d2ca
Building an Image Hashing Search Engine with VP-Trees and OpenCV
In this tutorial, you will learn how to build a scalable image hashing search engine using OpenCV, ...
https://www.pyimagesearch.com/2019/08/26/building-an-image-hashing-search-engine-with-vp-trees-and-opencv/
In this tutorial, you will learn how to build a scalable image hashing search engine using OpenCV, ...
https://www.pyimagesearch.com/2019/08/26/building-an-image-hashing-search-engine-with-vp-trees-and-opencv/
Finding product alternatives at Picnic
https://blog.picnic.nl/finding-product-alternatives-at-picnic-899396ec3aec
https://blog.picnic.nl/finding-product-alternatives-at-picnic-899396ec3aec
dwyl / english-words
📝 A text file containing 479k English words for all your dictionary/word-based projects e.g: auto-completion / autosuggestion
https://github.com/dwyl/english-words
📝 A text file containing 479k English words for all your dictionary/word-based projects e.g: auto-completion / autosuggestion
https://github.com/dwyl/english-words
GitHub
GitHub - dwyl/english-words: :memo: A text file containing 479k English words for all your dictionary/word-based projects e.g:…
:memo: A text file containing 479k English words for all your dictionary/word-based projects e.g: auto-completion / autosuggestion - dwyl/english-words
Guide to R and Python in a Single Jupyter Notebook
https://towardsdatascience.com/guide-to-r-and-python-in-a-single-jupyter-notebook-ff12532eb3ba
https://towardsdatascience.com/guide-to-r-and-python-in-a-single-jupyter-notebook-ff12532eb3ba
How to Deploy a Machine Learning Model
Creating a production-ready API with FastAPI + Uvicorn
https://towardsdatascience.com/how-to-deploy-a-machine-learning-model-dc51200fe8cf
Creating a production-ready API with FastAPI + Uvicorn
https://towardsdatascience.com/how-to-deploy-a-machine-learning-model-dc51200fe8cf
Finding N Largest(Smallest) items in Python with Heapq
By Lenin Mishra
Let’s look at this list.
x = 1, 3, 7, 21, -90, 67, 42, 12 Now we want to ...
https://www.pylenin.com/blogs/find-n-largest-or-smallest-items/
By Lenin Mishra
Let’s look at this list.
x = 1, 3, 7, 21, -90, 67, 42, 12 Now we want to ...
https://www.pylenin.com/blogs/find-n-largest-or-smallest-items/
Pylenin
Finding N Largest(Smallest) items in Python with Heapq
A simple way to return the N largest or smallest elements using the heapq module in Python 3.
A Guide to Excel Spreadsheets in Python With openpyxl – Real Python
https://www.reddit.com/r/Python/comments/cwgvvt/a_guide_to_excel_spreadsheets_in_python_with/
https://www.reddit.com/r/Python/comments/cwgvvt/a_guide_to_excel_spreadsheets_in_python_with/
Reddit
From the Python community on Reddit: A Guide to Excel Spreadsheets in Python With openpyxl – Real Python
Explore this post and more from the Python community
robotframework / robotframework
Generic automation framework for acceptance testing and RPA
https://github.com/robotframework/robotframework
Generic automation framework for acceptance testing and RPA
https://github.com/robotframework/robotframework
GitHub
GitHub - robotframework/robotframework: Generic automation framework for acceptance testing and RPA
Generic automation framework for acceptance testing and RPA - robotframework/robotframework