playatanu commited on
Commit
b232400
·
verified ·
1 Parent(s): 8157316

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # DETR-ResNet50
2
+
3
+ ## Overview
4
+ DETR-based object detection model using ResNet-50 backbone.
5
+
6
+ ## Runtime
7
+ | Key | Value |
8
+ |-----------|------|
9
+ | Backend | ART |
10
+ | Precision | float |
11
+
12
+ ## Inputs
13
+ | Name | Shape | Type |
14
+ |-------|--------------------|---------|
15
+ | image | [1, 3, 640, 640] | float32 |
16
+
17
+ ## Outputs
18
+ | Name | Shape | Type |
19
+ |---------|----------------|---------|
20
+ | boxes | [1, 100, 4] | float32 |
21
+ | logits | [1, 100] | float32 |
22
+ | classes | [1, 100] | int32 |