yash161101 commited on
Commit
0df6375
·
1 Parent(s): 4d9c331

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ if st.button('Submit'):
16
  tokenizer = AutoTokenizer.from_pretrained("ml6team/gpt-2-medium-conditional-quote-generator")
17
  model = AutoModelForCausalLM.from_pretrained("ml6team/gpt-2-medium-conditional-quote-generator")
18
  inputs = tokenizer.encode(input_sequence, return_tensors='pt')
19
-
20
  # generate text until the output length (which includes the context length) reaches 50
21
  #greedy_output = GPT2.generate(input_ids, max_length = MAX_LEN)
22
  outputs = model(**inputs)
 
16
  tokenizer = AutoTokenizer.from_pretrained("ml6team/gpt-2-medium-conditional-quote-generator")
17
  model = AutoModelForCausalLM.from_pretrained("ml6team/gpt-2-medium-conditional-quote-generator")
18
  inputs = tokenizer.encode(input_sequence, return_tensors='pt')
19
+ inputs = input.map()
20
  # generate text until the output length (which includes the context length) reaches 50
21
  #greedy_output = GPT2.generate(input_ids, max_length = MAX_LEN)
22
  outputs = model(**inputs)