Update README.md
Browse files
README.md
CHANGED
@@ -60,7 +60,6 @@ llm = Llama(
|
|
60 |
verbose=False,
|
61 |
)
|
62 |
|
63 |
-
|
64 |
## Run inference
|
65 |
alpaca_prompt = """Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.
|
66 |
|
@@ -79,8 +78,6 @@ prompt = alpaca_prompt.format(
|
|
79 |
"",
|
80 |
)
|
81 |
|
82 |
-
print(prompt)
|
83 |
-
|
84 |
res = llm(prompt) # Res is a dictionary
|
85 |
|
86 |
## Unpack and the generated text from the LLM response dictionary and print it
|
|
|
60 |
verbose=False,
|
61 |
)
|
62 |
|
|
|
63 |
## Run inference
|
64 |
alpaca_prompt = """Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.
|
65 |
|
|
|
78 |
"",
|
79 |
)
|
80 |
|
|
|
|
|
81 |
res = llm(prompt) # Res is a dictionary
|
82 |
|
83 |
## Unpack and the generated text from the LLM response dictionary and print it
|