43 lines
851 B
Plaintext
43 lines
851 B
Plaintext
[package]
|
|
name = "rtx-losses"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["RustyTorch++ Team"]
|
|
license = "Apache-2.0"
|
|
description = "Comprehensive loss functions for deep learning with automatic differentiation support"
|
|
|
|
[dependencies]
|
|
# Core tensor operations
|
|
# rtx-tensor = { path = "../rtx-tensor" } # Disabled due to compilation issues
|
|
# rtx-autograd = { path = "../rtx-autograd" } # Disabled due to compilation issues
|
|
|
|
# Core utilities
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
|
|
# Numeric computing
|
|
ndarray = "0.15"
|
|
|
|
# Random number generation
|
|
rand = "0.8"
|
|
|
|
[dev-dependencies]
|
|
# Testing framework
|
|
proptest = "1.4"
|
|
criterion = "0.5"
|
|
tokio = "1.35"
|
|
|
|
# Additional testing utilities
|
|
approx = "0.5"
|
|
rand = "0.8"
|
|
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[lib]
|
|
name = "rtx_losses"
|
|
path = "src/lib.rs"
|
|
|
|
# [workspace] - This crate is part of the main workspace |