Skip to content
Showing 1-27 of 27 items.
@renovate
Admin 28/04/2021 14:00
Introduction to Google Cloud AutoML Vision

With the rapid development of technology, a Data Scientist could archive their job like training ML models faster. The Word "AutoML"(also known as Automated machine learning) comes and now plays a crucial role in studying ML. Their work has been promoted to a new level compared with the traditional way of creating an ML model. The three big cloud platforms(GCP, Azure, AWS) now provided a variety of resources for Machine learning, especially AutoML. This blog will go through from...

Google Cloud Platform Advance Python Google Cloud Vision API
@renovate
Admin 04/11/2021 18:10
Export zip of multiple csv files in Django

Exporting files is a frequently happen feature where the user could get their data out. Today, I will try to export the data to a zip file within multiple CSV files. (Image by Tayeb MEZAHDIA from Pixabay) Application Models Assume we have the simplest libraries system where a book could belong to many libraries. The models like this class Library(models.Model): name = models.TextField() class Book(models.Model): title = models.TextField() libraries = models.ManyToManyField( ...

Django Advance Python Csv Export zip