How To Use A Trained Model In An Application Using TensorFlow
https://medium.com/@hammad.ai/how-to-use-a-trained-model-in-an-application-using-tensorflow-cd8b4024bb28
https://medium.com/@hammad.ai/how-to-use-a-trained-model-in-an-application-using-tensorflow-cd8b4024bb28
Medium
How To Use A Trained Model In An Application Using TensorFlow
I will show you how to use any model inside your custom application using TensorFlow in Python. And we will use that to make an app with…
Bubble Sort Implementation in Python
https://medium.com/@astronout/bubble-sort-implementation-in-python-e19356487ce6
https://medium.com/@astronout/bubble-sort-implementation-in-python-e19356487ce6
Medium
Bubble Sort Implementation in Python
Bubble sort is one of the simplest algorithms to start learning Data structures and algorithms. It’s a comparison-based algorithm in which…
6-Month Adventure: Mastering Machine Learning like a Pro!
https://medium.com/@gabrielpeter2090/6-month-adventure-mastering-machine-learning-like-a-pro-82d397ab9002
https://medium.com/@gabrielpeter2090/6-month-adventure-mastering-machine-learning-like-a-pro-82d397ab9002
Medium
6-Month Adventure: Mastering Machine Learning like a Pro!
Embark on an exhilarating journey through the realm of machine learning! Over the next 24 weeks, we'll navigate a carefully crafted…
Real-Time Face Detection and Blurring using Python and OpenCV
https://sayantansamanta098.medium.com/real-time-face-detection-and-blurring-using-python-and-opencv-a0ac39efade2
https://sayantansamanta098.medium.com/real-time-face-detection-and-blurring-using-python-and-opencv-a0ac39efade2
Medium
Real-Time Face Detection and Blurring using Python and OpenCV
Safeguarding Privacy and Unveiling the Magic of Computer Vision: A Step-by-Step Guide to Real-Time Face Detection and Blurring with Python…
My First Python Code: An Independent Programming Checker
https://medium.com/@tomek.kotecki/my-first-python-code-an-independent-programming-checker-a8553cd99e73
https://medium.com/@tomek.kotecki/my-first-python-code-an-independent-programming-checker-a8553cd99e73
Medium
My First Python Code: An Independent Programming Checker
Several months ago, I started learning Python with a focus on Data Science. In my day job, I’m a Statistical Programmer primarily using…
Top 10 Programming Languages in 2024
https://medium.com/@munshihuzaifah/top-10-programming-languages-in-2024-6e81bd3d6324
https://medium.com/@munshihuzaifah/top-10-programming-languages-in-2024-6e81bd3d6324
Medium
Top 10 Programming Languages in 2024
Concurrency in Python: Threads and Locks
https://medium.com/@mansha99/concurrency-in-python-threads-and-locks-8daed86e92e6
https://medium.com/@mansha99/concurrency-in-python-threads-and-locks-8daed86e92e6
Medium
Concurrency in Python: Threads and Locks
What is concurrency ?
Python Standard Library: Most Commonly Used Modules and their Components
https://medium.com/@tobias.talaj/decoding-python-which-standard-library-components-do-you-really-need-to-know-3ae3541bb2be
https://medium.com/@tobias.talaj/decoding-python-which-standard-library-components-do-you-really-need-to-know-3ae3541bb2be
Medium
Python Standard Library: Most Commonly Used Modules and their Components
Analysis of 70GB of Code from Open Python Repositories
Concealed APIs — Scrap fast, scrap easy, scrap well: Morningstar and Vanguard Examples.
https://medium.com/@franklin.schram/concealed-apis-scrap-fast-scrap-easy-scrap-well-morningstar-and-vanguard-examples-2542de69b661
https://medium.com/@franklin.schram/concealed-apis-scrap-fast-scrap-easy-scrap-well-morningstar-and-vanguard-examples-2542de69b661
Medium
Concealed APIs — Scrap fast, scrap easy, scrap well: Morningstar and Vanguard Examples.
When I started the ‘The Penniless Investor’ series, I wanted to showcase (among other things) how it is possible to find free high quality…
Exploring “The top Python testing frameworks” (Do you know these?)
https://medium.com/@AITutorMaster/exploring-the-top-python-testing-frameworks-do-you-know-these-62182a3becf9
https://medium.com/@AITutorMaster/exploring-the-top-python-testing-frameworks-do-you-know-these-62182a3becf9
Medium
Exploring “The top Python testing frameworks” (Do you know these?)
Make your Python code robust with these testing tools
I Met A Funny Issue With Flask’s FileStorage At Work Today
https://zlliu.medium.com/i-met-a-funny-issue-with-flasks-filestorage-at-work-today-a68d7eea1602
https://zlliu.medium.com/i-met-a-funny-issue-with-flasks-filestorage-at-work-today-a68d7eea1602
Medium
I Met A Funny Issue With Flask’s FileStorage At Work Today
# Take Note if you’re working with Python Flask
What is the difference between null=True and blank=True in Django?
https://medium.com/@techclaw/what-is-the-difference-between-null-true-and-blank-true-in-django-4bac836f478d
https://medium.com/@techclaw/what-is-the-difference-between-null-true-and-blank-true-in-django-4bac836f478d
Medium
What is the difference between null=True and blank=True in Django?
Introduction
The Dark Side of the Dataset: Methods for Dealing with Outliers
https://medium.com/@muratgulcan/the-dark-side-of-the-dataset-methods-for-dealing-with-outliers-6be7830d7f52
https://medium.com/@muratgulcan/the-dark-side-of-the-dataset-methods-for-dealing-with-outliers-6be7830d7f52
Medium
The Dark Side of the Dataset: Methods for Dealing with Outliers
When examining tables, datasets, and statistical distributions, outliers can be observed. Outliers are values that differ or stand out…
Hidden Gems in Python: Lesser-Known Tips & Tricks — Part 2
https://itnext.io/hidden-gems-in-python-lesser-known-tips-tricks-part-2-e458a0732257
https://itnext.io/hidden-gems-in-python-lesser-known-tips-tricks-part-2-e458a0732257
Medium
Hidden Gems in Python: Lesser-Known Tips & Tricks — Part 2
Welcome to the second article in this series. If you haven’t read Part 1, that is fine; they aren’t directly connected. But if you want to…
Python String join() Method: A Must-Know For Developers — CODEFATHER
https://codefather-tech.medium.com/python-string-join-method-a-must-know-for-developers-codefather-6c99d98fe988
https://codefather-tech.medium.com/python-string-join-method-a-must-know-for-developers-codefather-6c99d98fe988
Medium
Python String join() Method: A Must-Know For Developers — CODEFATHER
Are you trying to join the elements of a list, tuple, or set into a single string? The Python string join() method can help you with that.