AlanRobotics commited on
Commit
633682f
·
verified ·
1 Parent(s): 1e99876

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -31,10 +31,10 @@ openai.api_base = endpoint
31
 
32
  response = openai.ChatCompletion.create(
33
  model=model,
34
- temperature=0.2, # 0.0 is also allowed
35
  frequency_penalty=0.0,
36
  max_tokens=2048,
37
- top_p=0.9, # 0.1 is also allowed
38
  messages=[
39
  {"role": "user", "content": "Как мне обучить модель meta-llama/Llama-3.2-1B с помощью библиотеки transformers?"}
40
  ]
 
31
 
32
  response = openai.ChatCompletion.create(
33
  model=model,
34
+ temperature=0.0, # 0.2 is also allowed
35
  frequency_penalty=0.0,
36
  max_tokens=2048,
37
+ top_p=0.1, # 0.9 is also allowed
38
  messages=[
39
  {"role": "user", "content": "Как мне обучить модель meta-llama/Llama-3.2-1B с помощью библиотеки transformers?"}
40
  ]