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
| template <typename kernel_t> | |
| static void conv2d_transpose_kernel(const float * input, const kernel_t * kernel, float * output, | |
| const int in_w, const int in_h, | |
| const int out_w, const int out_h, | |
| const int kernel_w, const int kernel_h, | |
| const int stride, | |
| const int c_in, const int c_out, const int batches, | |
| const sycl::nd_item<3> & item_ct1) { | |
| const int global_idx = item_ct1.get_local_id(2) + | |
| item_ct1.get_group(2) * item_ct1.get_local_range(2); | |
| const int total_elements = out_w * out_h * c_out * batches; | |
| if (global_idx >= total_elements) { | |
| return; | |
| } | |
| const int out_x = global_idx % out_w; | |
| const int out_y = (global_idx / out_w) % out_h; | |
| const int c_idx = (global_idx / (out_w * out_h)) % c_out; | |
| const int n_idx = global_idx / (out_w * out_h * c_out); | |
| float acc = 0.0f; | |
| for (int c_in_idx = 0; c_in_idx < c_in; ++c_in_idx) { | |
| for (int kh = 0; kh < kernel_h; ++kh) { | |
| int in_y = out_y - kh; | |
| if (in_y < 0 || in_y % stride) { | |
| continue; | |
| } | |
| in_y /= stride; | |
| if (in_y >= in_h) { | |
| continue; | |
| } | |
| for (int kw = 0; kw < kernel_w; ++kw) { | |
| int in_x = out_x - kw; | |
| if (in_x < 0 || in_x % stride) { | |
| continue; | |
| } | |
| in_x /= stride; | |
| if (in_x >= in_w) { | |
| continue; | |
| } | |
| const int input_idx = (in_w * in_h * c_in) * n_idx + (in_w * in_h) * c_in_idx + in_w * in_y + in_x; | |
| const int kernel_idx = (kernel_h * kernel_w * c_out) * c_in_idx + (kernel_h * kernel_w) * c_idx + | |
| kernel_w * kh + kw; | |
| acc += input[input_idx] * ggml_sycl_cast<float>(kernel[kernel_idx]); | |
| } | |
| } | |
| } | |
| output[(out_w * out_h * c_out) * n_idx + (out_w * out_h) * c_idx + out_w * out_y + out_x] = acc; | |
| } | |
| template <typename kernel_t> | |
| static void conv2d_transpose_sycl(const float * input_d, const kernel_t * kernel_d, float * output_d, | |
| const int in_w, const int in_h, | |
| const int out_w, const int out_h, | |
| const int kernel_w, const int kernel_h, | |
| const int stride, | |
| const int c_in, const int c_out, const int batches, | |
| const queue_ptr & stream) { | |
| const int total = out_w * out_h * c_out * batches; | |
| const int num_blocks = (total + SYCL_CONV2D_TRANSPOSE_BLOCK_SIZE - 1) / SYCL_CONV2D_TRANSPOSE_BLOCK_SIZE; | |
| const sycl::range<3> block_dims(1, 1, SYCL_CONV2D_TRANSPOSE_BLOCK_SIZE); | |
| const sycl::range<3> block_nums(1, 1, num_blocks); | |
| stream->parallel_for(sycl::nd_range<3>(block_nums * block_dims, block_dims), | |
| [=](sycl::nd_item<3> item_ct1) { | |
| conv2d_transpose_kernel<kernel_t>(input_d, kernel_d, output_d, | |
| in_w, in_h, out_w, out_h, kernel_w, kernel_h, | |
| stride, c_in, c_out, batches, item_ct1); | |
| }); | |
| } | |
| // input: (W, H, C_in, N) | |
| // kernel: (W, H, C_out, C_in) | |
| // output: (W, H, C_out, N) | |
| void ggml_sycl_op_conv2d_transpose(ggml_backend_sycl_context & ctx, ggml_tensor * dst) { | |
| scope_op_debug_print scope_dbg_print(__func__, dst, /*num_src=*/2); | |
| const ggml_tensor * kernel = dst->src[0]; | |
| const ggml_tensor * input = dst->src[1]; | |
| GGML_ASSERT(kernel->type == GGML_TYPE_F16 || kernel->type == GGML_TYPE_F32); | |
| GGML_ASSERT(input->type == GGML_TYPE_F32 && dst->type == GGML_TYPE_F32); | |
| GGML_ASSERT(ggml_is_contiguous(input)); | |
| GGML_ASSERT(ggml_is_contiguous(kernel)); | |
| GGML_ASSERT(ggml_is_contiguous(dst)); | |
| const float * input_d = (const float *) input->data; | |
| float * output_d = (float *) dst->data; | |
| const void * kernel_d = kernel->data; | |
| const int input_w = input->ne[0]; | |
| const int input_h = input->ne[1]; | |
| const int channels_in = input->ne[2]; | |
| const int batches = input->ne[3]; | |
| const int output_w = dst->ne[0]; | |
| const int output_h = dst->ne[1]; | |
| const int channels_out = kernel->ne[2]; | |
| const int kernel_w = kernel->ne[0]; | |
| const int kernel_h = kernel->ne[1]; | |
| const int stride = dst->op_params[0]; | |
| GGML_ASSERT(channels_in == kernel->ne[3]); | |
| GGML_ASSERT(stride > 0); | |
| const queue_ptr stream = ctx.stream(); | |
| if (kernel->type == GGML_TYPE_F16) { | |
| conv2d_transpose_sycl<sycl::half>(input_d, (const sycl::half *) kernel_d, output_d, | |
| input_w, input_h, output_w, output_h, kernel_w, kernel_h, | |
| stride, channels_in, channels_out, batches, stream); | |
| } else { | |
| conv2d_transpose_sycl<float>(input_d, (const float *) kernel_d, output_d, | |
| input_w, input_h, output_w, output_h, kernel_w, kernel_h, | |
| stride, channels_in, channels_out, batches, stream); | |
| } | |
| } | |