Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 475 Bytes

model_params_examples.md

File metadata and controls

20 lines (13 loc) · 475 Bytes

Examples for model parameters

Titan Large

{"maxTokenCount": 512,"stopSequences": [],"temperature":0.1,"topP":0.9}

Jurassic Grande and Jumbo

{"maxTokens": 200,"temperature": 0.5,"topP": 0.5,"stopSequences": [],"countPenalty": { "scale": 0},"presencePenalty": {"scale": 0},"frequencyPenalty": {"scale": 0}}

Claude

{"max_tokens_to_sample": 300,"temperature": 0.5,"top_k": 250,"top_p": 1,  "stop_sequences": ["\n\nHuman:"]}