I have a project that a user can create a new Model for text classification, it is like a user can create many models for text classification. Then I created an ML Model in the project and I don't know how to implement a method for this that can generate a new NetModel zip file after a certain user trained the model.
To visualize
User
|
---- Create New Model
|
----- Train the Model and save a new NetModel zip file for User
Folder Project:
ML
| ---- Model.consumption.cs
| ---- Model.training.cs
| ---- ModelNet.zip (this is mine for testing predictions)
| ---- User1ModelNet.zip (expected output after training by User1)
| ---- User2ModelNet.Zip (expected output after training by User2)