ON THIS PAGE

  • Model Card Template
  • Additional guidance

Model Card Template

For a public HubAI model, Model Card should be structured as follows:
Markdown
1# Model Details
2
3## Model Description
4
5TODO
6
7- **Developed by:**: TODO
8- **Shared by:** TODO
9- **Model type:** TODO
10- **License:** TODO
11- **Resources for more information:**
12- TODO
13
14# Training Details
15
16## Training Data
17
18TODO
19
20# Testing Details
21
22## Metrics
23
24TODO
25
26# Technical Specifications
27
28## Input/Output Details
29
30- **Input**:
31- Name: TODO
32- Tensor: TODO
33- Info: TODO
34- **Output**:
35- Name: TODO
36- Tensor: TODO
37- Info: TODO
38
39## Model Architecture
40
41TODO
42
43## Throughput
44
45| Platform | Throughput [infs/sec] |
46|----------|-----------------------|
47| RVC2* | TODO |
48| RVC3 | TODO |
49| RVC4** | TODO |
50
51\* benchmarked with 2 threads
52\*\* benchmarked on DSP fixed point runtime with balanced mode
53
54## Quantization
55
56TODO
57
58# Utilization
59
60TODO

Additional guidance

Some models have very specific postprocessing steps that need to be taken to get a meaningful output. We recommend you expand on those under the Utilization section so other community members can use them as well. Preferably this would be a combination of code snippets and additional comments.If you already have a working example feel free to share it as a link either through Github gist, repository, or similar. This should be a minimal working example that shows passing data into the model through the DepthAI pipeline, parsing the raw output, and optionally some basic visualization (if relevant).We already have some existing parsers which you can use for this in the depthai-nodes library. If none of them are applicable and you made a new parsing node do not hesitate to make a pull request to the repository and help with thedevelopment.Important: To make usage of your example as straightforward as possible we strongly encourage you to state the DepthaAI version (and potentially depthai-nodes version) which you used during testing. This way others can easily replicate your environment.