[package]
edition = "2021"
name = "ncps"
version = "0.1.1"
authors = ["Subhankar Chowdhury"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Neural Circuit Policies - Sparse RNNs inspired by C. elegans, implemented in Rust with Burn"
documentation = "https://docs.rs/ncps"
readme = "README.md"
keywords = [
"neural-network",
"rnn",
"deep-learning",
"burn",
"ncp",
]
categories = [
"science",
"algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/novatechai/ncps-rust"
[features]
candle = ["burn/candle"]
default = ["ndarray"]
ndarray = ["burn/ndarray"]
wgpu = ["burn/wgpu"]
[lib]
name = "ncps"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "ncp_wiring"
path = "examples/ncp_wiring.rs"
[[example]]
name = "save_load"
path = "examples/save_load.rs"
[[example]]
name = "training_demo"
path = "examples/training_demo.rs"
[[test]]
name = "activation_test"
path = "tests/activation_test.rs"
[[test]]
name = "cfc_cell_test"
path = "tests/cfc_cell_test.rs"
[[test]]
name = "ltc_cell_test"
path = "tests/ltc_cell_test.rs"
[[test]]
name = "wired_cfc_cell_test"
path = "tests/wired_cfc_cell_test.rs"
[[test]]
name = "wirings_test"
path = "tests/wirings_test.rs"
[dependencies.burn]
version = "0.16"
features = [
"std",
"dataset",
]
[dependencies.ndarray]
version = "0.15"
[dependencies.rand]
version = "0.8"
[dependencies.rand_distr]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.burn]
version = "0.16"
features = ["ndarray"]