churnkit 0.75.0a1__py3-none-any.whl

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 (302) hide show
  1. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/00_start_here.ipynb +647 -0
  2. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01_data_discovery.ipynb +1165 -0
  3. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01a_a_temporal_text_deep_dive.ipynb +961 -0
  4. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01a_temporal_deep_dive.ipynb +1690 -0
  5. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01b_temporal_quality.ipynb +679 -0
  6. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01c_temporal_patterns.ipynb +3305 -0
  7. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01d_event_aggregation.ipynb +1463 -0
  8. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/02_column_deep_dive.ipynb +1430 -0
  9. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/02a_text_columns_deep_dive.ipynb +854 -0
  10. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/03_quality_assessment.ipynb +1639 -0
  11. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/04_relationship_analysis.ipynb +1890 -0
  12. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/05_multi_dataset.ipynb +1457 -0
  13. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/06_feature_opportunities.ipynb +1624 -0
  14. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/07_modeling_readiness.ipynb +780 -0
  15. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/08_baseline_experiments.ipynb +979 -0
  16. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/09_business_alignment.ipynb +572 -0
  17. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/10_spec_generation.ipynb +1179 -0
  18. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/11_scoring_validation.ipynb +1418 -0
  19. churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/12_view_documentation.ipynb +151 -0
  20. churnkit-0.75.0a1.dist-info/METADATA +229 -0
  21. churnkit-0.75.0a1.dist-info/RECORD +302 -0
  22. churnkit-0.75.0a1.dist-info/WHEEL +4 -0
  23. churnkit-0.75.0a1.dist-info/entry_points.txt +2 -0
  24. churnkit-0.75.0a1.dist-info/licenses/LICENSE +202 -0
  25. customer_retention/__init__.py +37 -0
  26. customer_retention/analysis/__init__.py +0 -0
  27. customer_retention/analysis/auto_explorer/__init__.py +62 -0
  28. customer_retention/analysis/auto_explorer/exploration_manager.py +470 -0
  29. customer_retention/analysis/auto_explorer/explorer.py +258 -0
  30. customer_retention/analysis/auto_explorer/findings.py +291 -0
  31. customer_retention/analysis/auto_explorer/layered_recommendations.py +485 -0
  32. customer_retention/analysis/auto_explorer/recommendation_builder.py +148 -0
  33. customer_retention/analysis/auto_explorer/recommendations.py +418 -0
  34. customer_retention/analysis/business/__init__.py +26 -0
  35. customer_retention/analysis/business/ab_test_designer.py +144 -0
  36. customer_retention/analysis/business/fairness_analyzer.py +166 -0
  37. customer_retention/analysis/business/intervention_matcher.py +121 -0
  38. customer_retention/analysis/business/report_generator.py +222 -0
  39. customer_retention/analysis/business/risk_profile.py +199 -0
  40. customer_retention/analysis/business/roi_analyzer.py +139 -0
  41. customer_retention/analysis/diagnostics/__init__.py +20 -0
  42. customer_retention/analysis/diagnostics/calibration_analyzer.py +133 -0
  43. customer_retention/analysis/diagnostics/cv_analyzer.py +144 -0
  44. customer_retention/analysis/diagnostics/error_analyzer.py +107 -0
  45. customer_retention/analysis/diagnostics/leakage_detector.py +394 -0
  46. customer_retention/analysis/diagnostics/noise_tester.py +140 -0
  47. customer_retention/analysis/diagnostics/overfitting_analyzer.py +190 -0
  48. customer_retention/analysis/diagnostics/segment_analyzer.py +122 -0
  49. customer_retention/analysis/discovery/__init__.py +8 -0
  50. customer_retention/analysis/discovery/config_generator.py +49 -0
  51. customer_retention/analysis/discovery/discovery_flow.py +19 -0
  52. customer_retention/analysis/discovery/type_inferencer.py +147 -0
  53. customer_retention/analysis/interpretability/__init__.py +13 -0
  54. customer_retention/analysis/interpretability/cohort_analyzer.py +185 -0
  55. customer_retention/analysis/interpretability/counterfactual.py +175 -0
  56. customer_retention/analysis/interpretability/individual_explainer.py +141 -0
  57. customer_retention/analysis/interpretability/pdp_generator.py +103 -0
  58. customer_retention/analysis/interpretability/shap_explainer.py +106 -0
  59. customer_retention/analysis/jupyter_save_hook.py +28 -0
  60. customer_retention/analysis/notebook_html_exporter.py +136 -0
  61. customer_retention/analysis/notebook_progress.py +60 -0
  62. customer_retention/analysis/plotly_preprocessor.py +154 -0
  63. customer_retention/analysis/recommendations/__init__.py +54 -0
  64. customer_retention/analysis/recommendations/base.py +158 -0
  65. customer_retention/analysis/recommendations/cleaning/__init__.py +11 -0
  66. customer_retention/analysis/recommendations/cleaning/consistency.py +107 -0
  67. customer_retention/analysis/recommendations/cleaning/deduplicate.py +94 -0
  68. customer_retention/analysis/recommendations/cleaning/impute.py +67 -0
  69. customer_retention/analysis/recommendations/cleaning/outlier.py +71 -0
  70. customer_retention/analysis/recommendations/datetime/__init__.py +3 -0
  71. customer_retention/analysis/recommendations/datetime/extract.py +149 -0
  72. customer_retention/analysis/recommendations/encoding/__init__.py +3 -0
  73. customer_retention/analysis/recommendations/encoding/categorical.py +114 -0
  74. customer_retention/analysis/recommendations/pipeline.py +74 -0
  75. customer_retention/analysis/recommendations/registry.py +76 -0
  76. customer_retention/analysis/recommendations/selection/__init__.py +3 -0
  77. customer_retention/analysis/recommendations/selection/drop_column.py +56 -0
  78. customer_retention/analysis/recommendations/transform/__init__.py +4 -0
  79. customer_retention/analysis/recommendations/transform/power.py +94 -0
  80. customer_retention/analysis/recommendations/transform/scale.py +112 -0
  81. customer_retention/analysis/visualization/__init__.py +15 -0
  82. customer_retention/analysis/visualization/chart_builder.py +2619 -0
  83. customer_retention/analysis/visualization/console.py +122 -0
  84. customer_retention/analysis/visualization/display.py +171 -0
  85. customer_retention/analysis/visualization/number_formatter.py +36 -0
  86. customer_retention/artifacts/__init__.py +3 -0
  87. customer_retention/artifacts/fit_artifact_registry.py +146 -0
  88. customer_retention/cli.py +93 -0
  89. customer_retention/core/__init__.py +0 -0
  90. customer_retention/core/compat/__init__.py +193 -0
  91. customer_retention/core/compat/detection.py +99 -0
  92. customer_retention/core/compat/ops.py +48 -0
  93. customer_retention/core/compat/pandas_backend.py +57 -0
  94. customer_retention/core/compat/spark_backend.py +75 -0
  95. customer_retention/core/components/__init__.py +11 -0
  96. customer_retention/core/components/base.py +79 -0
  97. customer_retention/core/components/components/__init__.py +13 -0
  98. customer_retention/core/components/components/deployer.py +26 -0
  99. customer_retention/core/components/components/explainer.py +26 -0
  100. customer_retention/core/components/components/feature_eng.py +33 -0
  101. customer_retention/core/components/components/ingester.py +34 -0
  102. customer_retention/core/components/components/profiler.py +34 -0
  103. customer_retention/core/components/components/trainer.py +38 -0
  104. customer_retention/core/components/components/transformer.py +36 -0
  105. customer_retention/core/components/components/validator.py +37 -0
  106. customer_retention/core/components/enums.py +33 -0
  107. customer_retention/core/components/orchestrator.py +94 -0
  108. customer_retention/core/components/registry.py +59 -0
  109. customer_retention/core/config/__init__.py +39 -0
  110. customer_retention/core/config/column_config.py +95 -0
  111. customer_retention/core/config/experiments.py +71 -0
  112. customer_retention/core/config/pipeline_config.py +117 -0
  113. customer_retention/core/config/source_config.py +83 -0
  114. customer_retention/core/utils/__init__.py +28 -0
  115. customer_retention/core/utils/leakage.py +85 -0
  116. customer_retention/core/utils/severity.py +53 -0
  117. customer_retention/core/utils/statistics.py +90 -0
  118. customer_retention/generators/__init__.py +0 -0
  119. customer_retention/generators/notebook_generator/__init__.py +167 -0
  120. customer_retention/generators/notebook_generator/base.py +55 -0
  121. customer_retention/generators/notebook_generator/cell_builder.py +49 -0
  122. customer_retention/generators/notebook_generator/config.py +47 -0
  123. customer_retention/generators/notebook_generator/databricks_generator.py +48 -0
  124. customer_retention/generators/notebook_generator/local_generator.py +48 -0
  125. customer_retention/generators/notebook_generator/project_init.py +174 -0
  126. customer_retention/generators/notebook_generator/runner.py +150 -0
  127. customer_retention/generators/notebook_generator/script_generator.py +110 -0
  128. customer_retention/generators/notebook_generator/stages/__init__.py +19 -0
  129. customer_retention/generators/notebook_generator/stages/base_stage.py +86 -0
  130. customer_retention/generators/notebook_generator/stages/s01_ingestion.py +100 -0
  131. customer_retention/generators/notebook_generator/stages/s02_profiling.py +95 -0
  132. customer_retention/generators/notebook_generator/stages/s03_cleaning.py +180 -0
  133. customer_retention/generators/notebook_generator/stages/s04_transformation.py +165 -0
  134. customer_retention/generators/notebook_generator/stages/s05_feature_engineering.py +115 -0
  135. customer_retention/generators/notebook_generator/stages/s06_feature_selection.py +97 -0
  136. customer_retention/generators/notebook_generator/stages/s07_model_training.py +176 -0
  137. customer_retention/generators/notebook_generator/stages/s08_deployment.py +81 -0
  138. customer_retention/generators/notebook_generator/stages/s09_monitoring.py +112 -0
  139. customer_retention/generators/notebook_generator/stages/s10_batch_inference.py +642 -0
  140. customer_retention/generators/notebook_generator/stages/s11_feature_store.py +348 -0
  141. customer_retention/generators/orchestration/__init__.py +23 -0
  142. customer_retention/generators/orchestration/code_generator.py +196 -0
  143. customer_retention/generators/orchestration/context.py +147 -0
  144. customer_retention/generators/orchestration/data_materializer.py +188 -0
  145. customer_retention/generators/orchestration/databricks_exporter.py +411 -0
  146. customer_retention/generators/orchestration/doc_generator.py +311 -0
  147. customer_retention/generators/pipeline_generator/__init__.py +26 -0
  148. customer_retention/generators/pipeline_generator/findings_parser.py +727 -0
  149. customer_retention/generators/pipeline_generator/generator.py +142 -0
  150. customer_retention/generators/pipeline_generator/models.py +166 -0
  151. customer_retention/generators/pipeline_generator/renderer.py +2125 -0
  152. customer_retention/generators/spec_generator/__init__.py +37 -0
  153. customer_retention/generators/spec_generator/databricks_generator.py +433 -0
  154. customer_retention/generators/spec_generator/generic_generator.py +373 -0
  155. customer_retention/generators/spec_generator/mlflow_pipeline_generator.py +685 -0
  156. customer_retention/generators/spec_generator/pipeline_spec.py +298 -0
  157. customer_retention/integrations/__init__.py +0 -0
  158. customer_retention/integrations/adapters/__init__.py +13 -0
  159. customer_retention/integrations/adapters/base.py +10 -0
  160. customer_retention/integrations/adapters/factory.py +25 -0
  161. customer_retention/integrations/adapters/feature_store/__init__.py +6 -0
  162. customer_retention/integrations/adapters/feature_store/base.py +57 -0
  163. customer_retention/integrations/adapters/feature_store/databricks.py +94 -0
  164. customer_retention/integrations/adapters/feature_store/feast_adapter.py +97 -0
  165. customer_retention/integrations/adapters/feature_store/local.py +75 -0
  166. customer_retention/integrations/adapters/mlflow/__init__.py +6 -0
  167. customer_retention/integrations/adapters/mlflow/base.py +32 -0
  168. customer_retention/integrations/adapters/mlflow/databricks.py +54 -0
  169. customer_retention/integrations/adapters/mlflow/experiment_tracker.py +161 -0
  170. customer_retention/integrations/adapters/mlflow/local.py +50 -0
  171. customer_retention/integrations/adapters/storage/__init__.py +5 -0
  172. customer_retention/integrations/adapters/storage/base.py +33 -0
  173. customer_retention/integrations/adapters/storage/databricks.py +76 -0
  174. customer_retention/integrations/adapters/storage/local.py +59 -0
  175. customer_retention/integrations/feature_store/__init__.py +47 -0
  176. customer_retention/integrations/feature_store/definitions.py +215 -0
  177. customer_retention/integrations/feature_store/manager.py +744 -0
  178. customer_retention/integrations/feature_store/registry.py +412 -0
  179. customer_retention/integrations/iteration/__init__.py +28 -0
  180. customer_retention/integrations/iteration/context.py +212 -0
  181. customer_retention/integrations/iteration/feedback_collector.py +184 -0
  182. customer_retention/integrations/iteration/orchestrator.py +168 -0
  183. customer_retention/integrations/iteration/recommendation_tracker.py +341 -0
  184. customer_retention/integrations/iteration/signals.py +212 -0
  185. customer_retention/integrations/llm_context/__init__.py +4 -0
  186. customer_retention/integrations/llm_context/context_builder.py +201 -0
  187. customer_retention/integrations/llm_context/prompts.py +100 -0
  188. customer_retention/integrations/streaming/__init__.py +103 -0
  189. customer_retention/integrations/streaming/batch_integration.py +149 -0
  190. customer_retention/integrations/streaming/early_warning_model.py +227 -0
  191. customer_retention/integrations/streaming/event_schema.py +214 -0
  192. customer_retention/integrations/streaming/online_store_writer.py +249 -0
  193. customer_retention/integrations/streaming/realtime_scorer.py +261 -0
  194. customer_retention/integrations/streaming/trigger_engine.py +293 -0
  195. customer_retention/integrations/streaming/window_aggregator.py +393 -0
  196. customer_retention/stages/__init__.py +0 -0
  197. customer_retention/stages/cleaning/__init__.py +9 -0
  198. customer_retention/stages/cleaning/base.py +28 -0
  199. customer_retention/stages/cleaning/missing_handler.py +160 -0
  200. customer_retention/stages/cleaning/outlier_handler.py +204 -0
  201. customer_retention/stages/deployment/__init__.py +28 -0
  202. customer_retention/stages/deployment/batch_scorer.py +106 -0
  203. customer_retention/stages/deployment/champion_challenger.py +299 -0
  204. customer_retention/stages/deployment/model_registry.py +182 -0
  205. customer_retention/stages/deployment/retraining_trigger.py +245 -0
  206. customer_retention/stages/features/__init__.py +73 -0
  207. customer_retention/stages/features/behavioral_features.py +266 -0
  208. customer_retention/stages/features/customer_segmentation.py +505 -0
  209. customer_retention/stages/features/feature_definitions.py +265 -0
  210. customer_retention/stages/features/feature_engineer.py +551 -0
  211. customer_retention/stages/features/feature_manifest.py +340 -0
  212. customer_retention/stages/features/feature_selector.py +239 -0
  213. customer_retention/stages/features/interaction_features.py +160 -0
  214. customer_retention/stages/features/temporal_features.py +243 -0
  215. customer_retention/stages/ingestion/__init__.py +9 -0
  216. customer_retention/stages/ingestion/load_result.py +32 -0
  217. customer_retention/stages/ingestion/loaders.py +195 -0
  218. customer_retention/stages/ingestion/source_registry.py +130 -0
  219. customer_retention/stages/modeling/__init__.py +31 -0
  220. customer_retention/stages/modeling/baseline_trainer.py +139 -0
  221. customer_retention/stages/modeling/cross_validator.py +125 -0
  222. customer_retention/stages/modeling/data_splitter.py +205 -0
  223. customer_retention/stages/modeling/feature_scaler.py +99 -0
  224. customer_retention/stages/modeling/hyperparameter_tuner.py +107 -0
  225. customer_retention/stages/modeling/imbalance_handler.py +282 -0
  226. customer_retention/stages/modeling/mlflow_logger.py +95 -0
  227. customer_retention/stages/modeling/model_comparator.py +149 -0
  228. customer_retention/stages/modeling/model_evaluator.py +138 -0
  229. customer_retention/stages/modeling/threshold_optimizer.py +131 -0
  230. customer_retention/stages/monitoring/__init__.py +37 -0
  231. customer_retention/stages/monitoring/alert_manager.py +328 -0
  232. customer_retention/stages/monitoring/drift_detector.py +201 -0
  233. customer_retention/stages/monitoring/performance_monitor.py +242 -0
  234. customer_retention/stages/preprocessing/__init__.py +5 -0
  235. customer_retention/stages/preprocessing/transformer_manager.py +284 -0
  236. customer_retention/stages/profiling/__init__.py +256 -0
  237. customer_retention/stages/profiling/categorical_distribution.py +269 -0
  238. customer_retention/stages/profiling/categorical_target_analyzer.py +274 -0
  239. customer_retention/stages/profiling/column_profiler.py +527 -0
  240. customer_retention/stages/profiling/distribution_analysis.py +483 -0
  241. customer_retention/stages/profiling/drift_detector.py +310 -0
  242. customer_retention/stages/profiling/feature_capacity.py +507 -0
  243. customer_retention/stages/profiling/pattern_analysis_config.py +513 -0
  244. customer_retention/stages/profiling/profile_result.py +212 -0
  245. customer_retention/stages/profiling/quality_checks.py +1632 -0
  246. customer_retention/stages/profiling/relationship_detector.py +256 -0
  247. customer_retention/stages/profiling/relationship_recommender.py +454 -0
  248. customer_retention/stages/profiling/report_generator.py +520 -0
  249. customer_retention/stages/profiling/scd_analyzer.py +151 -0
  250. customer_retention/stages/profiling/segment_analyzer.py +632 -0
  251. customer_retention/stages/profiling/segment_aware_outlier.py +265 -0
  252. customer_retention/stages/profiling/target_level_analyzer.py +217 -0
  253. customer_retention/stages/profiling/temporal_analyzer.py +388 -0
  254. customer_retention/stages/profiling/temporal_coverage.py +488 -0
  255. customer_retention/stages/profiling/temporal_feature_analyzer.py +692 -0
  256. customer_retention/stages/profiling/temporal_feature_engineer.py +703 -0
  257. customer_retention/stages/profiling/temporal_pattern_analyzer.py +636 -0
  258. customer_retention/stages/profiling/temporal_quality_checks.py +278 -0
  259. customer_retention/stages/profiling/temporal_target_analyzer.py +241 -0
  260. customer_retention/stages/profiling/text_embedder.py +87 -0
  261. customer_retention/stages/profiling/text_processor.py +115 -0
  262. customer_retention/stages/profiling/text_reducer.py +60 -0
  263. customer_retention/stages/profiling/time_series_profiler.py +303 -0
  264. customer_retention/stages/profiling/time_window_aggregator.py +376 -0
  265. customer_retention/stages/profiling/type_detector.py +382 -0
  266. customer_retention/stages/profiling/window_recommendation.py +288 -0
  267. customer_retention/stages/temporal/__init__.py +166 -0
  268. customer_retention/stages/temporal/access_guard.py +180 -0
  269. customer_retention/stages/temporal/cutoff_analyzer.py +235 -0
  270. customer_retention/stages/temporal/data_preparer.py +178 -0
  271. customer_retention/stages/temporal/point_in_time_join.py +134 -0
  272. customer_retention/stages/temporal/point_in_time_registry.py +148 -0
  273. customer_retention/stages/temporal/scenario_detector.py +163 -0
  274. customer_retention/stages/temporal/snapshot_manager.py +259 -0
  275. customer_retention/stages/temporal/synthetic_coordinator.py +66 -0
  276. customer_retention/stages/temporal/timestamp_discovery.py +531 -0
  277. customer_retention/stages/temporal/timestamp_manager.py +255 -0
  278. customer_retention/stages/transformation/__init__.py +13 -0
  279. customer_retention/stages/transformation/binary_handler.py +85 -0
  280. customer_retention/stages/transformation/categorical_encoder.py +245 -0
  281. customer_retention/stages/transformation/datetime_transformer.py +97 -0
  282. customer_retention/stages/transformation/numeric_transformer.py +181 -0
  283. customer_retention/stages/transformation/pipeline.py +257 -0
  284. customer_retention/stages/validation/__init__.py +60 -0
  285. customer_retention/stages/validation/adversarial_scoring_validator.py +205 -0
  286. customer_retention/stages/validation/business_sense_gate.py +173 -0
  287. customer_retention/stages/validation/data_quality_gate.py +235 -0
  288. customer_retention/stages/validation/data_validators.py +511 -0
  289. customer_retention/stages/validation/feature_quality_gate.py +183 -0
  290. customer_retention/stages/validation/gates.py +117 -0
  291. customer_retention/stages/validation/leakage_gate.py +352 -0
  292. customer_retention/stages/validation/model_validity_gate.py +213 -0
  293. customer_retention/stages/validation/pipeline_validation_runner.py +264 -0
  294. customer_retention/stages/validation/quality_scorer.py +544 -0
  295. customer_retention/stages/validation/rule_generator.py +57 -0
  296. customer_retention/stages/validation/scoring_pipeline_validator.py +446 -0
  297. customer_retention/stages/validation/timeseries_detector.py +769 -0
  298. customer_retention/transforms/__init__.py +47 -0
  299. customer_retention/transforms/artifact_store.py +50 -0
  300. customer_retention/transforms/executor.py +157 -0
  301. customer_retention/transforms/fitted.py +92 -0
  302. customer_retention/transforms/ops.py +148 -0
@@ -0,0 +1,302 @@
1
+ customer_retention/__init__.py,sha256=jUBt-Uje1o_YtThpQHDBMoP1aR6fx31Q9zLQNZPh2Ag,1114
2
+ customer_retention/cli.py,sha256=mkKVenlAqsMgnr1XNIu12TkO0cqyHMILg2zjAdQLgYk,2442
3
+ customer_retention/analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ customer_retention/analysis/jupyter_save_hook.py,sha256=iiNFIL83yOPX8BGUjCE6Pt5Kc8X-2adtE1_NZTMUaZQ,947
5
+ customer_retention/analysis/notebook_html_exporter.py,sha256=AMOTcD6nZncM4MPdVS1Kn4WF2YoaOoODMI2X48oEZ24,4491
6
+ customer_retention/analysis/notebook_progress.py,sha256=EUJTvGIIdZF_wCi4NtuL7pHx3vX--HSLdwlT09-0ulk,2212
7
+ customer_retention/analysis/plotly_preprocessor.py,sha256=Bdd_9-AmfmJdrmm030wzgpLflbiszp9KhXPbw_F5Id0,5300
8
+ customer_retention/analysis/auto_explorer/__init__.py,sha256=0isViyt62QvDkYc2oxOhsDQ9RNMqBq1ihvwEZgoLb_s,1572
9
+ customer_retention/analysis/auto_explorer/exploration_manager.py,sha256=60ObVRhYwAWqHnLrkeJ6_oQjPvXOl4gkLutE66_k8uc,18028
10
+ customer_retention/analysis/auto_explorer/explorer.py,sha256=IFJ3K2TtTukB8ppn-wJ6JFMq8V3ZTLu9au5AZqjvtFM,13286
11
+ customer_retention/analysis/auto_explorer/findings.py,sha256=frry7huqfDuP0VwE0AOn4zPr0TPiUYN8ESqanUYxRA4,11420
12
+ customer_retention/analysis/auto_explorer/layered_recommendations.py,sha256=NcCzh92uI27ATze1_XAEcS1vzP8uu2bld8N6RYBWRTM,24392
13
+ customer_retention/analysis/auto_explorer/recommendation_builder.py,sha256=7edPcLjpeOw1BiRO0J7M1DpdEdfAJrjVEfAe-v2IpYw,6225
14
+ customer_retention/analysis/auto_explorer/recommendations.py,sha256=klFBv71bubYB1Tiz9c7SqMd80hp6pp9EvQHgs-u3wDA,19552
15
+ customer_retention/analysis/business/__init__.py,sha256=eSwOaKbkTNS9MgYiHCoI6GrAMWr7C0II-DgddVy4e1g,1404
16
+ customer_retention/analysis/business/ab_test_designer.py,sha256=fGDz7Vd42jseMt7UFh3xwlPngDbS8K1X3LjBQd7F6l4,5911
17
+ customer_retention/analysis/business/fairness_analyzer.py,sha256=nLrRP4vEC8qAq8cC6FXnpjZdY4EunR4aco9VfZyUKHg,6397
18
+ customer_retention/analysis/business/intervention_matcher.py,sha256=vHEtqW0aLsU9C_5Jc7PL7qEENGSnvImGHCXYG0CLK7k,5222
19
+ customer_retention/analysis/business/report_generator.py,sha256=iGlDIUbrraBGs5I1IKHbiIQcojlImjd9dBeru1J-moU,9500
20
+ customer_retention/analysis/business/risk_profile.py,sha256=tS585zNKOy31I8hZAmQ5RmuA_Df6LMRr4jLMLGnU9c0,8238
21
+ customer_retention/analysis/business/roi_analyzer.py,sha256=Fcfiejol5HGYfSGFPcyQltv1sDLHi7KXME0ObLaVe2U,5744
22
+ customer_retention/analysis/diagnostics/__init__.py,sha256=rGG1OpBi2KtoR_7WVMArnOknhboYMZpii5Q2yzUt8dA,1030
23
+ customer_retention/analysis/diagnostics/calibration_analyzer.py,sha256=hUmQPVJUfnUbmprsQY5I2dg1zOlGmbCythrlz_mtfJE,5480
24
+ customer_retention/analysis/diagnostics/cv_analyzer.py,sha256=0wTa66o91W2TLgufXlNap1O2PZEwfgz6DiZEyzem7yM,5933
25
+ customer_retention/analysis/diagnostics/error_analyzer.py,sha256=vAvse-I5I0vXEZu1eacjXrTEbXHKohIeqN5hInG6_EM,4778
26
+ customer_retention/analysis/diagnostics/leakage_detector.py,sha256=M3Jtp8X-V75XGZKLkfcWbBTNAgxKWxQebiZQYXnw0tY,19390
27
+ customer_retention/analysis/diagnostics/noise_tester.py,sha256=g4B8cJpcdFjs_CUE04dEWwIp34GrVanLEgaXfj9jMaw,6512
28
+ customer_retention/analysis/diagnostics/overfitting_analyzer.py,sha256=Ljw0Vylgfz7pUnNx7yXyJF8IBkZZ5LvSl3JspIUhmkw,8897
29
+ customer_retention/analysis/diagnostics/segment_analyzer.py,sha256=DTjdCOnQufEdv52AoTRmfze6SXkgne-oOOdSjak9qZ0,5319
30
+ customer_retention/analysis/discovery/__init__.py,sha256=a3nRPb1yaZmLZaVoOqMPAqt_cc6auZisccF7hra4kBQ,342
31
+ customer_retention/analysis/discovery/config_generator.py,sha256=mJQU3olytOuHwOF2zNKsu0a1jtt3cUxOzzNtzh1SBpA,1872
32
+ customer_retention/analysis/discovery/discovery_flow.py,sha256=BecdqYtIINjx7mrePqJtejvXn4RYyQreXukfr-y8P_0,668
33
+ customer_retention/analysis/discovery/type_inferencer.py,sha256=lg1yX1gkJYjViw1UpJTy4macu7i_PZ6APiqTPKIWgO4,6660
34
+ customer_retention/analysis/interpretability/__init__.py,sha256=FCOcr4AqhlfVszSm18aqniRXkAXue0kTDKlnA6No3YE,820
35
+ customer_retention/analysis/interpretability/cohort_analyzer.py,sha256=xWFTOmYqJ906r18QAM-SGgbIEHnfGiHkxMku0YoR8zE,7801
36
+ customer_retention/analysis/interpretability/counterfactual.py,sha256=7DNkVpfK3CLpAWVtyAOLNMpUSkcD2Rvuj0Bq1WrHxiM,7755
37
+ customer_retention/analysis/interpretability/individual_explainer.py,sha256=uhPgAe61YNSBGThSmd1cbwAtXe3nXqi9HoplmnAcMTo,5567
38
+ customer_retention/analysis/interpretability/pdp_generator.py,sha256=G2vDQnaw_t8QTPJrVWr9pLbZ32M8Gv_jbmRebXkKv8A,3972
39
+ customer_retention/analysis/interpretability/shap_explainer.py,sha256=P8rnJTUlbigHwgUoodQV4cBvffUIkcswlPS0i1wDEvU,4344
40
+ customer_retention/analysis/recommendations/__init__.py,sha256=LWluuN5W5jpm5AzHck6W2671MIIm3TRXjBmAAOAHv08,1624
41
+ customer_retention/analysis/recommendations/base.py,sha256=Q8k3VEg6caYFO5m96SknMfczEfP451e5ltlJ0nrcCvk,5012
42
+ customer_retention/analysis/recommendations/pipeline.py,sha256=Dqq8NyBzjNr9DSxruka6hJXsXLDxtfsiscXCxyoKKhM,2644
43
+ customer_retention/analysis/recommendations/registry.py,sha256=bqFOlnRhJq5U5JHAdlSPPdYtUQkG760r3QUVvAsAWAI,4076
44
+ customer_retention/analysis/recommendations/cleaning/__init__.py,sha256=vRkTkSGzWVEi-VUNdqth19G_1SUvMwrpYKh8fOK0oZ8,348
45
+ customer_retention/analysis/recommendations/cleaning/consistency.py,sha256=PHnPE1BBCcdX3T8_lb-fe1lcHZJZOHBlL-OhJCZCMQ8,4419
46
+ customer_retention/analysis/recommendations/cleaning/deduplicate.py,sha256=cUiBP8tJeghuCNfaf1A7MBZKIP51n2Nh_eJTjAMHpoo,4734
47
+ customer_retention/analysis/recommendations/cleaning/impute.py,sha256=32hym_iwcPKp3GMR7OpKw_wsKI-fUISaJGGY1NFTAmA,2777
48
+ customer_retention/analysis/recommendations/cleaning/outlier.py,sha256=N-avGcGfJiUQMEpdsvUv4C8VIfYtYzyYtqGSEkeigzw,3080
49
+ customer_retention/analysis/recommendations/datetime/__init__.py,sha256=cV2ZQhasMMHuk8EEz05X_IIhWlKqlTVDaeD_pCBspQ0,208
50
+ customer_retention/analysis/recommendations/datetime/extract.py,sha256=xpSgpa7XBv7xiH5q3fhhXeLHzSXhFYnuFMj8lOx9W9s,6442
51
+ customer_retention/analysis/recommendations/encoding/__init__.py,sha256=IjHfb4TV9zKR9yybDk1xjtqOS_jQr4ctojcTJnxVQpM,150
52
+ customer_retention/analysis/recommendations/encoding/categorical.py,sha256=op5PrM_xw6CXkt9ilHYTDfHu3uKfK7JU3FjQlbQUpyY,5189
53
+ customer_retention/analysis/recommendations/selection/__init__.py,sha256=dq7swNItrxkL9GhLTIPlFp8UgB79DOfeOEIw7kZOVpE,90
54
+ customer_retention/analysis/recommendations/selection/drop_column.py,sha256=vAO8coRfIFohBbsFIYjJIJ4qwakjMcZ9CqFP7wmxna8,2193
55
+ customer_retention/analysis/recommendations/transform/__init__.py,sha256=z5HPxPGvUPR9fC6CQv6rP0Pp3QOIANQQVLicbyh7v7I,282
56
+ customer_retention/analysis/recommendations/transform/power.py,sha256=4S-zZnLWrHVW4Q52xiyCPXJ8OweO28Tnld94kiFY5yw,3738
57
+ customer_retention/analysis/recommendations/transform/scale.py,sha256=mKt6_UV0iQ1AiQwyHr3owhvkFWngecr6sTzgA4DX7Is,5081
58
+ customer_retention/analysis/visualization/__init__.py,sha256=5dVikBgzwJuQZ-W0vN5uMB1lLjVmvJbEhROQw9_87PI,399
59
+ customer_retention/analysis/visualization/chart_builder.py,sha256=xZgRjLDRbBYBPvLz0HOOUfyzydt4H6skv5d2Oe0pvPk,111788
60
+ customer_retention/analysis/visualization/console.py,sha256=dl_nEo6rXXSRfSnYkkJ4CsvBcE-n3l4mH9MIIjtw8Yw,2853
61
+ customer_retention/analysis/visualization/display.py,sha256=9px602M7GrllJYthHLthjpVYd0jiTTAyY5WK69dd4s0,6625
62
+ customer_retention/analysis/visualization/number_formatter.py,sha256=I1gUB0tEmfTQuDfOGYBZ3KRbq1rUd7ltR0vhDxFNRv8,1171
63
+ customer_retention/artifacts/__init__.py,sha256=zTROqiS6zlkkuCZgR6YOB0Cvlsyr0TpRBYsOEorpDYw,118
64
+ customer_retention/artifacts/fit_artifact_registry.py,sha256=aNfZC0Dgbc6jEwRR5keDEop9jo_tuL82hKO3ouCh5eY,5750
65
+ customer_retention/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
+ customer_retention/core/compat/__init__.py,sha256=PIz859jJ-naUGCxXkMrDAvtnZIc12AenRkqzN3UYQ1c,4930
67
+ customer_retention/core/compat/detection.py,sha256=6W_1LefgQriBtRY2PnvSCUGDt0X63oIUEEVjFqG3qH0,2492
68
+ customer_retention/core/compat/ops.py,sha256=L-tAh4A3UEfRvePS6rAbhqb0QtZ_bN-TV7ZWpTkMFLA,1809
69
+ customer_retention/core/compat/pandas_backend.py,sha256=14JPoYTW6X-a3UwFaemhmPr8zi_GTdZnyitmqPQODR0,1839
70
+ customer_retention/core/compat/spark_backend.py,sha256=58D2-mUkE-qv4_K4jA07_hTnTaB_7Lpf96TKCO_7ua8,2452
71
+ customer_retention/core/components/__init__.py,sha256=yFtxi7r0L5aP11eiGPvt8ll6c1ySe2bsvo-mdGmLK0c,459
72
+ customer_retention/core/components/base.py,sha256=W9pnf3BwOTWtUbi9HyLZqn7kSz-ZdAD2vFPS5r_Lxw4,2616
73
+ customer_retention/core/components/enums.py,sha256=Zrt1ih83U8fDFNk7a37UgyZOhVLsT7GsdoUEDlW87pc,658
74
+ customer_retention/core/components/orchestrator.py,sha256=dh083JrFqBTnaODQTNpmR7e-mwWAOiVHuFkJzGKpOYQ,3363
75
+ customer_retention/core/components/registry.py,sha256=j712_ED3FN2qam5RaVsCx3NOy_PSE9a0hZeCCpVPLqk,2438
76
+ customer_retention/core/components/components/__init__.py,sha256=tbw54-77s7t6AJQGY7XR6a-EbtUdnJeqP91ViFeRp00,395
77
+ customer_retention/core/components/components/deployer.py,sha256=Lb0pC_97Ryt_0sPZ8N5b1nBxkBOPlAWm34rCaUvpVyU,822
78
+ customer_retention/core/components/components/explainer.py,sha256=mtVKb6J64Ix-cbLJd0DmrXAMRXy2u2mhz4tFSdrtnL0,830
79
+ customer_retention/core/components/components/feature_eng.py,sha256=MJQZvlZo-tpgCYdB1O49hArqm8YJJPF6AhkoXZBYitw,1237
80
+ customer_retention/core/components/components/ingester.py,sha256=tyHUKHOlFG1inRCqZNOvrKi8gKbJdCVKcLpUFwBg2zs,1205
81
+ customer_retention/core/components/components/profiler.py,sha256=Yz-vsTSS9UaLgXLpsxGpUd3m2_z27b42wnR7zHNx3no,1315
82
+ customer_retention/core/components/components/trainer.py,sha256=C_6N7n7qpz3Ks62Ke5BjF_pwbv21DXfnsze1LFSUAPo,1579
83
+ customer_retention/core/components/components/transformer.py,sha256=saEO6cRzKitUsmw-9fIweOKjydH64SOVvUKfcpsR5yk,1401
84
+ customer_retention/core/components/components/validator.py,sha256=5IbUqPYhsvZBTRx0X3MKV2dvZrgTcI19MM9c5_9t2CU,1405
85
+ customer_retention/core/config/__init__.py,sha256=H2V-_cQxqtqNV_bIjcV14FzW4lb16uaOgYWaHwU0-RA,1199
86
+ customer_retention/core/config/column_config.py,sha256=rmMJFV4wK66q-DDQAJXe0EuXdrWd_6bg8s81NQQ54_A,3051
87
+ customer_retention/core/config/experiments.py,sha256=LzMRQkaxhxCtNuhIfxpo6RSHSSME9Hqr6Y6Kz_F-BRc,2112
88
+ customer_retention/core/config/pipeline_config.py,sha256=jriAcP-_UAlVTT_vVlWUPF97ieIguqlE5hrl9Ny0UiI,3675
89
+ customer_retention/core/config/source_config.py,sha256=NnZUytq4NVvRVmp1ZtoFO_SiaIvSoJwkhw5WXy4Wi_c,2534
90
+ customer_retention/core/utils/__init__.py,sha256=9b8SwZGiLP-glYwzcp-1aWCeTGIploAPokwITbUCneA,971
91
+ customer_retention/core/utils/leakage.py,sha256=Q3qyRgSfhSdpBIbUP6hysUIMLTt0igRwB7_e3WzpNdw,3064
92
+ customer_retention/core/utils/severity.py,sha256=dDg30Uh7mBoe4_KPAKAx0OC2GMoX_E3JQRj7Ocn96PE,2174
93
+ customer_retention/core/utils/statistics.py,sha256=tsHvozMLbqlJ39c0aPt8hhY442MQO8ZmbrXGGiUGthk,4122
94
+ customer_retention/generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
+ customer_retention/generators/notebook_generator/__init__.py,sha256=Ko2qqthntVtt3NIvS9zhBlLgpb9Jfo_0BoHafGkj_wY,5909
96
+ customer_retention/generators/notebook_generator/base.py,sha256=j1Vad2HG_0wNNRnQYX0vj42s0cA6bFfZYzpjDPH9azk,1878
97
+ customer_retention/generators/notebook_generator/cell_builder.py,sha256=vDY6ipsNFG0UAoV7vNnkv-GOTU0C0LdQ9uXZeF-xl3g,1617
98
+ customer_retention/generators/notebook_generator/config.py,sha256=nijppxLGsOGv8DafZaSUddGfLuIHHfcaVJw21AUhF5c,1321
99
+ customer_retention/generators/notebook_generator/databricks_generator.py,sha256=bEZh3zPNr9u_tqtHPYa420WGbYd_Elgw4C5tWK_aCzk,1980
100
+ customer_retention/generators/notebook_generator/local_generator.py,sha256=1IoO2C9PXws1CAvaAgK-oHQkMy75JXUMg_syDYT-eY4,1965
101
+ customer_retention/generators/notebook_generator/project_init.py,sha256=gDJN5gH5xSpOrlKkdQaIFXQDIO6UKZKYgouSIG4BKf4,5588
102
+ customer_retention/generators/notebook_generator/runner.py,sha256=SRA8TEs29NwKWhfj0Y9N3JnphvKeQ87PH7Yp5BxT3-I,5691
103
+ customer_retention/generators/notebook_generator/script_generator.py,sha256=ljf3rNg3TgW9kmyfTMFZpsP8D7Z2O-dLMS-FNfhR8z4,4623
104
+ customer_retention/generators/notebook_generator/stages/__init__.py,sha256=clNgtDXeMWceOarAnj0i8-TS8i9x_iJ13_BOhxX9Zyg,855
105
+ customer_retention/generators/notebook_generator/stages/base_stage.py,sha256=kV3G-J9fqzf8uAnatqGy6W6vtrzw8gket1eCc9fb6gc,3262
106
+ customer_retention/generators/notebook_generator/stages/s01_ingestion.py,sha256=e4Ls3YhLA-M03U6srjj-fIPBzrrdyPysJNumM68VzDU,4762
107
+ customer_retention/generators/notebook_generator/stages/s02_profiling.py,sha256=kpI-3FfTYpr29NBX24bYFXB03eq3cKSQBftCRr15qxY,3794
108
+ customer_retention/generators/notebook_generator/stages/s03_cleaning.py,sha256=cNY9AEoZx2r1hNmz2cD4zy36bV855GKavcWSTjp1Hc4,8084
109
+ customer_retention/generators/notebook_generator/stages/s04_transformation.py,sha256=pzZOnWUfGjtGKzaqGfkN-Dipef1KUfErbSejMJv8Eo0,7623
110
+ customer_retention/generators/notebook_generator/stages/s05_feature_engineering.py,sha256=PVfVyA3Lc_DRXsxEf2eAeYtgfx9w8UJW0ImR8UjVpqA,5915
111
+ customer_retention/generators/notebook_generator/stages/s06_feature_selection.py,sha256=FIPy6Dk6OI2LLo3vikq7i8EWkp_-kMbto1yN7Pgi7f4,4484
112
+ customer_retention/generators/notebook_generator/stages/s07_model_training.py,sha256=yJ-FWSCamvAqjZrvxWaUAviWLPHHS4EQ2nrZMRbPey4,8076
113
+ customer_retention/generators/notebook_generator/stages/s08_deployment.py,sha256=6IS1_9ZMvXBNMCTwGNZgSRU5Gh0kaats_CKJZ-z46wg,3556
114
+ customer_retention/generators/notebook_generator/stages/s09_monitoring.py,sha256=RBRHAWfYZFHO9k1I7h1-nnxto2yOPyrAfv0O5joRaow,4868
115
+ customer_retention/generators/notebook_generator/stages/s10_batch_inference.py,sha256=db8nMHXdPToEcMBmJZyMdY1mhzrzOoxV28O9FUGBR4w,24520
116
+ customer_retention/generators/notebook_generator/stages/s11_feature_store.py,sha256=wyx3IKQ6Ld8ANH46olMqQO70kJeMSmqoaGDy60l0e8c,12327
117
+ customer_retention/generators/orchestration/__init__.py,sha256=M2_pU6Q9tVtTEwF17CCAQS9yFjAVthaamo80Cl1qtfk,764
118
+ customer_retention/generators/orchestration/code_generator.py,sha256=T5JarHliteBlLigOn9UOfLO0Dg7V_z6Nx9KdOMrij-U,7416
119
+ customer_retention/generators/orchestration/context.py,sha256=lD3U51P3YAITix82qFuu_OZ_2aFKb7XgZuvSoVtuHDs,5843
120
+ customer_retention/generators/orchestration/data_materializer.py,sha256=Uc0pzKRmU9lpOj2NK5CHZEkV6z6LsREmaTzKidxnxbg,7484
121
+ customer_retention/generators/orchestration/databricks_exporter.py,sha256=PcNWzRiWPd3wQibSdflSOyMOTREPu1vtujJrB-Um-uk,16458
122
+ customer_retention/generators/orchestration/doc_generator.py,sha256=jkYBNkdZPPn_nFLuyFo7movPgexx0zRTtw4v2raWPsY,13244
123
+ customer_retention/generators/pipeline_generator/__init__.py,sha256=1SRNHmQGM-yYlCK3bI2wc6cgV-KxKfcdYPxQyEp2Ldc,834
124
+ customer_retention/generators/pipeline_generator/findings_parser.py,sha256=YvlXmDPDXkNnCvScUDNycwkp1J2HXpbDUO43NiShAig,34527
125
+ customer_retention/generators/pipeline_generator/generator.py,sha256=ZKLr34AM-XEswjoddJXciASUg2mL8jgsXjpQiaKy29M,6097
126
+ customer_retention/generators/pipeline_generator/models.py,sha256=1vSUXzO1uZw194nPdDJ5vU3lZw35Am-UWQY0Ic9CvbE,4874
127
+ customer_retention/generators/pipeline_generator/renderer.py,sha256=hHybbSplSQxhkt_5OcJ8NTXkQppO2VM7lylNOzz3ZAU,81770
128
+ customer_retention/generators/spec_generator/__init__.py,sha256=vojlxKgLGnLHH9DNolB8mgL0_FsIfSSLmuHPXyr8bYY,782
129
+ customer_retention/generators/spec_generator/databricks_generator.py,sha256=o_qAik7mXuwzC9c7xUTkno5GHUmfHz5F2dIWqTcaDzw,15416
130
+ customer_retention/generators/spec_generator/generic_generator.py,sha256=I_glnOOsXDbL_v_ffxkeKwSYm5MCEB5qF9WAAZ8Woho,13962
131
+ customer_retention/generators/spec_generator/mlflow_pipeline_generator.py,sha256=B6uE4YeSWQAMo-d08qsBkicrlTf-S6AIfL9SAKa87vY,27533
132
+ customer_retention/generators/spec_generator/pipeline_spec.py,sha256=c8v1SWgTdeGmNs96l1hOS0qx1B1ua0iwPhw1I5w9OIo,10705
133
+ customer_retention/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
+ customer_retention/integrations/adapters/__init__.py,sha256=Fgdp0ESROTUHnOb2RN9Ubo0A4BdfoenOGuUz61lHz8g,583
135
+ customer_retention/integrations/adapters/base.py,sha256=z6dVAowDKGogKsYGR7VMcLkS6VhcB9h4zgN1tilNYRg,254
136
+ customer_retention/integrations/adapters/factory.py,sha256=guVxKe9NurLQmTetLPH65PBiVhbSpca7VN42Wq0IzFY,1108
137
+ customer_retention/integrations/adapters/feature_store/__init__.py,sha256=KQLLGfgwDOOvC-mhhCpVPIYjh7ruHF07V-cWUWvPfrU,300
138
+ customer_retention/integrations/adapters/feature_store/base.py,sha256=lChCwvnW3TCWA0AZZULQknmWLhTYpCuVLDPt5QLEcxs,1867
139
+ customer_retention/integrations/adapters/feature_store/databricks.py,sha256=bIjId_YsRSa3INL_P0obWvElEyEx5BLY30R5RG6Deoo,4589
140
+ customer_retention/integrations/adapters/feature_store/feast_adapter.py,sha256=rEQhLgwEURNsiJF2vsPNlenX5lwghW6ohVrESxoYcWk,4359
141
+ customer_retention/integrations/adapters/feature_store/local.py,sha256=w6H587lHs2DKXpYfLBjIMGR20l_qRURa8Ykd4nanH7I,2995
142
+ customer_retention/integrations/adapters/mlflow/__init__.py,sha256=G6CO9QNzz8XkPjA--_pGda4tXchUAqpNau7YjCD5Qb0,239
143
+ customer_retention/integrations/adapters/mlflow/base.py,sha256=jcAzkA4vGkXtiVTYC6N5FsyvBkr1rJzbNfPXzMiYSM4,812
144
+ customer_retention/integrations/adapters/mlflow/databricks.py,sha256=i2XIOYjslyqdQWPTSU8lCVbxzqdbE1rJTVajcZoWJtQ,2014
145
+ customer_retention/integrations/adapters/mlflow/experiment_tracker.py,sha256=flBO9cXBr4tvw0qobfqGxSKThuL0oQO1L2Qla5oVBdE,7219
146
+ customer_retention/integrations/adapters/mlflow/local.py,sha256=svwtJvqtAeqXUV2boIZ-S4qDfzNvu7L0czfIkpNpEiY,1864
147
+ customer_retention/integrations/adapters/storage/__init__.py,sha256=2WtvUZWX-oyf6dasvaMHzqPCdIQnD2M-bCU88CAznhQ,162
148
+ customer_retention/integrations/adapters/storage/base.py,sha256=C7PRzngbLUGJXIdvjz4_b-EIkOwWLSI7TDgfBGm-sTM,903
149
+ customer_retention/integrations/adapters/storage/databricks.py,sha256=TS0Nf6Fw506nlTHj7mqPaU8sZ3SiMxqtJVDpzcqpZYY,2891
150
+ customer_retention/integrations/adapters/storage/local.py,sha256=KKQoIMOAoVDI-2pSFM3LgzVBwKlgBGuk0gaEXipg0VE,2218
151
+ customer_retention/integrations/feature_store/__init__.py,sha256=qPVO8sCXjD7Y9zReakngugz0Wur7GxqKP_25_w7Q_4s,1587
152
+ customer_retention/integrations/feature_store/definitions.py,sha256=BfpzWaVj1qBFs-xffW8lAjT7juVl9kHNmBgl7WPKa_c,8253
153
+ customer_retention/integrations/feature_store/manager.py,sha256=likBX3TvZp6uIxPAtVxNhm5lgz515PwhWSWSQg1TzwU,26720
154
+ customer_retention/integrations/feature_store/registry.py,sha256=HqLQVaCBFfSQolzYl4ia1_rZtYponERxUW2Tph5WgYQ,12855
155
+ customer_retention/integrations/iteration/__init__.py,sha256=llmuZ1croajjbMKJdsgEqusAQDjOAScgyXImPUO7ixg,840
156
+ customer_retention/integrations/iteration/context.py,sha256=7GQH9tXso7lT-DfgrTVi17Tf5jhNFbkTfGYQFM_2tbg,8410
157
+ customer_retention/integrations/iteration/feedback_collector.py,sha256=REb2TaLpjz-y48Kk3i-0p391PpLJiN9HuGIF8elmEZY,7028
158
+ customer_retention/integrations/iteration/orchestrator.py,sha256=0z2AgS6cprNRnsQ0-CxRcNkifRIbFf_IdYks92ZiU2w,7088
159
+ customer_retention/integrations/iteration/recommendation_tracker.py,sha256=kwjqWBVNouzvTNZAseC34DdUWtykwCBt2i8jIsNmoq0,15648
160
+ customer_retention/integrations/iteration/signals.py,sha256=KFHjFmwBz4FTz-fwCByJdmNPnlePHDaE3rNEzfeTOOg,8055
161
+ customer_retention/integrations/llm_context/__init__.py,sha256=at8B9oHfWOmORWsUVJe_MT9AGsq7_TH7NRaMxDeAXRo,136
162
+ customer_retention/integrations/llm_context/context_builder.py,sha256=cjeM6Sam0Arf0kHPV2hgEYJk0z5uJ_bopwSjVrOetK4,8231
163
+ customer_retention/integrations/llm_context/prompts.py,sha256=jkQshRMPCyxdwkQuei9rxU2eBETLg8-0PWCpy1brWxY,3243
164
+ customer_retention/integrations/streaming/__init__.py,sha256=cniRfrbnlt7lu8xWbUQihLZcbxoY-oYvpY6c7tei5rI,2873
165
+ customer_retention/integrations/streaming/batch_integration.py,sha256=5d-yvPbSwCGtky8G5STQ1pAjwNZ5KTIqR8I36E8R5MA,6223
166
+ customer_retention/integrations/streaming/early_warning_model.py,sha256=NTS1sBOhL-OypBNvyhkBOrFBqp3FfEsibpcw12OiraQ,8946
167
+ customer_retention/integrations/streaming/event_schema.py,sha256=T-3je5gsm9IrQWY_Cy2ZDiK3WIAzNwMcibpZsjLSpoA,8313
168
+ customer_retention/integrations/streaming/online_store_writer.py,sha256=xev4W_gVuWKFrMrf_zTeFxx6Z6z0c31m30v8xkL7W6A,9700
169
+ customer_retention/integrations/streaming/realtime_scorer.py,sha256=ocj0oBwiy294-wC4pEvSX0Si5yBHVCwlRTWHqjE3EHg,10226
170
+ customer_retention/integrations/streaming/trigger_engine.py,sha256=OOx6xaAU82RZhEaZV4koOCh0qAJYcWbOdLf683armgE,11750
171
+ customer_retention/integrations/streaming/window_aggregator.py,sha256=i_JYvvi0nlL92FlKA-7xb9n3FAwAGCd1A0Rz-yHGQfE,16640
172
+ customer_retention/stages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
+ customer_retention/stages/cleaning/__init__.py,sha256=g8TVaf2R6GyEs5U_u4dNO45KUD9UD9qJgd4s3nBADNY,421
174
+ customer_retention/stages/cleaning/base.py,sha256=rrtJOKLGOxqSXJo7d-f1N5LrtIOCqZHm1sjDz3uoq_w,827
175
+ customer_retention/stages/cleaning/missing_handler.py,sha256=eHpUBUXGbKNSsVzo10b6Ga4XyPKguI3qV89teUW7Ny0,6521
176
+ customer_retention/stages/cleaning/outlier_handler.py,sha256=V5YGUles7mxp9ZbZ4ckdJfMF8dDvrC-gJK50c0DxxJY,8631
177
+ customer_retention/stages/deployment/__init__.py,sha256=I4HW_KsY1RWcb5uyXrk6jVMGpiIP_2Ha-S9LJrPhm0k,991
178
+ customer_retention/stages/deployment/batch_scorer.py,sha256=J3Q1lHFKn9CazkMuymBJ0yY0I3cXTMRbsByLS6gbwm4,4290
179
+ customer_retention/stages/deployment/champion_challenger.py,sha256=WyiBzcQU26IviaUGer4xeeEvsWr2Y8EDrVIc0eudRIM,12074
180
+ customer_retention/stages/deployment/model_registry.py,sha256=igVCM5iCNYuCdwsN6XFruAymYpluQgSJMriR6LzJQx4,7194
181
+ customer_retention/stages/deployment/retraining_trigger.py,sha256=3ouGaWm_p9DEtopAbD6qFhsfumK-sa20bBm7eNFs__w,10172
182
+ customer_retention/stages/features/__init__.py,sha256=vj_mkzTXZD3T6kNfkFOUU8kgL4I3ypZp8tc-MX9fHGU,1937
183
+ customer_retention/stages/features/behavioral_features.py,sha256=0d_NbDuhZKqTETdn5stHzofsonzmOC45HWr1FqjEZlE,10272
184
+ customer_retention/stages/features/customer_segmentation.py,sha256=LzKRG4wFW-ZcTUKqJsUekAEUCOEz3jF8Zq9NlrIf2iI,17786
185
+ customer_retention/stages/features/feature_definitions.py,sha256=EvmdaxM1HZ_oWy6BfmD4MFGb4FVKegfcs4AQ5nNNWV0,7217
186
+ customer_retention/stages/features/feature_engineer.py,sha256=btVsdLHRKYk6E5xI-9oil93-mWYABJUc8_w7kSedJnM,21634
187
+ customer_retention/stages/features/feature_manifest.py,sha256=EEBG7kdU_jWNcnDqdLHONIaJ-n2GcqLkjXjIxo3zn9w,9731
188
+ customer_retention/stages/features/feature_selector.py,sha256=nDcoFWxhROw-wqi331ool9IyXnDDxRUzBI4bPgZSQ5M,10090
189
+ customer_retention/stages/features/interaction_features.py,sha256=P7aaHALbFcfEchJsesVPhVmOm-v2VmYkG90t8p2tNVA,4634
190
+ customer_retention/stages/features/temporal_features.py,sha256=0RghOQwWte7cGULbKAtMggX9pQGwYGU1f4lkl-Y_5ao,9283
191
+ customer_retention/stages/ingestion/__init__.py,sha256=kYVOe8kq7S0I_tjY-BcdZ1IsNWrYYjzDmoAcV2lhijQ,308
192
+ customer_retention/stages/ingestion/load_result.py,sha256=sambVq085Lj1rAfIrbDA2BgPU3HsVVJJpgkVWojkpyc,860
193
+ customer_retention/stages/ingestion/loaders.py,sha256=I0cgJo1XU47y_y7RKk6oELGVu1062qNP2GU5jJfgXVk,7705
194
+ customer_retention/stages/ingestion/source_registry.py,sha256=3QFRxgFbgl5T_cKQSv8M3I3Br9vx7h-QmNDv3aNo91M,4509
195
+ customer_retention/stages/modeling/__init__.py,sha256=476J4cjJclXJhIeqgOG73msqkCakDo9DnRo-Hy0gYbo,1520
196
+ customer_retention/stages/modeling/baseline_trainer.py,sha256=xqifyElZQKAjx1bAr0Ky3V6bjxY0Hyn5qRWm0J7rfik,4441
197
+ customer_retention/stages/modeling/cross_validator.py,sha256=7DI1Cqk5epRWZlbuR7Yah5n09MLI6ZTDduqPCML8cJQ,4262
198
+ customer_retention/stages/modeling/data_splitter.py,sha256=r_aR73ExSVsW45Nqk-YlUxxDumI6hsICKOuIF5y1BTU,8930
199
+ customer_retention/stages/modeling/feature_scaler.py,sha256=vjr6hnRuA1qFYEtB5i_t1zq5FVgYK38j-tVxlDjmoxA,3110
200
+ customer_retention/stages/modeling/hyperparameter_tuner.py,sha256=RRPKYmDZAD_MGlBwAzmdDJPpd6aJfZBsKODH_3ivbTY,3292
201
+ customer_retention/stages/modeling/imbalance_handler.py,sha256=ZPqMh1zEUetGDv0LSLNWPVN9tythWSROvqgNEB7GlJQ,12248
202
+ customer_retention/stages/modeling/mlflow_logger.py,sha256=pnzcQ4XmyAwW_3XAXdFEwXCF9Pwy4KVZccOIdYakHOg,2718
203
+ customer_retention/stages/modeling/model_comparator.py,sha256=1L4sp8jSMVLFnaxHE09_VtrI-Diw6lHm7E3X880L4do,4564
204
+ customer_retention/stages/modeling/model_evaluator.py,sha256=oRDXRfW0UnfFprAeXqp6vyV7XBreITyN4TOpZIzdrrI,4228
205
+ customer_retention/stages/modeling/threshold_optimizer.py,sha256=c1RKiE1gvJhI1Lh8MckiBgg8_QjQJCiv9rbNHko2qY4,5037
206
+ customer_retention/stages/monitoring/__init__.py,sha256=Mf-LCxUxTbgsAUBD49-AYjG2gEoMofkVgXbQbOAi-ww,1128
207
+ customer_retention/stages/monitoring/alert_manager.py,sha256=iUtnoQxZIrT2tfXRWWlI_E8Pbiqbz7glsa_mk11A3q0,11911
208
+ customer_retention/stages/monitoring/drift_detector.py,sha256=DB37CQOo4jcuv1Y_9FwQCrHUdT8OzSVHxCggMYS5aU4,7968
209
+ customer_retention/stages/monitoring/performance_monitor.py,sha256=zDrux-HrPynetzslNZlMDYclqLL_HN0SvzeFkdyGgiY,9097
210
+ customer_retention/stages/preprocessing/__init__.py,sha256=LlQ5OAsWah9I1LCaJoTn7Lexlzu6eOrGwXfB7JdYGTc,177
211
+ customer_retention/stages/preprocessing/transformer_manager.py,sha256=-yDfUA5_NocBAtlI-dWlHYSVEWchcSgageu0R-9xB30,12455
212
+ customer_retention/stages/profiling/__init__.py,sha256=9t4OJvV7DyI11zzN0ZkOi_pzCj_Qjp6BPpdpCA6-MKo,9884
213
+ customer_retention/stages/profiling/categorical_distribution.py,sha256=kcbhpcIbdCcNJ9Cu_YiTz8cgUBTugrY5avMrL0Ymmd0,10704
214
+ customer_retention/stages/profiling/categorical_target_analyzer.py,sha256=T-QvI0qW2R8aeamhuvSqglluMFUuJxdO9_lMLdU3Kr4,12077
215
+ customer_retention/stages/profiling/column_profiler.py,sha256=kCoh4czphLd9-4FPCKWkV6q6YB0iZEf998yPwV4XR9A,20372
216
+ customer_retention/stages/profiling/distribution_analysis.py,sha256=9v-QY41cuQI_Fuvjkqx1Q3QAcsSK8ThU43t8PRgD0uo,17052
217
+ customer_retention/stages/profiling/drift_detector.py,sha256=I1OYr37ew-XB7sVp6VARqjH0eKZA1Rx0eOQNRJZTOMs,12681
218
+ customer_retention/stages/profiling/feature_capacity.py,sha256=fP_sK2KxU6zpdfnIcAW313N451SXqHT1wv9psd5WhSk,19598
219
+ customer_retention/stages/profiling/pattern_analysis_config.py,sha256=RRxrZqTA_Xue1zbO6W6-gpVa7EC0ZdP5M0XOtuSg4lQ,22499
220
+ customer_retention/stages/profiling/profile_result.py,sha256=NKKh1u2FmfBqnIbOEiqBh25IZDMm91h38RT7wzA8yQI,6350
221
+ customer_retention/stages/profiling/quality_checks.py,sha256=ov8opsY4AoM9D6Yr_fGXsVwXfpmO0OeFfhdML-xfoIM,65678
222
+ customer_retention/stages/profiling/relationship_detector.py,sha256=9WMM8YOIl-EWPY2P3PFuOENM9D1nm5lU5sDfZTE_chQ,9477
223
+ customer_retention/stages/profiling/relationship_recommender.py,sha256=vPd4DyTcZkguTvqbDF4PKnIA1k5N-HfEiV5P2H83Fe8,20132
224
+ customer_retention/stages/profiling/report_generator.py,sha256=XEKjwot0dKGWOMyOPgFHaZtmi7FYZnmOdm1reRLcBHg,16607
225
+ customer_retention/stages/profiling/scd_analyzer.py,sha256=PQvGVIL3bRCSfguarsJmW4QJXJNKdaUBnRNpyn-NDL0,5334
226
+ customer_retention/stages/profiling/segment_analyzer.py,sha256=nMRKrHs3gsgczbqTw7DB_-FjxC256RO2juR4GqXpG38,21945
227
+ customer_retention/stages/profiling/segment_aware_outlier.py,sha256=PS5GXnf_g3D9eOc8FykhVLywtDmu3O8lSbxuUj8uqwM,10193
228
+ customer_retention/stages/profiling/target_level_analyzer.py,sha256=XPhdHqTdK9zzBDqy-JyrTi6NFf07wRwIGsVEOAiR_dE,10491
229
+ customer_retention/stages/profiling/temporal_analyzer.py,sha256=PXf4pYNcszp7N8_14MKFKXDku-fw2M_NLWN7jUsHd1Q,16102
230
+ customer_retention/stages/profiling/temporal_coverage.py,sha256=r23s1qyB7o11ab_TTLOgb4q29OPA_crRshFpMLt4t_w,18561
231
+ customer_retention/stages/profiling/temporal_feature_analyzer.py,sha256=iPA9UE65rYPTWO45n5_SHJGaUFSDXGjXYxZdvZa9Ep0,32330
232
+ customer_retention/stages/profiling/temporal_feature_engineer.py,sha256=Eovymy6qoFIOYy3-sQZyqVTYfIXOAf11aomBcjLjMSE,27096
233
+ customer_retention/stages/profiling/temporal_pattern_analyzer.py,sha256=o-0jkdWM0VT4Ij0ASNLZM9jy8dA0KxHG3ZWKp0FxZ0w,26381
234
+ customer_retention/stages/profiling/temporal_quality_checks.py,sha256=Sl74EcHfBCFgTDonvJIp2N1RKBoWNmJoEmaqjqRLaHs,13547
235
+ customer_retention/stages/profiling/temporal_target_analyzer.py,sha256=eeZlUhTWZfCftwgm_dySi1feRLuoU9SRLL_r_4jgN5g,8785
236
+ customer_retention/stages/profiling/text_embedder.py,sha256=ck7WIq7pGC7xgEzMQr7fYdHcJegYR6wfdh3z32WUiK8,3038
237
+ customer_retention/stages/profiling/text_processor.py,sha256=spdfwVSEU07aYbl2bIsg_INOBt3Js-IA15WVkjf1ask,4474
238
+ customer_retention/stages/profiling/text_reducer.py,sha256=ilSuUAu0dHUyRGTNg8TzoCEd-EAyXKvoAm4uGqwlSQs,2409
239
+ customer_retention/stages/profiling/time_series_profiler.py,sha256=sFFIwumlOT5e-j2kXiIUkUrCdE59XpsAj5gzbh7xuzg,10338
240
+ customer_retention/stages/profiling/time_window_aggregator.py,sha256=8DuztlesmS-mgKRbaYuEINnkR4kd-b2_zq7PvdKKE3Q,15841
241
+ customer_retention/stages/profiling/type_detector.py,sha256=VgYHWcBGepyJKNdY1FKgb9scOaosN6fDY_-WiTjfoAg,14726
242
+ customer_retention/stages/profiling/window_recommendation.py,sha256=Apd_PDFpo49HJJzldTcwzzgJjBzEfd8mbGboBwHhzGw,13354
243
+ customer_retention/stages/temporal/__init__.py,sha256=f86XiSUMKQgeTLyOsu89IJcafOPjdBIR9bH_hhrY8b8,6135
244
+ customer_retention/stages/temporal/access_guard.py,sha256=3eSRna2TEm5k3-R6rb0F_xofYvxpMbuunQtPapqIy-U,6636
245
+ customer_retention/stages/temporal/cutoff_analyzer.py,sha256=zzrKwoakdxLrOQFUOFe24MreAM2FdjJW4jfLdm0xIhQ,8885
246
+ customer_retention/stages/temporal/data_preparer.py,sha256=31HbjewdQVAot2heO5NnRDB_dVy0_10EGa_361tdcu4,7096
247
+ customer_retention/stages/temporal/point_in_time_join.py,sha256=EsN65AKflzbP13cXZVonDeIvRkiiRajtda5nlDKUN8g,5460
248
+ customer_retention/stages/temporal/point_in_time_registry.py,sha256=Qfya37LbfFRYBp-BfUNYdxKB8kSUNO9QVuAYnqdKzHE,5409
249
+ customer_retention/stages/temporal/scenario_detector.py,sha256=ptsVbV8Ucg0qzUYWe0nBqnA6QmL0t3ClPhScKC4Gbqk,7847
250
+ customer_retention/stages/temporal/snapshot_manager.py,sha256=MSIuDkWHf5OPqIxndDZuI8lHsTnZh8jfy6lJp0Aes60,11107
251
+ customer_retention/stages/temporal/synthetic_coordinator.py,sha256=tPCOMbqI9Xx0rCmGj_lMxcxEZmsHEjrTUs8s-Zz_fDc,2729
252
+ customer_retention/stages/temporal/timestamp_discovery.py,sha256=b2NpXvmWg4K6SBoOlybszpnQPxtCiELsZGEJpSJm5O4,24058
253
+ customer_retention/stages/temporal/timestamp_manager.py,sha256=EisQM4_e14wsdqVxzYXkMBS5tXKIYsTbPwgwZGl5lWU,10635
254
+ customer_retention/stages/transformation/__init__.py,sha256=6XQGYKYNqdOuxlX6IujtVqRZ099pS8X_ATd6mLqwVtQ,783
255
+ customer_retention/stages/transformation/binary_handler.py,sha256=ObwL90YP3ivwOJONBikzZouUoBz-YCTcxWybfwA5ddc,3201
256
+ customer_retention/stages/transformation/categorical_encoder.py,sha256=_eAarKNEbKZF7o0nJ5oJ29GPQ3I8a8vFCfagFfjnUyo,10140
257
+ customer_retention/stages/transformation/datetime_transformer.py,sha256=iWzxb7gdpn1uEPo96_ir9hDcqCERnVPhBLTTQyxq1xk,3619
258
+ customer_retention/stages/transformation/numeric_transformer.py,sha256=wqC2aUfXargeOph8d9F4P2wLet4lnFOKoI9x1mpJucw,6367
259
+ customer_retention/stages/transformation/pipeline.py,sha256=1cSpyXwoBM1xPQj308GifjVuoqBwtPeSIQXt4ke3ttU,11278
260
+ customer_retention/stages/validation/__init__.py,sha256=8Klgpez2ApVM1n1HUWcaGjaa21-aC-ReaZIVj7zHFh4,2380
261
+ customer_retention/stages/validation/adversarial_scoring_validator.py,sha256=DnVFEJPMK9Wech9dXdBmFuwprNL91wdQA6inFISZQow,8033
262
+ customer_retention/stages/validation/business_sense_gate.py,sha256=0kLVQOvwdaJn1dWUcfXI9mpX-eOh7AEsfTHyfbBRsVQ,7413
263
+ customer_retention/stages/validation/data_quality_gate.py,sha256=w_q1L7RWpgyh4YyNZyU1t-OJC6fCzZpVGj1oCt4-PWQ,9230
264
+ customer_retention/stages/validation/data_validators.py,sha256=JoqXoiF603IV65lHU6GvEy3O9XB30-BPmqgpbLTkq2s,18155
265
+ customer_retention/stages/validation/feature_quality_gate.py,sha256=M43K9PH44LXN6H14L3RBw3ZGlJ6vd_c74w_9QF6PzjA,7902
266
+ customer_retention/stages/validation/gates.py,sha256=jSGJMSXGpvlwVl3DBAiK7xAl0Nxg1eibnnBg-jz0Mlk,4060
267
+ customer_retention/stages/validation/leakage_gate.py,sha256=gtMBAEB7HIg8CuRJeewlKv3gabJJ2lw4Ku1E0bEMNNM,14042
268
+ customer_retention/stages/validation/model_validity_gate.py,sha256=kNI6NAdQnj9qQqQ-IimXi_1ah92peq6FIJnHVwcZpqc,8370
269
+ customer_retention/stages/validation/pipeline_validation_runner.py,sha256=uuBvGx1ej4GpYo97lfLgQEOdU1ykG0jm46Gxu2qNKtw,11000
270
+ customer_retention/stages/validation/quality_scorer.py,sha256=VuhSEZj3rL5URvxSjdIryOS1W0x7y_BNlX5yog4ExNk,19017
271
+ customer_retention/stages/validation/rule_generator.py,sha256=E6jeWMeCiMRq9lhoryGB8Tvdo65poJi5dj3oNRtC19k,2139
272
+ customer_retention/stages/validation/scoring_pipeline_validator.py,sha256=FvM7AsNpiOO0nLr6NGkJGzJfUhxvPNZ7ccDrp44zFiI,21537
273
+ customer_retention/stages/validation/timeseries_detector.py,sha256=ggnBmIZN7pi89LOk6iVXINoTLpZQ-AI1-pddjCokyy4,27606
274
+ customer_retention/transforms/__init__.py,sha256=W9owOGVCFSoCQfcRAQciNASYqbPpDE9gGjvnLcXawrE,1320
275
+ customer_retention/transforms/artifact_store.py,sha256=FYLpDcv2N6-dUTX5RPEIK3aCWKhYK3hRpPROidLpRik,1641
276
+ customer_retention/transforms/executor.py,sha256=oML5dCidxbW_q6YUkAwWcutYP6bIFB6IdD3BvemK45A,6304
277
+ customer_retention/transforms/fitted.py,sha256=3pNvnae-P3t3bKMeZz1Bl0xww-feapIYdoeTY6aUtI8,3278
278
+ customer_retention/transforms/ops.py,sha256=URkQcFyb9tYzteuIFR-pOyT47vnFqx95EciaQtKrdjU,4284
279
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/00_start_here.ipynb,sha256=GvWqC8sZROCKdue2SuEEenZE36zTT6Qo5Ntn4oL66mw,21909
280
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01_data_discovery.ipynb,sha256=DRZqtXvNu2KylseGfX0fuCuz5sFxLhRkvdnGH5TxT9o,46434
281
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01a_a_temporal_text_deep_dive.ipynb,sha256=uai8T3iJSqOrabBQnVi8Z0k8zZGVgs_VVQWRHyXN8QU,33690
282
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01a_temporal_deep_dive.ipynb,sha256=8s_JK6Dq1VE6mwUHJH2B3kizLZVD0iMQFgYtMArfHuk,67322
283
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01b_temporal_quality.ipynb,sha256=xmbgKfWk0T0VcpfyxafsZfQwJV-nGlXH7KFsCCHg4ns,23037
284
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01c_temporal_patterns.ipynb,sha256=Jg9MxezUrmvYtV9Jg0M1IbX7QWeRZW5l8FDv0hlh2sM,153163
285
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/01d_event_aggregation.ipynb,sha256=E7pBamAW_ChoUszssVEuNsWldn4ap40niJTzQmn-amk,63243
286
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/02_column_deep_dive.ipynb,sha256=dEbN2tR7bMArgj_lY56JY5cKLCFI4MpY_4Tv7_NwSO8,60251
287
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/02a_text_columns_deep_dive.ipynb,sha256=M9YN8yAjjuC6ZaUlc-rVqVLEkWd7Rc_GNILHS9qO3PU,29704
288
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/03_quality_assessment.ipynb,sha256=JJOCZeugEqGZbVulXF3W07ftxIoXmJb2r1U3yFRJMTg,68600
289
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/04_relationship_analysis.ipynb,sha256=cKs0J_Yjb7BKTAC_gnxFenrPPD_aUmYSCiZA10-hSxM,78622
290
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/05_multi_dataset.ipynb,sha256=HveFZnqIfBb0dY6IbXZDa1Bj2Xat1067Ip0bsJLoA7M,62667
291
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/06_feature_opportunities.ipynb,sha256=O4XIgV1SpNYpvi_08qtqwCd05XdGlA-ZaOEl6tI7eeA,67409
292
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/07_modeling_readiness.ipynb,sha256=KNRtShdXyJnMnDlBIAnOoLvzzdMzc_TiQ_ug0J7n6kI,28376
293
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/08_baseline_experiments.ipynb,sha256=YXYZLtG9wul69Nj6IOk39yfQ4SRhL502Zn5ynHVdotA,34228
294
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/09_business_alignment.ipynb,sha256=sAtCIaFQ1IHWuvzc55WmY7SGsPqZntE8HHn5Q0qcTpA,17216
295
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/10_spec_generation.ipynb,sha256=g_ott0EhnVVPltgTvJeSboavY-4IJaLKvzs71AMbTtw,42843
296
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/11_scoring_validation.ipynb,sha256=z5xpgh0BHJQ2-3cQk6PwlQ7roGpMvXyJZr8v_YfAsW8,49938
297
+ churnkit-0.75.0a1.data/data/share/churnkit/exploration_notebooks/12_view_documentation.ipynb,sha256=kIjL-z1mt3cshgawIROZLPMsQBBEhxOYUoXXDNARR8w,4407
298
+ churnkit-0.75.0a1.dist-info/METADATA,sha256=VH1Ta1yAlp_mFuwiLtBXGTvig0qBQLo_xlVEEvyDPV4,12737
299
+ churnkit-0.75.0a1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
300
+ churnkit-0.75.0a1.dist-info/entry_points.txt,sha256=swQFVe-jjgQSBJQNO2Ulkz2F5odaE-TsnlTor3HQBjw,70
301
+ churnkit-0.75.0a1.dist-info/licenses/LICENSE,sha256=Bud8Oj25tnpoIuXCWW0xcSfmGPeEZAAHrDRoKdSYtZY,11344
302
+ churnkit-0.75.0a1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ churnkit-init = customer_retention.cli:init_project
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2026 Hristo Aladjov
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,37 @@
1
+ """
2
+ Customer Retention ML Pipeline Framework.
3
+
4
+ A modular, production-ready framework for building customer retention
5
+ and churn prediction pipelines that work in both local and Databricks
6
+ environments.
7
+
8
+ Main module categories:
9
+ - core: Base infrastructure (config, utils, compatibility)
10
+ - stages: Pipeline stages (ingestion, profiling, cleaning, transformation,
11
+ features, modeling, deployment, monitoring, validation, temporal)
12
+ - analysis: Analysis tools (diagnostics, interpretability, visualization,
13
+ business, auto_explorer, discovery, recommendations)
14
+ - generators: Auto-generation tools (notebook_generator, pipeline_generator,
15
+ spec_generator, orchestration)
16
+ - integrations: External system adapters (adapters, feature_store, streaming,
17
+ llm_context, iteration)
18
+ """
19
+
20
+ __version__ = "0.75.0a1"
21
+
22
+ # Environment utilities (always available)
23
+ from .core.compat import (
24
+ is_databricks,
25
+ is_notebook,
26
+ is_spark_available,
27
+ pd,
28
+ )
29
+
30
+ __all__ = [
31
+ "__version__",
32
+ # Environment
33
+ "pd",
34
+ "is_spark_available",
35
+ "is_databricks",
36
+ "is_notebook",
37
+ ]
File without changes
@@ -0,0 +1,62 @@
1
+ from .exploration_manager import (
2
+ AggregationPlanItem,
3
+ DatasetInfo,
4
+ DatasetRelationshipInfo,
5
+ ExplorationManager,
6
+ MultiDatasetFindings,
7
+ )
8
+ from .explorer import DataExplorer
9
+ from .findings import ColumnFinding, ExplorationFindings, TextProcessingMetadata, TimeSeriesMetadata
10
+ from .layered_recommendations import (
11
+ ALL_AGGREGATIONS,
12
+ CATEGORICAL_AGGREGATIONS,
13
+ NUMERIC_AGGREGATIONS,
14
+ BronzeRecommendations,
15
+ GoldRecommendations,
16
+ LayeredRecommendation,
17
+ RecommendationRegistry,
18
+ SilverRecommendations,
19
+ )
20
+ from .recommendation_builder import (
21
+ BronzeBuilder,
22
+ GoldBuilder,
23
+ RecommendationBuilder,
24
+ SilverBuilder,
25
+ )
26
+ from .recommendations import (
27
+ CleaningRecommendation,
28
+ FeatureRecommendation,
29
+ RecommendationEngine,
30
+ TargetRecommendation,
31
+ TransformRecommendation,
32
+ )
33
+
34
+ __all__ = [
35
+ "DataExplorer",
36
+ "ExplorationFindings",
37
+ "ColumnFinding",
38
+ "TimeSeriesMetadata",
39
+ "TextProcessingMetadata",
40
+ "RecommendationEngine",
41
+ "TargetRecommendation",
42
+ "FeatureRecommendation",
43
+ "CleaningRecommendation",
44
+ "TransformRecommendation",
45
+ "ExplorationManager",
46
+ "MultiDatasetFindings",
47
+ "DatasetInfo",
48
+ "DatasetRelationshipInfo",
49
+ "AggregationPlanItem",
50
+ "LayeredRecommendation",
51
+ "BronzeRecommendations",
52
+ "SilverRecommendations",
53
+ "GoldRecommendations",
54
+ "RecommendationRegistry",
55
+ "NUMERIC_AGGREGATIONS",
56
+ "CATEGORICAL_AGGREGATIONS",
57
+ "ALL_AGGREGATIONS",
58
+ "RecommendationBuilder",
59
+ "BronzeBuilder",
60
+ "SilverBuilder",
61
+ "GoldBuilder",
62
+ ]