Neural Networks: Part(5)- Regularization-Article(2)
https://aamir07.medium.com/neural-networks-part-5-regularization-article-2-6f801a117421
https://aamir07.medium.com/neural-networks-part-5-regularization-article-2-6f801a117421
Medium
Neural Networks: Part(5)- Regularization-Article(2)
Fancy stuff, eh? We discussed batch normalization in our previous article and showed its implementation in python. Surprisingly, it is not…
MongoDB Atlas — A Free & User-Friendly Database + Interfacing With Python
https://zl-liu.medium.com/mongodb-atlas-a-free-user-friendly-database-interfacing-with-python-c8f0a66f3bf2
https://zl-liu.medium.com/mongodb-atlas-a-free-user-friendly-database-interfacing-with-python-c8f0a66f3bf2
Medium
MongoDB Atlas — A Free & User-Friendly Database + Interfacing With Python
If you’re looking for a free, easy-to-set-up database for your small project, MongoDB Atlas might be the database for you. This is not…
Understanding Object Instantiation and Metaclasses in Python
https://medium.com/@happymishra66/understanding-object-instantiation-and-metaclasses-in-python-af947259ecb4
https://medium.com/@happymishra66/understanding-object-instantiation-and-metaclasses-in-python-af947259ecb4
Medium
Understanding Object Instantiation and Metaclasses in Python
In this article, we will understand the object instantiation process followed by Python internally to create objects.
Learn Databricks Spark in 4 Mornings
https://medium.com/data-engineering-ramstkp/learn-databricks-spark-in-4-mornings-a85f7f265a77
https://medium.com/data-engineering-ramstkp/learn-databricks-spark-in-4-mornings-a85f7f265a77
Medium
Learn Databricks Spark in 4 Mornings
Is your love affair with data missing some “Spark”? — to become a Data Engineer, one of the prominent ingredient is Spark with Python…
Let’s build a stock price CLI with Python
https://code-jedi.medium.com/lets-build-a-stock-price-cli-with-python-d81d25cb066b
https://code-jedi.medium.com/lets-build-a-stock-price-cli-with-python-d81d25cb066b
Medium
Let’s build a stock price CLI with Python
Are you someone who can’t help checking the latest stock prices every 5 minutes? Thanks to Python, getting the latest stock prices can be…
How to analyse portfolio stock prices using Python
https://tracyrenee61.medium.com/how-to-analyse-portfolio-stock-prices-using-python-31aa99cad85
https://tracyrenee61.medium.com/how-to-analyse-portfolio-stock-prices-using-python-31aa99cad85
Medium
How to analyse portfolio stock prices using Python
In my last post I explained how to analyse individual stock prices using Python. In this post I intend to show how to put the individual…
Add Real-Time Notifications to your Django Project
https://moeedlodhi.medium.com/add-real-time-notifications-to-your-django-project-6ee2aed38597
https://moeedlodhi.medium.com/add-real-time-notifications-to-your-django-project-6ee2aed38597
Medium
Add Real-Time Notifications to your Django Project
Another look at Web Sockets.
Autoscale on AWS with EC2, Python, Flask, and Nginx Part3
https://dlmade.medium.com/autoscale-on-aws-with-ec2-python-flask-and-nginx-part3-9ab0abeeeea6
https://dlmade.medium.com/autoscale-on-aws-with-ec2-python-flask-and-nginx-part3-9ab0abeeeea6
Medium
Autoscale on AWS with EC2, Python, Flask, and Nginx Part3
Previously, we set up an EC2 server, accessed it via Putty, created a Flask server with waitress WSGI, also created ubuntu service, and…
Python —物件導向程式設計(Object-Oriented Programming, OOP)基礎教學
https://huntercheng1013.medium.com/python-%E7%89%A9%E4%BB%B6%E5%B0%8E%E5%90%91%E7%A8%8B%E5%BC%8F%E8%A8%AD%E8%A8%88-object-oriented-programming-oop-%E5%9F%BA%E7%A4%8E%E6%95%99%E5%AD%B8-7f8221cd7009
https://huntercheng1013.medium.com/python-%E7%89%A9%E4%BB%B6%E5%B0%8E%E5%90%91%E7%A8%8B%E5%BC%8F%E8%A8%AD%E8%A8%88-object-oriented-programming-oop-%E5%9F%BA%E7%A4%8E%E6%95%99%E5%AD%B8-7f8221cd7009
Medium
Python —物件導向程式設計(Object-Oriented Programming, OOP)基礎教學
物件導向的三大重點為封裝(Encapsulation)、繼承(Inheritance)、多型(Polymorphism),透過這三種方法,可使在寫程式時將內容模擬成現實的情況,換言之就是將其內容實體化,使之更容易理解。