SharpWoofer commited on
Commit
5689357
·
verified ·
1 Parent(s): a4cf172

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -39,7 +39,7 @@ This optimization resulted in a **~4x reduction in file size** and significant i
39
 
40
  **This is the model intended for direct deployment in mobile applications.**
41
 
42
- The original, full-precision (FP32) model can be found at the [main model repository here](https_URL_TO_YOUR_BASE_REPO_). <!--- IMPORTANT: Replace this URL -->
43
 
44
  ## Model Description
45
 
@@ -62,7 +62,7 @@ import numpy as np
62
  import scipy.special
63
 
64
  # Load the tokenizer
65
- tokenizer = AutoTokenizer.from_pretrained("your-hf-username/distilroberta-sms-spam-detector-onnx-quantized") # <-- Replace
66
  # Load the ONNX session
67
  session = ort.InferenceSession("path/to/your/model.quant.onnx")
68
 
 
39
 
40
  **This is the model intended for direct deployment in mobile applications.**
41
 
42
+ The original, full-precision (FP32) model can be found at the [main model repository here](https://huggingface.co/SharpWoofer/distilroberta-sms-spam-detector)
43
 
44
  ## Model Description
45
 
 
62
  import scipy.special
63
 
64
  # Load the tokenizer
65
+ tokenizer = AutoTokenizer.from_pretrained("SharpWoofer/distilroberta-sms-spam-detector-onnx-quantized")
66
  # Load the ONNX session
67
  session = ort.InferenceSession("path/to/your/model.quant.onnx")
68