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
| namespace ov { | |
| namespace frontend { | |
| namespace ggml { | |
| std::unordered_map<std::string, CreatorFunction> get_supported_ops() { | |
| using namespace ov::op; | |
| return { | |
| {"GGML_OP_ADD", op::translate_1to1_match_2_inputs<v1::Add> }, | |
| {"GGML_OP_ADD1", op::translate_1to1_match_2_inputs<v1::Add> }, | |
| {"GGML_OP_ADD_ID", op::translate_add_id }, | |
| {"GGML_OP_CONCAT", op::translate_concat }, | |
| {"GGML_OP_CONT", op::translate_cont }, | |
| {"GGML_OP_DIV", op::translate_div }, | |
| {"GGML_OP_GET_ROWS", op::translate_get_rows }, | |
| {"GGML_OP_IM2COL", op::translate_im2col }, | |
| {"GGML_OP_MUL", op::translate_1to1_match_2_inputs<v1::Multiply>}, | |
| {"GGML_OP_MUL_MAT", op::translate_mulmat }, | |
| {"GGML_OP_MUL_MAT_ID", op::translate_mul_mat_id }, | |
| {"GGML_OP_PERMUTE", op::translate_permute }, | |
| {"GGML_OP_RESHAPE", op::translate_reshape }, | |
| {"GGML_OP_RMS_NORM", op::translate_rms_norm }, | |
| {"GGML_OP_NORM", op::translate_norm }, | |
| {"GGML_OP_L2_NORM", op::translate_l2_norm }, | |
| {"GGML_OP_SUM_ROWS", op::translate_sum_rows }, | |
| {"GGML_OP_ROPE", op::translate_rope }, | |
| {"GGML_OP_SCALE", op::translate_scale }, | |
| {"GGML_OP_SOFT_MAX", op::translate_soft_max }, | |
| {"GGML_OP_ARGSORT", op::translate_argsort }, | |
| {"GGML_OP_SUB", op::translate_1to1_match_2_inputs<v1::Subtract>}, | |
| {"GGML_OP_TRANSPOSE", op::translate_transpose }, | |
| {"GGML_UNARY_OP_GELU", op::translate_1to1_match_1_input<v7::Gelu> }, | |
| {"GGML_UNARY_OP_SILU", op::translate_unary_silu }, | |
| {"GGML_UNARY_OP_SOFTPLUS", op::translate_unary_softplus }, | |
| {"GGML_UNARY_OP_TANH", op::translate_1to1_match_1_input<v0::Tanh> }, | |
| {"GGML_OP_VIEW", op::translate_view }, | |
| {"GGML_GLU_OP_SWIGLU", op::translate_glu_swiglu }, | |
| {"GGML_GLU_OP_SWIGLU_OAI", op::translate_glu_swiglu_oai }, | |
| {"GGML_GLU_OP_GEGLU", op::translate_glu_geglu }, | |
| {"GGML_OP_SET_ROWS", op::translate_set_rows }, | |
| {"GGML_OP_CPY", op::translate_cpy }, | |
| {"GGML_OP_FLASH_ATTN_EXT", op::translate_flash_attn_ext }, | |
| {"GGML_OP_CLAMP", op::translate_clamp }, | |
| {"GGML_OP_PAD", op::translate_pad }, | |
| {"GGML_OP_SSM_CONV", op::translate_ssm_conv }, | |
| {"GGML_OP_GATED_DELTA_NET", op::translate_gated_delta_net }, | |
| {"GGML_OP_REPEAT", op::translate_repeat }, | |
| }; | |
| } | |
| } // namespace ggml | |
| } // namespace frontend | |
| } // namespace ov | |