Job platform interfaces
The Job object works as a link between the platform and the python training/testing application code - all provided by essentially two lines of code.
The platform provides user interface and meta data for a user to select datasets for a Job - the data is accessible through the job object.
The platform let's the user select the training job settings such as image resolution.
Models and reports support a number of different visualization types on the platform.
Brevetti AI data access API
Dataset browsing
Platform file access
Write and read files on cloud artifact directory
Sample integrity tracking?
Brevetti AI Job settings API
The platform let's the user select the training job settings such as image resolution.
The Job.Settings
and derived objects have the get_schema()
method that produces a settings schema to be added to the model during creation of a new model type for the Model Zoo.
The settings
attribute of a job instance will have the settings and objects specififed by the platform user.
Brevetti AI visualization API's
Pivot tables
Use pivot tables to get an overview over the contents of your job. Export pivot table information files to the pivot directory of the artifact dir.
Progress monitoring (Models only)
Add progress metrics to monitor your models while it is running, by adding the RemoteMonitor callback to your keras training loop or call it yourself in your training code.
HTML
Add your own custom html reports. All HTML files present in the root of the artifacts directory will be shown with the model and test reports.
Facets Dive
Use Facets Dive to explore your data interactively.
Use the facets implementation tool with the image datasets to generate your own facets charts, and put the files in the facets folder in your artifacts.
To use the built-in tools you need to supply a DataGenerator which outputs a 64x64 thumbnail image, and category.
Vega-Lite charts
Add Vega-Lite charts to your model page by calling upload_chart on the configuration object. Some different standard charts are available under brevettiai.interfaces.vegalite_charts
Last updated