tensorlogic-train 0.1.0-beta.1

Training loops, loss composition, and optimization schedules for TensorLogic
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "tensorlogic-train"
version = "0.1.0-beta.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Training loops, loss composition, and optimization schedules for TensorLogic"
homepage = "https://github.com/cool-japan/tensorlogic"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/cool-japan/tensorlogic"

[features]
default = []
structured-logging = [
    "tracing",
    "tracing-subscriber",
]

[lib]
name = "tensorlogic_train"
path = "src/lib.rs"

[[example]]
name = "01_basic_training"
path = "examples/01_basic_training.rs"

[[example]]
name = "02_classification_with_metrics"
path = "examples/02_classification_with_metrics.rs"

[[example]]
name = "03_callbacks_and_checkpointing"
path = "examples/03_callbacks_and_checkpointing.rs"

[[example]]
name = "04_logical_loss_training"
path = "examples/04_logical_loss_training.rs"

[[example]]
name = "05_profiling_and_monitoring"
path = "examples/05_profiling_and_monitoring.rs"

[[example]]
name = "06_curriculum_learning"
path = "examples/06_curriculum_learning.rs"

[[example]]
name = "07_transfer_learning"
path = "examples/07_transfer_learning.rs"

[[example]]
name = "08_hyperparameter_optimization"
path = "examples/08_hyperparameter_optimization.rs"

[[example]]
name = "09_cross_validation"
path = "examples/09_cross_validation.rs"

[[example]]
name = "10_ensemble_learning"
path = "examples/10_ensemble_learning.rs"

[[example]]
name = "11_advanced_integration"
path = "examples/11_advanced_integration.rs"

[[example]]
name = "12_knowledge_distillation"
path = "examples/12_knowledge_distillation.rs"

[[example]]
name = "13_label_smoothing"
path = "examples/13_label_smoothing.rs"

[[example]]
name = "14_multitask_learning"
path = "examples/14_multitask_learning.rs"

[[example]]
name = "15_training_recipes"
path = "examples/15_training_recipes.rs"

[[example]]
name = "16_structured_logging"
path = "examples/16_structured_logging.rs"

[[example]]
name = "17_few_shot_learning"
path = "examples/17_few_shot_learning.rs"

[[example]]
name = "18_meta_learning"
path = "examples/18_meta_learning.rs"

[[example]]
name = "19_sophia_optimizer"
path = "examples/19_sophia_optimizer.rs"

[[example]]
name = "20_model_soups"
path = "examples/20_model_soups.rs"

[[example]]
name = "21_bayesian_optimization"
path = "examples/21_bayesian_optimization.rs"

[[example]]
name = "22_gradient_centralization"
path = "examples/22_gradient_centralization.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[bench]]
name = "callback_overhead"
path = "benches/callback_overhead.rs"
harness = false

[[bench]]
name = "loss_performance"
path = "benches/loss_performance.rs"
harness = false

[[bench]]
name = "metrics_performance"
path = "benches/metrics_performance.rs"
harness = false

[[bench]]
name = "scheduler_performance"
path = "benches/scheduler_performance.rs"
harness = false

[[bench]]
name = "training_performance"
path = "benches/training_performance.rs"
harness = false

[dependencies.anyhow]
version = "1"

[dependencies.byteorder]
version = "1.5"

[dependencies.chrono]
version = "0.4"

[dependencies.crc32fast]
version = "1.5"

[dependencies.flate2]
version = "1.1"

[dependencies.hostname]
version = "0.4"

[dependencies.indexmap]
version = "2"
features = ["serde"]

[dependencies.log]
version = "0.4"

[dependencies.scirs2-autograd]
version = "0.1.3"

[dependencies.scirs2-core]
version = "0.1.3"

[dependencies.scirs2-optimize]
version = "0.1.3"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.tensorlogic-infer]
version = "0.1.0-beta.1"

[dependencies.tensorlogic-ir]
version = "0.1.0-beta.1"

[dependencies.tensorlogic-scirs-backend]
version = "0.1.0-beta.1"

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"
optional = true

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "fmt",
    "json",
]
optional = true

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.criterion]
version = "0.8"