aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot.py b/bot.py
index 9455406..f746e26 100644
--- a/bot.py
+++ b/bot.py
@@ -71,7 +71,7 @@ if args.input is None:
# Run the input through the model
print(args.input)
-inputs = tokenizer.encode(args.input, return_tensors="pt")
+inputs = tokenizer.encode(args.input, return_tensors='pt')
output = tokenizer.decode(model.generate(
inputs, do_sample=True, max_length=150, top_p=0.9)[0])
print(output)