Instructions to use AlgoAnalytics/Test_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AlgoAnalytics/Test_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="AlgoAnalytics/Test_model", trust_remote_code=True)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("AlgoAnalytics/Test_model", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("AlgoAnalytics/Test_model", trust_remote_code=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use AlgoAnalytics/Test_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AlgoAnalytics/Test_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AlgoAnalytics/Test_model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/AlgoAnalytics/Test_model
- SGLang
How to use AlgoAnalytics/Test_model 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 "AlgoAnalytics/Test_model" \ --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": "AlgoAnalytics/Test_model", "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 "AlgoAnalytics/Test_model" \ --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": "AlgoAnalytics/Test_model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use AlgoAnalytics/Test_model with Docker Model Runner:
docker model run hf.co/AlgoAnalytics/Test_model
Create modeling_phi3.py
Browse files- modeling_phi3.py +26 -0
modeling_phi3.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from torch import nn
|
| 3 |
+
from transformers.modeling_utils import PreTrainedModel
|
| 4 |
+
from transformers.modeling_outputs import BaseModelOutput
|
| 5 |
+
|
| 6 |
+
class Phi3ForCausalLM(PreTrainedModel):
|
| 7 |
+
config_class = Phi3Config
|
| 8 |
+
base_model_prefix = "phi3"
|
| 9 |
+
|
| 10 |
+
def __init__(self, config):
|
| 11 |
+
super().__init__(config)
|
| 12 |
+
self.hidden_size = config.hidden_size
|
| 13 |
+
self.num_hidden_layers = config.num_hidden_layers
|
| 14 |
+
self.num_attention_heads = config.num_attention_heads
|
| 15 |
+
|
| 16 |
+
self.embedding = nn.Embedding(config.vocab_size, config.hidden_size)
|
| 17 |
+
self.layers = nn.ModuleList([nn.TransformerEncoderLayer(config.hidden_size, config.num_attention_heads) for _ in range(config.num_hidden_layers)])
|
| 18 |
+
self.output_layer = nn.Linear(config.hidden_size, config.vocab_size)
|
| 19 |
+
|
| 20 |
+
def forward(self, input_ids):
|
| 21 |
+
embeddings = self.embedding(input_ids)
|
| 22 |
+
hidden_states = embeddings
|
| 23 |
+
for layer in self.layers:
|
| 24 |
+
hidden_states = layer(hidden_states)
|
| 25 |
+
logits = self.output_layer(hidden_states)
|
| 26 |
+
return BaseModelOutput(last_hidden_state=logits)
|