-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (40 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "burn-efficient-kan"
version = "0.2.0"
edition = "2021"
license = "MIT"
authors = ["Vladislav Grechannik <[email protected]>"]
description = "An efficient pure-Rust implementation of Kolmogorov-Arnold Network (KAN)."
repository = "https://github.com/VlaDexa/burn-efficient-kan"
keywords = [
"machine-learning",
"deep-learning",
"neural-networks",
"kan",
"burn",
]
categories = ["science"]
[features]
default = []
netlib = ["ndarray-linalg/netlib"]
openblas = ["ndarray-linalg/openblas"]
intel-mkl = ["ndarray-linalg/intel-mkl"]
netlib-static = ["ndarray-linalg/netlib-static"]
netlib-system = ["ndarray-linalg/netlib-system"]
openblas-static = ["ndarray-linalg/openblas-static"]
openblas-system = ["ndarray-linalg/openblas-system"]
intel-mkl-static = ["ndarray-linalg/intel-mkl-static"]
intel-mkl-system = ["ndarray-linalg/intel-mkl-system"]
[dependencies]
ndarray = "0.15"
ndarray-linalg = "0.16"
burn = "0.14"
[dev-dependencies.burn]
version = "0.14"
features = ["wgpu", "train", "vision", "tui"]
[dev-dependencies.ndarray-linalg]
version = "0.16"
features = ["netlib-system"]
[[example]]
name = "mnist"
path = "examples/mnist/main.rs"