liamxdev commited on
Commit
9975c21
·
verified ·
1 Parent(s): 28b323b

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +6 -6
README.md CHANGED
@@ -52,8 +52,8 @@ The model returns traffic-sign codes such as `P-102`, `R-303`, and `W-224`. Viet
52
  | ----------------------- | --------- | -------------------------------------------- |
53
  | `vtsr.pt` | FP32 | PyTorch |
54
  | `vtsr_int8.onnx` | INT8 | ONNX Runtime, CPU, cross-platform deployment |
55
- | `vtsr_fp16.torchscript` | FP16 | TorchScript runtimes |
56
- | `vtsr_int8.engine` | INT8 | NVIDIA TensorRT and Jetson devices |
57
  | `label-mapping.json` | — | Traffic-sign code descriptions |
58
 
59
  > The original FP32 PyTorch checkpoint is intentionally omitted. This repository provides optimized deployment artifacts only.
@@ -74,8 +74,8 @@ from ultralytics import YOLO
74
  # Supported artifacts:
75
  # vtsr.pt
76
  # vtsr_int8.onnx
77
- # vtsr_fp16.torchscript
78
- # vtsr_int8.engine
79
 
80
  model = YOLO("vtsr_int8.onnx")
81
 
@@ -111,8 +111,8 @@ mapping_path = hf_hub_download(
111
  Other artifacts can be downloaded in the same way:
112
 
113
  * `vtsr.pt`
114
- * `vtsr_fp16.torchscript`
115
- * `vtsr_int8.engine`
116
 
117
  ## Benchmark
118
 
 
52
  | ----------------------- | --------- | -------------------------------------------- |
53
  | `vtsr.pt` | FP32 | PyTorch |
54
  | `vtsr_int8.onnx` | INT8 | ONNX Runtime, CPU, cross-platform deployment |
55
+ | `vtsr.torchscript` | FP16 | TorchScript runtimes |
56
+ | `vtsr.engine` | INT8 | NVIDIA TensorRT and Jetson devices |
57
  | `label-mapping.json` | — | Traffic-sign code descriptions |
58
 
59
  > The original FP32 PyTorch checkpoint is intentionally omitted. This repository provides optimized deployment artifacts only.
 
74
  # Supported artifacts:
75
  # vtsr.pt
76
  # vtsr_int8.onnx
77
+ # vtsr.torchscript
78
+ # vtsr.engine
79
 
80
  model = YOLO("vtsr_int8.onnx")
81
 
 
111
  Other artifacts can be downloaded in the same way:
112
 
113
  * `vtsr.pt`
114
+ * `vtsr.torchscript`
115
+ * `vtsr.engine`
116
 
117
  ## Benchmark
118