siddhantuniyal commited on
Commit
4a4ab11
1 Parent(s): 49d7604

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -99,7 +99,7 @@ issues = ["Misconduct" , "Negligence" , "Discrimination" , "Corruption" , "Viola
99
  "Unprofessional Conduct", "Response Time" , "Use of Firearms" , "Property Damage"]
100
 
101
 
102
- groupByType = pipeline("zero-shot-classification" , model="MoritzLaurer/deberta-v3-large-zeroshot-v1" , from_pt = True)
103
 
104
 
105
 
 
99
  "Unprofessional Conduct", "Response Time" , "Use of Firearms" , "Property Damage"]
100
 
101
 
102
+ groupByType = TFDebertaForSequenceClassification.from_pretrained(model_name, from_pt=True)
103
 
104
 
105