Python Web API Development with JSONClasses
https://medium.com/@victor.teo/python-web-api-development-with-jsonclasses-67f618eaedc6
https://medium.com/@victor.teo/python-web-api-development-with-jsonclasses-67f618eaedc6
Medium
Python Web API Development with JSONClasses
Developing Web API hasn’t been so much easy at the day JSONClasses is out. JSONClasses is a declarative data pipeline and object graph…
Open-Source Audio-based Data Science Projects (With Tutorials)
https://medium.com/@theclickreader/open-source-audio-based-data-science-projects-with-tutorials-e7c72b79bd7b
https://medium.com/@theclickreader/open-source-audio-based-data-science-projects-with-tutorials-e7c72b79bd7b
Medium
Open-Source Audio-based Data Science Projects (With Tutorials)
If you are a student or a professional looking for various open-source audio-based data science projects, then, this article is here to…
Natural Language Processing (NLP) For Beginners Using NLTK
https://medium.com/@theclickreader/natural-language-processing-nlp-for-beginners-using-nltk-6d77719c8ddd
https://medium.com/@theclickreader/natural-language-processing-nlp-for-beginners-using-nltk-6d77719c8ddd
Medium
Natural Language Processing (NLP) For Beginners Using NLTK
Natural Language Processing (NLP) is an area of computer science and artificial intelligence concerned with interactions between computer…
Python Or R-programming For Data Science?
https://medium.com/@theclickreader/python-or-r-programming-for-data-science-825097ecc1f3
https://medium.com/@theclickreader/python-or-r-programming-for-data-science-825097ecc1f3
Medium
Python Or R-programming For Data Science?
The first question a lot of aspiring data science enthusiasts ask is whether they should go with Python or R-programming as their choice of…
What Is Python Pip: The Package Installer For Python
https://medium.com/@theclickreader/what-is-python-pip-the-package-installer-for-python-1561cd5e5699
https://medium.com/@theclickreader/what-is-python-pip-the-package-installer-for-python-1561cd5e5699
Medium
What Is Python Pip: The Package Installer For Python
pip is the standard package manager for Python that is used for installing libraries and packages that are not available in the Python…
Data-Science Series(Part-3)- Data Pre-processing with Data reduction techniques in python
https://meetsuvariya.medium.com/data-science-series-part-3-data-pre-processing-with-data-reduction-techniques-in-python-9bae4393f63e
https://meetsuvariya.medium.com/data-science-series-part-3-data-pre-processing-with-data-reduction-techniques-in-python-9bae4393f63e
Medium
Data-Science Series(Part-3)- Data Pre-processing with Data reduction techniques in python
In this post, we’ll look at what data reduction is and the many sorts of data reduction strategies.
How to secure your Python software supply chain
https://medium.com/artefact-engineering-and-data-science/how-to-secure-your-python-software-supply-chain-81490f6e4ff9
https://medium.com/artefact-engineering-and-data-science/how-to-secure-your-python-software-supply-chain-81490f6e4ff9
Medium
How to secure your Python software supply chain
A guide to being aware of the risks you are exposed to and a few tips to protect against them
Python筆記(10): Multi-Thread 多執行緒
https://jianjiesun.medium.com/python%E7%AD%86%E8%A8%98-10-multi-thread-%E5%A4%9A%E5%9F%B7%E8%A1%8C%E7%B7%92-7eb54c6f59ed
https://jianjiesun.medium.com/python%E7%AD%86%E8%A8%98-10-multi-thread-%E5%A4%9A%E5%9F%B7%E8%A1%8C%E7%B7%92-7eb54c6f59ed
Medium
Python筆記(10): Multi-Thread 多執行緒
現在所使用的CPU通常具有多核多執行緒的功能,而執行程式通常只會使用到一顆核心,但想要充分的發揮多核心硬體的運算能力,就需要使用多執行緒(Multi-Threading)或多行程 (Mult-Processing)等的平行運算技術
Neural Networks-Part(4): Gradient Descent
https://medium.com/@aamir199811/neural-networks-part-4-gradient-descent-i-8242e41783d
https://medium.com/@aamir199811/neural-networks-part-4-gradient-descent-i-8242e41783d
Medium
Neural Networks-Part(4): Gradient Descent
1. Introduction
YOLOv4 custom object detection with TensorFlow 2
https://rokasbalsys.medium.com/yolov4-custom-object-detection-with-tensorflow-2-bfb77b81dc9a
https://rokasbalsys.medium.com/yolov4-custom-object-detection-with-tensorflow-2-bfb77b81dc9a
Medium
YOLOv4 custom object detection with TensorFlow 2
To be a state-of-the-art model, YOLOv4 needs to be at the leading edge of deep learning. YOLOv4 authors have worked on techniques to improve the accuracy of the model while training and in…
How To Send Email In A Django Application
https://ridwanray.medium.com/how-to-send-email-in-a-django-application-b07faa3617ea
https://ridwanray.medium.com/how-to-send-email-in-a-django-application-b07faa3617ea
Medium
How To Send Email In A Django Application
At some points, most web applications need to send out mails to their users to improve interaction with clients. It could be an automated…
Python OR-Tools ile Sezonluk Envanter Planlama
https://alpersinbalc.medium.com/python-or-tools-ile-sezonluk-envanter-planlama-79b4c27bcf1e
https://alpersinbalc.medium.com/python-or-tools-ile-sezonluk-envanter-planlama-79b4c27bcf1e
Medium
Python OR-Tools ile Sezonluk Envanter Planlama
Neden Mevsimlik Envanter Var?
Manufacturing data analytics with Python: A hands-on example
https://towardsdatascience.com/manufacturing-data-analytics-with-python-a-hands-on-example-6de8817a24dc
https://towardsdatascience.com/manufacturing-data-analytics-with-python-a-hands-on-example-6de8817a24dc
Medium
Manufacturing data analytics with Python: A hands-on example
We show how we can handle a typical manufacturing data analytics problem of machine/tester drift and benchmark using Python tools.
6 ways to find number of lines from a CSV file in Python
https://medium.com/data-engineering-ramstkp/6-ways-to-find-number-of-lines-from-a-csv-file-in-python-b22eb63f7f7c
https://medium.com/data-engineering-ramstkp/6-ways-to-find-number-of-lines-from-a-csv-file-in-python-b22eb63f7f7c
Medium
6 ways to find number of lines from a CSV file in Python
There are multiple ways one can find number of records from CSV file using Python. This article describes 6 different ways and explores the…