Instructions to use model-attribution-challenge/fairseq-dense-125M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use model-attribution-challenge/fairseq-dense-125M with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="model-attribution-challenge/fairseq-dense-125M")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("model-attribution-challenge/fairseq-dense-125M") model = AutoModelForCausalLM.from_pretrained("model-attribution-challenge/fairseq-dense-125M", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use model-attribution-challenge/fairseq-dense-125M with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "model-attribution-challenge/fairseq-dense-125M" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "model-attribution-challenge/fairseq-dense-125M", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/model-attribution-challenge/fairseq-dense-125M
- SGLang
How to use model-attribution-challenge/fairseq-dense-125M 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 "model-attribution-challenge/fairseq-dense-125M" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "model-attribution-challenge/fairseq-dense-125M", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "model-attribution-challenge/fairseq-dense-125M" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "model-attribution-challenge/fairseq-dense-125M", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use model-attribution-challenge/fairseq-dense-125M with Docker Model Runner:
docker model run hf.co/model-attribution-challenge/fairseq-dense-125M
| { | |
| "num_layers": 12, | |
| "d_model": 768, | |
| "attention_heads": 12, | |
| "ffn_dim": 3072, | |
| "vocab_size": 50261, | |
| "bos_token_id": 50257, | |
| "eos_token_id": 50259, | |
| "activation_dropout": 0.0, | |
| "activation_function": "gelu", | |
| "architectures": [ | |
| "XGLMForCausalLM" | |
| ], | |
| "attention_dropout": 0.1, | |
| "dropout": 0.1, | |
| "init_std": 0.02, | |
| "layerdrop": 0.0, | |
| "max_position_embeddings": 2048, | |
| "model_type": "xglm", | |
| "tokenizer_class": "GPT2Tokenizer", | |
| "scale_embedding": true, | |
| "transformers_version": "4.17.0", | |
| "newlinemode": "s", | |
| "use_cache": true | |
| } | |