bainskarman commited on
Commit
a3e9ce4
·
verified ·
1 Parent(s): 8498618

Update model.py

Browse files
Files changed (1) hide show
  1. model.py +1 -1
model.py CHANGED
@@ -25,7 +25,7 @@ def modelFeedback(ats_score, resume_data):
25
  print(f"Input length: {input_length}")
26
 
27
  # Generate response
28
- response = generator(input_prompt, max_new_tokens=150, num_return_sequences=1)
29
 
30
  # Check if response is not empty
31
  if response and len(response) > 0:
 
25
  print(f"Input length: {input_length}")
26
 
27
  # Generate response
28
+ response = generator(input_prompt, num_return_sequences=1)
29
 
30
  # Check if response is not empty
31
  if response and len(response) > 0: