Dragneel commited on
Commit
5f0a744
·
verified ·
1 Parent(s): 79a7804

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -0
README.md CHANGED
@@ -39,6 +39,7 @@ import torch
39
  id_to_label = {0: 'Billing Question', 1: 'Feature Request', 2: 'General Inquiry', 3: 'Technical Issue'}
40
 
41
  # Load model and tokenizer
 
42
  tokenizer = AutoTokenizer.from_pretrained("YOUR_MODEL_PATH")
43
  model = AutoModelForSequenceClassification.from_pretrained("YOUR_MODEL_PATH")
44
 
 
39
  id_to_label = {0: 'Billing Question', 1: 'Feature Request', 2: 'General Inquiry', 3: 'Technical Issue'}
40
 
41
  # Load model and tokenizer
42
+ YOUR_MODEL_PATH = 'Dragneel/Ticket-classification-model'
43
  tokenizer = AutoTokenizer.from_pretrained("YOUR_MODEL_PATH")
44
  model = AutoModelForSequenceClassification.from_pretrained("YOUR_MODEL_PATH")
45