candle icon indicating copy to clipboard operation
candle copied to clipboard

Minimalist ML framework for Rust

Results 326 candle issues
Sort by recently updated
recently updated
newest added

I encountered an error while executing the example [quantized-phi](https://github.com/huggingface/candle/tree/main/candle-examples/examples/quantized-phi), which I slightly modified. However, I suspect the issue might not be with my modifications. The problem seems to be related...

This change aims to replace the pattern of each tensor provisioning a command buffer and encoder for each kernel operation that occurs, to a pattern where an encoder is provided...

``` cargo run --example quantized-phi --release -- --prompt "what is the best thing about rust?" --which phi-3 Compiling candle-examples v0.5.0 (/Users/kenk/Documents/Code/OpenSource/candle/candle-examples) Finished release [optimized] target(s) in 3.21s Running `target/release/examples/quantized-phi --prompt...

Hello all, Thanks for your great work here. We are implementing speculative decoding at mistral.rs, and were in the final stages of testing when we discovered some incredibly strange behavior....

i try to compile candle in windows. ```bash cargo run --example stable-diffusion --release --features=cuda,cudnn -- --prompt "a cosmonaut on a horse (hd, realistic, high-def)" ``` it failed on link ```bash...

When working with CPU tensors on Linux, transparent huge pages (THP) can provide a big speedup. For example, I see a 15% increase in speed for my code when I...

A common operation for me is filtering down a tensor to a subset of it based on some condition. For example, I may want to filter out all the rows...

Are there any plans to implement the AudioGen/MusicGen models from Facebook?

help wanted

This PR implements forward method for musicgen model: huggingface/candle#975

I try to use the following command to train the CNN model with mnist-training example. It works well when training linear and mlp model, but when I config it to...