Concepts
Model
- Model File(s) - Model file(s) or NN archive file(s) if model file(s) are packaged together with JSON metadata, and
- Model Card - Comprehensive description of the model.
- Track your model's evolution,
- Differentiate semantically distinct models,
- And reference the correct artifact via the appropriate identifier.
Note: DepthAI always attempts to retrieve the latest model available for a given identifier. For example, providing only a Variant ID will cause DepthAI to use the most recent Instance of the latest Version. If you want to lock your application to a specific model build, use the Instance ID instead.
Markdown
1├── Variant 1
2| ├── Version 1
3| | ├── Instance 1
4| | └── Instance 2
5| └── Version 2
6| ├── Instance 1
7| └── Instance 2
8├── Variant 2
9...Variant
Version
Instance
Model File(s)
.onnx), OpenVINO IR (.xml and .bin), or TensorFlow Lite (.tflite) or one of the RVC compiled formats.Model Card
Markdown
1# Model Details
2
3## Model Description
4... Description of the model functionality.
5
6- Developed By - Name of the model developer(s).
7- Shared By - Source of the model file/weights.
8- Model Type - General model type (e.g. computer vision).
9- License - Link to the license that governs the use/distribution of the model.
10- Resources - Link(s) to the model resouces (e.g. paper, sourecode, etc.)
11
12# Training Details
13
14## Training Data
15... Describe and link to the data used to train the model.
16
17# Testing Details
18
19## Metrics
20... Describe and report the metrics used to validate the model.
21
22# Technical Specifications
23
24## Input/Output Details
25... Name and a short description for each input/output tensor.
26
27## Model Architecture
28... Describe the model architecture (e.g. backbone, head, etc.).
29
30## Throughput
31... Report model throughput on RVC platform(s) for which the model is converted.
32
33## Quantization
34... Describe quantization data if quantization is used during conversion.
35
36# Utilization
37... Explain how to utilize the model in a DepthAI pipeline. Ideally provide or link to an example.