Update README.md
Browse files
README.md
CHANGED
@@ -31,7 +31,7 @@ ingredients = ", ".join([
|
|
31 |
"salt",
|
32 |
"chicken",
|
33 |
])
|
34 |
-
prompt = f"
|
35 |
tokens = chef_gpt.tokenizer(prompt, return_tensors="pt")
|
36 |
|
37 |
recipe = chef_gpt.generate(**tokens, max_length=124)
|
|
|
31 |
"salt",
|
32 |
"chicken",
|
33 |
])
|
34 |
+
prompt = f"ingredients>> {ingredients}; recipe>>"
|
35 |
tokens = chef_gpt.tokenizer(prompt, return_tensors="pt")
|
36 |
|
37 |
recipe = chef_gpt.generate(**tokens, max_length=124)
|