zayn1111 commited on
Commit
7bb33e1
·
verified ·
1 Parent(s): 782d7bf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -28,7 +28,7 @@ from transformers import AutoTokenizer, AutoModelForSequenceClassification
28
 
29
  device = "cuda"
30
 
31
- model_path = "./deberta-v3-dnli"
32
  tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False, model_max_length=512)
33
  model = AutoModelForSequenceClassification.from_pretrained(model_path).to(device)
34
 
 
28
 
29
  device = "cuda"
30
 
31
+ model_path = "zayn1111/deberta-v3-dnli"
32
  tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False, model_max_length=512)
33
  model = AutoModelForSequenceClassification.from_pretrained(model_path).to(device)
34