Image Classification
ONNX
qmller commited on
Commit
2ad64d0
·
verified ·
1 Parent(s): 6f68d10

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -4
README.md CHANGED
@@ -13,7 +13,8 @@ Please see https://huggingface.co/docs/transformers/main/en/model_doc/regnet for
13
 
14
  # Contents
15
 
16
- - ONNX: regnet-x-1.6g.onnx
 
17
 
18
  # Lecture note reference
19
 
@@ -21,7 +22,8 @@ Please see https://huggingface.co/docs/transformers/main/en/model_doc/regnet for
21
 
22
  # Repository or links references
23
 
24
- - https://pytorch.org/vision/stable/models/generated/torchvision.models.regnet_x_1_6gf.html#torchvision.models.regnet_x_1_6gf
 
25
 
26
  BibTeX entry and citation info
27
  ```
@@ -36,12 +38,35 @@ BibTeX entry and citation info
36
  volume = {abs/2003.13678},
37
  year = {2020},
38
  url = {https://arxiv.org/abs/2003.13678},
39
- eprinttype = {arXiv},
40
  eprint = {2003.13678},
41
  timestamp = {Thu, 02 Apr 2020 15:34:08 +0200},
42
  biburl = {https://dblp.org/rec/journals/corr/abs-2003-13678.bib},
43
  bibsource = {dblp computer science bibliography, https://dblp.org}
44
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  ```
46
 
47
- Author: nbouberbachene@kalrayinc.com
 
 
 
13
 
14
  # Contents
15
 
16
+ - ONNX: regnet-x-1.6g.onnx
17
+ - Quantized ONNX (INT8): regnet-x-1.6g-q.onnx
18
 
19
  # Lecture note reference
20
 
 
22
 
23
  # Repository or links references
24
 
25
+ - [PyTorch | TorchVision](https://pytorch.org/vision/stable/models/generated/torchvision.models.regnet_x_1_6gf.html#torchvision.models.regnet_x_1_6gf)
26
+ - [Facebook-research (code)](https://github.com/facebookresearch/pycls)
27
 
28
  BibTeX entry and citation info
29
  ```
 
38
  volume = {abs/2003.13678},
39
  year = {2020},
40
  url = {https://arxiv.org/abs/2003.13678},
41
+ eprinttype = {arXiv},
42
  eprint = {2003.13678},
43
  timestamp = {Thu, 02 Apr 2020 15:34:08 +0200},
44
  biburl = {https://dblp.org/rec/journals/corr/abs-2003-13678.bib},
45
  bibsource = {dblp computer science bibliography, https://dblp.org}
46
  }
47
+
48
+ @InProceedings{Radosavovic2019,
49
+ title = {On Network Design Spaces for Visual Recognition},
50
+ author = {Ilija Radosavovic and Justin Johnson and Saining Xie Wan-Yen Lo and Piotr Doll{\'a}r},
51
+ booktitle = {ICCV},
52
+ year = {2019}
53
+ }
54
+
55
+ @InProceedings{Radosavovic2020,
56
+ title = {Designing Network Design Spaces},
57
+ author = {Ilija Radosavovic and Raj Prateek Kosaraju and Ross Girshick and Kaiming He and Piotr Doll{\'a}r},
58
+ booktitle = {CVPR},
59
+ year = {2020}
60
+ }
61
+
62
+ @InProceedings{Dollar2021,
63
+ title = {Fast and Accurate Model Scaling},
64
+ author = {Piotr Doll{\'a}r and Mannat Singh and Ross Girshick},
65
+ booktitle = {CVPR},
66
+ year = {2021}
67
+ }
68
  ```
69
 
70
+ Authors:
71
+ + qmuller@kalrayinc.com
72
+ + nbouberbachene@kalrayinc.com