jtz18 commited on
Commit
f88ad62
·
1 Parent(s): c741da9

refactor for triton inference server

Browse files
README.md CHANGED
@@ -1,3 +1,6 @@
1
  ---
2
  license: openrail
3
  ---
 
 
 
 
1
  ---
2
  license: openrail
3
  ---
4
+ This model repository is meant to be imported into the Triton Inference Server container. The model repository contains the following models:
5
+ 1. Catnet
6
+ 2. DTD
catnet.onnx → catnet/1/model.onnx RENAMED
File without changes
catnet/config.pbtxt ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "catnet"
2
+ platform: "onnxruntime_onnx"
3
+ input [
4
+ {
5
+ name: "input_image"
6
+ data_type: TYPE_FP32
7
+ dims: [ 1, 24, -1, -1 ]
8
+ },
9
+ {
10
+ name: "input_label"
11
+ data_type: TYPE_INT64
12
+ dims: [ 1, -1, -1 ]
13
+ },
14
+ {
15
+ name: "input_qtable"
16
+ data_type: TYPE_FP32
17
+ dims: [ 1, 1, 8, 8 ]
18
+ }
19
+ ]
20
+ output [
21
+ {
22
+ name: "out_1"
23
+ data_type: TYPE_FP32
24
+ dims: [ 1 ]
25
+ },
26
+ {
27
+ name: "output_pred"
28
+ data_type: TYPE_FP32
29
+ dims: [ -1, 2, -1, -1 ]
30
+ }
31
+ ]
dtd.onnx → dtd/1/model.onnx RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a9f525b902a5f87735d2c3df4aa8245f1b10843c4d694491c6c8578d6db928e3
3
- size 286141885
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbfe1204d8b0acf34a37ca61d85af15b4c8ee761500ff52895e09bc84d3f1dbf
3
+ size 281497619
dtd/config.pbtxt ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "dtd"
2
+ platform: "onnxruntime_onnx"
3
+ input [
4
+ {
5
+ name: "input"
6
+ data_type: TYPE_FP32
7
+ dims: [ 1, 3, 512, 512 ]
8
+ },
9
+ {
10
+ name: "dct"
11
+ data_type: TYPE_INT32
12
+ dims: [ 1, 512, 512 ]
13
+ },
14
+ {
15
+ name: "qt"
16
+ data_type: TYPE_INT64
17
+ dims: [ 1, 1, 8, 8 ]
18
+ }
19
+ ]
20
+ output [
21
+ {
22
+ name: "output"
23
+ data_type: TYPE_FP32
24
+ dims: [ 1, 2, 512, 512 ]
25
+ }
26
+ ]