Svngoku commited on
Commit
6c0660f
1 Parent(s): 39b30cb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -3
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