-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Hugging Face - Candle | ||
|
||
> [https://github.com/huggingface/candle]() | ||
A minimalist ML framework for Rust with a focus on performance (including GPU support) and ease of use. | ||
|
||
### Examples | ||
|
||
These online demos run entirely in your browser: | ||
|
||
- [yolo](https://huggingface.co/spaces/lmz/candle-yolo): pose estimation and | ||
object recognition. | ||
- [whisper](https://huggingface.co/spaces/lmz/candle-whisper): text to speech. | ||
- [LLaMA2](https://huggingface.co/spaces/lmz/candle-llama2): text generation. | ||
- [LLaMA and LLaMA-v2](https://github.com/huggingface/candle/blob/main/candle-examples/examples/llama/): general LLM. | ||
- [Falcon](https://github.com/huggingface/candle/blob/main/candle-examples/examples/falcon/): general LLM. | ||
- [StarCoder](https://github.com/huggingface/candle/blob/main/candle-examples/examples/bigcode/): LLM specialized to code | ||
generation. | ||
- [Quantized LLaMA](https://github.com/huggingface/candle/blob/main/candle-examples/examples/quantized/): quantized version of | ||
the LLaMA model using the same quantization techniques as | ||
[llama.cpp](https://github.com/ggerganov/llama.cpp). | ||
|
||
<img src="https://github.com/huggingface/candle/raw/main/candle-examples/examples/quantized/assets/aoc.gif" width="600"> | ||
|
||
- [Stable Diffusion](https://github.com/huggingface/candle/blob/main/candle-examples/examples/stable-diffusion/): text to | ||
image generative model, support for the 1.5, 2.1, and SDXL 1.0 versions. | ||
|
||
<img src="https://github.com/huggingface/candle/raw/main/candle-examples/examples/stable-diffusion/assets/stable-diffusion-xl.jpg" width="200"> | ||
|
||
- [yolo-v3](https://github.com/huggingface/candle/blob/main/candle-examples/examples/yolo-v3/) and | ||
[yolo-v8](https://github.com/huggingface/candle/blob/main/candle-examples/examples/yolo-v8/): object detection and pose | ||
estimation models. | ||
|
||
<img src="https://github.com/huggingface/candle/raw/main/candle-examples/examples/yolo-v8/assets/bike.od.jpg" width="200"><img src="https://github.com/huggingface/candle/raw/main/candle-examples/examples/yolo-v8/assets/bike.pose.jpg" width="200"> | ||
|
||
- [segment-anything](https://github.com/huggingface/candle/blob/main/candle-examples/examples/segment-anything/): image | ||
segmentation model with prompt. | ||
|
||
<img src="https://github.com/huggingface/candle/raw/main/candle-examples/examples/segment-anything/assets/sam_merged.jpg" width="200"> | ||
|
||
- [Whisper](https://github.com/huggingface/candle/blob/main/candle-examples/examples/whisper/): speech recognition model. | ||
- [Bert](https://github.com/huggingface/candle/blob/main/candle-examples/examples/bert/): useful for sentence embeddings. | ||
- [DINOv2](https://github.com/huggingface/candle/blob/main/candle-examples/examples/dinov2/): computer vision model trained | ||
using self-supervision (can be used for imagenet classification, depth | ||
evaluation, segmentation). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters