candle logo

candle

Enrichment pending
huggingface/candle

Minimalist ML framework for Rust

GraphCanon updated today · GitHub synced today

21k
Stars
1.6k
Forks
796
Open issues
162
Watchers
5d
Last push
Rust Apache-2.0Created Jun 19, 2023

Trust & integrity

Full report
Maintenance
Very active (5d since push)
As of today · Source: github_public_v1
Provenance
Not a fork · Organization account
As of today · Source: github_public_v1
Security (OSV)
No lockfile
As of today · Source: none

Public GitHub metadata and optional OSV dependency scans. Signals, not a guarantee. Trust methodology.

Backing

Company and funding context for Hugging Face. Display-only - not part of trust score or organic ranking.

Company
Hugging Face·GitHub org profile·today
Employees
160·Wikidata (P1128 employees)·today
Funding
$235,000,000 (2023-08)·GraphCanon curated seed (public press)·today
Commercial model
OSS + managed cloud·GraphCanon curated seed·today

Overview

Minimalist ML framework for Rust

Capability facts

Languages
rust

Source: github.language · Jul 11, 2026

Categories

Graph entities

Tags

README

install target platform 'wasm32-unknown-unknown'

rustup target add wasm32-unknown-unknown

cd candle-wasm-examples/llama2-c wget https://huggingface.co/spaces/lmz/candle-llama2/resolve/main/model.bin wget https://huggingface.co/spaces/lmz/candle-llama2/resolve/main/tokenizer.json trunk serve --release --port 8081

And then head over to
[http://localhost:8081/](http://localhost:8081/).

---

# Install git and curl
RUN set -eux; \
  apt-get update; \
  apt-get install -y curl git ca-certificates;

---

# Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y