Text Generation
Transformers
PyTorch
English
llama
text-generation-inference
unsloth
trl
sft
conversational
Instructions to use codito/Phi-3.5-mini-instruct-func-test1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use codito/Phi-3.5-mini-instruct-func-test1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="codito/Phi-3.5-mini-instruct-func-test1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("codito/Phi-3.5-mini-instruct-func-test1") model = AutoModelForCausalLM.from_pretrained("codito/Phi-3.5-mini-instruct-func-test1") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use codito/Phi-3.5-mini-instruct-func-test1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "codito/Phi-3.5-mini-instruct-func-test1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "codito/Phi-3.5-mini-instruct-func-test1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/codito/Phi-3.5-mini-instruct-func-test1
- SGLang
How to use codito/Phi-3.5-mini-instruct-func-test1 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 "codito/Phi-3.5-mini-instruct-func-test1" \ --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": "codito/Phi-3.5-mini-instruct-func-test1", "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 "codito/Phi-3.5-mini-instruct-func-test1" \ --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": "codito/Phi-3.5-mini-instruct-func-test1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio new
How to use codito/Phi-3.5-mini-instruct-func-test1 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for codito/Phi-3.5-mini-instruct-func-test1 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for codito/Phi-3.5-mini-instruct-func-test1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for codito/Phi-3.5-mini-instruct-func-test1 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="codito/Phi-3.5-mini-instruct-func-test1", max_seq_length=2048, ) - Docker Model Runner
How to use codito/Phi-3.5-mini-instruct-func-test1 with Docker Model Runner:
docker model run hf.co/codito/Phi-3.5-mini-instruct-func-test1
| { | |
| "_name_or_path": "unsloth/phi-3.5-mini-instruct-bnb-4bit", | |
| "architectures": [ | |
| "LlamaForCausalLM" | |
| ], | |
| "attention_bias": false, | |
| "attention_dropout": 0.0, | |
| "bos_token_id": 1, | |
| "eos_token_id": 32000, | |
| "hidden_act": "silu", | |
| "hidden_size": 3072, | |
| "initializer_range": 0.02, | |
| "intermediate_size": 8192, | |
| "max_position_embeddings": 131072, | |
| "mlp_bias": false, | |
| "model_type": "llama", | |
| "num_attention_heads": 32, | |
| "num_hidden_layers": 32, | |
| "num_key_value_heads": 32, | |
| "original_max_position_embeddings": 4096, | |
| "pad_token_id": 32000, | |
| "pretraining_tp": 1, | |
| "rms_norm_eps": 1e-05, | |
| "rope_scaling": { | |
| "attention_factor": 32.0, | |
| "factor": 32.0, | |
| "long_factor": [ | |
| 1.0800000429153442, | |
| 1.1100000143051147, | |
| 1.1399999856948853, | |
| 1.340000033378601, | |
| 1.5899999141693115, | |
| 1.600000023841858, | |
| 1.6200000047683716, | |
| 2.620000123977661, | |
| 3.2300000190734863, | |
| 3.2300000190734863, | |
| 4.789999961853027, | |
| 7.400000095367432, | |
| 7.700000286102295, | |
| 9.09000015258789, | |
| 12.199999809265137, | |
| 17.670000076293945, | |
| 24.46000099182129, | |
| 28.57000160217285, | |
| 30.420001983642578, | |
| 30.840002059936523, | |
| 32.590003967285156, | |
| 32.93000411987305, | |
| 42.320003509521484, | |
| 44.96000289916992, | |
| 50.340003967285156, | |
| 50.45000457763672, | |
| 57.55000305175781, | |
| 57.93000411987305, | |
| 58.21000289916992, | |
| 60.1400032043457, | |
| 62.61000442504883, | |
| 62.62000274658203, | |
| 62.71000289916992, | |
| 63.1400032043457, | |
| 63.1400032043457, | |
| 63.77000427246094, | |
| 63.93000411987305, | |
| 63.96000289916992, | |
| 63.970001220703125, | |
| 64.02999877929688, | |
| 64.06999969482422, | |
| 64.08000183105469, | |
| 64.12000274658203, | |
| 64.41000366210938, | |
| 64.4800033569336, | |
| 64.51000213623047, | |
| 64.52999877929688, | |
| 64.83999633789062 | |
| ], | |
| "rope_type": "longrope", | |
| "short_factor": [ | |
| 1.0, | |
| 1.0199999809265137, | |
| 1.0299999713897705, | |
| 1.0299999713897705, | |
| 1.0499999523162842, | |
| 1.0499999523162842, | |
| 1.0499999523162842, | |
| 1.0499999523162842, | |
| 1.0499999523162842, | |
| 1.0699999332427979, | |
| 1.0999999046325684, | |
| 1.1099998950958252, | |
| 1.1599998474121094, | |
| 1.1599998474121094, | |
| 1.1699998378753662, | |
| 1.2899998426437378, | |
| 1.339999794960022, | |
| 1.679999828338623, | |
| 1.7899998426437378, | |
| 1.8199998140335083, | |
| 1.8499997854232788, | |
| 1.8799997568130493, | |
| 1.9099997282028198, | |
| 1.9399996995925903, | |
| 1.9899996519088745, | |
| 2.0199997425079346, | |
| 2.0199997425079346, | |
| 2.0199997425079346, | |
| 2.0199997425079346, | |
| 2.0199997425079346, | |
| 2.0199997425079346, | |
| 2.0299997329711914, | |
| 2.0299997329711914, | |
| 2.0299997329711914, | |
| 2.0299997329711914, | |
| 2.0299997329711914, | |
| 2.0299997329711914, | |
| 2.0299997329711914, | |
| 2.0299997329711914, | |
| 2.0299997329711914, | |
| 2.0799996852874756, | |
| 2.0899996757507324, | |
| 2.189999580383301, | |
| 2.2199995517730713, | |
| 2.5899994373321533, | |
| 2.729999542236328, | |
| 2.749999523162842, | |
| 2.8399994373321533 | |
| ] | |
| }, | |
| "rope_theta": 10000.0, | |
| "tie_word_embeddings": false, | |
| "torch_dtype": "float16", | |
| "transformers_version": "4.44.0", | |
| "unsloth_version": "2024.9.post1", | |
| "use_cache": true, | |
| "vocab_size": 32064 | |
| } | |