-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 887 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (33 loc) · 887 Bytes
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
[package]
name = "mininn"
version = "0.1.5-dev"
edition = "2021"
license = "MIT"
description = "A minimalist deep learnig crate for rust."
authors = ["Paco Algar"]
readme = "README.md"
repository = "https://github.com/Pacatro/mininn"
documentation = "https://docs.rs/mininn"
keywords = [
"deep-learning",
"machine-learning",
"neural-networks",
"ndarray",
"hdf5",
]
[workspace]
members = [".", "mininn-derive"]
[dependencies]
# erased-serde = "0.4.5"
# hdf5 = { version = "0.8.1", feature = ["ndarray"] }
hdf5 = { package = "hdf5-metno", version = "0.9.4" }
ndarray = { version = "0.16.1", features = ["serde"] }
ndarray-rand = "0.15.0"
rmp-serde = "1.3.0"
serde = { version = "1.0.217", features = ["derive"] }
dyn-clone = "1.0.17"
mininn-derive = "0.1.0"
[dev-dependencies]
mnist = "0.6.0"
linfa-datasets = { version = "0.7.1", features = ["iris"] }
serial_test = "3.2.0"