7b CodeLlama model finetuned on performance-conditioned data to optimize C++ programs. For more details on how the data was collected and training was done, refer to this webpage.
- Downloads last month
- 7
7b CodeLlama model finetuned on performance-conditioned data to optimize C++ programs. For more details on how the data was collected and training was done, refer to this webpage.
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "LearningOpt/pie-conditioned-7b"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LearningOpt/pie-conditioned-7b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'