lightgbm-rs 0.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lightgbm_rs-0.0.5/Cargo.lock +5842 -0
- lightgbm_rs-0.0.5/Cargo.toml +32 -0
- lightgbm_rs-0.0.5/PKG-INFO +57 -0
- lightgbm_rs-0.0.5/README.md +34 -0
- lightgbm_rs-0.0.5/crates/lgbm/Cargo.toml +43 -0
- lightgbm_rs-0.0.5/crates/lgbm/examples/bench_crossover.rs +154 -0
- lightgbm_rs-0.0.5/crates/lgbm/examples/bench_gpu_vs_cpu.rs +703 -0
- lightgbm_rs-0.0.5/crates/lgbm/examples/bench_real.rs +185 -0
- lightgbm_rs-0.0.5/crates/lgbm/examples/bench_train.rs +157 -0
- lightgbm_rs-0.0.5/crates/lgbm/examples/bin_width_microbench.rs +147 -0
- lightgbm_rs-0.0.5/crates/lgbm/examples/spike035_host_partition_parity.rs +107 -0
- lightgbm_rs-0.0.5/crates/lgbm/src/booster.rs +2300 -0
- lightgbm_rs-0.0.5/crates/lgbm/src/builder.rs +961 -0
- lightgbm_rs-0.0.5/crates/lgbm/src/error.rs +117 -0
- lightgbm_rs-0.0.5/crates/lgbm/src/lib.rs +40 -0
- lightgbm_rs-0.0.5/crates/lgbm-boosting/Cargo.toml +27 -0
- lightgbm_rs-0.0.5/crates/lgbm-boosting/src/early_stopping.rs +303 -0
- lightgbm_rs-0.0.5/crates/lgbm-boosting/src/error.rs +159 -0
- lightgbm_rs-0.0.5/crates/lgbm-boosting/src/gbdt.rs +2872 -0
- lightgbm_rs-0.0.5/crates/lgbm-boosting/src/lib.rs +37 -0
- lightgbm_rs-0.0.5/crates/lgbm-boosting/src/objective.rs +207 -0
- lightgbm_rs-0.0.5/crates/lgbm-boosting/src/sample_strategy.rs +1209 -0
- lightgbm_rs-0.0.5/crates/lgbm-boosting/src/score_updater.rs +245 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/Cargo.toml +54 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/cuda_mirror_overhead.rs +180 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/dispatch_microbench.rs +483 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/fixedpoint_parity_probe.rs +145 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_bin_width.rs +176 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_fixedpoint_i64.rs +265 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_fixedpoint_resident_ab.rs +279 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_int_vs_f32_psweep.rs +268 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_lds_replication.rs +286 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_multifeature.rs +282 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_packed_int.rs +214 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_row_partition.rs +355 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_u64_lds_replication_ab.rs +351 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/mirror_vs_lds.rs +268 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/quant_parity_probe.rs +102 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike016_scan_reorder_probe.rs +207 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike022_default_bin_parity_probe.rs +481 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike022b_within_feature_scan_ab.rs +307 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike024_sibling_scan_ab.rs +280 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike026_partition_scan_scatter_ab.rs +328 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike027_fused_gather_partition_ab.rs +260 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike028_doublebuffer_partition_ab.rs +225 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike029_gpu_narrow_upload_ab.rs +219 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike030_build_roofline_ab.rs +460 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike032_partition_validation_fold_ab.rs +322 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike033_partition_gather_prefetch_ab.rs +392 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike036_divergence_measurability.rs +198 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike037_autotune_hip_feasibility.rs +247 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike038_autotune_inplace_correctness.rs +289 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike039_autotune_key_cache_thrash.rs +299 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike040_autotune_vs_heuristic.rs +278 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike041_vector_subtract_ab.rs +232 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike042_vector_scan_pair_ab.rs +207 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike043_vector_build_gradhess_ab.rs +251 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike044_vector_dequant_ab.rs +189 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike045_coalesced_build_vector_ab.rs +442 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/error.rs +105 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/fusion_prof.rs +206 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/gain.rs +409 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/autotune.rs +151 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/histogram.rs +3699 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/mod.rs +18 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/partition.rs +492 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/split.rs +3389 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/subtract.rs +517 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/lib.rs +3391 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/src/runtime.rs +226 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/tests/capability.rs +37 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/tests/cmp01_containment.rs +95 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/tests/determinism_spike.rs +129 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_backend_parity.rs +124 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_cuda_mirror.rs +242 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_parallel_histogram.rs +134 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_plane_aggregate.rs +178 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_row_partition.rs +197 -0
- lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_smoke.rs +88 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/Cargo.toml +8 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/src/config/alias.rs +199 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/src/config/mod.rs +452 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/src/config/scope.rs +196 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/src/config/set.rs +867 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/src/error.rs +105 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/src/lib.rs +12 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/src/random.rs +230 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/src/types.rs +70 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/tests/alias_resolution.rs +152 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/tests/config_defaults.rs +132 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/tests/config_validation.rs +543 -0
- lightgbm_rs-0.0.5/crates/lgbm-core/tests/seed_derivation.rs +85 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/Cargo.toml +18 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/bin/dense_bin.rs +216 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/bin/mod.rs +199 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/bin/sparse_bin.rs +286 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/bin_mapper.rs +1378 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/dataset.rs +548 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/efb.rs +534 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/error.rs +116 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/feature_group.rs +449 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/ingest.rs +499 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/lib.rs +31 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/metadata.rs +305 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/src/multi_val_bin.rs +326 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/bin_mapper_internals.rs +124 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/bin_storage_layout.rs +281 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/categorical_folding.rs +292 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/default_config_ingest_parity.rs +400 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/efb_grouping.rs +421 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/example_dataset_parity.rs +272 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/.gitkeep +0 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/bin_storage_layout.txt +35 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/categorical_folding.txt +41 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/default_config_ingest.txt +14 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/efb_grouping.txt +33 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/example_dataset_binning.txt +119 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/examples/binary.train +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/examples/regression.train +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/metadata.txt +35 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/missing_edge_cases.txt +36 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/numeric_binning.txt +186 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/golden/mod.rs +186 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/ingest_equivalence.rs +175 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/metadata.rs +229 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/missing_edge_cases.rs +223 -0
- lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/numeric_assignment.rs +70 -0
- lightgbm_rs-0.0.5/crates/lgbm-metric/Cargo.toml +17 -0
- lightgbm_rs-0.0.5/crates/lgbm-metric/src/binary.rs +325 -0
- lightgbm_rs-0.0.5/crates/lgbm-metric/src/dcg_calculator.rs +334 -0
- lightgbm_rs-0.0.5/crates/lgbm-metric/src/error.rs +93 -0
- lightgbm_rs-0.0.5/crates/lgbm-metric/src/lib.rs +35 -0
- lightgbm_rs-0.0.5/crates/lgbm-metric/src/multiclass.rs +482 -0
- lightgbm_rs-0.0.5/crates/lgbm-metric/src/rank.rs +394 -0
- lightgbm_rs-0.0.5/crates/lgbm-metric/src/regression.rs +532 -0
- lightgbm_rs-0.0.5/crates/lgbm-metric/src/xentropy.rs +273 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/Cargo.toml +14 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/src/ensemble.rs +665 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/src/error.rs +94 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/src/format.rs +382 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/src/lib.rs +33 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/src/model_text.rs +486 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/src/objective.rs +616 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/src/predict.rs +1212 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/src/tree.rs +1912 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/.gitkeep +0 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/binary/leaf.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/binary/model.txt +353 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/binary/raw.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/binary/transformed.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/categorical/leaf.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/categorical/model.txt +367 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/categorical/raw.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/categorical/transformed.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/format_golden.txt +31 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/multiclass/leaf.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/multiclass/model.txt +718 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/multiclass/raw.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/multiclass/transformed.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/regression/leaf.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/regression/model.txt +353 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/regression/raw.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/regression/transformed.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/subrange/leaf.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/subrange/model.txt +353 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/subrange/raw.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/subrange/subrange.txt +8 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/subrange/transformed.txt +7000 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/golden/mod.rs +127 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/model_text_roundtrip.rs +64 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/predict_leaf_parity.rs +103 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/predict_raw_parity.rs +97 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/predict_subrange.rs +146 -0
- lightgbm_rs-0.0.5/crates/lgbm-model/tests/predict_transform.rs +113 -0
- lightgbm_rs-0.0.5/crates/lgbm-objective/Cargo.toml +21 -0
- lightgbm_rs-0.0.5/crates/lgbm-objective/src/binary.rs +235 -0
- lightgbm_rs-0.0.5/crates/lgbm-objective/src/custom.rs +162 -0
- lightgbm_rs-0.0.5/crates/lgbm-objective/src/error.rs +126 -0
- lightgbm_rs-0.0.5/crates/lgbm-objective/src/lib.rs +42 -0
- lightgbm_rs-0.0.5/crates/lgbm-objective/src/multiclass.rs +506 -0
- lightgbm_rs-0.0.5/crates/lgbm-objective/src/percentile.rs +197 -0
- lightgbm_rs-0.0.5/crates/lgbm-objective/src/rank.rs +715 -0
- lightgbm_rs-0.0.5/crates/lgbm-objective/src/regression.rs +1128 -0
- lightgbm_rs-0.0.5/crates/lgbm-objective/src/xentropy.rs +329 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/Cargo.toml +70 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/README.md +34 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_booster_parity.py +86 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_callbacks_cv.py +266 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_custom_refit_parity.py +265 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_gil_release.py +66 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_numpy_sparse_parity.py +178 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_params.py +143 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_persistence.py +176 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_polars_input.py +139 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_sklearn_parity.py +177 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_smoke.py +104 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/src/booster.rs +398 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/src/callbacks.rs +230 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/src/dataset.rs +186 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/src/error.rs +59 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/src/lib.rs +42 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/src/marshal.rs +430 -0
- lightgbm_rs-0.0.5/crates/lgbm-python/src/params.rs +344 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/Cargo.toml +33 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/examples/bench_split_scan.rs +366 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/col_sampler.rs +338 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/cost_effective_gradient_boosting.rs +223 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/data_partition.rs +594 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/error.rs +106 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/feature_histogram_categorical.rs +491 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/fix_histogram.rs +139 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/forced_splits.rs +404 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/gradient_discretizer.rs +397 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/histogram_pool.rs +369 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/leaf_splits.rs +230 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/learner.rs +4647 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/lib.rs +111 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/monotone_constraints.rs +527 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/phase_prof.rs +196 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/resident_pool.rs +288 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/split_info.rs +82 -0
- lightgbm_rs-0.0.5/crates/lgbm-treelearner/tests/quantized_pipeline.rs +67 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/Cargo.toml +38 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/fixtures/REFERENCE_MANIFEST.md +420 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/fixtures/rng_sequence.txt +517 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/src/comparator.rs +226 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/src/lib.rs +10 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/advanced_parity.rs +328 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/boosting_parity.rs +3637 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/comparator.rs +46 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/config_drift.rs +232 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/REFERENCE_MANIFEST.md +105 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/.gitkeep +0 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/advanced.json +137 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/base_model.txt +238 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/continue_model.txt +295 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/importance.json +12 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/refit_decay00.txt +238 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/refit_decay09.txt +238 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/README.md +21 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/REFERENCE_MANIFEST.md +129 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/bag_indices_seed3_frac0.7.txt +16 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es1_bfa0_model.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es1_bfa1_model.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es0_bfa1_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es1_bfa0_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es1_bfa1_model.txt +180 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_metrics.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_scores.txt +12 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_spine_model.txt +332 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es0_bfa0_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es1_bfa0_model.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es1_bfa1_model.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es0_bfa0_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es0_bfa1_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es1_bfa0_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es1_bfa1_model.txt +180 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es0_bfa0_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es1_bfa0_model.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es1_bfa1_model.txt +180 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es0_bfa0_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es0_bfa1_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es1_bfa0_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es1_bfa1_model.txt +180 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_metrics.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_scores.txt +7 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_spine_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_metrics.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_scores.txt +7 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_spine_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_crossanchor_l2_model.txt +331 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_metrics.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_scores.txt +12 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_spine_model.txt +330 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/exp_log_best_iterations.txt +39 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es1_bfa0_model.txt +179 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es0_bfa1_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es1_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_fair_c2p0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_fair_c2p0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_metrics.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_scores.txt +12 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_spine_model.txt +332 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/family_a_best_iterations.txt +32 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es0_bfa0_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es1_bfa0_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es0_bfa0_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es0_bfa1_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es1_bfa0_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es1_bfa1_model.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_metrics.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_scores.txt +7 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_spine_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_alpha0p5_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_alpha0p5_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es0_bfa0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es1_bfa0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es0_bfa1_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es1_bfa0_model.txt +159 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_metrics.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_scores.txt +12 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_spine_model.txt +332 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es1_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es1_bfa1_model.txt +313 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es0_bfa1_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es1_bfa0_model.txt +351 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es1_bfa1_model.txt +294 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_metrics.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_scores.txt +12 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_spine_model.txt +332 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/matrix_best_iterations.txt +36 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es0_bfa0_model.txt +427 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es1_bfa0_model.txt +313 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es1_bfa1_model.txt +199 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es0_bfa0_model.txt +427 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es0_bfa1_model.txt +427 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es1_bfa0_model.txt +199 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es1_bfa1_model.txt +199 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_metrics.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_scores.txt +7 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_spine_model.txt +427 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es0_bfa0_model.txt +427 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es1_bfa0_model.txt +199 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es1_bfa1_model.txt +199 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es0_bfa0_model.txt +427 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es0_bfa1_model.txt +427 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es1_bfa0_model.txt +199 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es1_bfa1_model.txt +199 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_metrics.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_scores.txt +7 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_spine_model.txt +427 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es0_bfa0_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es1_bfa0_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es0_bfa0_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es0_bfa1_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es1_bfa0_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_metrics.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_poisson_max_delta_step0p1_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_poisson_max_delta_step0p1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_scores.txt +7 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_spine_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_alpha0p1_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_alpha0p1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es1_bfa0_model.txt +275 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es1_bfa1_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es0_bfa0_model.txt +332 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es0_bfa1_model.txt +332 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es1_bfa0_model.txt +332 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es1_bfa1_model.txt +332 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_metrics.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_scores.txt +12 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_spine_model.txt +332 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es0_bfa0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es1_bfa0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es0_bfa0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es0_bfa1_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es1_bfa0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es1_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es0_bfa1_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es1_bfa0_model.txt +179 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_metrics.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_scores.txt +12 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_spine_model.txt +332 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_metrics.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_scores.txt +12 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_spine_model.txt +331 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es0_bfa0_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es1_bfa0_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es0_bfa0_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es0_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es0_bfa1_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es0_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es1_bfa0_model.txt +237 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es1_bfa0_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es1_bfa1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_gh_iter1.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_gh_iterN.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_metrics.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_scores.txt +7 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_spine_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_spine_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_tweedie_variance_power1p1_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_tweedie_variance_power1p1_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_tweedie_variance_power1p9_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_tweedie_variance_power1p9_pred.txt +3 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/categorical/.gitkeep +0 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/categorical/cat_manyvsmany.bins.json +145 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/categorical/cat_manyvsmany.txt +162 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/categorical/cat_onehot.bins.json +103 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/categorical/cat_onehot.txt +162 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/.gitkeep +0 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_coupled.json +64 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_coupled.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_t0.5_psplit.json +61 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_t0.5_psplit.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_t1_psplit.json +61 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_t1_psplit.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/extra_trees_seed6.json +61 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/extra_trees_seed6.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/extra_trees_seed9.json +61 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/extra_trees_seed9.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_nested.forced.json +1 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_nested.json +60 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_nested.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_single.forced.json +1 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_single.json +60 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_single.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/interaction_one.json +64 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/interaction_one.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/interaction_two.json +67 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/interaction_two.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_advanced_p0.json +65 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_advanced_p0.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_advanced_p5.json +65 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_advanced_p5.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_basic_p0.json +65 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_basic_p0.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_basic_p5.json +65 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_basic_p5.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_intermediate_p0.json +65 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_intermediate_p0.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_intermediate_p5.json +65 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_intermediate_p5.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_mixed.json +64 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_mixed.txt +161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/.gitkeep +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_drop_seed4_iter12.txt +24 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x0_bag0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x0_bag0_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x0_bag1_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x0_bag1_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x1_bag0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x1_bag0_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x1_bag1_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x1_bag1_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x0_bag0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x0_bag0_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x0_bag1_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x0_bag1_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x1_bag0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x1_bag0_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x1_bag1_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x1_bag1_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/determinism/.gitkeep +9 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/determinism/binary_bag1_es0_bfa1_subset_trace.txt +45 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/determinism/regression_l1_bag1_es0_bfa0_subset_trace.txt +14 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/.gitkeep +9 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_rng_replay.txt +14 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o100_es0_bfa0_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o100_es0_bfa1_model.txt +369 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o100_es1_bfa0_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o100_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o50_es0_bfa0_model.txt +331 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o50_es0_bfa1_model.txt +331 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o50_es1_bfa0_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o50_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o100_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o100_es0_bfa1_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o100_es1_bfa0_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o100_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o50_es0_bfa0_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o50_es0_bfa1_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o50_es1_bfa0_model.txt +236 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o50_es1_bfa1_model.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/kernels/histogram.txt +98 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/kernels/partition.txt +21 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/kernels/split.txt +37 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/kernels/subtract.txt +13 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/col_sampler.txt +13 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/col_wise.txt +31 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/mfb_pos_real.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/real_gh.txt +55 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/spine.txt +32 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/spine_real.txt +160 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/auc_mu_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/auc_mu_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/auc_mu_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/average_precision_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/average_precision_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/average_precision_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_lambda_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_lambda_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_lambda_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/fair_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/fair_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/fair_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_deviance_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_deviance_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_deviance_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/huber_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/huber_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/huber_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/kullback_leibler_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/kullback_leibler_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/kullback_leibler_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/mape_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/mape_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/mape_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/multi_error_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/multi_error_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/multi_error_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/poisson_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/poisson_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/poisson_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/quantile_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/quantile_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/quantile_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/tweedie_labels.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/tweedie_scores.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/tweedie_value.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/.gitkeep +0 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/categorical/X.txt +11 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/categorical/contrib.txt +11 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/categorical/model.txt +427 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/multiclass/X.txt +11 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/multiclass/contrib.txt +11 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/multiclass/early_stop.txt +33 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/multiclass/model.txt +998 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/numeric/X.txt +11 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/numeric/contrib.txt +11 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/numeric/early_stop.txt +33 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/numeric/model.txt +429 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/gen_golden.py +99 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/quant_binary.json +1 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/quant_binary.pred +512 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/quant_binary.pred_exact +512 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/quant_binary.pred_renew +512 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/quant_binary.xy.csv +513 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/.gitkeep +0 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/bagging_by_query_seed3.txt +13 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/lambdarank_map.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/lambdarank_ndcg.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/lambdarank_scores.txt +5 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_lambdarank_byq0_es0_model.txt +333 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_lambdarank_byq0_es1_model.txt +333 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_lambdarank_byq1_es0_model.txt +333 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_lambdarank_byq1_es1_model.txt +333 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_rank_xendcg_byq0_es0_model.txt +333 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_rank_xendcg_byq0_es1_model.txt +333 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_rank_xendcg_byq1_es0_model.txt +333 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_rank_xendcg_byq1_es1_model.txt +333 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_xendcg_map.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_xendcg_ndcg.txt +4 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_xendcg_objseed5.txt +10 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_xendcg_scores.txt +5 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rf/.gitkeep +0 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rf/rf_multi_bag_model.txt +827 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rf/rf_multi_bag_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rf/rf_single_bag_model.txt +370 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rf/rf_single_bag_pred.txt +2 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/kernel_parity.rs +3161 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/learner_parity.rs +2255 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/metric_parity.rs +301 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/predict_parity.rs +227 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/quantized_parity.rs +213 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/rank_parity.rs +305 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/raw_bin_train_parity.rs +174 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/rawcorpus_binning_config.rs +61 -0
- lightgbm_rs-0.0.5/crates/oracle-harness/tests/rng_parity.rs +156 -0
- lightgbm_rs-0.0.5/pyproject.toml +36 -0
- lightgbm_rs-0.0.5/python/lightgbm_rs/__init__.py +115 -0
- lightgbm_rs-0.0.5/python/lightgbm_rs/callback.py +304 -0
- lightgbm_rs-0.0.5/python/lightgbm_rs/engine.py +475 -0
- lightgbm_rs-0.0.5/python/lightgbm_rs/plotting.py +155 -0
- lightgbm_rs-0.0.5/python/lightgbm_rs/sklearn.py +403 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.