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
| // contiguous kernels | |
| template <typename T, int dim> | |
| static __global__ void __launch_bounds__(CUDA_CONCAT_BLOCK_SIZE) concat_cont(const T * x, | |
| const T * y, | |
| T * dst, | |
| int64_t ne00, | |
| int64_t ne01, | |
| int64_t ne02, | |
| int64_t ne0, | |
| int64_t ne1, | |
| int64_t ne2) { | |
| static_assert(dim >= 0 && dim <= 2, "dim must be in [0, 2]"); | |
| const int64_t n = ne0 * ne1 * ne2; | |
| ggml_cuda_pdl_sync(); | |
| for (int64_t i = (int64_t) blockIdx.x * blockDim.x + threadIdx.x; i < n; i += (int64_t) blockDim.x * gridDim.x) { | |
| if constexpr (dim == 0) { | |
| const int64_t row = i / ne0; | |
| const int64_t i0 = i - row * ne0; | |
| if (i0 < ne00) { | |
| dst[i] = x[row * ne00 + i0]; | |
| } else { | |
| dst[i] = y[row * (ne0 - ne00) + (i0 - ne00)]; | |
| } | |
| } else if constexpr (dim == 1) { | |
| const int64_t dst_plane = ne0 * ne1; | |
| const int64_t src0_plane = ne0 * ne01; | |
| const int64_t src1_plane = dst_plane - src0_plane; | |
| const int64_t i2 = i / dst_plane; | |
| const int64_t i01 = i - i2 * dst_plane; | |
| if (i01 < src0_plane) { | |
| dst[i] = x[i2 * src0_plane + i01]; | |
| } else { | |
| dst[i] = y[i2 * src1_plane + (i01 - src0_plane)]; | |
| } | |
| } else { | |
| const int64_t src0_size = ne0 * ne1 * ne02; | |
| if (i < src0_size) { | |
| dst[i] = x[i]; | |
| } else { | |
| dst[i] = y[i - src0_size]; | |
| } | |
| } | |
| } | |
| } | |
| template <typename T> | |
| static void concat_cont_cuda(const T * x, | |
| const T * y, | |
| T * dst, | |
| int64_t ne00, | |
| int64_t ne01, | |
| int64_t ne02, | |
| int64_t ne0, | |
| int64_t ne1, | |
| int64_t ne2, | |
| int dim, | |
| cudaStream_t stream) { | |
| const int64_t n = ne0 * ne1 * ne2; | |
| const int num_blocks = (n + CUDA_CONCAT_BLOCK_SIZE - 1) / CUDA_CONCAT_BLOCK_SIZE; | |
| if (dim == 0) { | |
| const ggml_cuda_kernel_launch_params launch_params = ggml_cuda_kernel_launch_params(num_blocks, CUDA_CONCAT_BLOCK_SIZE, 0, stream); | |
| ggml_cuda_kernel_launch(concat_cont<T, 0>, launch_params, x, y, dst, ne00, ne01, ne02, ne0, ne1, ne2); | |
| return; | |
| } | |
| if (dim == 1) { | |
| concat_cont<T, 1><<<num_blocks, CUDA_CONCAT_BLOCK_SIZE, 0, stream>>>(x, y, dst, ne00, ne01, ne02, ne0, ne1, ne2); | |
| return; | |
| } | |
| concat_cont<T, 2><<<num_blocks, CUDA_CONCAT_BLOCK_SIZE, 0, stream>>>(x, y, dst, ne00, ne01, ne02, ne0, ne1, ne2); | |
| } | |
| // non-contiguous kernel (slow) | |
| template <typename T, int dim> | |
| static __global__ void __launch_bounds__(CUDA_CONCAT_BLOCK_SIZE) | |
| concat_non_cont( | |
| const char * src0, | |
| const char * src1, | |
| char * dst, | |
| int64_t ne00, | |
| int64_t ne01, | |
| int64_t ne02, | |
| int64_t ne03, | |
| uint64_t nb00, | |
| uint64_t nb01, | |
| uint64_t nb02, | |
| uint64_t nb03, | |
| int64_t /*ne10*/, | |
| int64_t /*ne11*/, | |
| int64_t /*ne12*/, | |
| int64_t /*ne13*/, | |
| uint64_t nb10, | |
| uint64_t nb11, | |
| uint64_t nb12, | |
| uint64_t nb13, | |
| int64_t ne0, | |
| int64_t /*ne1*/, | |
| int64_t /*ne2*/, | |
| int64_t /*ne3*/, | |
| uint64_t nb0, | |
| uint64_t nb1, | |
| uint64_t nb2, | |
| uint64_t nb3) { | |
| static_assert(dim >= 0 && dim <= 3, "dim must be in [0, 3]"); | |
| const int64_t i3 = blockIdx.z; | |
| const int64_t i2 = blockIdx.y; | |
| const int64_t i1 = blockIdx.x; | |
| const T * x; | |
| for (int64_t i0 = threadIdx.x; i0 < ne0; i0 += blockDim.x) { | |
| if (i0 < ne00 && i1 < ne01 && i2 < ne02 && i3 < ne03) { | |
| x = (const T *)(src0 + i3*nb03 + i2*nb02 + i1*nb01 + i0*nb00); | |
| } else { | |
| if constexpr (dim == 0) { | |
| x = (const T *)(src1 + i3*nb13 + i2*nb12 + i1*nb11 + (i0 - ne00)*nb10); | |
| } else if constexpr (dim == 1) { | |
| x = (const T *)(src1 + i3*nb13 + i2*nb12 + (i1 - ne01)*nb11 + i0*nb10); | |
| } else if constexpr (dim == 2) { | |
| x = (const T *)(src1 + i3*nb13 + (i2 - ne02)*nb12 + i1*nb11 + i0*nb10); | |
| } else if constexpr (dim == 3) { | |
| x = (const T *)(src1 + (i3 - ne03)*nb13 + i2*nb12 + i1*nb11 + i0*nb10); | |
| } | |
| } | |
| T * y = (T *)(dst + i3*nb3 + i2*nb2 + i1*nb1 + i0*nb0); | |
| *y = *x; | |
| } | |
| } | |
| template <typename T> | |
| static void concat_cuda(const ggml_tensor * src0, const ggml_tensor * src1, ggml_tensor * dst, int dim, cudaStream_t stream) { | |
| if (ggml_is_contiguous(src0) && ggml_is_contiguous(src1)) { | |
| const T * src0_d = (const T *) src0->data; | |
| const T * src1_d = (const T *) src1->data; | |
| T * dst_d = (T *) dst->data; | |
| if (dim != 3) { | |
| for (int64_t i3 = 0; i3 < dst->ne[3]; i3++) { | |
| concat_cont_cuda( | |
| src0_d + i3*(src0->nb[3] / sizeof(T)), | |
| src1_d + i3*(src1->nb[3] / sizeof(T)), | |
| dst_d + i3*( dst->nb[3] / sizeof(T)), | |
| src0->ne[0], src0->ne[1], src0->ne[2], | |
| dst->ne[0], dst->ne[1], dst->ne[2], dim, stream); | |
| } | |
| } else { | |
| const size_t size0 = ggml_nbytes(src0); | |
| const size_t size1 = ggml_nbytes(src1); | |
| CUDA_CHECK(cudaMemcpyAsync((char *) dst->data, src0->data, size0, cudaMemcpyDeviceToDevice, stream)); | |
| CUDA_CHECK(cudaMemcpyAsync((char *) dst->data + size0, src1->data, size1, cudaMemcpyDeviceToDevice, stream)); | |
| } | |
| } else { | |
| dim3 grid_dim(dst->ne[1], dst->ne[2], dst->ne[3]); | |
| auto launch_kernel = [&](auto dim) { | |
| concat_non_cont<T, dim><<<grid_dim, CUDA_CONCAT_BLOCK_SIZE, 0, stream>>>( | |
| (const char *) src0->data, (const char *) src1->data, (char *) dst->data, | |
| src0->ne[0], src0->ne[1], src0->ne[2], src0->ne[3], | |
| src0->nb[0], src0->nb[1], src0->nb[2], src0->nb[3], | |
| src1->ne[0], src1->ne[1], src1->ne[2], src1->ne[3], | |
| src1->nb[0], src1->nb[1], src1->nb[2], src1->nb[3], | |
| dst->ne[0], dst->ne[1], dst->ne[2], dst->ne[3], | |
| dst->nb[0], dst->nb[1], dst->nb[2], dst->nb[3]); | |
| }; | |
| switch (dim) { | |
| case 0: | |
| launch_kernel(std::integral_constant<int, 0>{}); | |
| break; | |
| case 1: | |
| launch_kernel(std::integral_constant<int, 1>{}); | |
| break; | |
| case 2: | |
| launch_kernel(std::integral_constant<int, 2>{}); | |
| break; | |
| case 3: | |
| launch_kernel(std::integral_constant<int, 3>{}); | |
| break; | |
| default: | |
| GGML_ABORT("Invalid dim: %d", dim); | |
| break; | |
| } | |
| } | |
| } | |
| void ggml_cuda_op_concat(ggml_backend_cuda_context & ctx, ggml_tensor * dst) { | |
| const ggml_tensor * src0 = dst->src[0]; | |
| const ggml_tensor * src1 = dst->src[1]; | |
| cudaStream_t stream = ctx.stream(); | |
| const int32_t dim = ((int32_t *) dst->op_params)[0]; | |
| GGML_ASSERT(src0->type == src1->type); | |
| GGML_ASSERT(dst->type == src0->type); | |
| GGML_ASSERT(!ggml_is_quantized(src0->type)); | |
| GGML_ASSERT(ggml_blck_size(src0->type) == 1); | |
| switch (ggml_type_size(src0->type)) { | |
| case 1: | |
| concat_cuda<uint8_t>(src0, src1, dst, dim, stream); | |
| break; | |
| case 2: | |
| concat_cuda<uint16_t>(src0, src1, dst, dim, stream); | |
| break; | |
| case 4: | |
| concat_cuda<uint32_t>(src0, src1, dst, dim, stream); | |
| break; | |
| case 8: | |
| concat_cuda<uint64_t>(src0, src1, dst, dim, stream); | |
| break; | |
| default: | |
| GGML_ABORT("Unsupported type size: %zu", ggml_type_size(src0->type)); | |
| break; | |
| } | |
| } | |