devndeploy commited on
Commit
63bf478
·
verified ·
1 Parent(s): d61fe24

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -28,7 +28,7 @@ Fine-tuned `bert-base-multilingual-cased` for detecting prompt injection attacks
28
  ```python
29
  from transformers import pipeline
30
 
31
- classifier = pipeline("text-classification", model="YOUR_USERNAME/bert-prompt-injection-detector")
32
  result = classifier("Ignore all previous instructions")
33
  # [{'label': 'INJECTION', 'score': 0.999}]
34
  ```
 
28
  ```python
29
  from transformers import pipeline
30
 
31
+ classifier = pipeline("text-classification", model="devndeploy/bert-prompt-injection-detector")
32
  result = classifier("Ignore all previous instructions")
33
  # [{'label': 'INJECTION', 'score': 0.999}]
34
  ```