Text Generation
Transformers
PyTorch
TensorBoard
Japanese
gpt2
japanese
lm
nlp
text-generation-inference
ESを書くAI
Japanese GPT-2 modelをファインチューニングしました ファインチューニングには、あらゆる分野から140,000件ほどのESを用いました。
webアプリ
http://www.eswrite.com
The model was trained using code from Github repository rinnakk/japanese-pretrained-models by rinna Co., Ltd.
- Downloads last month
- 32
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "huranokuma/es2"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "huranokuma/es2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'