Instructions to use maicomputer/alpaca-native with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use maicomputer/alpaca-native with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="maicomputer/alpaca-native")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("maicomputer/alpaca-native") model = AutoModelForCausalLM.from_pretrained("maicomputer/alpaca-native") - Inference
- Local Apps Settings
- vLLM
How to use maicomputer/alpaca-native with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "maicomputer/alpaca-native" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "maicomputer/alpaca-native", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/maicomputer/alpaca-native
- SGLang
How to use maicomputer/alpaca-native 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 "maicomputer/alpaca-native" \ --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": "maicomputer/alpaca-native", "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 "maicomputer/alpaca-native" \ --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": "maicomputer/alpaca-native", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use maicomputer/alpaca-native with Docker Model Runner:
docker model run hf.co/maicomputer/alpaca-native
Add support for batched generation
#18
by jacobthebanana - opened
README.md
CHANGED
|
@@ -4,15 +4,43 @@ This is a replica of Alpaca by Stanford' tatsu
|
|
| 4 |
|
| 5 |
Trained using the original instructions with a minor modification in FSDP mode
|
| 6 |
|
| 7 |
-
#
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
Trained using the original instructions with a minor modification in FSDP mode
|
| 6 |
|
| 7 |
+
# Other versions:
|
| 8 |
+
13B: https://huggingface.co/chavinlo/alpaca-13b
|
| 9 |
+
|
| 10 |
+
13B -> GPT4 : https://huggingface.co/chavinlo/gpt4-x-alpaca
|
| 11 |
+
|
| 12 |
+
## Compute Used
|
| 13 |
+
Trained on 4xA100s for 6H
|
| 14 |
+
Donated by redmond.ai
|
| 15 |
+
|
| 16 |
+
NO LORA HAS BEEN USED, this is a natively-finetuned model, hence "alpaca-native"
|
| 17 |
+
|
| 18 |
+
If you are interested on more llama-based models, you can check out my profile or search for other models at https://huggingface.co/models?other=llama
|
| 19 |
+
|
| 20 |
+
This (MIGHT) be a quantized version of this model, but be careful: https://boards.4channel.org/g/thread/92173062#p92182396
|
| 21 |
+
|
| 22 |
+
CONFIGURATION (default except fsdp):
|
| 23 |
+
|
| 24 |
+
```shell
|
| 25 |
+
torchrun --nproc_per_node=4 --master_port=3045 train.py \
|
| 26 |
+
--model_name_or_path /workspace/llama-7b-hf \
|
| 27 |
+
--data_path ./alpaca_data.json \
|
| 28 |
+
--bf16 True \
|
| 29 |
+
--output_dir /workspace/output \
|
| 30 |
+
--num_train_epochs 3 \
|
| 31 |
+
--per_device_train_batch_size 4 \
|
| 32 |
+
--per_device_eval_batch_size 4 \
|
| 33 |
+
--gradient_accumulation_steps 8 \
|
| 34 |
+
--evaluation_strategy "no" \
|
| 35 |
+
--save_strategy "steps" \
|
| 36 |
+
--save_steps 200 \
|
| 37 |
+
--save_total_limit 1 \
|
| 38 |
+
--learning_rate 2e-5 \
|
| 39 |
+
--weight_decay 0. \
|
| 40 |
+
--warmup_ratio 0.03 \
|
| 41 |
+
--lr_scheduler_type "cosine" \
|
| 42 |
+
--logging_steps 1 \
|
| 43 |
+
--fsdp "shard_grad_op auto_wrap" \
|
| 44 |
+
--fsdp_transformer_layer_cls_to_wrap 'LLaMADecoderLayer' \
|
| 45 |
+
--tf32 True --report_to="wandb"
|
| 46 |
+
```
|