shorecode commited on
Commit
20aef52
·
verified ·
1 Parent(s): 1081558

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ from huggingface_hub import login
11
  def fine_tune_model(model_name):
12
  #login(api_key.strip())
13
  # Load the model and tokenizer
14
- model = AutoModelForSeq2SeqLM.from_pretrained(model_name.strip(), num_labels=2)
15
 
16
  return 'WORKS!'#model
17
 
 
11
  def fine_tune_model(model_name):
12
  #login(api_key.strip())
13
  # Load the model and tokenizer
14
+ model = AutoModelForSeq2SeqLM.from_pretrained(model_name.strip())
15
 
16
  return 'WORKS!'#model
17