[package]
edition = "2021"
name = "pictor-eval"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Model evaluation harness for Pictor — perplexity, MMLU, benchmarks"
documentation = "https://docs.rs/pictor-eval"
readme = "README.md"
keywords = [
"evaluation",
"llm",
"benchmarks",
"perplexity",
"mmlu",
]
categories = [
"science",
"algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/vbasky/pictor"
[lib]
name = "pictor_eval"
path = "src/lib.rs"
[[test]]
name = "arc_tests"
path = "tests/arc_tests.rs"
[[test]]
name = "bleu_tests"
path = "tests/bleu_tests.rs"
[[test]]
name = "boolq_tests"
path = "tests/boolq_tests.rs"
[[test]]
name = "bootstrap_tests"
path = "tests/bootstrap_tests.rs"
[[test]]
name = "calibration_tests"
path = "tests/calibration_tests.rs"
[[test]]
name = "chrf_tests"
path = "tests/chrf_tests.rs"
[[test]]
name = "gsm8k_tests"
path = "tests/gsm8k_tests.rs"
[[test]]
name = "hellaswag_tests"
path = "tests/hellaswag_tests.rs"
[[test]]
name = "meteor_tests"
path = "tests/meteor_tests.rs"
[[test]]
name = "mmlu_tests"
path = "tests/mmlu_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "qa_tests"
path = "tests/qa_tests.rs"
[[test]]
name = "rouge_tests"
path = "tests/rouge_tests.rs"
[[test]]
name = "streaming_tests"
path = "tests/streaming_tests.rs"
[[test]]
name = "truthfulqa_tests"
path = "tests/truthfulqa_tests.rs"
[[test]]
name = "winogrande_tests"
path = "tests/winogrande_tests.rs"
[[bench]]
name = "eval_bench"
path = "benches/eval_bench.rs"
harness = false
[dependencies.pictor-core]
version = "0.1.0"
[dependencies.pictor-runtime]
version = "0.1.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.11.0"