[package]
edition = "2024"
name = "nove_model"
version = "0.1.2"
authors = ["lokarex <lokarex@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An easy-to-use, lightweight deep learning library wrapped around Candle Tensor."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/lokarex/nove"
resolver = "2"
[lib]
name = "nove_model"
path = "src/lib.rs"
[[test]]
name = "test_conv2d"
path = "tests/test_conv2d.rs"
[[test]]
name = "test_derive_model"
path = "tests/test_derive_model.rs"
[[test]]
name = "test_dropout"
path = "tests/test_dropout.rs"
[[test]]
name = "test_linear"
path = "tests/test_linear.rs"
[[test]]
name = "test_relu"
path = "tests/test_relu.rs"
[dependencies.indexmap]
version = "2.13.0"
[dependencies.nove_macro]
version = "=0.1.2"
[dependencies.nove_tensor]
version = "=0.1.2"
[dependencies.rand]
version = "0.9.2"
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.tempfile]
version = "3.23.0"