Andre Henriques
479d7b6f39
All checks were successful
continuous-integration/drone/push Build is passing
30 lines
343 B
Plaintext
30 lines
343 B
Plaintext
User.shape: Person
|
|
Server.shape: Cloud
|
|
|
|
Proxy.shape: Hexagon
|
|
|
|
Api: "API Server" { }
|
|
Web: "Web Server" { }
|
|
Runner: "Model Runner" {
|
|
style.multiple: true
|
|
}
|
|
Train: "Model Trainer" {
|
|
style.multiple: true
|
|
}
|
|
|
|
database: "Database" {
|
|
shape: cylinder
|
|
}
|
|
|
|
User->Proxy
|
|
Server->Proxy
|
|
|
|
Proxy->Api
|
|
Proxy->Web
|
|
|
|
Api->Database
|
|
Api->Runner
|
|
Api->Train
|
|
|
|
|