Text Generation
Transformers
Safetensors
lora
aya
tiny-aya
multilingual
code
legesher
tiny-aya-expedition
language-decoded
unsloth
arxiv:2603.11510
arxiv:2211.15533
arxiv:2510.09591
arxiv:1809.05053
arxiv:2308.16884
arxiv:2106.06937
arxiv:2210.03057
Instructions to use legesher/language-decoded-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use legesher/language-decoded-lora with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="legesher/language-decoded-lora")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("legesher/language-decoded-lora", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use legesher/language-decoded-lora with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "legesher/language-decoded-lora" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "legesher/language-decoded-lora", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/legesher/language-decoded-lora
- SGLang
How to use legesher/language-decoded-lora 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 "legesher/language-decoded-lora" \ --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": "legesher/language-decoded-lora", "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 "legesher/language-decoded-lora" \ --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": "legesher/language-decoded-lora", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Unsloth Studio
How to use legesher/language-decoded-lora 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 legesher/language-decoded-lora 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 legesher/language-decoded-lora to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for legesher/language-decoded-lora to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="legesher/language-decoded-lora", max_seq_length=2048, ) - Docker Model Runner
How to use legesher/language-decoded-lora with Docker Model Runner:
docker model run hf.co/legesher/language-decoded-lora
docs: fix CITATION.cff url to match repo, set correct type
#5
by madiedgar - opened
- CITATION.cff +60 -0
CITATION.cff
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
cff-version: 1.2.0
|
| 2 |
+
title: "Language Decoded: Investigating Language-Dependent vs. Structure-Dependent Reasoning Benefits of Code"
|
| 3 |
+
message: "If you use this work, please cite it using the metadata from this file."
|
| 4 |
+
type: software
|
| 5 |
+
authors:
|
| 6 |
+
- affiliation: Legesher
|
| 7 |
+
email: madi@legesher.com
|
| 8 |
+
family-names: Edgar
|
| 9 |
+
given-names: Madison
|
| 10 |
+
- affiliation: Grayhat
|
| 11 |
+
email: bazaz@grayhat.studio
|
| 12 |
+
family-names: Bazaz
|
| 13 |
+
given-names: Saad Ahmed
|
| 14 |
+
- affiliation: Cohere
|
| 15 |
+
email: tomsherborne@cohere.com
|
| 16 |
+
family-names: Sherborne
|
| 17 |
+
given-names: Tom
|
| 18 |
+
- affiliation: Independent
|
| 19 |
+
email: rashikshahjahan@protonmail.com
|
| 20 |
+
family-names: Shahjahan
|
| 21 |
+
given-names: Rashik
|
| 22 |
+
- affiliation: The Friedman Brain Institute
|
| 23 |
+
email: khojasteh.mirza@mssm.edu
|
| 24 |
+
family-names: Mirza
|
| 25 |
+
given-names: Khojasteh
|
| 26 |
+
- affiliation: Grayhat
|
| 27 |
+
email: sarah.jawaid@grayhat.studio
|
| 28 |
+
family-names: Jawaid
|
| 29 |
+
given-names: Sarah
|
| 30 |
+
- affiliation: Tkxel
|
| 31 |
+
email: rafaym30@gmail.com
|
| 32 |
+
family-names: Mustafa
|
| 33 |
+
given-names: Rafay
|
| 34 |
+
- affiliation: Grayhat
|
| 35 |
+
email: sohaib.bazaz@grayhat.studio
|
| 36 |
+
family-names: Bazaz
|
| 37 |
+
given-names: Sohaib Ahmed
|
| 38 |
+
repository: "https://huggingface.co/legesher"
|
| 39 |
+
url: "https://huggingface.co/legesher/language-decoded-lora"
|
| 40 |
+
license: Apache-2.0
|
| 41 |
+
date-released: "2026-03-12"
|
| 42 |
+
keywords:
|
| 43 |
+
- multilingual
|
| 44 |
+
- code
|
| 45 |
+
- transpilation
|
| 46 |
+
- language-models
|
| 47 |
+
- tiny-aya-expedition
|
| 48 |
+
- legesher
|
| 49 |
+
- tiny-aya
|
| 50 |
+
references:
|
| 51 |
+
- type: article
|
| 52 |
+
title: "To Code, or Not To Code? Exploring Impact of Code in Pre-training"
|
| 53 |
+
authors:
|
| 54 |
+
- family-names: Aryabumi
|
| 55 |
+
given-names: Viraat
|
| 56 |
+
- name: "et al."
|
| 57 |
+
year: 2024
|
| 58 |
+
identifiers:
|
| 59 |
+
- type: other
|
| 60 |
+
value: "arXiv:2408.10914"
|