Safetensors
GGUF
Turkish
llama
Llama-3
instruct
finetune
chatml
gpt4
synthetic data
distillation
function calling
json mode
axolotl
roleplaying
chat
Instructions to use tda45/TdAI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tda45/TdAI with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tda45/TdAI", filename="llama.cpp/models/ggml-vocab-aquila.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tda45/TdAI with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf tda45/TdAI # Run inference directly in the terminal: llama cli -hf tda45/TdAI
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tda45/TdAI # Run inference directly in the terminal: llama cli -hf tda45/TdAI
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf tda45/TdAI # Run inference directly in the terminal: ./llama-cli -hf tda45/TdAI
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf tda45/TdAI # Run inference directly in the terminal: ./build/bin/llama-cli -hf tda45/TdAI
Use Docker
docker model run hf.co/tda45/TdAI
- LM Studio
- Jan
- Ollama
How to use tda45/TdAI with Ollama:
ollama run hf.co/tda45/TdAI
- Unsloth Studio
How to use tda45/TdAI 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 tda45/TdAI 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 tda45/TdAI to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tda45/TdAI to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tda45/TdAI with Docker Model Runner:
docker model run hf.co/tda45/TdAI
- Lemonade
How to use tda45/TdAI with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tda45/TdAI
Run and chat with the model
lemonade run user.TdAI-{{QUANT_TAG}}List all available models
lemonade list
| from __future__ import annotations | |
| from typing import Callable, Iterable, TYPE_CHECKING | |
| if TYPE_CHECKING: | |
| from torch import Tensor | |
| from .base import MmprojModel, ModelBase, gguf | |
| from .llama import LlamaModel | |
| class JanusProModel(LlamaModel): | |
| model_arch = gguf.MODEL_ARCH.LLAMA # reuse Llama arch | |
| def filter_tensors(cls, item: tuple[str, Callable[[], Tensor]]) -> tuple[str, Callable[[], Tensor]] | None: | |
| name, gen = item | |
| # Skip vision, aligner, and generation tensors | |
| skip_prefixes = ( | |
| 'model.vision_model.', | |
| 'model.aligner.', | |
| 'model.vqmodel.', | |
| 'model.generation_embeddings.', | |
| 'model.generation_aligner.', | |
| 'model.generation_head.', | |
| ) | |
| if name.startswith(skip_prefixes): | |
| return None | |
| return super().filter_tensors(item) | |
| class JanusProVisionModel(MmprojModel): | |
| def __init__(self, *args, **kwargs): | |
| super().__init__(*args, **kwargs) | |
| assert self.hparams_vision is not None | |
| if "intermediate_size" not in self.hparams_vision: | |
| mlp_ratio = self.hparams_vision.get("mlp_ratio") | |
| hidden_size = self.hparams_vision.get("hidden_size") | |
| if mlp_ratio is not None and hidden_size is not None: | |
| self.hparams_vision["intermediate_size"] = int(round(hidden_size * mlp_ratio)) | |
| def set_gguf_parameters(self): | |
| super().set_gguf_parameters() | |
| assert self.hparams_vision is not None | |
| self.gguf_writer.add_clip_projector_type(gguf.VisionProjectorType.JANUS_PRO) | |
| self.gguf_writer.add_vision_attention_layernorm_eps(self.hparams_vision.get("layer_norm_eps", 1e-6)) | |
| hidden_act = str(self.hparams_vision.get("hidden_act", "")).lower() | |
| if hidden_act == "gelu": | |
| self.gguf_writer.add_vision_use_gelu(True) | |
| elif hidden_act == "silu": | |
| self.gguf_writer.add_vision_use_silu(True) | |
| def _map_aligner_tensor(self, data_torch: Tensor, name: str) -> Iterable[tuple[str, Tensor]]: | |
| """Map aligner tensors to projector format""" | |
| suffix = ".bias" if name.endswith(".bias") else ".weight" | |
| if name.startswith("model.aligner."): | |
| local_name = name[len("model.aligner."):] | |
| elif name.startswith("aligner."): | |
| local_name = name[len("aligner."):] | |
| else: | |
| raise ValueError(f"Unsupported Janus aligner prefix: {name}") | |
| if local_name.startswith("fc1."): | |
| mm_index = 0 | |
| elif local_name.startswith("hidden_layers."): | |
| parts = local_name.split(".", 2) | |
| if len(parts) < 3: | |
| raise ValueError(f"Unexpected Janus aligner tensor name: {name}") | |
| mm_index = int(parts[1]) + 1 | |
| else: | |
| raise ValueError(f"Unsupported Janus aligner tensor: {name}") | |
| tensor_name = self.format_tensor_name(gguf.MODEL_TENSOR.V_MMPROJ, mm_index, suffix=suffix) | |
| return [(tensor_name, data_torch)] | |
| def filter_tensors(cls, item: tuple[str, Callable[[], Tensor]]) -> tuple[str, Callable[[], Tensor]] | None: | |
| name, gen = item | |
| # Skip generation-related components | |
| skip_generation_prefixes = ( | |
| 'model.vqmodel.', | |
| 'vqmodel.', | |
| 'model.generation_embeddings.', | |
| 'generation_embeddings.', | |
| 'model.generation_aligner.', | |
| 'generation_aligner.', | |
| 'model.generation_head.', | |
| 'generation_head.', | |
| ) | |
| if name.startswith(skip_generation_prefixes): | |
| return None | |
| return super().filter_tensors(item) | |
| def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iterable[tuple[str, Tensor]]: | |
| # Handle aligner tensors | |
| if name.startswith(('model.aligner.', 'aligner.')): | |
| yield from self._map_aligner_tensor(data_torch, name) | |
| return | |
| # Handle vision tensors | |
| if name.startswith(('model.vision_model.', 'vision_model.')): | |
| yield from super().modify_tensors(data_torch, name, bid) | |
| return | |
| return | |