Text Generation
Transformers
Safetensors
Portuguese
internlm2
feature-extraction
conversational
custom_code
Eval Results (legacy)
Instructions to use recogna-nlp/internlm-chatbode-20b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use recogna-nlp/internlm-chatbode-20b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="recogna-nlp/internlm-chatbode-20b", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("recogna-nlp/internlm-chatbode-20b", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use recogna-nlp/internlm-chatbode-20b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "recogna-nlp/internlm-chatbode-20b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "recogna-nlp/internlm-chatbode-20b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/recogna-nlp/internlm-chatbode-20b
- SGLang
How to use recogna-nlp/internlm-chatbode-20b with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "recogna-nlp/internlm-chatbode-20b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "recogna-nlp/internlm-chatbode-20b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "recogna-nlp/internlm-chatbode-20b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "recogna-nlp/internlm-chatbode-20b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use recogna-nlp/internlm-chatbode-20b with Docker Model Runner:
docker model run hf.co/recogna-nlp/internlm-chatbode-20b
Update README.md
Browse files
README.md
CHANGED
|
@@ -163,7 +163,10 @@ pipeline_tag: text-generation
|
|
| 163 |
|
| 164 |
# internlm-chatbode-20b
|
| 165 |
|
| 166 |
-
<!--
|
|
|
|
|
|
|
|
|
|
| 167 |
|
| 168 |
O InternLm-ChatBode é um modelo de linguagem ajustado para o idioma português, desenvolvido a partir do modelo [InternLM2](https://huggingface.co/internlm/internlm2-chat-20b). Este modelo foi refinado através do processo de fine-tuning utilizando o dataset UltraAlpaca.
|
| 169 |
|
|
|
|
| 163 |
|
| 164 |
# internlm-chatbode-20b
|
| 165 |
|
| 166 |
+
<!--- PROJECT LOGO -->
|
| 167 |
+
<p align="center">
|
| 168 |
+
<img src="https://huggingface.co/recogna-nlp/internlm-chatbode-7b/resolve/main/_1add1e52-f428-4c7c-bab2-3c6958e029fa.jpeg" alt="ChatBode Logo" width="400" style="margin-left:'auto' margin-right:'auto' display:'block'"/>
|
| 169 |
+
</p>
|
| 170 |
|
| 171 |
O InternLm-ChatBode é um modelo de linguagem ajustado para o idioma português, desenvolvido a partir do modelo [InternLM2](https://huggingface.co/internlm/internlm2-chat-20b). Este modelo foi refinado através do processo de fine-tuning utilizando o dataset UltraAlpaca.
|
| 172 |
|