OPT-19M-ChatSalad
This is an experimental OPT-based model with 19 million parameters trained entirely from scratch as a datasetting practice. Thus, it should not be subject to the usual OPT license. You are free to use this model for any purpose. The model is small enough (under 40mb) that it should run at very fast speeds even entirely on CPU.
It is recommend to use this model with the KoboldAI software, with the following parameters:
- Temperature: 0.9
- Repetition Penalty: 1.1
- Repetition Penalty Slope: 0.7
- Repetition Penalty Range: 1024
- Top-P Sampling: 0.9
- Disable all other samplers
All feedback and comments can be directed to Concedo on the KoboldAI discord.
- Downloads last month
- 1,456
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "concedo/OPT-19M-ChatSalad"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "concedo/OPT-19M-ChatSalad", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'