Back to list
johnzfitch

burn-app-dev

by johnzfitch

Comprehensive Claude Code plugin for the Burn deep learning framework

1🍴 0📅 Jan 19, 2026

SKILL.md


name: burn-app-dev description: This skill should be used when the user asks about "Burn tensors", "tensor operations", "Module derive", "burn config", "autodiff", "backward pass", "gradient", "record serialization", "model weights", or core Burn application development patterns. version: 0.1.0

Burn Application Development

Core knowledge for building applications with the Burn deep learning framework.

Tensors

Burn tensors are the fundamental data structure. Three element types:

  • Tensor<B, D, Float> — Floating point operations
  • Tensor<B, D, Int> — Integer operations
  • Tensor<B, D, Bool> — Boolean masks

Key patterns:

// Creation
let tensor = Tensor::<B, 2>::zeros([batch, features], &device);
let tensor = Tensor::from_data([[1.0, 2.0], [3.0, 4.0]], &device);

// Operations (return new tensors, original unchanged)
let result = tensor.matmul(other);
let result = tensor.relu();

// Clone for multiple uses (cheap, reference counted)
let a = tensor.clone();
let b = tensor.clone();

Modules

Neural network layers use the Module derive macro:

#[derive(Module, Debug)]
pub struct Model<B: Backend> {
    conv: Conv2d<B>,
    pool: AdaptiveAvgPool2d,
    linear: Linear<B>,
    activation: Relu,
}

impl<B: Backend> Model<B> {
    pub fn forward(&self, x: Tensor<B, 4>) -> Tensor<B, 2> {
        let x = self.conv.forward(x);
        let x = self.activation.forward(x);
        let x = self.pool.forward(x);
        let x = x.flatten(1, 3);
        self.linear.forward(x)
    }
}

Config

Type-safe configuration with the Config derive:

#[derive(Config)]
pub struct ModelConfig {
    #[config(default = 64)]
    hidden_size: usize,
    #[config(default = 0.1)]
    dropout: f64,
}

// Usage
let config = ModelConfig::new();
let model = config.init::<B>(&device);

Autodiff

Automatic differentiation for training:

// AutodiffBackend wraps any backend
type MyBackend = Autodiff<Wgpu>;

// Forward pass tracks gradients
let output = model.forward(input);
let loss = output.cross_entropy(targets);

// Backward pass
let grads = loss.backward();
let grad_tensor = tensor.grad(&grads).unwrap();

Key difference from PyTorch: gradients are returned as a separate Gradients struct, not stored on tensors.

Records

Serialization for model weights:

// Save
let recorder = CompactRecorder::new();
model.save_file("model.bin", &recorder)?;

// Load
let model = config.init::<B>(&device);
let model = model.load_file("model.bin", &recorder, &device)?;

Additional Resources

Consult references/topic-map-app.md for:

  • Detailed tensor operation reference
  • Built-in module catalog (Conv, Pool, RNN, Transformer, Loss)
  • Advanced autodiff patterns
  • Record format options

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon