Text Generation
Transformers
TensorBoard
Safetensors
t5la
Generated from Trainer
sft
trl
conversational
Instructions to use hrezaei/T5Laa-Large-WeightedLoss-InstructMixed with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use hrezaei/T5Laa-Large-WeightedLoss-InstructMixed with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="hrezaei/T5Laa-Large-WeightedLoss-InstructMixed") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForSeq2SeqLM model = AutoModelForSeq2SeqLM.from_pretrained("hrezaei/T5Laa-Large-WeightedLoss-InstructMixed", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use hrezaei/T5Laa-Large-WeightedLoss-InstructMixed with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "hrezaei/T5Laa-Large-WeightedLoss-InstructMixed" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "hrezaei/T5Laa-Large-WeightedLoss-InstructMixed", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/hrezaei/T5Laa-Large-WeightedLoss-InstructMixed
- SGLang
How to use hrezaei/T5Laa-Large-WeightedLoss-InstructMixed 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 "hrezaei/T5Laa-Large-WeightedLoss-InstructMixed" \ --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": "hrezaei/T5Laa-Large-WeightedLoss-InstructMixed", "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 "hrezaei/T5Laa-Large-WeightedLoss-InstructMixed" \ --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": "hrezaei/T5Laa-Large-WeightedLoss-InstructMixed", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use hrezaei/T5Laa-Large-WeightedLoss-InstructMixed with Docker Model Runner:
docker model run hf.co/hrezaei/T5Laa-Large-WeightedLoss-InstructMixed
Training in progress, epoch 0
Browse files- README.md +1 -1
- model.safetensors +1 -1
- runs/Oct27_10-12-29_gpu24.viking2.yor.alces.network/events.out.tfevents.1761567401.gpu24.viking2.yor.alces.network.2032935.0 +2 -2
- runs/Oct28_05-57-13_gpu24.viking2.yor.alces.network/events.out.tfevents.1761631728.gpu24.viking2.yor.alces.network.2261124.0 +3 -0
- runs/Oct28_06-18-23_gpu24.viking2.yor.alces.network/events.out.tfevents.1761632319.gpu24.viking2.yor.alces.network.2266176.0 +3 -0
- runs/Oct28_09-21-45_gpu21.viking2.yor.alces.network/events.out.tfevents.1761644481.gpu21.viking2.yor.alces.network.1701431.0 +3 -0
- runs/Oct28_11-16-16_gpu24.viking2.yor.alces.network/events.out.tfevents.1761652024.gpu24.viking2.yor.alces.network.2333807.0 +3 -0
- runs/Oct28_12-54-03_gpu24.viking2.yor.alces.network/events.out.tfevents.1761658092.gpu24.viking2.yor.alces.network.2349215.0 +3 -0
- training_args.bin +1 -1
README.md
CHANGED
|
@@ -27,7 +27,7 @@ print(output["generated_text"])
|
|
| 27 |
|
| 28 |
## Training procedure
|
| 29 |
|
| 30 |
-
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/uoy/InstructionTuning/runs/
|
| 31 |
|
| 32 |
|
| 33 |
This model was trained with SFT.
|
|
|
|
| 27 |
|
| 28 |
## Training procedure
|
| 29 |
|
| 30 |
+
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/uoy/InstructionTuning/runs/1f7n3ta3)
|
| 31 |
|
| 32 |
|
| 33 |
This model was trained with SFT.
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 3132668816
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:889441380e41bcd0bb9dc778446d74782a98dcd3c97aeef67fb1d93ea17b7b27
|
| 3 |
size 3132668816
|
runs/Oct27_10-12-29_gpu24.viking2.yor.alces.network/events.out.tfevents.1761567401.gpu24.viking2.yor.alces.network.2032935.0
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e175633e86efd1b6ce63d80ac3f30967db417a097ba907f116605c4afa3c3e4
|
| 3 |
+
size 406555
|
runs/Oct28_05-57-13_gpu24.viking2.yor.alces.network/events.out.tfevents.1761631728.gpu24.viking2.yor.alces.network.2261124.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf1407c23c372330d671b3510261f0ce7036179f97ae1db728f12a8b2359d632
|
| 3 |
+
size 5831
|
runs/Oct28_06-18-23_gpu24.viking2.yor.alces.network/events.out.tfevents.1761632319.gpu24.viking2.yor.alces.network.2266176.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe902286e15b0cd939acb5147978e919a620b0c1356de0e1145a0c437d74bbf1
|
| 3 |
+
size 5831
|
runs/Oct28_09-21-45_gpu21.viking2.yor.alces.network/events.out.tfevents.1761644481.gpu21.viking2.yor.alces.network.1701431.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08662faabaf925ab566c90e95817f8b27ae91556c7a2d2e331b54855ae6a66b4
|
| 3 |
+
size 5831
|
runs/Oct28_11-16-16_gpu24.viking2.yor.alces.network/events.out.tfevents.1761652024.gpu24.viking2.yor.alces.network.2333807.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be54fc124aaa7c23738b866f2c680fd905f0aec5932c890271771919202b095e
|
| 3 |
+
size 5831
|
runs/Oct28_12-54-03_gpu24.viking2.yor.alces.network/events.out.tfevents.1761658092.gpu24.viking2.yor.alces.network.2349215.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55ac72787b991aeede7fd0a8a2384d80b3ec26edbc59f26b9f84b2dfec19ad86
|
| 3 |
+
size 391251
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 6097
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15a6e97448493b25f1d14aa9d2611ec6d6dc673e6cb29ca9eef1c7af2880dc4b
|
| 3 |
size 6097
|