2024-03-13 22:26:48 +00:00
|
|
|
direction: right
|
|
|
|
|
|
|
|
User: "Authenticated User" {
|
|
|
|
shape: Person
|
|
|
|
}
|
|
|
|
|
|
|
|
ModelCreation: "Model Creation"
|
|
|
|
ImageUpload: "Image Upload"
|
|
|
|
TrainModel: "Train Model"
|
2024-03-14 17:23:49 +00:00
|
|
|
EvaluateModel: "Infer an Image"
|
2024-03-13 22:26:48 +00:00
|
|
|
|
|
|
|
User->ModelCreation: "User creates the model"
|
|
|
|
|
|
|
|
ModelCreation->ImageUpload
|
|
|
|
User->ImageUpload: "User uploads Images"
|
|
|
|
|
|
|
|
ImageUpload->TrainModel
|
|
|
|
User->TrainModel: "Requests the training of the model"
|
|
|
|
TrainModel->TrainModel: Failed to train
|
|
|
|
|
|
|
|
TrainModel->EvaluateModel
|
|
|
|
User->EvaluateModel: "Request class for an image"
|
|
|
|
|