AlanRobotics commited on
Commit
1a17979
·
verified ·
1 Parent(s): 5389b31

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -41,10 +41,10 @@ openai.api_base = endpoint
41
 
42
  response = openai.ChatCompletion.create(
43
  model=model,
44
- temperature=0.0, # 0.2 is also allowed
45
  frequency_penalty=0.0,
46
  max_tokens=2048,
47
- top_p=0.1, # 0.9 is also allowed
48
  messages=[
49
  {"role": "user", "content": "Как мне обучить модель meta-llama/Llama-3.2-1B с помощью библиотеки transformers?"}
50
  ]
 
41
 
42
  response = openai.ChatCompletion.create(
43
  model=model,
44
+ temperature=0.4, # 0.0 is also allowed
45
  frequency_penalty=0.0,
46
  max_tokens=2048,
47
+ top_p=0.8, # 0.1 is also allowed
48
  messages=[
49
  {"role": "user", "content": "Как мне обучить модель meta-llama/Llama-3.2-1B с помощью библиотеки transformers?"}
50
  ]