Fix the code snippet to refer to the actual URL of the model

#9
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -30,7 +30,7 @@ It was fine-tuned on 14317 Reddit posts pulled from the (Reddit API) [https://pr
30
 
31
  ```python
32
  from transformers import pipeline
33
- classifier = pipeline("sentiment-analysis", model="michellejieli/NSFW_text_classification")
34
  classifier("I see you’ve set aside this special time to humiliate yourself in public.")
35
  ```
36
 
 
30
 
31
  ```python
32
  from transformers import pipeline
33
+ classifier = pipeline("sentiment-analysis", model="michellejieli/NSFW_text_classifier")
34
  classifier("I see you’ve set aside this special time to humiliate yourself in public.")
35
  ```
36