shoni commited on
Commit
53a9d53
1 Parent(s): b9b64de

readme note

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -64,7 +64,7 @@ The dataset used for training and evaluation should follow this structure:
64
 
65
  ### 1. Clone the Repository
66
  ```bash
67
- git clone https://huggingface.co/your-username/comic-sans-detector
68
  cd comic-sans-detector
69
  ```
70
 
@@ -81,11 +81,11 @@ If your dataset images are not in a consistent format, use `image-format-general
81
 
82
  The fine-tuned model can be deployed directly via the Hugging Face Inference API. Once uploaded, the model can be used to classify whether an image contains Comic Sans font.
83
 
84
- Example API usage (replace `your-username/comic-sans-detector` with your repository name):
85
  ```python
86
  from transformers import pipeline
87
 
88
- classifier = pipeline("image-classification", model="your-username/comic-sans-detector")
89
  result = classifier("path/to/image.jpg")
90
  print(result)
91
  ```
 
64
 
65
  ### 1. Clone the Repository
66
  ```bash
67
+ git clone https://huggingface.co/shoni/comic-sans-detector
68
  cd comic-sans-detector
69
  ```
70
 
 
81
 
82
  The fine-tuned model can be deployed directly via the Hugging Face Inference API. Once uploaded, the model can be used to classify whether an image contains Comic Sans font.
83
 
84
+ Example API usage (replace `shoni/comic-sans-detector` with your repository name):
85
  ```python
86
  from transformers import pipeline
87
 
88
+ classifier = pipeline("image-classification", model="shoni/comic-sans-detector")
89
  result = classifier("path/to/image.jpg")
90
  print(result)
91
  ```