Instructions to use abhi11nav/F-Bloom_AD with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use abhi11nav/F-Bloom_AD with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="abhi11nav/F-Bloom_AD")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("abhi11nav/F-Bloom_AD") model = AutoModelForCausalLM.from_pretrained("abhi11nav/F-Bloom_AD") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use abhi11nav/F-Bloom_AD with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "abhi11nav/F-Bloom_AD" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "abhi11nav/F-Bloom_AD", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/abhi11nav/F-Bloom_AD
- SGLang
How to use abhi11nav/F-Bloom_AD 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 "abhi11nav/F-Bloom_AD" \ --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": "abhi11nav/F-Bloom_AD", "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 "abhi11nav/F-Bloom_AD" \ --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": "abhi11nav/F-Bloom_AD", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use abhi11nav/F-Bloom_AD with Docker Model Runner:
docker model run hf.co/abhi11nav/F-Bloom_AD
- Xet hash:
- 89eb970cb34fb9f0946324f5442f30c38578e207e73b0e3e0880bac3849f6a5d
- Size of remote file:
- 3.45 kB
- SHA256:
- 34182a231123b7e28eb808532432467dde60fdae5ca7d25a17cf1ebbb7c7a252
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.