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...
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(
...