Yasbok commited on
Commit
d21564a
·
1 Parent(s): e4dd8b7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -51,12 +51,13 @@ def generate_prompt(instruction, input=None):
51
  ### تعليمات:
52
  {instruction}
53
 
 
54
  generation_config = GenerationConfig(
55
  temperature=0.2,
56
  top_p=0.75,
57
  num_beams=4,
58
  )
59
-
60
  def evaluate(instruction, input=None):
61
  prompt = generate_prompt(instruction, input)
62
  inputs = tokenizer(prompt, return_tensors="pt")
 
51
  ### تعليمات:
52
  {instruction}
53
 
54
+ # Inputs to instantiate the model
55
  generation_config = GenerationConfig(
56
  temperature=0.2,
57
  top_p=0.75,
58
  num_beams=4,
59
  )
60
+ # Evaluate the model
61
  def evaluate(instruction, input=None):
62
  prompt = generate_prompt(instruction, input)
63
  inputs = tokenizer(prompt, return_tensors="pt")