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.
Files changed (730) hide show
  1. lightgbm_rs-0.0.5/Cargo.lock +5842 -0
  2. lightgbm_rs-0.0.5/Cargo.toml +32 -0
  3. lightgbm_rs-0.0.5/PKG-INFO +57 -0
  4. lightgbm_rs-0.0.5/README.md +34 -0
  5. lightgbm_rs-0.0.5/crates/lgbm/Cargo.toml +43 -0
  6. lightgbm_rs-0.0.5/crates/lgbm/examples/bench_crossover.rs +154 -0
  7. lightgbm_rs-0.0.5/crates/lgbm/examples/bench_gpu_vs_cpu.rs +703 -0
  8. lightgbm_rs-0.0.5/crates/lgbm/examples/bench_real.rs +185 -0
  9. lightgbm_rs-0.0.5/crates/lgbm/examples/bench_train.rs +157 -0
  10. lightgbm_rs-0.0.5/crates/lgbm/examples/bin_width_microbench.rs +147 -0
  11. lightgbm_rs-0.0.5/crates/lgbm/examples/spike035_host_partition_parity.rs +107 -0
  12. lightgbm_rs-0.0.5/crates/lgbm/src/booster.rs +2300 -0
  13. lightgbm_rs-0.0.5/crates/lgbm/src/builder.rs +961 -0
  14. lightgbm_rs-0.0.5/crates/lgbm/src/error.rs +117 -0
  15. lightgbm_rs-0.0.5/crates/lgbm/src/lib.rs +40 -0
  16. lightgbm_rs-0.0.5/crates/lgbm-boosting/Cargo.toml +27 -0
  17. lightgbm_rs-0.0.5/crates/lgbm-boosting/src/early_stopping.rs +303 -0
  18. lightgbm_rs-0.0.5/crates/lgbm-boosting/src/error.rs +159 -0
  19. lightgbm_rs-0.0.5/crates/lgbm-boosting/src/gbdt.rs +2872 -0
  20. lightgbm_rs-0.0.5/crates/lgbm-boosting/src/lib.rs +37 -0
  21. lightgbm_rs-0.0.5/crates/lgbm-boosting/src/objective.rs +207 -0
  22. lightgbm_rs-0.0.5/crates/lgbm-boosting/src/sample_strategy.rs +1209 -0
  23. lightgbm_rs-0.0.5/crates/lgbm-boosting/src/score_updater.rs +245 -0
  24. lightgbm_rs-0.0.5/crates/lgbm-compute/Cargo.toml +54 -0
  25. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/cuda_mirror_overhead.rs +180 -0
  26. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/dispatch_microbench.rs +483 -0
  27. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/fixedpoint_parity_probe.rs +145 -0
  28. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_bin_width.rs +176 -0
  29. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_fixedpoint_i64.rs +265 -0
  30. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_fixedpoint_resident_ab.rs +279 -0
  31. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_int_vs_f32_psweep.rs +268 -0
  32. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_lds_replication.rs +286 -0
  33. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_multifeature.rs +282 -0
  34. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_packed_int.rs +214 -0
  35. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_row_partition.rs +355 -0
  36. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/gpu_u64_lds_replication_ab.rs +351 -0
  37. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/mirror_vs_lds.rs +268 -0
  38. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/quant_parity_probe.rs +102 -0
  39. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike016_scan_reorder_probe.rs +207 -0
  40. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike022_default_bin_parity_probe.rs +481 -0
  41. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike022b_within_feature_scan_ab.rs +307 -0
  42. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike024_sibling_scan_ab.rs +280 -0
  43. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike026_partition_scan_scatter_ab.rs +328 -0
  44. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike027_fused_gather_partition_ab.rs +260 -0
  45. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike028_doublebuffer_partition_ab.rs +225 -0
  46. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike029_gpu_narrow_upload_ab.rs +219 -0
  47. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike030_build_roofline_ab.rs +460 -0
  48. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike032_partition_validation_fold_ab.rs +322 -0
  49. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike033_partition_gather_prefetch_ab.rs +392 -0
  50. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike036_divergence_measurability.rs +198 -0
  51. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike037_autotune_hip_feasibility.rs +247 -0
  52. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike038_autotune_inplace_correctness.rs +289 -0
  53. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike039_autotune_key_cache_thrash.rs +299 -0
  54. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike040_autotune_vs_heuristic.rs +278 -0
  55. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike041_vector_subtract_ab.rs +232 -0
  56. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike042_vector_scan_pair_ab.rs +207 -0
  57. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike043_vector_build_gradhess_ab.rs +251 -0
  58. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike044_vector_dequant_ab.rs +189 -0
  59. lightgbm_rs-0.0.5/crates/lgbm-compute/examples/spike045_coalesced_build_vector_ab.rs +442 -0
  60. lightgbm_rs-0.0.5/crates/lgbm-compute/src/error.rs +105 -0
  61. lightgbm_rs-0.0.5/crates/lgbm-compute/src/fusion_prof.rs +206 -0
  62. lightgbm_rs-0.0.5/crates/lgbm-compute/src/gain.rs +409 -0
  63. lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/autotune.rs +151 -0
  64. lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/histogram.rs +3699 -0
  65. lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/mod.rs +18 -0
  66. lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/partition.rs +492 -0
  67. lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/split.rs +3389 -0
  68. lightgbm_rs-0.0.5/crates/lgbm-compute/src/kernels/subtract.rs +517 -0
  69. lightgbm_rs-0.0.5/crates/lgbm-compute/src/lib.rs +3391 -0
  70. lightgbm_rs-0.0.5/crates/lgbm-compute/src/runtime.rs +226 -0
  71. lightgbm_rs-0.0.5/crates/lgbm-compute/tests/capability.rs +37 -0
  72. lightgbm_rs-0.0.5/crates/lgbm-compute/tests/cmp01_containment.rs +95 -0
  73. lightgbm_rs-0.0.5/crates/lgbm-compute/tests/determinism_spike.rs +129 -0
  74. lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_backend_parity.rs +124 -0
  75. lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_cuda_mirror.rs +242 -0
  76. lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_parallel_histogram.rs +134 -0
  77. lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_plane_aggregate.rs +178 -0
  78. lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_row_partition.rs +197 -0
  79. lightgbm_rs-0.0.5/crates/lgbm-compute/tests/rocm_smoke.rs +88 -0
  80. lightgbm_rs-0.0.5/crates/lgbm-core/Cargo.toml +8 -0
  81. lightgbm_rs-0.0.5/crates/lgbm-core/src/config/alias.rs +199 -0
  82. lightgbm_rs-0.0.5/crates/lgbm-core/src/config/mod.rs +452 -0
  83. lightgbm_rs-0.0.5/crates/lgbm-core/src/config/scope.rs +196 -0
  84. lightgbm_rs-0.0.5/crates/lgbm-core/src/config/set.rs +867 -0
  85. lightgbm_rs-0.0.5/crates/lgbm-core/src/error.rs +105 -0
  86. lightgbm_rs-0.0.5/crates/lgbm-core/src/lib.rs +12 -0
  87. lightgbm_rs-0.0.5/crates/lgbm-core/src/random.rs +230 -0
  88. lightgbm_rs-0.0.5/crates/lgbm-core/src/types.rs +70 -0
  89. lightgbm_rs-0.0.5/crates/lgbm-core/tests/alias_resolution.rs +152 -0
  90. lightgbm_rs-0.0.5/crates/lgbm-core/tests/config_defaults.rs +132 -0
  91. lightgbm_rs-0.0.5/crates/lgbm-core/tests/config_validation.rs +543 -0
  92. lightgbm_rs-0.0.5/crates/lgbm-core/tests/seed_derivation.rs +85 -0
  93. lightgbm_rs-0.0.5/crates/lgbm-dataset/Cargo.toml +18 -0
  94. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/bin/dense_bin.rs +216 -0
  95. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/bin/mod.rs +199 -0
  96. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/bin/sparse_bin.rs +286 -0
  97. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/bin_mapper.rs +1378 -0
  98. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/dataset.rs +548 -0
  99. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/efb.rs +534 -0
  100. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/error.rs +116 -0
  101. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/feature_group.rs +449 -0
  102. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/ingest.rs +499 -0
  103. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/lib.rs +31 -0
  104. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/metadata.rs +305 -0
  105. lightgbm_rs-0.0.5/crates/lgbm-dataset/src/multi_val_bin.rs +326 -0
  106. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/bin_mapper_internals.rs +124 -0
  107. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/bin_storage_layout.rs +281 -0
  108. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/categorical_folding.rs +292 -0
  109. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/default_config_ingest_parity.rs +400 -0
  110. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/efb_grouping.rs +421 -0
  111. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/example_dataset_parity.rs +272 -0
  112. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/.gitkeep +0 -0
  113. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/bin_storage_layout.txt +35 -0
  114. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/categorical_folding.txt +41 -0
  115. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/default_config_ingest.txt +14 -0
  116. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/efb_grouping.txt +33 -0
  117. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/example_dataset_binning.txt +119 -0
  118. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/examples/binary.train +7000 -0
  119. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/examples/regression.train +7000 -0
  120. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/metadata.txt +35 -0
  121. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/missing_edge_cases.txt +36 -0
  122. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/fixtures/numeric_binning.txt +186 -0
  123. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/golden/mod.rs +186 -0
  124. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/ingest_equivalence.rs +175 -0
  125. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/metadata.rs +229 -0
  126. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/missing_edge_cases.rs +223 -0
  127. lightgbm_rs-0.0.5/crates/lgbm-dataset/tests/numeric_assignment.rs +70 -0
  128. lightgbm_rs-0.0.5/crates/lgbm-metric/Cargo.toml +17 -0
  129. lightgbm_rs-0.0.5/crates/lgbm-metric/src/binary.rs +325 -0
  130. lightgbm_rs-0.0.5/crates/lgbm-metric/src/dcg_calculator.rs +334 -0
  131. lightgbm_rs-0.0.5/crates/lgbm-metric/src/error.rs +93 -0
  132. lightgbm_rs-0.0.5/crates/lgbm-metric/src/lib.rs +35 -0
  133. lightgbm_rs-0.0.5/crates/lgbm-metric/src/multiclass.rs +482 -0
  134. lightgbm_rs-0.0.5/crates/lgbm-metric/src/rank.rs +394 -0
  135. lightgbm_rs-0.0.5/crates/lgbm-metric/src/regression.rs +532 -0
  136. lightgbm_rs-0.0.5/crates/lgbm-metric/src/xentropy.rs +273 -0
  137. lightgbm_rs-0.0.5/crates/lgbm-model/Cargo.toml +14 -0
  138. lightgbm_rs-0.0.5/crates/lgbm-model/src/ensemble.rs +665 -0
  139. lightgbm_rs-0.0.5/crates/lgbm-model/src/error.rs +94 -0
  140. lightgbm_rs-0.0.5/crates/lgbm-model/src/format.rs +382 -0
  141. lightgbm_rs-0.0.5/crates/lgbm-model/src/lib.rs +33 -0
  142. lightgbm_rs-0.0.5/crates/lgbm-model/src/model_text.rs +486 -0
  143. lightgbm_rs-0.0.5/crates/lgbm-model/src/objective.rs +616 -0
  144. lightgbm_rs-0.0.5/crates/lgbm-model/src/predict.rs +1212 -0
  145. lightgbm_rs-0.0.5/crates/lgbm-model/src/tree.rs +1912 -0
  146. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/.gitkeep +0 -0
  147. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/binary/leaf.txt +7000 -0
  148. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/binary/model.txt +353 -0
  149. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/binary/raw.txt +7000 -0
  150. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/binary/transformed.txt +7000 -0
  151. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/categorical/leaf.txt +7000 -0
  152. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/categorical/model.txt +367 -0
  153. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/categorical/raw.txt +7000 -0
  154. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/categorical/transformed.txt +7000 -0
  155. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/format_golden.txt +31 -0
  156. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/multiclass/leaf.txt +7000 -0
  157. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/multiclass/model.txt +718 -0
  158. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/multiclass/raw.txt +7000 -0
  159. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/multiclass/transformed.txt +7000 -0
  160. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/regression/leaf.txt +7000 -0
  161. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/regression/model.txt +353 -0
  162. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/regression/raw.txt +7000 -0
  163. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/regression/transformed.txt +7000 -0
  164. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/subrange/leaf.txt +7000 -0
  165. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/subrange/model.txt +353 -0
  166. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/subrange/raw.txt +7000 -0
  167. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/subrange/subrange.txt +8 -0
  168. lightgbm_rs-0.0.5/crates/lgbm-model/tests/fixtures/models/subrange/transformed.txt +7000 -0
  169. lightgbm_rs-0.0.5/crates/lgbm-model/tests/golden/mod.rs +127 -0
  170. lightgbm_rs-0.0.5/crates/lgbm-model/tests/model_text_roundtrip.rs +64 -0
  171. lightgbm_rs-0.0.5/crates/lgbm-model/tests/predict_leaf_parity.rs +103 -0
  172. lightgbm_rs-0.0.5/crates/lgbm-model/tests/predict_raw_parity.rs +97 -0
  173. lightgbm_rs-0.0.5/crates/lgbm-model/tests/predict_subrange.rs +146 -0
  174. lightgbm_rs-0.0.5/crates/lgbm-model/tests/predict_transform.rs +113 -0
  175. lightgbm_rs-0.0.5/crates/lgbm-objective/Cargo.toml +21 -0
  176. lightgbm_rs-0.0.5/crates/lgbm-objective/src/binary.rs +235 -0
  177. lightgbm_rs-0.0.5/crates/lgbm-objective/src/custom.rs +162 -0
  178. lightgbm_rs-0.0.5/crates/lgbm-objective/src/error.rs +126 -0
  179. lightgbm_rs-0.0.5/crates/lgbm-objective/src/lib.rs +42 -0
  180. lightgbm_rs-0.0.5/crates/lgbm-objective/src/multiclass.rs +506 -0
  181. lightgbm_rs-0.0.5/crates/lgbm-objective/src/percentile.rs +197 -0
  182. lightgbm_rs-0.0.5/crates/lgbm-objective/src/rank.rs +715 -0
  183. lightgbm_rs-0.0.5/crates/lgbm-objective/src/regression.rs +1128 -0
  184. lightgbm_rs-0.0.5/crates/lgbm-objective/src/xentropy.rs +329 -0
  185. lightgbm_rs-0.0.5/crates/lgbm-python/Cargo.toml +70 -0
  186. lightgbm_rs-0.0.5/crates/lgbm-python/README.md +34 -0
  187. lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_booster_parity.py +86 -0
  188. lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_callbacks_cv.py +266 -0
  189. lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_custom_refit_parity.py +265 -0
  190. lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_gil_release.py +66 -0
  191. lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_numpy_sparse_parity.py +178 -0
  192. lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_params.py +143 -0
  193. lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_persistence.py +176 -0
  194. lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_polars_input.py +139 -0
  195. lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_sklearn_parity.py +177 -0
  196. lightgbm_rs-0.0.5/crates/lgbm-python/python/tests/test_smoke.py +104 -0
  197. lightgbm_rs-0.0.5/crates/lgbm-python/src/booster.rs +398 -0
  198. lightgbm_rs-0.0.5/crates/lgbm-python/src/callbacks.rs +230 -0
  199. lightgbm_rs-0.0.5/crates/lgbm-python/src/dataset.rs +186 -0
  200. lightgbm_rs-0.0.5/crates/lgbm-python/src/error.rs +59 -0
  201. lightgbm_rs-0.0.5/crates/lgbm-python/src/lib.rs +42 -0
  202. lightgbm_rs-0.0.5/crates/lgbm-python/src/marshal.rs +430 -0
  203. lightgbm_rs-0.0.5/crates/lgbm-python/src/params.rs +344 -0
  204. lightgbm_rs-0.0.5/crates/lgbm-treelearner/Cargo.toml +33 -0
  205. lightgbm_rs-0.0.5/crates/lgbm-treelearner/examples/bench_split_scan.rs +366 -0
  206. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/col_sampler.rs +338 -0
  207. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/cost_effective_gradient_boosting.rs +223 -0
  208. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/data_partition.rs +594 -0
  209. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/error.rs +106 -0
  210. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/feature_histogram_categorical.rs +491 -0
  211. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/fix_histogram.rs +139 -0
  212. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/forced_splits.rs +404 -0
  213. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/gradient_discretizer.rs +397 -0
  214. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/histogram_pool.rs +369 -0
  215. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/leaf_splits.rs +230 -0
  216. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/learner.rs +4647 -0
  217. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/lib.rs +111 -0
  218. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/monotone_constraints.rs +527 -0
  219. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/phase_prof.rs +196 -0
  220. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/resident_pool.rs +288 -0
  221. lightgbm_rs-0.0.5/crates/lgbm-treelearner/src/split_info.rs +82 -0
  222. lightgbm_rs-0.0.5/crates/lgbm-treelearner/tests/quantized_pipeline.rs +67 -0
  223. lightgbm_rs-0.0.5/crates/oracle-harness/Cargo.toml +38 -0
  224. lightgbm_rs-0.0.5/crates/oracle-harness/fixtures/REFERENCE_MANIFEST.md +420 -0
  225. lightgbm_rs-0.0.5/crates/oracle-harness/fixtures/rng_sequence.txt +517 -0
  226. lightgbm_rs-0.0.5/crates/oracle-harness/src/comparator.rs +226 -0
  227. lightgbm_rs-0.0.5/crates/oracle-harness/src/lib.rs +10 -0
  228. lightgbm_rs-0.0.5/crates/oracle-harness/tests/advanced_parity.rs +328 -0
  229. lightgbm_rs-0.0.5/crates/oracle-harness/tests/boosting_parity.rs +3637 -0
  230. lightgbm_rs-0.0.5/crates/oracle-harness/tests/comparator.rs +46 -0
  231. lightgbm_rs-0.0.5/crates/oracle-harness/tests/config_drift.rs +232 -0
  232. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/REFERENCE_MANIFEST.md +105 -0
  233. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/.gitkeep +0 -0
  234. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/advanced.json +137 -0
  235. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/base_model.txt +238 -0
  236. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/continue_model.txt +295 -0
  237. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/importance.json +12 -0
  238. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/refit_decay00.txt +238 -0
  239. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/advanced/refit_decay09.txt +238 -0
  240. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/README.md +21 -0
  241. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/REFERENCE_MANIFEST.md +129 -0
  242. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/bag_indices_seed3_frac0.7.txt +16 -0
  243. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es0_bfa0_model.txt +370 -0
  244. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es0_bfa0_pred.txt +3 -0
  245. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es1_bfa0_model.txt +161 -0
  246. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es1_bfa0_pred.txt +3 -0
  247. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es1_bfa1_model.txt +161 -0
  248. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag0_es1_bfa1_pred.txt +3 -0
  249. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es0_bfa0_model.txt +370 -0
  250. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es0_bfa0_pred.txt +3 -0
  251. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es0_bfa1_model.txt +370 -0
  252. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es0_bfa1_pred.txt +3 -0
  253. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es1_bfa0_model.txt +160 -0
  254. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es1_bfa0_pred.txt +3 -0
  255. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es1_bfa1_model.txt +180 -0
  256. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_bag1_es1_bfa1_pred.txt +3 -0
  257. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_gh_iter1.txt +3 -0
  258. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_gh_iterN.txt +4 -0
  259. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_metrics.txt +4 -0
  260. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_scores.txt +12 -0
  261. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_spine_model.txt +332 -0
  262. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/binary_spine_pred.txt +2 -0
  263. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es0_bfa0_model.txt +237 -0
  264. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es0_bfa0_pred.txt +3 -0
  265. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es1_bfa0_model.txt +161 -0
  266. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es1_bfa0_pred.txt +3 -0
  267. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es1_bfa1_model.txt +161 -0
  268. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag0_es1_bfa1_pred.txt +3 -0
  269. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es0_bfa0_model.txt +237 -0
  270. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es0_bfa0_pred.txt +3 -0
  271. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es0_bfa1_model.txt +237 -0
  272. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es0_bfa1_pred.txt +3 -0
  273. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es1_bfa0_model.txt +160 -0
  274. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es1_bfa0_pred.txt +3 -0
  275. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es1_bfa1_model.txt +180 -0
  276. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_bag1_es1_bfa1_pred.txt +3 -0
  277. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_gh_iter1.txt +3 -0
  278. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_gh_iterN.txt +4 -0
  279. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es0_bfa0_model.txt +237 -0
  280. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es0_bfa0_pred.txt +3 -0
  281. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es1_bfa0_model.txt +161 -0
  282. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es1_bfa0_pred.txt +3 -0
  283. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es1_bfa1_model.txt +180 -0
  284. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag0_es1_bfa1_pred.txt +3 -0
  285. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es0_bfa0_model.txt +237 -0
  286. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es0_bfa0_pred.txt +3 -0
  287. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es0_bfa1_model.txt +237 -0
  288. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es0_bfa1_pred.txt +3 -0
  289. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es1_bfa0_model.txt +160 -0
  290. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es1_bfa0_pred.txt +3 -0
  291. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es1_bfa1_model.txt +180 -0
  292. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_bag1_es1_bfa1_pred.txt +3 -0
  293. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_gh_iter1.txt +3 -0
  294. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_gh_iterN.txt +4 -0
  295. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_metrics.txt +2 -0
  296. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_scores.txt +7 -0
  297. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_spine_model.txt +237 -0
  298. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_lambda_spine_pred.txt +2 -0
  299. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_metrics.txt +2 -0
  300. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_scores.txt +7 -0
  301. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_spine_model.txt +237 -0
  302. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/cross_entropy_spine_pred.txt +2 -0
  303. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_crossanchor_l2_model.txt +331 -0
  304. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_gh_iter1.txt +3 -0
  305. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_gh_iterN.txt +4 -0
  306. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_metrics.txt +2 -0
  307. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_scores.txt +12 -0
  308. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_spine_model.txt +330 -0
  309. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/custom_spine_pred.txt +2 -0
  310. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/exp_log_best_iterations.txt +39 -0
  311. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es0_bfa0_model.txt +370 -0
  312. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es0_bfa0_pred.txt +3 -0
  313. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es1_bfa0_model.txt +179 -0
  314. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es1_bfa0_pred.txt +3 -0
  315. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es1_bfa1_model.txt +160 -0
  316. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag0_es1_bfa1_pred.txt +3 -0
  317. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es0_bfa0_model.txt +370 -0
  318. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es0_bfa0_pred.txt +3 -0
  319. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es0_bfa1_model.txt +370 -0
  320. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es0_bfa1_pred.txt +3 -0
  321. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es1_bfa0_model.txt +370 -0
  322. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es1_bfa0_pred.txt +3 -0
  323. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es1_bfa1_model.txt +160 -0
  324. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_bag1_es1_bfa1_pred.txt +3 -0
  325. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_fair_c2p0_model.txt +370 -0
  326. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_fair_c2p0_pred.txt +3 -0
  327. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_gh_iter1.txt +3 -0
  328. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_gh_iterN.txt +4 -0
  329. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_metrics.txt +3 -0
  330. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_scores.txt +12 -0
  331. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_spine_model.txt +332 -0
  332. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/fair_spine_pred.txt +2 -0
  333. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/family_a_best_iterations.txt +32 -0
  334. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es0_bfa0_model.txt +236 -0
  335. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es0_bfa0_pred.txt +3 -0
  336. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es1_bfa0_model.txt +236 -0
  337. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es1_bfa0_pred.txt +3 -0
  338. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es1_bfa1_model.txt +160 -0
  339. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag0_es1_bfa1_pred.txt +3 -0
  340. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es0_bfa0_model.txt +237 -0
  341. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es0_bfa0_pred.txt +3 -0
  342. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es0_bfa1_model.txt +237 -0
  343. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es0_bfa1_pred.txt +3 -0
  344. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es1_bfa0_model.txt +237 -0
  345. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es1_bfa0_pred.txt +3 -0
  346. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es1_bfa1_model.txt +161 -0
  347. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_bag1_es1_bfa1_pred.txt +3 -0
  348. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_gh_iter1.txt +3 -0
  349. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_gh_iterN.txt +4 -0
  350. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_metrics.txt +2 -0
  351. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_scores.txt +7 -0
  352. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_spine_model.txt +236 -0
  353. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/gamma_spine_pred.txt +2 -0
  354. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_alpha0p5_model.txt +370 -0
  355. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_alpha0p5_pred.txt +3 -0
  356. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es0_bfa0_model.txt +369 -0
  357. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es0_bfa0_pred.txt +3 -0
  358. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es1_bfa0_model.txt +369 -0
  359. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es1_bfa0_pred.txt +3 -0
  360. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es1_bfa1_model.txt +160 -0
  361. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag0_es1_bfa1_pred.txt +3 -0
  362. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es0_bfa0_model.txt +370 -0
  363. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es0_bfa0_pred.txt +3 -0
  364. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es0_bfa1_model.txt +370 -0
  365. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es0_bfa1_pred.txt +3 -0
  366. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es1_bfa0_model.txt +159 -0
  367. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es1_bfa0_pred.txt +3 -0
  368. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es1_bfa1_model.txt +160 -0
  369. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_bag1_es1_bfa1_pred.txt +3 -0
  370. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_gh_iter1.txt +3 -0
  371. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_gh_iterN.txt +4 -0
  372. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_metrics.txt +3 -0
  373. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_scores.txt +12 -0
  374. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_spine_model.txt +332 -0
  375. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/huber_spine_pred.txt +2 -0
  376. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es0_bfa0_model.txt +370 -0
  377. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es0_bfa0_pred.txt +3 -0
  378. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es1_bfa0_model.txt +370 -0
  379. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es1_bfa0_pred.txt +3 -0
  380. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es1_bfa1_model.txt +313 -0
  381. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag0_es1_bfa1_pred.txt +3 -0
  382. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es0_bfa0_model.txt +370 -0
  383. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es0_bfa0_pred.txt +3 -0
  384. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es0_bfa1_model.txt +370 -0
  385. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es0_bfa1_pred.txt +3 -0
  386. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es1_bfa0_model.txt +351 -0
  387. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es1_bfa0_pred.txt +3 -0
  388. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es1_bfa1_model.txt +294 -0
  389. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_bag1_es1_bfa1_pred.txt +3 -0
  390. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_gh_iter1.txt +3 -0
  391. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_gh_iterN.txt +4 -0
  392. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_metrics.txt +3 -0
  393. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_scores.txt +12 -0
  394. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_spine_model.txt +332 -0
  395. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/mape_spine_pred.txt +2 -0
  396. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/matrix_best_iterations.txt +36 -0
  397. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es0_bfa0_model.txt +427 -0
  398. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es0_bfa0_pred.txt +3 -0
  399. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es1_bfa0_model.txt +313 -0
  400. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es1_bfa0_pred.txt +3 -0
  401. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es1_bfa1_model.txt +199 -0
  402. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag0_es1_bfa1_pred.txt +3 -0
  403. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es0_bfa0_model.txt +427 -0
  404. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es0_bfa0_pred.txt +3 -0
  405. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es0_bfa1_model.txt +427 -0
  406. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es0_bfa1_pred.txt +3 -0
  407. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es1_bfa0_model.txt +199 -0
  408. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es1_bfa0_pred.txt +3 -0
  409. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es1_bfa1_model.txt +199 -0
  410. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_bag1_es1_bfa1_pred.txt +3 -0
  411. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_gh_iter1.txt +3 -0
  412. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_gh_iterN.txt +4 -0
  413. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_metrics.txt +2 -0
  414. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_scores.txt +7 -0
  415. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_spine_model.txt +427 -0
  416. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclass_spine_pred.txt +2 -0
  417. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es0_bfa0_model.txt +427 -0
  418. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es0_bfa0_pred.txt +3 -0
  419. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es1_bfa0_model.txt +199 -0
  420. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es1_bfa0_pred.txt +3 -0
  421. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es1_bfa1_model.txt +199 -0
  422. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag0_es1_bfa1_pred.txt +3 -0
  423. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es0_bfa0_model.txt +427 -0
  424. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es0_bfa0_pred.txt +3 -0
  425. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es0_bfa1_model.txt +427 -0
  426. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es0_bfa1_pred.txt +3 -0
  427. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es1_bfa0_model.txt +199 -0
  428. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es1_bfa0_pred.txt +3 -0
  429. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es1_bfa1_model.txt +199 -0
  430. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_bag1_es1_bfa1_pred.txt +3 -0
  431. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_gh_iter1.txt +3 -0
  432. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_gh_iterN.txt +4 -0
  433. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_metrics.txt +2 -0
  434. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_scores.txt +7 -0
  435. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_spine_model.txt +427 -0
  436. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/multiclassova_spine_pred.txt +2 -0
  437. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es0_bfa0_model.txt +236 -0
  438. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es0_bfa0_pred.txt +3 -0
  439. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es1_bfa0_model.txt +236 -0
  440. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es1_bfa0_pred.txt +3 -0
  441. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es1_bfa1_model.txt +160 -0
  442. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag0_es1_bfa1_pred.txt +3 -0
  443. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es0_bfa0_model.txt +237 -0
  444. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es0_bfa0_pred.txt +3 -0
  445. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es0_bfa1_model.txt +236 -0
  446. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es0_bfa1_pred.txt +3 -0
  447. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es1_bfa0_model.txt +237 -0
  448. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es1_bfa0_pred.txt +3 -0
  449. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es1_bfa1_model.txt +160 -0
  450. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_bag1_es1_bfa1_pred.txt +3 -0
  451. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_gh_iter1.txt +3 -0
  452. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_gh_iterN.txt +4 -0
  453. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_metrics.txt +2 -0
  454. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_poisson_max_delta_step0p1_model.txt +236 -0
  455. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_poisson_max_delta_step0p1_pred.txt +3 -0
  456. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_scores.txt +7 -0
  457. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_spine_model.txt +236 -0
  458. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/poisson_spine_pred.txt +2 -0
  459. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_alpha0p1_model.txt +370 -0
  460. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_alpha0p1_pred.txt +3 -0
  461. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es0_bfa0_model.txt +370 -0
  462. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es0_bfa0_pred.txt +3 -0
  463. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es1_bfa0_model.txt +275 -0
  464. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es1_bfa0_pred.txt +3 -0
  465. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es1_bfa1_model.txt +370 -0
  466. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag0_es1_bfa1_pred.txt +3 -0
  467. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es0_bfa0_model.txt +332 -0
  468. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es0_bfa0_pred.txt +3 -0
  469. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es0_bfa1_model.txt +332 -0
  470. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es0_bfa1_pred.txt +3 -0
  471. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es1_bfa0_model.txt +332 -0
  472. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es1_bfa0_pred.txt +3 -0
  473. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es1_bfa1_model.txt +332 -0
  474. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_bag1_es1_bfa1_pred.txt +3 -0
  475. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_gh_iter1.txt +3 -0
  476. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_gh_iterN.txt +4 -0
  477. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_metrics.txt +3 -0
  478. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_scores.txt +12 -0
  479. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_spine_model.txt +332 -0
  480. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/quantile_spine_pred.txt +2 -0
  481. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es0_bfa0_model.txt +369 -0
  482. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es0_bfa0_pred.txt +3 -0
  483. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es1_bfa0_model.txt +369 -0
  484. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es1_bfa0_pred.txt +3 -0
  485. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es1_bfa1_model.txt +160 -0
  486. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag0_es1_bfa1_pred.txt +3 -0
  487. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es0_bfa0_model.txt +369 -0
  488. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es0_bfa0_pred.txt +3 -0
  489. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es0_bfa1_model.txt +369 -0
  490. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es0_bfa1_pred.txt +3 -0
  491. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es1_bfa0_model.txt +369 -0
  492. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es1_bfa0_pred.txt +3 -0
  493. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es1_bfa1_model.txt +160 -0
  494. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_bag1_es1_bfa1_pred.txt +3 -0
  495. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_gh_iter1.txt +3 -0
  496. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_gh_iterN.txt +4 -0
  497. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es0_bfa0_model.txt +370 -0
  498. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es0_bfa0_pred.txt +3 -0
  499. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es1_bfa0_model.txt +370 -0
  500. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es1_bfa0_pred.txt +3 -0
  501. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es1_bfa1_model.txt +160 -0
  502. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag0_es1_bfa1_pred.txt +3 -0
  503. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es0_bfa0_model.txt +370 -0
  504. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es0_bfa0_pred.txt +3 -0
  505. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es0_bfa1_model.txt +370 -0
  506. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es0_bfa1_pred.txt +3 -0
  507. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es1_bfa0_model.txt +179 -0
  508. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es1_bfa0_pred.txt +3 -0
  509. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es1_bfa1_model.txt +160 -0
  510. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_bag1_es1_bfa1_pred.txt +3 -0
  511. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_gh_iter1.txt +3 -0
  512. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_gh_iterN.txt +4 -0
  513. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_metrics.txt +4 -0
  514. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_scores.txt +12 -0
  515. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_spine_model.txt +332 -0
  516. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_l1_spine_pred.txt +2 -0
  517. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_metrics.txt +3 -0
  518. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_scores.txt +12 -0
  519. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_spine_model.txt +331 -0
  520. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/regression_spine_pred.txt +2 -0
  521. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es0_bfa0_model.txt +236 -0
  522. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es0_bfa0_pred.txt +3 -0
  523. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es1_bfa0_model.txt +236 -0
  524. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es1_bfa0_pred.txt +3 -0
  525. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es1_bfa1_model.txt +160 -0
  526. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag0_es1_bfa1_pred.txt +3 -0
  527. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es0_bfa0_model.txt +237 -0
  528. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es0_bfa0_pred.txt +3 -0
  529. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es0_bfa1_model.txt +237 -0
  530. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es0_bfa1_pred.txt +3 -0
  531. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es1_bfa0_model.txt +237 -0
  532. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es1_bfa0_pred.txt +3 -0
  533. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es1_bfa1_model.txt +160 -0
  534. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_bag1_es1_bfa1_pred.txt +3 -0
  535. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_gh_iter1.txt +3 -0
  536. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_gh_iterN.txt +4 -0
  537. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_metrics.txt +2 -0
  538. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_scores.txt +7 -0
  539. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_spine_model.txt +236 -0
  540. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_spine_pred.txt +2 -0
  541. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_tweedie_variance_power1p1_model.txt +236 -0
  542. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_tweedie_variance_power1p1_pred.txt +3 -0
  543. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_tweedie_variance_power1p9_model.txt +236 -0
  544. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/boosting/tweedie_tweedie_variance_power1p9_pred.txt +3 -0
  545. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/categorical/.gitkeep +0 -0
  546. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/categorical/cat_manyvsmany.bins.json +145 -0
  547. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/categorical/cat_manyvsmany.txt +162 -0
  548. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/categorical/cat_onehot.bins.json +103 -0
  549. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/categorical/cat_onehot.txt +162 -0
  550. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/.gitkeep +0 -0
  551. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_coupled.json +64 -0
  552. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_coupled.txt +160 -0
  553. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_t0.5_psplit.json +61 -0
  554. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_t0.5_psplit.txt +160 -0
  555. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_t1_psplit.json +61 -0
  556. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/cegb_t1_psplit.txt +160 -0
  557. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/extra_trees_seed6.json +61 -0
  558. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/extra_trees_seed6.txt +161 -0
  559. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/extra_trees_seed9.json +61 -0
  560. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/extra_trees_seed9.txt +161 -0
  561. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_nested.forced.json +1 -0
  562. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_nested.json +60 -0
  563. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_nested.txt +161 -0
  564. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_single.forced.json +1 -0
  565. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_single.json +60 -0
  566. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/forced_single.txt +161 -0
  567. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/interaction_one.json +64 -0
  568. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/interaction_one.txt +160 -0
  569. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/interaction_two.json +67 -0
  570. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/interaction_two.txt +160 -0
  571. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_advanced_p0.json +65 -0
  572. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_advanced_p0.txt +160 -0
  573. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_advanced_p5.json +65 -0
  574. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_advanced_p5.txt +160 -0
  575. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_basic_p0.json +65 -0
  576. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_basic_p0.txt +160 -0
  577. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_basic_p5.json +65 -0
  578. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_basic_p5.txt +160 -0
  579. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_intermediate_p0.json +65 -0
  580. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_intermediate_p0.txt +160 -0
  581. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_intermediate_p5.json +65 -0
  582. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_intermediate_p5.txt +160 -0
  583. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_mixed.json +64 -0
  584. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/constraints/mono_mixed.txt +161 -0
  585. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/.gitkeep +4 -0
  586. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_drop_seed4_iter12.txt +24 -0
  587. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x0_bag0_model.txt +369 -0
  588. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x0_bag0_pred.txt +2 -0
  589. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x0_bag1_model.txt +369 -0
  590. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x0_bag1_pred.txt +2 -0
  591. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x1_bag0_model.txt +369 -0
  592. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x1_bag0_pred.txt +2 -0
  593. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x1_bag1_model.txt +369 -0
  594. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u0_x1_bag1_pred.txt +2 -0
  595. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x0_bag0_model.txt +369 -0
  596. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x0_bag0_pred.txt +2 -0
  597. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x0_bag1_model.txt +369 -0
  598. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x0_bag1_pred.txt +2 -0
  599. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x1_bag0_model.txt +369 -0
  600. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x1_bag0_pred.txt +2 -0
  601. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x1_bag1_model.txt +369 -0
  602. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/dart/dart_u1_x1_bag1_pred.txt +2 -0
  603. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/determinism/.gitkeep +9 -0
  604. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/determinism/binary_bag1_es0_bfa1_subset_trace.txt +45 -0
  605. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/determinism/regression_l1_bag1_es0_bfa0_subset_trace.txt +14 -0
  606. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/.gitkeep +9 -0
  607. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_rng_replay.txt +14 -0
  608. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o100_es0_bfa0_model.txt +369 -0
  609. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o100_es0_bfa1_model.txt +369 -0
  610. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o100_es1_bfa0_model.txt +236 -0
  611. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o100_es1_bfa1_model.txt +160 -0
  612. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o50_es0_bfa0_model.txt +331 -0
  613. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o50_es0_bfa1_model.txt +331 -0
  614. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o50_es1_bfa0_model.txt +236 -0
  615. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t100_o50_es1_bfa1_model.txt +160 -0
  616. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o100_es0_bfa0_model.txt +370 -0
  617. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o100_es0_bfa1_model.txt +370 -0
  618. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o100_es1_bfa0_model.txt +236 -0
  619. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o100_es1_bfa1_model.txt +160 -0
  620. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o50_es0_bfa0_model.txt +370 -0
  621. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o50_es0_bfa1_model.txt +370 -0
  622. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o50_es1_bfa0_model.txt +236 -0
  623. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/goss/goss_t200_o50_es1_bfa1_model.txt +160 -0
  624. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/kernels/histogram.txt +98 -0
  625. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/kernels/partition.txt +21 -0
  626. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/kernels/split.txt +37 -0
  627. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/kernels/subtract.txt +13 -0
  628. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/col_sampler.txt +13 -0
  629. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/col_wise.txt +31 -0
  630. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/mfb_pos_real.txt +160 -0
  631. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/real_gh.txt +55 -0
  632. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/spine.txt +32 -0
  633. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/learner/spine_real.txt +160 -0
  634. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/auc_mu_labels.txt +2 -0
  635. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/auc_mu_scores.txt +2 -0
  636. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/auc_mu_value.txt +2 -0
  637. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/average_precision_labels.txt +2 -0
  638. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/average_precision_scores.txt +2 -0
  639. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/average_precision_value.txt +2 -0
  640. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_labels.txt +2 -0
  641. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_lambda_labels.txt +2 -0
  642. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_lambda_scores.txt +2 -0
  643. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_lambda_value.txt +2 -0
  644. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_scores.txt +2 -0
  645. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/cross_entropy_value.txt +2 -0
  646. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/fair_labels.txt +2 -0
  647. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/fair_scores.txt +2 -0
  648. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/fair_value.txt +2 -0
  649. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_deviance_labels.txt +2 -0
  650. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_deviance_scores.txt +2 -0
  651. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_deviance_value.txt +2 -0
  652. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_labels.txt +2 -0
  653. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_scores.txt +2 -0
  654. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/gamma_value.txt +2 -0
  655. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/huber_labels.txt +2 -0
  656. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/huber_scores.txt +2 -0
  657. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/huber_value.txt +2 -0
  658. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/kullback_leibler_labels.txt +2 -0
  659. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/kullback_leibler_scores.txt +2 -0
  660. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/kullback_leibler_value.txt +2 -0
  661. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/mape_labels.txt +2 -0
  662. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/mape_scores.txt +2 -0
  663. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/mape_value.txt +2 -0
  664. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/multi_error_labels.txt +2 -0
  665. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/multi_error_scores.txt +2 -0
  666. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/multi_error_value.txt +2 -0
  667. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/poisson_labels.txt +2 -0
  668. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/poisson_scores.txt +2 -0
  669. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/poisson_value.txt +2 -0
  670. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/quantile_labels.txt +2 -0
  671. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/quantile_scores.txt +2 -0
  672. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/quantile_value.txt +2 -0
  673. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/tweedie_labels.txt +2 -0
  674. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/tweedie_scores.txt +2 -0
  675. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/metric/tweedie_value.txt +2 -0
  676. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/.gitkeep +0 -0
  677. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/categorical/X.txt +11 -0
  678. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/categorical/contrib.txt +11 -0
  679. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/categorical/model.txt +427 -0
  680. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/multiclass/X.txt +11 -0
  681. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/multiclass/contrib.txt +11 -0
  682. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/multiclass/early_stop.txt +33 -0
  683. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/multiclass/model.txt +998 -0
  684. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/numeric/X.txt +11 -0
  685. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/numeric/contrib.txt +11 -0
  686. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/numeric/early_stop.txt +33 -0
  687. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/predict_modes/numeric/model.txt +429 -0
  688. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/gen_golden.py +99 -0
  689. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/quant_binary.json +1 -0
  690. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/quant_binary.pred +512 -0
  691. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/quant_binary.pred_exact +512 -0
  692. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/quant_binary.pred_renew +512 -0
  693. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/quantized/quant_binary.xy.csv +513 -0
  694. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/.gitkeep +0 -0
  695. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/bagging_by_query_seed3.txt +13 -0
  696. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/lambdarank_map.txt +4 -0
  697. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/lambdarank_ndcg.txt +4 -0
  698. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/lambdarank_scores.txt +5 -0
  699. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_lambdarank_byq0_es0_model.txt +333 -0
  700. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_lambdarank_byq0_es1_model.txt +333 -0
  701. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_lambdarank_byq1_es0_model.txt +333 -0
  702. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_lambdarank_byq1_es1_model.txt +333 -0
  703. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_rank_xendcg_byq0_es0_model.txt +333 -0
  704. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_rank_xendcg_byq0_es1_model.txt +333 -0
  705. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_rank_xendcg_byq1_es0_model.txt +333 -0
  706. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_rank_xendcg_byq1_es1_model.txt +333 -0
  707. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_xendcg_map.txt +4 -0
  708. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_xendcg_ndcg.txt +4 -0
  709. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_xendcg_objseed5.txt +10 -0
  710. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rank/rank_xendcg_scores.txt +5 -0
  711. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rf/.gitkeep +0 -0
  712. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rf/rf_multi_bag_model.txt +827 -0
  713. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rf/rf_multi_bag_pred.txt +2 -0
  714. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rf/rf_single_bag_model.txt +370 -0
  715. lightgbm_rs-0.0.5/crates/oracle-harness/tests/fixtures/rf/rf_single_bag_pred.txt +2 -0
  716. lightgbm_rs-0.0.5/crates/oracle-harness/tests/kernel_parity.rs +3161 -0
  717. lightgbm_rs-0.0.5/crates/oracle-harness/tests/learner_parity.rs +2255 -0
  718. lightgbm_rs-0.0.5/crates/oracle-harness/tests/metric_parity.rs +301 -0
  719. lightgbm_rs-0.0.5/crates/oracle-harness/tests/predict_parity.rs +227 -0
  720. lightgbm_rs-0.0.5/crates/oracle-harness/tests/quantized_parity.rs +213 -0
  721. lightgbm_rs-0.0.5/crates/oracle-harness/tests/rank_parity.rs +305 -0
  722. lightgbm_rs-0.0.5/crates/oracle-harness/tests/raw_bin_train_parity.rs +174 -0
  723. lightgbm_rs-0.0.5/crates/oracle-harness/tests/rawcorpus_binning_config.rs +61 -0
  724. lightgbm_rs-0.0.5/crates/oracle-harness/tests/rng_parity.rs +156 -0
  725. lightgbm_rs-0.0.5/pyproject.toml +36 -0
  726. lightgbm_rs-0.0.5/python/lightgbm_rs/__init__.py +115 -0
  727. lightgbm_rs-0.0.5/python/lightgbm_rs/callback.py +304 -0
  728. lightgbm_rs-0.0.5/python/lightgbm_rs/engine.py +475 -0
  729. lightgbm_rs-0.0.5/python/lightgbm_rs/plotting.py +155 -0
  730. 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.