featrixsphere 0.2.8097__tar.gz → 0.2.8332__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 (2766) hide show
  1. featrixsphere-0.2.8332/PKG-INFO +442 -0
  2. featrixsphere-0.2.8332/VERSION +1 -0
  3. featrixsphere-0.2.8332/featrixsphere/__init__.py +107 -0
  4. featrixsphere-0.2.8332/featrixsphere/api/__init__.py +75 -0
  5. featrixsphere-0.2.8332/featrixsphere/api/client.py +939 -0
  6. featrixsphere-0.2.8332/featrixsphere/api/exceptions.py +42 -0
  7. featrixsphere-0.2.8332/featrixsphere/api/foundational_model.py +1761 -0
  8. featrixsphere-0.2.8332/featrixsphere/api/http_client.py +294 -0
  9. featrixsphere-0.2.8332/featrixsphere/api/published_predictor.py +491 -0
  10. featrixsphere-0.2.8332/featrixsphere.egg-info/PKG-INFO +442 -0
  11. featrixsphere-0.2.8332/featrixsphere.egg-info/SOURCES.txt +2665 -0
  12. featrixsphere-0.2.8332/src/api.py +12323 -0
  13. featrixsphere-0.2.8332/src/celery_app.py +5739 -0
  14. featrixsphere-0.2.8332/src/featrix_watchdog.py +2228 -0
  15. featrixsphere-0.2.8332/src/lib/es_projections.py +194 -0
  16. featrixsphere-0.2.8332/src/lib/es_training.py +3561 -0
  17. featrixsphere-0.2.8332/src/lib/es_training_wrapper.py +179 -0
  18. featrixsphere-0.2.8332/src/lib/featrix/detectors/detect.py +2793 -0
  19. featrixsphere-0.2.8332/src/lib/featrix/detectors/detect_utils.py +355 -0
  20. featrixsphere-0.2.8332/src/lib/featrix/detectors/type_detection.py +611 -0
  21. featrixsphere-0.2.8332/src/lib/featrix/neural/charting.py +6376 -0
  22. featrixsphere-0.2.8332/src/lib/featrix/neural/checkpoint_tracker.py +281 -0
  23. featrixsphere-0.2.8332/src/lib/featrix/neural/checkpoint_validation.py +711 -0
  24. featrixsphere-0.2.8332/src/lib/featrix/neural/codec_cache.py +268 -0
  25. featrixsphere-0.2.8332/src/lib/featrix/neural/config_audit.py +316 -0
  26. featrixsphere-0.2.8332/src/lib/featrix/neural/curriculum.py +209 -0
  27. featrixsphere-0.2.8332/src/lib/featrix/neural/data_frame_data_set.py +263 -0
  28. featrixsphere-0.2.8332/src/lib/featrix/neural/data_quality_report.py +1709 -0
  29. featrixsphere-0.2.8332/src/lib/featrix/neural/dataloader_utils.py +1184 -0
  30. featrixsphere-0.2.8332/src/lib/featrix/neural/dropout_scheduler.py +858 -0
  31. featrixsphere-0.2.8332/src/lib/featrix/neural/dynamic_relationship_extractor.py +9047 -0
  32. featrixsphere-0.2.8332/src/lib/featrix/neural/embedded_space.py +17496 -0
  33. featrixsphere-0.2.8332/src/lib/featrix/neural/embedding_space_utils.py +622 -0
  34. featrixsphere-0.2.8332/src/lib/featrix/neural/encoders/core.py +6082 -0
  35. featrixsphere-0.2.8332/src/lib/featrix/neural/encoders/fips_codec.py +719 -0
  36. featrixsphere-0.2.8332/src/lib/featrix/neural/encoders/geo_foundation.py +1036 -0
  37. featrixsphere-0.2.8332/src/lib/featrix/neural/encoders/hybrid_encoders.py +1526 -0
  38. featrixsphere-0.2.8332/src/lib/featrix/neural/encoders/string_codec.py +2635 -0
  39. featrixsphere-0.2.8332/src/lib/featrix/neural/encoders/transformer_encoder.py +2503 -0
  40. featrixsphere-0.2.8332/src/lib/featrix/neural/es_checkpoint.py +2445 -0
  41. featrixsphere-0.2.8332/src/lib/featrix/neural/es_job_control.py +542 -0
  42. featrixsphere-0.2.8332/src/lib/featrix/neural/es_logging.py +3420 -0
  43. featrixsphere-0.2.8332/src/lib/featrix/neural/es_predictors.py +688 -0
  44. featrixsphere-0.2.8332/src/lib/featrix/neural/es_quality_debug.py +1082 -0
  45. featrixsphere-0.2.8332/src/lib/featrix/neural/es_training_diagnostics.py +1024 -0
  46. featrixsphere-0.2.8332/src/lib/featrix/neural/es_training_viz.py +511 -0
  47. featrixsphere-0.2.8332/src/lib/featrix/neural/featrix_customer_upload.py +559 -0
  48. featrixsphere-0.2.8332/src/lib/featrix/neural/foundation_input_data.py +948 -0
  49. featrixsphere-0.2.8332/src/lib/featrix/neural/geocode.py +809 -0
  50. featrixsphere-0.2.8332/src/lib/featrix/neural/gradient_balancing.py +643 -0
  51. featrixsphere-0.2.8332/src/lib/featrix/neural/gradient_flow.py +1242 -0
  52. featrixsphere-0.2.8332/src/lib/featrix/neural/input_data_set.py +1099 -0
  53. featrixsphere-0.2.8332/src/lib/featrix/neural/io_utils.py +2183 -0
  54. featrixsphere-0.2.8332/src/lib/featrix/neural/jobs/create_structured_data/address_preanalysis.py +392 -0
  55. featrixsphere-0.2.8332/src/lib/featrix/neural/jobs/create_structured_data/ingest.py +846 -0
  56. featrixsphere-0.2.8332/src/lib/featrix/neural/jobs/create_structured_data/job.py +782 -0
  57. featrixsphere-0.2.8332/src/lib/featrix/neural/llm/schema_analyzer.py +887 -0
  58. featrixsphere-0.2.8332/src/lib/featrix/neural/loss_column_sensitivity.py +217 -0
  59. featrixsphere-0.2.8332/src/lib/featrix/neural/loss_framework.py +4415 -0
  60. featrixsphere-0.2.8332/src/lib/featrix/neural/lr_templates.py +87 -0
  61. featrixsphere-0.2.8332/src/lib/featrix/neural/lr_timeline.py +1727 -0
  62. featrixsphere-0.2.8332/src/lib/featrix/neural/manifold_viz.py +509 -0
  63. featrixsphere-0.2.8332/src/lib/featrix/neural/model_config.py +419 -0
  64. featrixsphere-0.2.8332/src/lib/featrix/neural/prediction_binary.py +670 -0
  65. featrixsphere-0.2.8332/src/lib/featrix/neural/prediction_multiclass.py +488 -0
  66. featrixsphere-0.2.8332/src/lib/featrix/neural/prediction_multilabel.py +344 -0
  67. featrixsphere-0.2.8332/src/lib/featrix/neural/prediction_ordinal.py +392 -0
  68. featrixsphere-0.2.8332/src/lib/featrix/neural/prediction_regression.py +520 -0
  69. featrixsphere-0.2.8332/src/lib/featrix/neural/prediction_strategies.py +505 -0
  70. featrixsphere-0.2.8332/src/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +391 -0
  71. featrixsphere-0.2.8332/src/lib/featrix/neural/qa/test_adaptive_training.py +443 -0
  72. featrixsphere-0.2.8332/src/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +268 -0
  73. featrixsphere-0.2.8332/src/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +141 -0
  74. featrixsphere-0.2.8332/src/lib/featrix/neural/qa/test_extend_embedding_space.py +388 -0
  75. featrixsphere-0.2.8332/src/lib/featrix/neural/qa/test_feature_engineering_prediction.py +398 -0
  76. featrixsphere-0.2.8332/src/lib/featrix/neural/qa/test_focal_comparison.py +397 -0
  77. featrixsphere-0.2.8332/src/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +403 -0
  78. featrixsphere-0.2.8332/src/lib/featrix/neural/qa/test_label_smoothing.py +345 -0
  79. featrixsphere-0.2.8332/src/lib/featrix/neural/qa/test_multi_dataset.py +398 -0
  80. featrixsphere-0.2.8332/src/lib/featrix/neural/single_predictor.py +23927 -0
  81. featrixsphere-0.2.8332/src/lib/featrix/neural/single_predictor_mlp.py +331 -0
  82. featrixsphere-0.2.8332/src/lib/featrix/neural/sp_auto_size.py +876 -0
  83. featrixsphere-0.2.8332/src/lib/featrix/neural/sphere_config.py +3481 -0
  84. featrixsphere-0.2.8332/src/lib/featrix/neural/sqlite_utils.py +455 -0
  85. featrixsphere-0.2.8332/src/lib/featrix/neural/string_cache.py +1320 -0
  86. featrixsphere-0.2.8332/src/lib/featrix/neural/training_controller.py +354 -0
  87. featrixsphere-0.2.8332/src/lib/featrix/neural/utils.py +1263 -0
  88. featrixsphere-0.2.8332/src/lib/featrix/neural/weight_timeline.py +1937 -0
  89. featrixsphere-0.2.8332/src/lib/knn_training.py +120 -0
  90. featrixsphere-0.2.8332/src/lib/model_card_repair.py +384 -0
  91. featrixsphere-0.2.8332/src/lib/session_chains.py +1523 -0
  92. featrixsphere-0.2.8332/src/lib/session_manager.py +3528 -0
  93. featrixsphere-0.2.8332/src/lib/single_predictor_cv.py +303 -0
  94. featrixsphere-0.2.8332/src/lib/single_predictor_training.py +4721 -0
  95. featrixsphere-0.2.8332/src/lib/structureddata.py +723 -0
  96. featrixsphere-0.2.8332/src/prediction_client.py +200 -0
  97. featrixsphere-0.2.8332/src/prediction_server.py +812 -0
  98. featrixsphere-0.2.8332/src/production_server/gateway.py +1139 -0
  99. featrixsphere-0.2.8332/src/production_server/install.sh +353 -0
  100. featrixsphere-0.2.8332/src/production_server/patches/featrix/neural/simple_string_cache.py +1077 -0
  101. featrixsphere-0.2.8332/src/production_server/patches/featrix/neural/string_codec.py +2596 -0
  102. featrixsphere-0.2.8332/src/production_server/patches/single_predictor_training.py +4343 -0
  103. featrixsphere-0.2.8332/src/production_server/publish_model.py +495 -0
  104. featrixsphere-0.2.8332/src/production_server/worker.py +740 -0
  105. featrixsphere-0.2.8332/src/recreate_session.py +504 -0
  106. featrixsphere-0.2.8332/src/redis_keys.py +321 -0
  107. featrixsphere-0.2.8332/tests/test_prediction_consistency.py +478 -0
  108. featrixsphere-0.2.8332/tests/test_prediction_consistency_credit_g.py +394 -0
  109. featrixsphere-0.2.8332/tests/test_sequential_features_e2e.py +371 -0
  110. featrixsphere-0.2.8097/PKG-INFO +0 -442
  111. featrixsphere-0.2.8097/VERSION +0 -1
  112. featrixsphere-0.2.8097/featrixsphere/__init__.py +0 -106
  113. featrixsphere-0.2.8097/featrixsphere/api/__init__.py +0 -74
  114. featrixsphere-0.2.8097/featrixsphere/api/client.py +0 -903
  115. featrixsphere-0.2.8097/featrixsphere/api/exceptions.py +0 -29
  116. featrixsphere-0.2.8097/featrixsphere/api/foundational_model.py +0 -1703
  117. featrixsphere-0.2.8097/featrixsphere/api/http_client.py +0 -284
  118. featrixsphere-0.2.8097/featrixsphere/api/published_predictor.py +0 -396
  119. featrixsphere-0.2.8097/featrixsphere.egg-info/PKG-INFO +0 -442
  120. featrixsphere-0.2.8097/featrixsphere.egg-info/SOURCES.txt +0 -2655
  121. featrixsphere-0.2.8097/src/api.py +0 -12158
  122. featrixsphere-0.2.8097/src/celery_app.py +0 -5706
  123. featrixsphere-0.2.8097/src/featrix_watchdog.py +0 -1951
  124. featrixsphere-0.2.8097/src/lib/es_projections.py +0 -190
  125. featrixsphere-0.2.8097/src/lib/es_training.py +0 -3471
  126. featrixsphere-0.2.8097/src/lib/es_training_wrapper.py +0 -179
  127. featrixsphere-0.2.8097/src/lib/featrix/detectors/detect.py +0 -2761
  128. featrixsphere-0.2.8097/src/lib/featrix/detectors/detect_utils.py +0 -307
  129. featrixsphere-0.2.8097/src/lib/featrix/detectors/type_detection.py +0 -605
  130. featrixsphere-0.2.8097/src/lib/featrix/neural/charting.py +0 -5803
  131. featrixsphere-0.2.8097/src/lib/featrix/neural/checkpoint_validation.py +0 -705
  132. featrixsphere-0.2.8097/src/lib/featrix/neural/config_audit.py +0 -310
  133. featrixsphere-0.2.8097/src/lib/featrix/neural/data_frame_data_set.py +0 -225
  134. featrixsphere-0.2.8097/src/lib/featrix/neural/data_quality_report.py +0 -854
  135. featrixsphere-0.2.8097/src/lib/featrix/neural/dataloader_utils.py +0 -813
  136. featrixsphere-0.2.8097/src/lib/featrix/neural/dropout_scheduler.py +0 -750
  137. featrixsphere-0.2.8097/src/lib/featrix/neural/dynamic_relationship_extractor.py +0 -9044
  138. featrixsphere-0.2.8097/src/lib/featrix/neural/embedded_space.py +0 -26239
  139. featrixsphere-0.2.8097/src/lib/featrix/neural/embedding_space_utils.py +0 -457
  140. featrixsphere-0.2.8097/src/lib/featrix/neural/encoders/core.py +0 -6016
  141. featrixsphere-0.2.8097/src/lib/featrix/neural/encoders/fips_codec.py +0 -717
  142. featrixsphere-0.2.8097/src/lib/featrix/neural/encoders/geo_foundation.py +0 -829
  143. featrixsphere-0.2.8097/src/lib/featrix/neural/encoders/hybrid_encoders.py +0 -565
  144. featrixsphere-0.2.8097/src/lib/featrix/neural/encoders/string_codec.py +0 -2631
  145. featrixsphere-0.2.8097/src/lib/featrix/neural/encoders/transformer_encoder.py +0 -2369
  146. featrixsphere-0.2.8097/src/lib/featrix/neural/es_predictors.py +0 -490
  147. featrixsphere-0.2.8097/src/lib/featrix/neural/es_training_viz.py +0 -477
  148. featrixsphere-0.2.8097/src/lib/featrix/neural/featrix_customer_upload.py +0 -496
  149. featrixsphere-0.2.8097/src/lib/featrix/neural/foundation_input_data.py +0 -910
  150. featrixsphere-0.2.8097/src/lib/featrix/neural/geocode.py +0 -589
  151. featrixsphere-0.2.8097/src/lib/featrix/neural/gradient_balancing.py +0 -610
  152. featrixsphere-0.2.8097/src/lib/featrix/neural/gradient_flow.py +0 -474
  153. featrixsphere-0.2.8097/src/lib/featrix/neural/input_data_set.py +0 -1070
  154. featrixsphere-0.2.8097/src/lib/featrix/neural/io_utils.py +0 -2134
  155. featrixsphere-0.2.8097/src/lib/featrix/neural/jobs/create_structured_data/ingest.py +0 -626
  156. featrixsphere-0.2.8097/src/lib/featrix/neural/jobs/create_structured_data/job.py +0 -780
  157. featrixsphere-0.2.8097/src/lib/featrix/neural/llm/schema_analyzer.py +0 -885
  158. featrixsphere-0.2.8097/src/lib/featrix/neural/loss_column_sensitivity.py +0 -213
  159. featrixsphere-0.2.8097/src/lib/featrix/neural/loss_framework.py +0 -4148
  160. featrixsphere-0.2.8097/src/lib/featrix/neural/lr_templates.py +0 -87
  161. featrixsphere-0.2.8097/src/lib/featrix/neural/lr_timeline.py +0 -1555
  162. featrixsphere-0.2.8097/src/lib/featrix/neural/manifold_viz.py +0 -508
  163. featrixsphere-0.2.8097/src/lib/featrix/neural/model_config.py +0 -366
  164. featrixsphere-0.2.8097/src/lib/featrix/neural/prediction_binary.py +0 -670
  165. featrixsphere-0.2.8097/src/lib/featrix/neural/prediction_multiclass.py +0 -488
  166. featrixsphere-0.2.8097/src/lib/featrix/neural/prediction_multilabel.py +0 -344
  167. featrixsphere-0.2.8097/src/lib/featrix/neural/prediction_ordinal.py +0 -392
  168. featrixsphere-0.2.8097/src/lib/featrix/neural/prediction_regression.py +0 -520
  169. featrixsphere-0.2.8097/src/lib/featrix/neural/prediction_strategies.py +0 -494
  170. featrixsphere-0.2.8097/src/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -391
  171. featrixsphere-0.2.8097/src/lib/featrix/neural/qa/test_adaptive_training.py +0 -443
  172. featrixsphere-0.2.8097/src/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -268
  173. featrixsphere-0.2.8097/src/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -141
  174. featrixsphere-0.2.8097/src/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -388
  175. featrixsphere-0.2.8097/src/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -398
  176. featrixsphere-0.2.8097/src/lib/featrix/neural/qa/test_focal_comparison.py +0 -397
  177. featrixsphere-0.2.8097/src/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -403
  178. featrixsphere-0.2.8097/src/lib/featrix/neural/qa/test_label_smoothing.py +0 -345
  179. featrixsphere-0.2.8097/src/lib/featrix/neural/qa/test_multi_dataset.py +0 -398
  180. featrixsphere-0.2.8097/src/lib/featrix/neural/single_predictor.py +0 -23416
  181. featrixsphere-0.2.8097/src/lib/featrix/neural/single_predictor_mlp.py +0 -331
  182. featrixsphere-0.2.8097/src/lib/featrix/neural/sp_auto_size.py +0 -860
  183. featrixsphere-0.2.8097/src/lib/featrix/neural/sphere_config.py +0 -3351
  184. featrixsphere-0.2.8097/src/lib/featrix/neural/sqlite_utils.py +0 -451
  185. featrixsphere-0.2.8097/src/lib/featrix/neural/string_cache.py +0 -1320
  186. featrixsphere-0.2.8097/src/lib/featrix/neural/utils.py +0 -1211
  187. featrixsphere-0.2.8097/src/lib/featrix/neural/weight_timeline.py +0 -1691
  188. featrixsphere-0.2.8097/src/lib/knn_training.py +0 -117
  189. featrixsphere-0.2.8097/src/lib/model_card_repair.py +0 -378
  190. featrixsphere-0.2.8097/src/lib/session_chains.py +0 -1458
  191. featrixsphere-0.2.8097/src/lib/session_manager.py +0 -3479
  192. featrixsphere-0.2.8097/src/lib/single_predictor_cv.py +0 -303
  193. featrixsphere-0.2.8097/src/lib/single_predictor_training.py +0 -4721
  194. featrixsphere-0.2.8097/src/lib/structureddata.py +0 -661
  195. featrixsphere-0.2.8097/src/prediction_client.py +0 -182
  196. featrixsphere-0.2.8097/src/prediction_server.py +0 -770
  197. featrixsphere-0.2.8097/src/production_server/gateway.py +0 -726
  198. featrixsphere-0.2.8097/src/production_server/install.sh +0 -343
  199. featrixsphere-0.2.8097/src/production_server/patches/featrix/neural/simple_string_cache.py +0 -1074
  200. featrixsphere-0.2.8097/src/production_server/patches/featrix/neural/string_codec.py +0 -2593
  201. featrixsphere-0.2.8097/src/production_server/patches/single_predictor_training.py +0 -4338
  202. featrixsphere-0.2.8097/src/production_server/publish_model.py +0 -423
  203. featrixsphere-0.2.8097/src/production_server/worker.py +0 -610
  204. featrixsphere-0.2.8097/src/recreate_session.py +0 -504
  205. featrixsphere-0.2.8097/src/redis_keys.py +0 -304
  206. featrixsphere-0.2.8097/tests/test_prediction_consistency.py +0 -478
  207. featrixsphere-0.2.8097/tests/test_prediction_consistency_credit_g.py +0 -394
  208. featrixsphere-0.2.8097/tests/test_sequential_features_e2e.py +0 -371
  209. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/MANIFEST.in +0 -0
  210. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/README.md +0 -0
  211. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrix-update.py +0 -0
  212. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere/MIGRATION.md +0 -0
  213. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere/api/api_endpoint.py +0 -0
  214. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere/api/label_utils.py +0 -0
  215. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere/api/notebook_helper.py +0 -0
  216. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere/api/prediction_grid.py +0 -0
  217. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere/api/prediction_result.py +0 -0
  218. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere/api/predictor.py +0 -0
  219. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere/api/reference_record.py +0 -0
  220. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere/api/vector_database.py +0 -0
  221. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere.egg-info/dependency_links.txt +0 -0
  222. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere.egg-info/entry_points.txt +0 -0
  223. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere.egg-info/not-zip-safe +0 -0
  224. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere.egg-info/requires.txt +0 -0
  225. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/featrixsphere.egg-info/top_level.txt +0 -0
  226. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/nv-install.sh +0 -0
  227. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/requirements.txt +0 -0
  228. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/setup.cfg +0 -0
  229. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/setup.py +0 -0
  230. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/auto_upgrade_monitor.py +0 -0
  231. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/build_version.py +0 -0
  232. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/cluster_movie_renderer.py +0 -0
  233. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/config.py +0 -0
  234. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/demo_existing_model.py +0 -0
  235. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/demo_label_updates.py +0 -0
  236. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/deploy.py +0 -0
  237. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/deploy_cache_debug.sh +0 -0
  238. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/ensure_watchdog_running.sh +0 -0
  239. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/error_tracker.py +0 -0
  240. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/event_log.py +0 -0
  241. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/example_api_usage.py +0 -0
  242. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/example_prediction_feedback.py +0 -0
  243. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/example_train_predictor.py +0 -0
  244. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/gc_cleanup.py +0 -0
  245. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/__init__.py +0 -0
  246. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/access_monitor.py +0 -0
  247. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/api_event_retry.py +0 -0
  248. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/auth.py +0 -0
  249. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/backing_db.py +0 -0
  250. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/celery_job_recovery.py +0 -0
  251. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/convergence_monitor.py +0 -0
  252. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/crash_tracker.py +0 -0
  253. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/distribution_shift_detector.py +0 -0
  254. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/embedding_space_io.py +0 -0
  255. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/epoch_projections.py +0 -0
  256. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/__init__.py +0 -0
  257. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/auto_calibrate.py +0 -0
  258. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/detectors/__init__.py +0 -0
  259. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/download-data/build_geo_weather_db.py +0 -0
  260. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/download-data/download_geographic_data.py +0 -0
  261. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/download-data/download_road_data.py +0 -0
  262. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/download-data/download_weather_data.py +0 -0
  263. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/download-data/install-data.sh +0 -0
  264. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/__init__.py +0 -0
  265. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/generators/__init__.py +0 -0
  266. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/generators/base.py +0 -0
  267. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/generators/dominant_feature.py +0 -0
  268. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/generators/master_dataset.py +0 -0
  269. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/generators/rare_category.py +0 -0
  270. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/generators/xor_classification.py +0 -0
  271. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/__init__.py +0 -0
  272. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/__init__.py +0 -0
  273. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/__init__.py +0 -0
  274. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/adaptive_event_log.py +0 -0
  275. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/auc_animation.py +0 -0
  276. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/calibration_utils.py +0 -0
  277. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  278. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/charting.py +0 -0
  279. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/checkpoint_validation.py +0 -0
  280. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/classification_metrics.py +0 -0
  281. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  282. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/config.py +0 -0
  283. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/constants.py +0 -0
  284. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/curve_plots_example.py +0 -0
  285. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/customer_quality_tracker.py +0 -0
  286. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/data_fips.py +0 -0
  287. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/data_frame_data_set.py +0 -0
  288. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/data_free_email_domains.py +0 -0
  289. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/dataloader_utils.py +0 -0
  290. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/default_training_rules.py +0 -0
  291. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/detect.py +0 -0
  292. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/dimension_validator.py +0 -0
  293. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/domain_codec.py +0 -0
  294. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/dropout_scheduler.py +0 -0
  295. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/duration_ops.py +0 -0
  296. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/dynamic_relationship_extractor.py +0 -0
  297. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/email_codec.py +0 -0
  298. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/email_domain_ops.py +0 -0
  299. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/embedded_space.py +0 -0
  300. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  301. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/embedding_quality.py +0 -0
  302. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/embedding_space_utils.py +0 -0
  303. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/embedding_utils.py +0 -0
  304. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/encoders.py +0 -0
  305. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/enrich.py +0 -0
  306. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  307. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/es_projection.py +0 -0
  308. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/es_training_callbacks.py +0 -0
  309. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/es_training_viz.py +0 -0
  310. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/exceptions.py +0 -0
  311. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/featrix_csv.py +0 -0
  312. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/featrix_json.py +0 -0
  313. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/featrix_module_dict.py +0 -0
  314. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/featrix_token.py +0 -0
  315. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  316. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/feature_engineer.py +0 -0
  317. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  318. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/fips_codec.py +0 -0
  319. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/foundation_input_data.py +0 -0
  320. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/geo_foundation.py +0 -0
  321. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/geo_json_codec.py +0 -0
  322. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/geo_json_ops.py +0 -0
  323. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/geo_ops.py +0 -0
  324. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/geo_spread.py +0 -0
  325. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/geocode.py +0 -0
  326. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/gpu_utils.py +0 -0
  327. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/gradient_flow.py +0 -0
  328. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/graph_encoder.py +0 -0
  329. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/graph_encoder_training.py +0 -0
  330. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/guardrails.py +0 -0
  331. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/host_memory_tracker.py +0 -0
  332. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  333. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/hybrid_column_detector.py +0 -0
  334. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/hybrid_encoders.py +0 -0
  335. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/hybrid_scalar_set_codec.py +0 -0
  336. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/hyperparam_search.py +0 -0
  337. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/input_data_file.py +0 -0
  338. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/input_data_set.py +0 -0
  339. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/integrity.py +0 -0
  340. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/io_utils.py +0 -0
  341. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/ip_address_ops.py +0 -0
  342. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/json_cache.py +0 -0
  343. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/json_codec.py +0 -0
  344. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/junction_adapter.py +0 -0
  345. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/label_schema.py +0 -0
  346. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/llm/__init__.py +0 -0
  347. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/llm/schema_analyzer.py +0 -0
  348. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/local_string_cache.py +0 -0
  349. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/logging_config.py +0 -0
  350. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/loss_framework.py +0 -0
  351. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/loss_functions/__init__.py +0 -0
  352. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  353. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  354. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  355. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  356. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/loss_short_embedding.py +0 -0
  357. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/lr_timeline.py +0 -0
  358. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/mask_bias_tracker.py +0 -0
  359. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/mask_tracker.py +0 -0
  360. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/model_config.py +0 -0
  361. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/model_hash.py +0 -0
  362. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/movie_frame_task.py +0 -0
  363. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/multi_table_dataset.py +0 -0
  364. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  365. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/multilabel_codec.py +0 -0
  366. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/multilabel_utils.py +0 -0
  367. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/network_viz.py +0 -0
  368. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/pair_scorer.py +0 -0
  369. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/per_epoch_quality.py +0 -0
  370. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/phone_codec.py +0 -0
  371. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/platform_utils.py +0 -0
  372. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/prng_control.py +0 -0
  373. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  374. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  375. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  376. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  377. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/model_advisor.py +0 -0
  378. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/show_results.py +0 -0
  379. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -0
  380. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_training.py +0 -0
  381. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  382. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  383. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -0
  384. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -0
  385. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  386. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  387. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  388. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  389. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -0
  390. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -0
  391. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison.py +0 -0
  392. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -0
  393. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  394. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  395. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_label_smoothing.py +0 -0
  396. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  397. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  398. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  399. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  400. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_multi_dataset.py +0 -0
  401. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  402. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  403. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  404. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  405. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  406. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  407. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  408. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  409. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  410. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  411. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  412. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  413. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  414. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/relationship_complexity.py +0 -0
  415. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/relationship_estimator.py +0 -0
  416. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/relationship_extractor.py +0 -0
  417. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/relationship_importance_validator.py +0 -0
  418. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/relationship_ops_base.py +0 -0
  419. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/relationship_performance.py +0 -0
  420. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/relationship_preanalysis.py +0 -0
  421. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/relationship_search.py +0 -0
  422. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/scalar_codec.py +0 -0
  423. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  424. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  425. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/schema_history.py +0 -0
  426. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/set_codec.py +0 -0
  427. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/set_scalar_ops.py +0 -0
  428. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/set_set_ops.py +0 -0
  429. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/set_timestamp_ops.py +0 -0
  430. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/setlist_codec.py +0 -0
  431. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/simple_mlp.py +0 -0
  432. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/simple_string_cache.py +0 -0
  433. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/single_predictor.py +0 -0
  434. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/single_predictor_mlp.py +0 -0
  435. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/sp_auto_size.py +0 -0
  436. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/sphere_config.py +0 -0
  437. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/sphere_init.py +0 -0
  438. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/sqlite_utils.py +0 -0
  439. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/stopwatch.py +0 -0
  440. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/strategy_ops_base.py +0 -0
  441. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  442. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  443. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  444. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/string_analysis.py +0 -0
  445. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/string_cache.py +0 -0
  446. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/string_codec.py +0 -0
  447. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/string_list_codec.py +0 -0
  448. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/string_scalar_ops.py +0 -0
  449. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/string_set_ops.py +0 -0
  450. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  451. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/tensor_utils.py +0 -0
  452. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/timeline_events.py +0 -0
  453. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/timestamp_codec.py +0 -0
  454. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/tools/__init__.py +0 -0
  455. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/tools/compare_clusters.py +0 -0
  456. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_banner.py +0 -0
  457. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_callbacks.py +0 -0
  458. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_callbacks_dev.py +0 -0
  459. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  460. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_context_manager.py +0 -0
  461. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_data_timeline.py +0 -0
  462. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_event.py +0 -0
  463. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_exceptions.py +0 -0
  464. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_history_db.py +0 -0
  465. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_logger.py +0 -0
  466. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_movie_writer.py +0 -0
  467. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_rules.py +0 -0
  468. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_suggestions.py +0 -0
  469. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/training_timeline.py +0 -0
  470. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/transformer_encoder.py +0 -0
  471. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/type_aware_ops_config.py +0 -0
  472. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/url_codec.py +0 -0
  473. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/url_ops.py +0 -0
  474. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/url_parser.py +0 -0
  475. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/us_holidays.py +0 -0
  476. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/utils.py +0 -0
  477. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/vector_codec.py +0 -0
  478. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  479. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/viz_movement_distribution.py +0 -0
  480. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  481. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  482. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/webhooks.py +0 -0
  483. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/weight_timeline.py +0 -0
  484. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/world_data.py +0 -0
  485. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/xgboost_classifier.py +0 -0
  486. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/xgboost_regressor.py +0 -0
  487. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/year_json_codec.py +0 -0
  488. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/year_json_ops.py +0 -0
  489. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/mixed_features/20260217_105711/es_training/best_model_package/lib/featrix/neural/zip_codec.py +0 -0
  490. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/__init__.py +0 -0
  491. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/__init__.py +0 -0
  492. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/__init__.py +0 -0
  493. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/adaptive_event_log.py +0 -0
  494. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/auc_animation.py +0 -0
  495. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/calibration_utils.py +0 -0
  496. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  497. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/charting.py +0 -0
  498. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/checkpoint_validation.py +0 -0
  499. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/classification_metrics.py +0 -0
  500. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  501. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/config.py +0 -0
  502. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/constants.py +0 -0
  503. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/curve_plots_example.py +0 -0
  504. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/customer_quality_tracker.py +0 -0
  505. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/data_fips.py +0 -0
  506. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/data_frame_data_set.py +0 -0
  507. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/data_free_email_domains.py +0 -0
  508. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/dataloader_utils.py +0 -0
  509. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/default_training_rules.py +0 -0
  510. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/detect.py +0 -0
  511. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/dimension_validator.py +0 -0
  512. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/domain_codec.py +0 -0
  513. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/dropout_scheduler.py +0 -0
  514. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/duration_ops.py +0 -0
  515. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/dynamic_relationship_extractor.py +0 -0
  516. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/email_codec.py +0 -0
  517. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/email_domain_ops.py +0 -0
  518. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/embedded_space.py +0 -0
  519. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  520. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/embedding_quality.py +0 -0
  521. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/embedding_space_utils.py +0 -0
  522. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/embedding_utils.py +0 -0
  523. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/encoders.py +0 -0
  524. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/enrich.py +0 -0
  525. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  526. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/es_projection.py +0 -0
  527. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/es_training_callbacks.py +0 -0
  528. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/es_training_viz.py +0 -0
  529. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/exceptions.py +0 -0
  530. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/featrix_csv.py +0 -0
  531. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/featrix_json.py +0 -0
  532. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/featrix_module_dict.py +0 -0
  533. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/featrix_token.py +0 -0
  534. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  535. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/feature_engineer.py +0 -0
  536. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  537. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/fips_codec.py +0 -0
  538. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/foundation_input_data.py +0 -0
  539. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/geo_foundation.py +0 -0
  540. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/geo_json_codec.py +0 -0
  541. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/geo_json_ops.py +0 -0
  542. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/geo_ops.py +0 -0
  543. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/geo_spread.py +0 -0
  544. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/geocode.py +0 -0
  545. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/gpu_utils.py +0 -0
  546. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/gradient_flow.py +0 -0
  547. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/graph_encoder.py +0 -0
  548. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/graph_encoder_training.py +0 -0
  549. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/guardrails.py +0 -0
  550. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/host_memory_tracker.py +0 -0
  551. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  552. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/hybrid_column_detector.py +0 -0
  553. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/hybrid_encoders.py +0 -0
  554. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/hybrid_scalar_set_codec.py +0 -0
  555. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/hyperparam_search.py +0 -0
  556. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/input_data_file.py +0 -0
  557. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/input_data_set.py +0 -0
  558. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/integrity.py +0 -0
  559. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/io_utils.py +0 -0
  560. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/ip_address_ops.py +0 -0
  561. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/json_cache.py +0 -0
  562. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/json_codec.py +0 -0
  563. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/junction_adapter.py +0 -0
  564. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/label_schema.py +0 -0
  565. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/llm/__init__.py +0 -0
  566. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/llm/schema_analyzer.py +0 -0
  567. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/local_string_cache.py +0 -0
  568. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/logging_config.py +0 -0
  569. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/loss_framework.py +0 -0
  570. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/loss_functions/__init__.py +0 -0
  571. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  572. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  573. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  574. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  575. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/loss_short_embedding.py +0 -0
  576. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/lr_timeline.py +0 -0
  577. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/mask_bias_tracker.py +0 -0
  578. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/mask_tracker.py +0 -0
  579. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/model_config.py +0 -0
  580. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/model_hash.py +0 -0
  581. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/movie_frame_task.py +0 -0
  582. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/multi_table_dataset.py +0 -0
  583. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  584. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/multilabel_codec.py +0 -0
  585. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/multilabel_utils.py +0 -0
  586. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/network_viz.py +0 -0
  587. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/pair_scorer.py +0 -0
  588. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/per_epoch_quality.py +0 -0
  589. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/phone_codec.py +0 -0
  590. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/platform_utils.py +0 -0
  591. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/prng_control.py +0 -0
  592. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  593. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  594. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  595. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  596. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/model_advisor.py +0 -0
  597. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/show_results.py +0 -0
  598. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -0
  599. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_training.py +0 -0
  600. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  601. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  602. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -0
  603. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -0
  604. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  605. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  606. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  607. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  608. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -0
  609. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -0
  610. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison.py +0 -0
  611. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -0
  612. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  613. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  614. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_label_smoothing.py +0 -0
  615. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  616. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  617. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  618. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  619. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_multi_dataset.py +0 -0
  620. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  621. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  622. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  623. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  624. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  625. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  626. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  627. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  628. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  629. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  630. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  631. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  632. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  633. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/relationship_complexity.py +0 -0
  634. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/relationship_estimator.py +0 -0
  635. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/relationship_extractor.py +0 -0
  636. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/relationship_importance_validator.py +0 -0
  637. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/relationship_ops_base.py +0 -0
  638. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/relationship_performance.py +0 -0
  639. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/relationship_preanalysis.py +0 -0
  640. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/relationship_search.py +0 -0
  641. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/scalar_codec.py +0 -0
  642. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  643. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  644. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/schema_history.py +0 -0
  645. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/set_codec.py +0 -0
  646. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/set_scalar_ops.py +0 -0
  647. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/set_set_ops.py +0 -0
  648. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/set_timestamp_ops.py +0 -0
  649. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/setlist_codec.py +0 -0
  650. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/simple_mlp.py +0 -0
  651. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/simple_string_cache.py +0 -0
  652. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/single_predictor.py +0 -0
  653. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/single_predictor_mlp.py +0 -0
  654. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/sp_auto_size.py +0 -0
  655. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/sphere_config.py +0 -0
  656. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/sphere_init.py +0 -0
  657. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/sqlite_utils.py +0 -0
  658. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/stopwatch.py +0 -0
  659. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/strategy_ops_base.py +0 -0
  660. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  661. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  662. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  663. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/string_analysis.py +0 -0
  664. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/string_cache.py +0 -0
  665. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/string_codec.py +0 -0
  666. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/string_list_codec.py +0 -0
  667. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/string_scalar_ops.py +0 -0
  668. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/string_set_ops.py +0 -0
  669. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  670. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/tensor_utils.py +0 -0
  671. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/timeline_events.py +0 -0
  672. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/timestamp_codec.py +0 -0
  673. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/tools/__init__.py +0 -0
  674. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/tools/compare_clusters.py +0 -0
  675. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_banner.py +0 -0
  676. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_callbacks.py +0 -0
  677. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_callbacks_dev.py +0 -0
  678. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  679. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_context_manager.py +0 -0
  680. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_data_timeline.py +0 -0
  681. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_event.py +0 -0
  682. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_exceptions.py +0 -0
  683. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_history_db.py +0 -0
  684. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_logger.py +0 -0
  685. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_movie_writer.py +0 -0
  686. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_rules.py +0 -0
  687. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_suggestions.py +0 -0
  688. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/training_timeline.py +0 -0
  689. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/transformer_encoder.py +0 -0
  690. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/type_aware_ops_config.py +0 -0
  691. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/url_codec.py +0 -0
  692. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/url_ops.py +0 -0
  693. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/url_parser.py +0 -0
  694. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/us_holidays.py +0 -0
  695. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/utils.py +0 -0
  696. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/vector_codec.py +0 -0
  697. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  698. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/viz_movement_distribution.py +0 -0
  699. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  700. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  701. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/webhooks.py +0 -0
  702. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/weight_timeline.py +0 -0
  703. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/world_data.py +0 -0
  704. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/xgboost_classifier.py +0 -0
  705. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/xgboost_regressor.py +0 -0
  706. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/year_json_codec.py +0 -0
  707. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/year_json_ops.py +0 -0
  708. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/multivariate/20260217_181250/es_training/best_model_package/lib/featrix/neural/zip_codec.py +0 -0
  709. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/__init__.py +0 -0
  710. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/__init__.py +0 -0
  711. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/__init__.py +0 -0
  712. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/adaptive_event_log.py +0 -0
  713. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/auc_animation.py +0 -0
  714. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/calibration_utils.py +0 -0
  715. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  716. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/charting.py +0 -0
  717. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/checkpoint_validation.py +0 -0
  718. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/classification_metrics.py +0 -0
  719. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  720. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/config.py +0 -0
  721. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/constants.py +0 -0
  722. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/curve_plots_example.py +0 -0
  723. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/customer_quality_tracker.py +0 -0
  724. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/data_fips.py +0 -0
  725. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/data_frame_data_set.py +0 -0
  726. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/data_free_email_domains.py +0 -0
  727. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/dataloader_utils.py +0 -0
  728. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/default_training_rules.py +0 -0
  729. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/detect.py +0 -0
  730. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/dimension_validator.py +0 -0
  731. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/domain_codec.py +0 -0
  732. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/dropout_scheduler.py +0 -0
  733. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/duration_ops.py +0 -0
  734. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/dynamic_relationship_extractor.py +0 -0
  735. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/email_codec.py +0 -0
  736. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/email_domain_ops.py +0 -0
  737. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/embedded_space.py +0 -0
  738. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  739. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/embedding_quality.py +0 -0
  740. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/embedding_space_utils.py +0 -0
  741. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/embedding_utils.py +0 -0
  742. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/encoders.py +0 -0
  743. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/enrich.py +0 -0
  744. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  745. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/es_projection.py +0 -0
  746. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/es_training_callbacks.py +0 -0
  747. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/es_training_viz.py +0 -0
  748. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/exceptions.py +0 -0
  749. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/featrix_csv.py +0 -0
  750. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/featrix_json.py +0 -0
  751. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/featrix_module_dict.py +0 -0
  752. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/featrix_token.py +0 -0
  753. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  754. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/feature_engineer.py +0 -0
  755. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  756. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/fips_codec.py +0 -0
  757. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/foundation_input_data.py +0 -0
  758. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/geo_foundation.py +0 -0
  759. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/geo_json_codec.py +0 -0
  760. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/geo_json_ops.py +0 -0
  761. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/geo_ops.py +0 -0
  762. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/geo_spread.py +0 -0
  763. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/geocode.py +0 -0
  764. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/gpu_utils.py +0 -0
  765. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/gradient_flow.py +0 -0
  766. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/graph_encoder.py +0 -0
  767. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/graph_encoder_training.py +0 -0
  768. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/guardrails.py +0 -0
  769. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/host_memory_tracker.py +0 -0
  770. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  771. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/hybrid_column_detector.py +0 -0
  772. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/hybrid_encoders.py +0 -0
  773. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/hybrid_scalar_set_codec.py +0 -0
  774. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/hyperparam_search.py +0 -0
  775. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/input_data_file.py +0 -0
  776. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/input_data_set.py +0 -0
  777. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/integrity.py +0 -0
  778. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/io_utils.py +0 -0
  779. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/ip_address_ops.py +0 -0
  780. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/json_cache.py +0 -0
  781. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/json_codec.py +0 -0
  782. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/junction_adapter.py +0 -0
  783. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/label_schema.py +0 -0
  784. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/llm/__init__.py +0 -0
  785. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/llm/schema_analyzer.py +0 -0
  786. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/local_string_cache.py +0 -0
  787. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/logging_config.py +0 -0
  788. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/loss_framework.py +0 -0
  789. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/loss_functions/__init__.py +0 -0
  790. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  791. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  792. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  793. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  794. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/loss_short_embedding.py +0 -0
  795. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/lr_timeline.py +0 -0
  796. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/manifold_viz.py +0 -0
  797. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/mask_bias_tracker.py +0 -0
  798. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/mask_tracker.py +0 -0
  799. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/model_config.py +0 -0
  800. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/model_hash.py +0 -0
  801. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/movie_frame_task.py +0 -0
  802. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/multi_table_dataset.py +0 -0
  803. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  804. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/multilabel_codec.py +0 -0
  805. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/multilabel_utils.py +0 -0
  806. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/network_viz.py +0 -0
  807. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/pair_scorer.py +0 -0
  808. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/per_epoch_quality.py +0 -0
  809. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/phone_codec.py +0 -0
  810. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/platform_utils.py +0 -0
  811. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/prng_control.py +0 -0
  812. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  813. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  814. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  815. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  816. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/model_advisor.py +0 -0
  817. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/show_results.py +0 -0
  818. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -0
  819. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_training.py +0 -0
  820. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  821. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  822. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -0
  823. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -0
  824. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  825. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  826. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  827. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  828. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -0
  829. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -0
  830. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison.py +0 -0
  831. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -0
  832. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  833. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  834. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_label_smoothing.py +0 -0
  835. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  836. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  837. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  838. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  839. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_multi_dataset.py +0 -0
  840. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  841. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  842. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  843. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  844. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  845. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  846. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  847. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  848. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  849. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  850. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  851. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  852. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  853. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/relationship_complexity.py +0 -0
  854. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/relationship_estimator.py +0 -0
  855. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/relationship_extractor.py +0 -0
  856. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/relationship_importance_validator.py +0 -0
  857. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/relationship_ops_base.py +0 -0
  858. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/relationship_performance.py +0 -0
  859. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/relationship_preanalysis.py +0 -0
  860. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/relationship_search.py +0 -0
  861. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/scalar_codec.py +0 -0
  862. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  863. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  864. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/schema_history.py +0 -0
  865. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/set_codec.py +0 -0
  866. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/set_scalar_ops.py +0 -0
  867. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/set_set_ops.py +0 -0
  868. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/set_timestamp_ops.py +0 -0
  869. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/setlist_codec.py +0 -0
  870. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/simple_mlp.py +0 -0
  871. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/simple_string_cache.py +0 -0
  872. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/single_predictor.py +0 -0
  873. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/single_predictor_mlp.py +0 -0
  874. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/sp_auto_size.py +0 -0
  875. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/sphere_config.py +0 -0
  876. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/sphere_init.py +0 -0
  877. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/sqlite_utils.py +0 -0
  878. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/stopwatch.py +0 -0
  879. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/strategy_ops_base.py +0 -0
  880. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  881. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  882. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  883. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/string_analysis.py +0 -0
  884. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/string_cache.py +0 -0
  885. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/string_codec.py +0 -0
  886. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/string_list_codec.py +0 -0
  887. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/string_scalar_ops.py +0 -0
  888. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/string_set_ops.py +0 -0
  889. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  890. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/tensor_utils.py +0 -0
  891. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/timeline_events.py +0 -0
  892. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/timestamp_codec.py +0 -0
  893. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/tools/__init__.py +0 -0
  894. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/tools/compare_clusters.py +0 -0
  895. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_banner.py +0 -0
  896. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_callbacks.py +0 -0
  897. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_callbacks_dev.py +0 -0
  898. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  899. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_context_manager.py +0 -0
  900. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_data_timeline.py +0 -0
  901. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_event.py +0 -0
  902. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_exceptions.py +0 -0
  903. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_history_db.py +0 -0
  904. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_logger.py +0 -0
  905. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_movie_writer.py +0 -0
  906. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_rules.py +0 -0
  907. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_suggestions.py +0 -0
  908. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/training_timeline.py +0 -0
  909. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/transformer_encoder.py +0 -0
  910. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/type_aware_ops_config.py +0 -0
  911. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/url_codec.py +0 -0
  912. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/url_ops.py +0 -0
  913. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/url_parser.py +0 -0
  914. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/us_holidays.py +0 -0
  915. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/utils.py +0 -0
  916. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/vector_codec.py +0 -0
  917. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  918. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/viz_movement_distribution.py +0 -0
  919. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  920. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  921. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/webhooks.py +0 -0
  922. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/weight_timeline.py +0 -0
  923. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/world_data.py +0 -0
  924. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/xgboost_classifier.py +0 -0
  925. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/xgboost_regressor.py +0 -0
  926. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/year_json_codec.py +0 -0
  927. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/year_json_ops.py +0 -0
  928. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/outlier_detection/20260218_040910/es_training/best_model_package/lib/featrix/neural/zip_codec.py +0 -0
  929. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/__init__.py +0 -0
  930. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/__init__.py +0 -0
  931. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/__init__.py +0 -0
  932. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/adaptive_event_log.py +0 -0
  933. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/auc_animation.py +0 -0
  934. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/calibration_utils.py +0 -0
  935. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  936. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/charting.py +0 -0
  937. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/checkpoint_validation.py +0 -0
  938. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/classification_metrics.py +0 -0
  939. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  940. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/config.py +0 -0
  941. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/constants.py +0 -0
  942. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/curve_plots_example.py +0 -0
  943. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/customer_quality_tracker.py +0 -0
  944. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/data_fips.py +0 -0
  945. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/data_frame_data_set.py +0 -0
  946. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/data_free_email_domains.py +0 -0
  947. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/dataloader_utils.py +0 -0
  948. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/default_training_rules.py +0 -0
  949. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/detect.py +0 -0
  950. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/dimension_validator.py +0 -0
  951. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/domain_codec.py +0 -0
  952. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/dropout_scheduler.py +0 -0
  953. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/duration_ops.py +0 -0
  954. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/dynamic_relationship_extractor.py +0 -0
  955. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/email_codec.py +0 -0
  956. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/email_domain_ops.py +0 -0
  957. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/embedded_space.py +0 -0
  958. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  959. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/embedding_quality.py +0 -0
  960. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/embedding_space_utils.py +0 -0
  961. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/embedding_utils.py +0 -0
  962. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/encoders.py +0 -0
  963. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/enrich.py +0 -0
  964. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  965. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/es_projection.py +0 -0
  966. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/es_training_callbacks.py +0 -0
  967. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/es_training_viz.py +0 -0
  968. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/exceptions.py +0 -0
  969. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/featrix_csv.py +0 -0
  970. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/featrix_json.py +0 -0
  971. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/featrix_module_dict.py +0 -0
  972. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/featrix_token.py +0 -0
  973. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  974. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/feature_engineer.py +0 -0
  975. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  976. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/fips_codec.py +0 -0
  977. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/foundation_input_data.py +0 -0
  978. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/geo_foundation.py +0 -0
  979. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/geo_json_codec.py +0 -0
  980. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/geo_json_ops.py +0 -0
  981. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/geo_ops.py +0 -0
  982. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/geo_spread.py +0 -0
  983. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/geocode.py +0 -0
  984. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/gpu_utils.py +0 -0
  985. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/gradient_flow.py +0 -0
  986. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/graph_encoder.py +0 -0
  987. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/graph_encoder_training.py +0 -0
  988. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/guardrails.py +0 -0
  989. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/host_memory_tracker.py +0 -0
  990. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  991. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/hybrid_column_detector.py +0 -0
  992. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/hybrid_encoders.py +0 -0
  993. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/hybrid_scalar_set_codec.py +0 -0
  994. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/hyperparam_search.py +0 -0
  995. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/input_data_file.py +0 -0
  996. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/input_data_set.py +0 -0
  997. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/integrity.py +0 -0
  998. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/io_utils.py +0 -0
  999. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/ip_address_ops.py +0 -0
  1000. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/json_cache.py +0 -0
  1001. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/json_codec.py +0 -0
  1002. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/junction_adapter.py +0 -0
  1003. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/label_schema.py +0 -0
  1004. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/llm/__init__.py +0 -0
  1005. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/llm/schema_analyzer.py +0 -0
  1006. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/local_string_cache.py +0 -0
  1007. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/logging_config.py +0 -0
  1008. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/loss_framework.py +0 -0
  1009. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/loss_functions/__init__.py +0 -0
  1010. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  1011. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  1012. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  1013. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  1014. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/loss_short_embedding.py +0 -0
  1015. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/lr_timeline.py +0 -0
  1016. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/manifold_viz.py +0 -0
  1017. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/mask_bias_tracker.py +0 -0
  1018. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/mask_tracker.py +0 -0
  1019. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/model_config.py +0 -0
  1020. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/model_hash.py +0 -0
  1021. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/movie_frame_task.py +0 -0
  1022. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/multi_table_dataset.py +0 -0
  1023. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  1024. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/multilabel_codec.py +0 -0
  1025. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/multilabel_utils.py +0 -0
  1026. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/network_viz.py +0 -0
  1027. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/pair_scorer.py +0 -0
  1028. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/per_epoch_quality.py +0 -0
  1029. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/phone_codec.py +0 -0
  1030. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/platform_utils.py +0 -0
  1031. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/prng_control.py +0 -0
  1032. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  1033. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  1034. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  1035. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  1036. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/model_advisor.py +0 -0
  1037. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/show_results.py +0 -0
  1038. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -0
  1039. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_training.py +0 -0
  1040. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  1041. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  1042. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -0
  1043. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -0
  1044. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  1045. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  1046. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  1047. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  1048. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -0
  1049. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -0
  1050. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison.py +0 -0
  1051. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -0
  1052. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  1053. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  1054. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_label_smoothing.py +0 -0
  1055. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  1056. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  1057. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  1058. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  1059. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_multi_dataset.py +0 -0
  1060. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  1061. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  1062. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  1063. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  1064. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  1065. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  1066. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  1067. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  1068. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  1069. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  1070. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  1071. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  1072. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  1073. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/relationship_complexity.py +0 -0
  1074. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/relationship_estimator.py +0 -0
  1075. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/relationship_extractor.py +0 -0
  1076. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/relationship_importance_validator.py +0 -0
  1077. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/relationship_ops_base.py +0 -0
  1078. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/relationship_performance.py +0 -0
  1079. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/relationship_preanalysis.py +0 -0
  1080. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/relationship_search.py +0 -0
  1081. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/scalar_codec.py +0 -0
  1082. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  1083. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  1084. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/schema_history.py +0 -0
  1085. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/set_codec.py +0 -0
  1086. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/set_scalar_ops.py +0 -0
  1087. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/set_set_ops.py +0 -0
  1088. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/set_timestamp_ops.py +0 -0
  1089. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/setlist_codec.py +0 -0
  1090. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/simple_mlp.py +0 -0
  1091. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/simple_string_cache.py +0 -0
  1092. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/single_predictor.py +0 -0
  1093. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/single_predictor_mlp.py +0 -0
  1094. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/sp_auto_size.py +0 -0
  1095. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/sphere_config.py +0 -0
  1096. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/sphere_init.py +0 -0
  1097. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/sqlite_utils.py +0 -0
  1098. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/stopwatch.py +0 -0
  1099. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/strategy_ops_base.py +0 -0
  1100. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  1101. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  1102. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  1103. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/string_analysis.py +0 -0
  1104. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/string_cache.py +0 -0
  1105. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/string_codec.py +0 -0
  1106. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/string_list_codec.py +0 -0
  1107. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/string_scalar_ops.py +0 -0
  1108. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/string_set_ops.py +0 -0
  1109. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  1110. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/tensor_utils.py +0 -0
  1111. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/timeline_events.py +0 -0
  1112. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/timestamp_codec.py +0 -0
  1113. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/tools/__init__.py +0 -0
  1114. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/tools/compare_clusters.py +0 -0
  1115. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_banner.py +0 -0
  1116. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_callbacks.py +0 -0
  1117. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_callbacks_dev.py +0 -0
  1118. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  1119. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_context_manager.py +0 -0
  1120. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_data_timeline.py +0 -0
  1121. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_event.py +0 -0
  1122. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_exceptions.py +0 -0
  1123. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_history_db.py +0 -0
  1124. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_logger.py +0 -0
  1125. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_movie_writer.py +0 -0
  1126. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_rules.py +0 -0
  1127. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_suggestions.py +0 -0
  1128. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/training_timeline.py +0 -0
  1129. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/transformer_encoder.py +0 -0
  1130. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/type_aware_ops_config.py +0 -0
  1131. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/url_codec.py +0 -0
  1132. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/url_ops.py +0 -0
  1133. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/url_parser.py +0 -0
  1134. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/us_holidays.py +0 -0
  1135. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/utils.py +0 -0
  1136. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/vector_codec.py +0 -0
  1137. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  1138. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/viz_movement_distribution.py +0 -0
  1139. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  1140. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  1141. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/webhooks.py +0 -0
  1142. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/weight_timeline.py +0 -0
  1143. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/world_data.py +0 -0
  1144. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/xgboost_classifier.py +0 -0
  1145. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/xgboost_regressor.py +0 -0
  1146. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/year_json_codec.py +0 -0
  1147. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/year_json_ops.py +0 -0
  1148. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_base/20260218_114712/es_training/best_model_package/lib/featrix/neural/zip_codec.py +0 -0
  1149. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/__init__.py +0 -0
  1150. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/__init__.py +0 -0
  1151. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/__init__.py +0 -0
  1152. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/adaptive_event_log.py +0 -0
  1153. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/auc_animation.py +0 -0
  1154. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/calibration_utils.py +0 -0
  1155. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  1156. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/charting.py +0 -0
  1157. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/checkpoint_validation.py +0 -0
  1158. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/classification_metrics.py +0 -0
  1159. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  1160. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/config.py +0 -0
  1161. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/constants.py +0 -0
  1162. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/curve_plots_example.py +0 -0
  1163. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/customer_quality_tracker.py +0 -0
  1164. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/data_fips.py +0 -0
  1165. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/data_frame_data_set.py +0 -0
  1166. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/data_free_email_domains.py +0 -0
  1167. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/dataloader_utils.py +0 -0
  1168. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/default_training_rules.py +0 -0
  1169. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/detect.py +0 -0
  1170. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/dimension_validator.py +0 -0
  1171. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/domain_codec.py +0 -0
  1172. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/dropout_scheduler.py +0 -0
  1173. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/duration_ops.py +0 -0
  1174. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/dynamic_relationship_extractor.py +0 -0
  1175. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/email_codec.py +0 -0
  1176. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/email_domain_ops.py +0 -0
  1177. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/embedded_space.py +0 -0
  1178. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  1179. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/embedding_quality.py +0 -0
  1180. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/embedding_space_utils.py +0 -0
  1181. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/embedding_utils.py +0 -0
  1182. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/encoders.py +0 -0
  1183. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/enrich.py +0 -0
  1184. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  1185. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/es_projection.py +0 -0
  1186. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/es_training_callbacks.py +0 -0
  1187. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/es_training_viz.py +0 -0
  1188. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/exceptions.py +0 -0
  1189. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/featrix_csv.py +0 -0
  1190. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/featrix_json.py +0 -0
  1191. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/featrix_module_dict.py +0 -0
  1192. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/featrix_token.py +0 -0
  1193. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  1194. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/feature_engineer.py +0 -0
  1195. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  1196. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/fips_codec.py +0 -0
  1197. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/foundation_input_data.py +0 -0
  1198. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/geo_foundation.py +0 -0
  1199. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/geo_json_codec.py +0 -0
  1200. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/geo_json_ops.py +0 -0
  1201. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/geo_ops.py +0 -0
  1202. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/geo_spread.py +0 -0
  1203. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/geocode.py +0 -0
  1204. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/gpu_utils.py +0 -0
  1205. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/gradient_flow.py +0 -0
  1206. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/graph_encoder.py +0 -0
  1207. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/graph_encoder_training.py +0 -0
  1208. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/guardrails.py +0 -0
  1209. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/host_memory_tracker.py +0 -0
  1210. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  1211. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/hybrid_column_detector.py +0 -0
  1212. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/hybrid_encoders.py +0 -0
  1213. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/hybrid_scalar_set_codec.py +0 -0
  1214. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/hyperparam_search.py +0 -0
  1215. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/input_data_file.py +0 -0
  1216. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/input_data_set.py +0 -0
  1217. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/integrity.py +0 -0
  1218. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/io_utils.py +0 -0
  1219. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/ip_address_ops.py +0 -0
  1220. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/json_cache.py +0 -0
  1221. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/json_codec.py +0 -0
  1222. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/junction_adapter.py +0 -0
  1223. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/label_schema.py +0 -0
  1224. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/llm/__init__.py +0 -0
  1225. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/llm/schema_analyzer.py +0 -0
  1226. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/local_string_cache.py +0 -0
  1227. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/logging_config.py +0 -0
  1228. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/loss_framework.py +0 -0
  1229. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/loss_functions/__init__.py +0 -0
  1230. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  1231. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  1232. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  1233. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  1234. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/loss_short_embedding.py +0 -0
  1235. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/lr_timeline.py +0 -0
  1236. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/manifold_viz.py +0 -0
  1237. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/mask_bias_tracker.py +0 -0
  1238. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/mask_tracker.py +0 -0
  1239. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/model_config.py +0 -0
  1240. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/model_hash.py +0 -0
  1241. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/movie_frame_task.py +0 -0
  1242. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/multi_table_dataset.py +0 -0
  1243. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  1244. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/multilabel_codec.py +0 -0
  1245. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/multilabel_utils.py +0 -0
  1246. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/network_viz.py +0 -0
  1247. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/pair_scorer.py +0 -0
  1248. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/per_epoch_quality.py +0 -0
  1249. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/phone_codec.py +0 -0
  1250. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/platform_utils.py +0 -0
  1251. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/prng_control.py +0 -0
  1252. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  1253. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  1254. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  1255. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  1256. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/model_advisor.py +0 -0
  1257. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/show_results.py +0 -0
  1258. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -0
  1259. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_training.py +0 -0
  1260. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  1261. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  1262. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -0
  1263. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -0
  1264. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  1265. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  1266. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  1267. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  1268. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -0
  1269. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -0
  1270. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison.py +0 -0
  1271. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -0
  1272. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  1273. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  1274. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_label_smoothing.py +0 -0
  1275. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  1276. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  1277. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  1278. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  1279. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_multi_dataset.py +0 -0
  1280. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  1281. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  1282. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  1283. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  1284. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  1285. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  1286. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  1287. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  1288. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  1289. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  1290. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  1291. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  1292. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  1293. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/relationship_complexity.py +0 -0
  1294. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/relationship_estimator.py +0 -0
  1295. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/relationship_extractor.py +0 -0
  1296. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/relationship_importance_validator.py +0 -0
  1297. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/relationship_ops_base.py +0 -0
  1298. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/relationship_performance.py +0 -0
  1299. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/relationship_preanalysis.py +0 -0
  1300. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/relationship_search.py +0 -0
  1301. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/scalar_codec.py +0 -0
  1302. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  1303. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  1304. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/schema_history.py +0 -0
  1305. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/set_codec.py +0 -0
  1306. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/set_scalar_ops.py +0 -0
  1307. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/set_set_ops.py +0 -0
  1308. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/set_timestamp_ops.py +0 -0
  1309. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/setlist_codec.py +0 -0
  1310. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/simple_mlp.py +0 -0
  1311. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/simple_string_cache.py +0 -0
  1312. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/single_predictor.py +0 -0
  1313. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/single_predictor_mlp.py +0 -0
  1314. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/sp_auto_size.py +0 -0
  1315. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/sphere_config.py +0 -0
  1316. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/sphere_init.py +0 -0
  1317. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/sqlite_utils.py +0 -0
  1318. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/stopwatch.py +0 -0
  1319. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/strategy_ops_base.py +0 -0
  1320. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  1321. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  1322. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  1323. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/string_analysis.py +0 -0
  1324. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/string_cache.py +0 -0
  1325. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/string_codec.py +0 -0
  1326. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/string_list_codec.py +0 -0
  1327. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/string_scalar_ops.py +0 -0
  1328. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/string_set_ops.py +0 -0
  1329. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  1330. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/tensor_utils.py +0 -0
  1331. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/timeline_events.py +0 -0
  1332. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/timestamp_codec.py +0 -0
  1333. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/tools/__init__.py +0 -0
  1334. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/tools/compare_clusters.py +0 -0
  1335. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_banner.py +0 -0
  1336. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_callbacks.py +0 -0
  1337. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_callbacks_dev.py +0 -0
  1338. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  1339. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_context_manager.py +0 -0
  1340. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_data_timeline.py +0 -0
  1341. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_event.py +0 -0
  1342. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_exceptions.py +0 -0
  1343. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_history_db.py +0 -0
  1344. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_logger.py +0 -0
  1345. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_movie_writer.py +0 -0
  1346. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_rules.py +0 -0
  1347. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_suggestions.py +0 -0
  1348. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/training_timeline.py +0 -0
  1349. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/transformer_encoder.py +0 -0
  1350. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/type_aware_ops_config.py +0 -0
  1351. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/url_codec.py +0 -0
  1352. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/url_ops.py +0 -0
  1353. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/url_parser.py +0 -0
  1354. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/us_holidays.py +0 -0
  1355. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/utils.py +0 -0
  1356. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/vector_codec.py +0 -0
  1357. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  1358. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/viz_movement_distribution.py +0 -0
  1359. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  1360. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  1361. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/webhooks.py +0 -0
  1362. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/weight_timeline.py +0 -0
  1363. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/world_data.py +0 -0
  1364. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/xgboost_classifier.py +0 -0
  1365. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/xgboost_regressor.py +0 -0
  1366. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/year_json_codec.py +0 -0
  1367. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/year_json_ops.py +0 -0
  1368. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_high_cardinality/20260218_173943/es_training/best_model_package/lib/featrix/neural/zip_codec.py +0 -0
  1369. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/__init__.py +0 -0
  1370. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/__init__.py +0 -0
  1371. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/__init__.py +0 -0
  1372. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/adaptive_event_log.py +0 -0
  1373. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/auc_animation.py +0 -0
  1374. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/calibration_utils.py +0 -0
  1375. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  1376. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/charting.py +0 -0
  1377. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/checkpoint_validation.py +0 -0
  1378. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/classification_metrics.py +0 -0
  1379. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  1380. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/config.py +0 -0
  1381. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/constants.py +0 -0
  1382. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/curve_plots_example.py +0 -0
  1383. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/customer_quality_tracker.py +0 -0
  1384. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/data_fips.py +0 -0
  1385. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/data_frame_data_set.py +0 -0
  1386. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/data_free_email_domains.py +0 -0
  1387. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/dataloader_utils.py +0 -0
  1388. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/default_training_rules.py +0 -0
  1389. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/detect.py +0 -0
  1390. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/dimension_validator.py +0 -0
  1391. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/domain_codec.py +0 -0
  1392. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/dropout_scheduler.py +0 -0
  1393. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/duration_ops.py +0 -0
  1394. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/dynamic_relationship_extractor.py +0 -0
  1395. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/email_codec.py +0 -0
  1396. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/email_domain_ops.py +0 -0
  1397. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/embedded_space.py +0 -0
  1398. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  1399. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/embedding_quality.py +0 -0
  1400. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/embedding_space_utils.py +0 -0
  1401. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/embedding_utils.py +0 -0
  1402. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/encoders.py +0 -0
  1403. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/enrich.py +0 -0
  1404. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  1405. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/es_projection.py +0 -0
  1406. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/es_training_callbacks.py +0 -0
  1407. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/es_training_viz.py +0 -0
  1408. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/exceptions.py +0 -0
  1409. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/featrix_csv.py +0 -0
  1410. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/featrix_json.py +0 -0
  1411. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/featrix_module_dict.py +0 -0
  1412. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/featrix_token.py +0 -0
  1413. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  1414. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/feature_engineer.py +0 -0
  1415. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  1416. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/fips_codec.py +0 -0
  1417. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/foundation_input_data.py +0 -0
  1418. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/geo_foundation.py +0 -0
  1419. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/geo_json_codec.py +0 -0
  1420. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/geo_json_ops.py +0 -0
  1421. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/geo_ops.py +0 -0
  1422. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/geo_spread.py +0 -0
  1423. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/geocode.py +0 -0
  1424. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/gpu_utils.py +0 -0
  1425. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/gradient_flow.py +0 -0
  1426. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/graph_encoder.py +0 -0
  1427. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/graph_encoder_training.py +0 -0
  1428. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/guardrails.py +0 -0
  1429. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/host_memory_tracker.py +0 -0
  1430. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  1431. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/hybrid_column_detector.py +0 -0
  1432. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/hybrid_encoders.py +0 -0
  1433. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/hybrid_scalar_set_codec.py +0 -0
  1434. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/hyperparam_search.py +0 -0
  1435. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/input_data_file.py +0 -0
  1436. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/input_data_set.py +0 -0
  1437. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/integrity.py +0 -0
  1438. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/io_utils.py +0 -0
  1439. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/ip_address_ops.py +0 -0
  1440. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/json_cache.py +0 -0
  1441. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/json_codec.py +0 -0
  1442. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/junction_adapter.py +0 -0
  1443. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/label_schema.py +0 -0
  1444. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/llm/__init__.py +0 -0
  1445. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/llm/schema_analyzer.py +0 -0
  1446. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/local_string_cache.py +0 -0
  1447. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/logging_config.py +0 -0
  1448. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/loss_centroid_cohesion.py +0 -0
  1449. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/loss_framework.py +0 -0
  1450. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/loss_functions/__init__.py +0 -0
  1451. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  1452. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  1453. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  1454. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  1455. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/loss_short_embedding.py +0 -0
  1456. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/lr_timeline.py +0 -0
  1457. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/manifold_viz.py +0 -0
  1458. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/mask_bias_tracker.py +0 -0
  1459. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/mask_tracker.py +0 -0
  1460. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/model_config.py +0 -0
  1461. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/model_hash.py +0 -0
  1462. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/movie_frame_task.py +0 -0
  1463. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/multi_table_dataset.py +0 -0
  1464. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  1465. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/multilabel_codec.py +0 -0
  1466. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/multilabel_utils.py +0 -0
  1467. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/network_viz.py +0 -0
  1468. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/pair_scorer.py +0 -0
  1469. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/per_epoch_quality.py +0 -0
  1470. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/phone_codec.py +0 -0
  1471. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/platform_utils.py +0 -0
  1472. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/prng_control.py +0 -0
  1473. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  1474. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  1475. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  1476. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  1477. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/model_advisor.py +0 -0
  1478. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/show_results.py +0 -0
  1479. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -0
  1480. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_training.py +0 -0
  1481. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  1482. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  1483. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -0
  1484. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -0
  1485. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  1486. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  1487. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  1488. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  1489. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -0
  1490. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -0
  1491. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison.py +0 -0
  1492. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -0
  1493. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  1494. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  1495. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_label_smoothing.py +0 -0
  1496. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  1497. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  1498. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  1499. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  1500. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_multi_dataset.py +0 -0
  1501. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  1502. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  1503. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  1504. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  1505. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  1506. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  1507. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  1508. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  1509. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  1510. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  1511. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  1512. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  1513. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  1514. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/relationship_complexity.py +0 -0
  1515. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/relationship_estimator.py +0 -0
  1516. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/relationship_extractor.py +0 -0
  1517. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/relationship_importance_validator.py +0 -0
  1518. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/relationship_ops_base.py +0 -0
  1519. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/relationship_performance.py +0 -0
  1520. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/relationship_preanalysis.py +0 -0
  1521. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/relationship_search.py +0 -0
  1522. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/scalar_codec.py +0 -0
  1523. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  1524. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  1525. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/schema_history.py +0 -0
  1526. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/set_codec.py +0 -0
  1527. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/set_scalar_ops.py +0 -0
  1528. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/set_set_ops.py +0 -0
  1529. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/set_timestamp_ops.py +0 -0
  1530. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/setlist_codec.py +0 -0
  1531. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/simple_mlp.py +0 -0
  1532. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/simple_string_cache.py +0 -0
  1533. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/single_predictor.py +0 -0
  1534. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/single_predictor_mlp.py +0 -0
  1535. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/sp_auto_size.py +0 -0
  1536. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/sphere_config.py +0 -0
  1537. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/sphere_init.py +0 -0
  1538. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/sqlite_utils.py +0 -0
  1539. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/stopwatch.py +0 -0
  1540. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/strategy_ops_base.py +0 -0
  1541. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  1542. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  1543. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  1544. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/string_analysis.py +0 -0
  1545. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/string_cache.py +0 -0
  1546. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/string_codec.py +0 -0
  1547. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/string_list_codec.py +0 -0
  1548. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/string_scalar_ops.py +0 -0
  1549. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/string_set_ops.py +0 -0
  1550. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  1551. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/tensor_utils.py +0 -0
  1552. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/timeline_events.py +0 -0
  1553. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/timestamp_codec.py +0 -0
  1554. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/tools/__init__.py +0 -0
  1555. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/tools/compare_clusters.py +0 -0
  1556. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_banner.py +0 -0
  1557. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_callbacks.py +0 -0
  1558. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_callbacks_dev.py +0 -0
  1559. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  1560. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_context_manager.py +0 -0
  1561. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_data_timeline.py +0 -0
  1562. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_event.py +0 -0
  1563. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_exceptions.py +0 -0
  1564. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_history_db.py +0 -0
  1565. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_logger.py +0 -0
  1566. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_movie_writer.py +0 -0
  1567. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_rules.py +0 -0
  1568. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_suggestions.py +0 -0
  1569. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/training_timeline.py +0 -0
  1570. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/transformer_encoder.py +0 -0
  1571. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/type_aware_ops_config.py +0 -0
  1572. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/url_codec.py +0 -0
  1573. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/url_ops.py +0 -0
  1574. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/url_parser.py +0 -0
  1575. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/us_holidays.py +0 -0
  1576. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/utils.py +0 -0
  1577. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/vector_codec.py +0 -0
  1578. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  1579. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/viz_movement_distribution.py +0 -0
  1580. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  1581. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  1582. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/webhooks.py +0 -0
  1583. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/weight_timeline.py +0 -0
  1584. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/world_data.py +0 -0
  1585. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/xgboost_classifier.py +0 -0
  1586. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/xgboost_regressor.py +0 -0
  1587. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/year_json_codec.py +0 -0
  1588. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/year_json_ops.py +0 -0
  1589. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/rare_cat_needle/20260219_015554/es_training/best_model_package/lib/featrix/neural/zip_codec.py +0 -0
  1590. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/__init__.py +0 -0
  1591. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/__init__.py +0 -0
  1592. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/__init__.py +0 -0
  1593. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/adaptive_event_log.py +0 -0
  1594. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/auc_animation.py +0 -0
  1595. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/calibration_utils.py +0 -0
  1596. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  1597. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/charting.py +0 -0
  1598. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/checkpoint_validation.py +0 -0
  1599. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/classification_metrics.py +0 -0
  1600. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  1601. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/config.py +0 -0
  1602. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/constants.py +0 -0
  1603. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/curve_plots_example.py +0 -0
  1604. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/customer_quality_tracker.py +0 -0
  1605. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/data_fips.py +0 -0
  1606. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/data_frame_data_set.py +0 -0
  1607. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/data_free_email_domains.py +0 -0
  1608. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/dataloader_utils.py +0 -0
  1609. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/default_training_rules.py +0 -0
  1610. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/detect.py +0 -0
  1611. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/dimension_validator.py +0 -0
  1612. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/domain_codec.py +0 -0
  1613. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/dropout_scheduler.py +0 -0
  1614. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/duration_ops.py +0 -0
  1615. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/dynamic_relationship_extractor.py +0 -0
  1616. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/email_codec.py +0 -0
  1617. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/email_domain_ops.py +0 -0
  1618. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/embedded_space.py +0 -0
  1619. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  1620. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/embedding_quality.py +0 -0
  1621. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/embedding_space_utils.py +0 -0
  1622. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/embedding_utils.py +0 -0
  1623. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/encoders.py +0 -0
  1624. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/enrich.py +0 -0
  1625. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  1626. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/es_projection.py +0 -0
  1627. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/es_training_callbacks.py +0 -0
  1628. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/es_training_viz.py +0 -0
  1629. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/exceptions.py +0 -0
  1630. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/featrix_csv.py +0 -0
  1631. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/featrix_json.py +0 -0
  1632. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/featrix_module_dict.py +0 -0
  1633. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/featrix_token.py +0 -0
  1634. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  1635. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/feature_engineer.py +0 -0
  1636. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  1637. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/fips_codec.py +0 -0
  1638. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/foundation_input_data.py +0 -0
  1639. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/geo_foundation.py +0 -0
  1640. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/geo_json_codec.py +0 -0
  1641. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/geo_json_ops.py +0 -0
  1642. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/geo_ops.py +0 -0
  1643. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/geo_spread.py +0 -0
  1644. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/geocode.py +0 -0
  1645. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/gpu_utils.py +0 -0
  1646. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/gradient_flow.py +0 -0
  1647. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/graph_encoder.py +0 -0
  1648. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/graph_encoder_training.py +0 -0
  1649. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/guardrails.py +0 -0
  1650. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/host_memory_tracker.py +0 -0
  1651. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  1652. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/hybrid_column_detector.py +0 -0
  1653. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/hybrid_encoders.py +0 -0
  1654. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/hybrid_scalar_set_codec.py +0 -0
  1655. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/hyperparam_search.py +0 -0
  1656. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/input_data_file.py +0 -0
  1657. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/input_data_set.py +0 -0
  1658. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/integrity.py +0 -0
  1659. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/io_utils.py +0 -0
  1660. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/ip_address_ops.py +0 -0
  1661. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/json_cache.py +0 -0
  1662. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/json_codec.py +0 -0
  1663. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/junction_adapter.py +0 -0
  1664. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/label_schema.py +0 -0
  1665. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/llm/__init__.py +0 -0
  1666. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/llm/schema_analyzer.py +0 -0
  1667. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/local_string_cache.py +0 -0
  1668. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/logging_config.py +0 -0
  1669. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/loss_centroid_cohesion.py +0 -0
  1670. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/loss_column_sensitivity.py +0 -0
  1671. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/loss_framework.py +0 -0
  1672. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/loss_functions/__init__.py +0 -0
  1673. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  1674. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  1675. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  1676. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  1677. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/loss_short_embedding.py +0 -0
  1678. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/lr_timeline.py +0 -0
  1679. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/manifold_viz.py +0 -0
  1680. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/mask_bias_tracker.py +0 -0
  1681. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/mask_tracker.py +0 -0
  1682. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/model_config.py +0 -0
  1683. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/model_hash.py +0 -0
  1684. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/movie_frame_task.py +0 -0
  1685. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/multi_table_dataset.py +0 -0
  1686. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  1687. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/multilabel_codec.py +0 -0
  1688. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/multilabel_utils.py +0 -0
  1689. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/network_viz.py +0 -0
  1690. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/pair_scorer.py +0 -0
  1691. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/per_epoch_quality.py +0 -0
  1692. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/phone_codec.py +0 -0
  1693. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/platform_utils.py +0 -0
  1694. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/prng_control.py +0 -0
  1695. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  1696. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  1697. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  1698. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  1699. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/model_advisor.py +0 -0
  1700. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/show_results.py +0 -0
  1701. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -0
  1702. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_training.py +0 -0
  1703. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  1704. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  1705. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -0
  1706. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -0
  1707. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  1708. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  1709. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  1710. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  1711. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -0
  1712. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -0
  1713. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison.py +0 -0
  1714. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -0
  1715. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  1716. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  1717. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_label_smoothing.py +0 -0
  1718. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  1719. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  1720. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  1721. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  1722. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_multi_dataset.py +0 -0
  1723. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  1724. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  1725. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  1726. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  1727. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  1728. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  1729. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  1730. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  1731. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  1732. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  1733. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  1734. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  1735. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  1736. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/relationship_complexity.py +0 -0
  1737. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/relationship_estimator.py +0 -0
  1738. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/relationship_extractor.py +0 -0
  1739. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/relationship_importance_validator.py +0 -0
  1740. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/relationship_ops_base.py +0 -0
  1741. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/relationship_performance.py +0 -0
  1742. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/relationship_preanalysis.py +0 -0
  1743. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/relationship_search.py +0 -0
  1744. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/scalar_codec.py +0 -0
  1745. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  1746. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  1747. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/schema_history.py +0 -0
  1748. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/set_codec.py +0 -0
  1749. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/set_scalar_ops.py +0 -0
  1750. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/set_set_ops.py +0 -0
  1751. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/set_timestamp_ops.py +0 -0
  1752. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/setlist_codec.py +0 -0
  1753. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/simple_mlp.py +0 -0
  1754. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/simple_string_cache.py +0 -0
  1755. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/single_predictor.py +0 -0
  1756. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/single_predictor_mlp.py +0 -0
  1757. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/sp_auto_size.py +0 -0
  1758. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/sphere_config.py +0 -0
  1759. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/sphere_init.py +0 -0
  1760. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/sqlite_utils.py +0 -0
  1761. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/stopwatch.py +0 -0
  1762. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/strategy_ops_base.py +0 -0
  1763. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  1764. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  1765. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  1766. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/string_analysis.py +0 -0
  1767. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/string_cache.py +0 -0
  1768. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/string_codec.py +0 -0
  1769. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/string_list_codec.py +0 -0
  1770. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/string_scalar_ops.py +0 -0
  1771. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/string_set_ops.py +0 -0
  1772. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  1773. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/tensor_utils.py +0 -0
  1774. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/timeline_events.py +0 -0
  1775. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/timestamp_codec.py +0 -0
  1776. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/tools/__init__.py +0 -0
  1777. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/tools/compare_clusters.py +0 -0
  1778. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_banner.py +0 -0
  1779. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_callbacks.py +0 -0
  1780. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_callbacks_dev.py +0 -0
  1781. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  1782. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_context_manager.py +0 -0
  1783. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_data_timeline.py +0 -0
  1784. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_event.py +0 -0
  1785. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_exceptions.py +0 -0
  1786. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_history_db.py +0 -0
  1787. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_logger.py +0 -0
  1788. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_movie_writer.py +0 -0
  1789. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_rules.py +0 -0
  1790. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_suggestions.py +0 -0
  1791. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/training_timeline.py +0 -0
  1792. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/transformer_encoder.py +0 -0
  1793. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/type_aware_ops_config.py +0 -0
  1794. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/url_codec.py +0 -0
  1795. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/url_ops.py +0 -0
  1796. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/url_parser.py +0 -0
  1797. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/us_holidays.py +0 -0
  1798. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/utils.py +0 -0
  1799. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/vector_codec.py +0 -0
  1800. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  1801. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/viz_movement_distribution.py +0 -0
  1802. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  1803. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  1804. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/webhooks.py +0 -0
  1805. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/weight_timeline.py +0 -0
  1806. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/world_data.py +0 -0
  1807. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/xgboost_classifier.py +0 -0
  1808. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/xgboost_regressor.py +0 -0
  1809. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/year_json_codec.py +0 -0
  1810. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/year_json_ops.py +0 -0
  1811. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/sinusoidal/20260219_082932/es_training/best_model_package/lib/featrix/neural/zip_codec.py +0 -0
  1812. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/__init__.py +0 -0
  1813. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/__init__.py +0 -0
  1814. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/__init__.py +0 -0
  1815. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/adaptive_event_log.py +0 -0
  1816. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/auc_animation.py +0 -0
  1817. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/calibration_utils.py +0 -0
  1818. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  1819. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/charting.py +0 -0
  1820. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/checkpoint_validation.py +0 -0
  1821. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/classification_metrics.py +0 -0
  1822. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  1823. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/config.py +0 -0
  1824. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/constants.py +0 -0
  1825. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/curve_plots_example.py +0 -0
  1826. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/customer_quality_tracker.py +0 -0
  1827. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/data_fips.py +0 -0
  1828. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/data_frame_data_set.py +0 -0
  1829. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/data_free_email_domains.py +0 -0
  1830. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/dataloader_utils.py +0 -0
  1831. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/default_training_rules.py +0 -0
  1832. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/detect.py +0 -0
  1833. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/dimension_validator.py +0 -0
  1834. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/domain_codec.py +0 -0
  1835. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/dropout_scheduler.py +0 -0
  1836. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/duration_ops.py +0 -0
  1837. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/dynamic_relationship_extractor.py +0 -0
  1838. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/email_codec.py +0 -0
  1839. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/email_domain_ops.py +0 -0
  1840. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/embedded_space.py +0 -0
  1841. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  1842. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/embedding_quality.py +0 -0
  1843. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/embedding_space_utils.py +0 -0
  1844. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/embedding_utils.py +0 -0
  1845. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/encoders.py +0 -0
  1846. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/enrich.py +0 -0
  1847. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  1848. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/es_projection.py +0 -0
  1849. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/es_training_callbacks.py +0 -0
  1850. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/es_training_viz.py +0 -0
  1851. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/exceptions.py +0 -0
  1852. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/featrix_csv.py +0 -0
  1853. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/featrix_json.py +0 -0
  1854. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/featrix_module_dict.py +0 -0
  1855. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/featrix_token.py +0 -0
  1856. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  1857. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/feature_engineer.py +0 -0
  1858. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  1859. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/fips_codec.py +0 -0
  1860. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/foundation_input_data.py +0 -0
  1861. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/geo_foundation.py +0 -0
  1862. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/geo_json_codec.py +0 -0
  1863. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/geo_json_ops.py +0 -0
  1864. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/geo_ops.py +0 -0
  1865. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/geo_spread.py +0 -0
  1866. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/geocode.py +0 -0
  1867. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/gpu_utils.py +0 -0
  1868. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/gradient_flow.py +0 -0
  1869. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/graph_encoder.py +0 -0
  1870. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/graph_encoder_training.py +0 -0
  1871. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/guardrails.py +0 -0
  1872. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/host_memory_tracker.py +0 -0
  1873. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  1874. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/hybrid_column_detector.py +0 -0
  1875. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/hybrid_encoders.py +0 -0
  1876. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/hybrid_scalar_set_codec.py +0 -0
  1877. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/hyperparam_search.py +0 -0
  1878. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/input_data_file.py +0 -0
  1879. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/input_data_set.py +0 -0
  1880. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/integrity.py +0 -0
  1881. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/io_utils.py +0 -0
  1882. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/ip_address_ops.py +0 -0
  1883. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/json_cache.py +0 -0
  1884. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/json_codec.py +0 -0
  1885. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/junction_adapter.py +0 -0
  1886. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/label_schema.py +0 -0
  1887. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/llm/__init__.py +0 -0
  1888. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/llm/schema_analyzer.py +0 -0
  1889. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/local_string_cache.py +0 -0
  1890. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/logging_config.py +0 -0
  1891. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/loss_framework.py +0 -0
  1892. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/loss_functions/__init__.py +0 -0
  1893. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  1894. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  1895. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  1896. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  1897. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/loss_short_embedding.py +0 -0
  1898. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/lr_timeline.py +0 -0
  1899. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/mask_bias_tracker.py +0 -0
  1900. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/mask_tracker.py +0 -0
  1901. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/model_config.py +0 -0
  1902. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/model_hash.py +0 -0
  1903. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/movie_frame_task.py +0 -0
  1904. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/multi_table_dataset.py +0 -0
  1905. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  1906. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/multilabel_codec.py +0 -0
  1907. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/multilabel_utils.py +0 -0
  1908. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/network_viz.py +0 -0
  1909. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/pair_scorer.py +0 -0
  1910. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/per_epoch_quality.py +0 -0
  1911. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/phone_codec.py +0 -0
  1912. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/platform_utils.py +0 -0
  1913. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/prng_control.py +0 -0
  1914. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  1915. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  1916. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  1917. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  1918. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/model_advisor.py +0 -0
  1919. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/show_results.py +0 -0
  1920. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -0
  1921. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_training.py +0 -0
  1922. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  1923. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  1924. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -0
  1925. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -0
  1926. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  1927. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  1928. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  1929. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  1930. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -0
  1931. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -0
  1932. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison.py +0 -0
  1933. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -0
  1934. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  1935. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  1936. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_label_smoothing.py +0 -0
  1937. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  1938. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  1939. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  1940. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  1941. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_multi_dataset.py +0 -0
  1942. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  1943. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  1944. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  1945. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  1946. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  1947. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  1948. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  1949. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  1950. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  1951. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  1952. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  1953. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  1954. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  1955. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/relationship_complexity.py +0 -0
  1956. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/relationship_estimator.py +0 -0
  1957. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/relationship_extractor.py +0 -0
  1958. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/relationship_importance_validator.py +0 -0
  1959. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/relationship_ops_base.py +0 -0
  1960. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/relationship_performance.py +0 -0
  1961. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/relationship_preanalysis.py +0 -0
  1962. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/relationship_search.py +0 -0
  1963. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/scalar_codec.py +0 -0
  1964. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  1965. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  1966. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/schema_history.py +0 -0
  1967. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/set_codec.py +0 -0
  1968. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/set_scalar_ops.py +0 -0
  1969. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/set_set_ops.py +0 -0
  1970. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/set_timestamp_ops.py +0 -0
  1971. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/setlist_codec.py +0 -0
  1972. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/simple_mlp.py +0 -0
  1973. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/simple_string_cache.py +0 -0
  1974. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/single_predictor.py +0 -0
  1975. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/single_predictor_mlp.py +0 -0
  1976. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/sphere_config.py +0 -0
  1977. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/sphere_init.py +0 -0
  1978. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/sqlite_utils.py +0 -0
  1979. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/stopwatch.py +0 -0
  1980. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/strategy_ops_base.py +0 -0
  1981. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  1982. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  1983. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  1984. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/string_analysis.py +0 -0
  1985. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/string_cache.py +0 -0
  1986. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/string_codec.py +0 -0
  1987. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/string_list_codec.py +0 -0
  1988. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/string_scalar_ops.py +0 -0
  1989. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/string_set_ops.py +0 -0
  1990. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  1991. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/tensor_utils.py +0 -0
  1992. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/timeline_events.py +0 -0
  1993. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/timestamp_codec.py +0 -0
  1994. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/tools/__init__.py +0 -0
  1995. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/tools/compare_clusters.py +0 -0
  1996. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_banner.py +0 -0
  1997. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_callbacks.py +0 -0
  1998. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_callbacks_dev.py +0 -0
  1999. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  2000. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_context_manager.py +0 -0
  2001. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_data_timeline.py +0 -0
  2002. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_event.py +0 -0
  2003. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_exceptions.py +0 -0
  2004. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_history_db.py +0 -0
  2005. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_logger.py +0 -0
  2006. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_movie_writer.py +0 -0
  2007. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_rules.py +0 -0
  2008. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_suggestions.py +0 -0
  2009. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/training_timeline.py +0 -0
  2010. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/transformer_encoder.py +0 -0
  2011. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/type_aware_ops_config.py +0 -0
  2012. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/url_codec.py +0 -0
  2013. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/url_ops.py +0 -0
  2014. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/url_parser.py +0 -0
  2015. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/us_holidays.py +0 -0
  2016. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/utils.py +0 -0
  2017. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/vector_codec.py +0 -0
  2018. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  2019. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/viz_movement_distribution.py +0 -0
  2020. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  2021. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  2022. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/webhooks.py +0 -0
  2023. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/weight_timeline.py +0 -0
  2024. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/world_data.py +0 -0
  2025. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/xgboost_classifier.py +0 -0
  2026. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/xgboost_regressor.py +0 -0
  2027. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/year_json_codec.py +0 -0
  2028. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/year_json_ops.py +0 -0
  2029. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/smoke_test/20260217_105311/es_training/best_model_package/lib/featrix/neural/zip_codec.py +0 -0
  2030. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/__init__.py +0 -0
  2031. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/__init__.py +0 -0
  2032. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/__init__.py +0 -0
  2033. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/adaptive_event_log.py +0 -0
  2034. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/auc_animation.py +0 -0
  2035. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/calibration_utils.py +0 -0
  2036. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  2037. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/charting.py +0 -0
  2038. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/checkpoint_validation.py +0 -0
  2039. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/classification_metrics.py +0 -0
  2040. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  2041. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/config.py +0 -0
  2042. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/constants.py +0 -0
  2043. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/curve_plots_example.py +0 -0
  2044. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/customer_quality_tracker.py +0 -0
  2045. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/data_fips.py +0 -0
  2046. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/data_frame_data_set.py +0 -0
  2047. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/data_free_email_domains.py +0 -0
  2048. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/dataloader_utils.py +0 -0
  2049. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/default_training_rules.py +0 -0
  2050. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/detect.py +0 -0
  2051. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/dimension_validator.py +0 -0
  2052. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/domain_codec.py +0 -0
  2053. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/dropout_scheduler.py +0 -0
  2054. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/duration_ops.py +0 -0
  2055. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/dynamic_relationship_extractor.py +0 -0
  2056. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/email_codec.py +0 -0
  2057. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/email_domain_ops.py +0 -0
  2058. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/embedded_space.py +0 -0
  2059. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  2060. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/embedding_quality.py +0 -0
  2061. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/embedding_space_utils.py +0 -0
  2062. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/embedding_utils.py +0 -0
  2063. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/encoders.py +0 -0
  2064. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/enrich.py +0 -0
  2065. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  2066. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/es_projection.py +0 -0
  2067. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/es_training_callbacks.py +0 -0
  2068. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/es_training_viz.py +0 -0
  2069. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/exceptions.py +0 -0
  2070. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/featrix_csv.py +0 -0
  2071. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/featrix_json.py +0 -0
  2072. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/featrix_module_dict.py +0 -0
  2073. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/featrix_token.py +0 -0
  2074. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  2075. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/feature_engineer.py +0 -0
  2076. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  2077. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/fips_codec.py +0 -0
  2078. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/foundation_input_data.py +0 -0
  2079. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/geo_foundation.py +0 -0
  2080. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/geo_json_codec.py +0 -0
  2081. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/geo_json_ops.py +0 -0
  2082. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/geo_ops.py +0 -0
  2083. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/geo_spread.py +0 -0
  2084. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/geocode.py +0 -0
  2085. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/gpu_utils.py +0 -0
  2086. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/gradient_flow.py +0 -0
  2087. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/graph_encoder.py +0 -0
  2088. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/graph_encoder_training.py +0 -0
  2089. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/guardrails.py +0 -0
  2090. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/host_memory_tracker.py +0 -0
  2091. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  2092. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/hybrid_column_detector.py +0 -0
  2093. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/hybrid_encoders.py +0 -0
  2094. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/hybrid_scalar_set_codec.py +0 -0
  2095. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/hyperparam_search.py +0 -0
  2096. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/input_data_file.py +0 -0
  2097. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/input_data_set.py +0 -0
  2098. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/integrity.py +0 -0
  2099. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/io_utils.py +0 -0
  2100. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/ip_address_ops.py +0 -0
  2101. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/json_cache.py +0 -0
  2102. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/json_codec.py +0 -0
  2103. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/junction_adapter.py +0 -0
  2104. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/label_schema.py +0 -0
  2105. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/llm/__init__.py +0 -0
  2106. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/llm/schema_analyzer.py +0 -0
  2107. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/local_string_cache.py +0 -0
  2108. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/logging_config.py +0 -0
  2109. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/loss_centroid_cohesion.py +0 -0
  2110. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/loss_column_sensitivity.py +0 -0
  2111. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/loss_framework.py +0 -0
  2112. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/loss_functions/__init__.py +0 -0
  2113. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  2114. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  2115. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  2116. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  2117. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/loss_short_embedding.py +0 -0
  2118. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/lr_timeline.py +0 -0
  2119. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/manifold_viz.py +0 -0
  2120. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/mask_bias_tracker.py +0 -0
  2121. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/mask_tracker.py +0 -0
  2122. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/model_config.py +0 -0
  2123. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/model_hash.py +0 -0
  2124. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/movie_frame_task.py +0 -0
  2125. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/multi_table_dataset.py +0 -0
  2126. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  2127. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/multilabel_codec.py +0 -0
  2128. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/multilabel_utils.py +0 -0
  2129. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/network_viz.py +0 -0
  2130. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/pair_scorer.py +0 -0
  2131. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/per_epoch_quality.py +0 -0
  2132. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/phone_codec.py +0 -0
  2133. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/platform_utils.py +0 -0
  2134. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/prng_control.py +0 -0
  2135. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  2136. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  2137. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  2138. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  2139. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/model_advisor.py +0 -0
  2140. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/show_results.py +0 -0
  2141. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -0
  2142. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_training.py +0 -0
  2143. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  2144. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  2145. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -0
  2146. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -0
  2147. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  2148. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  2149. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  2150. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  2151. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -0
  2152. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -0
  2153. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison.py +0 -0
  2154. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -0
  2155. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  2156. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  2157. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_label_smoothing.py +0 -0
  2158. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  2159. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  2160. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  2161. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  2162. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_multi_dataset.py +0 -0
  2163. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  2164. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  2165. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  2166. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  2167. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  2168. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  2169. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  2170. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  2171. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  2172. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  2173. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  2174. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  2175. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  2176. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/relationship_complexity.py +0 -0
  2177. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/relationship_estimator.py +0 -0
  2178. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/relationship_extractor.py +0 -0
  2179. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/relationship_importance_validator.py +0 -0
  2180. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/relationship_ops_base.py +0 -0
  2181. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/relationship_performance.py +0 -0
  2182. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/relationship_preanalysis.py +0 -0
  2183. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/relationship_search.py +0 -0
  2184. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/scalar_codec.py +0 -0
  2185. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  2186. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  2187. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/schema_history.py +0 -0
  2188. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/set_codec.py +0 -0
  2189. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/set_scalar_ops.py +0 -0
  2190. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/set_set_ops.py +0 -0
  2191. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/set_timestamp_ops.py +0 -0
  2192. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/setlist_codec.py +0 -0
  2193. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/simple_mlp.py +0 -0
  2194. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/simple_string_cache.py +0 -0
  2195. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/single_predictor.py +0 -0
  2196. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/single_predictor_mlp.py +0 -0
  2197. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/sp_auto_size.py +0 -0
  2198. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/sphere_config.py +0 -0
  2199. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/sphere_init.py +0 -0
  2200. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/sqlite_utils.py +0 -0
  2201. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/stopwatch.py +0 -0
  2202. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/strategy_ops_base.py +0 -0
  2203. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  2204. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  2205. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  2206. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/string_analysis.py +0 -0
  2207. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/string_cache.py +0 -0
  2208. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/string_codec.py +0 -0
  2209. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/string_list_codec.py +0 -0
  2210. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/string_scalar_ops.py +0 -0
  2211. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/string_set_ops.py +0 -0
  2212. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  2213. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/tensor_utils.py +0 -0
  2214. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/timeline_events.py +0 -0
  2215. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/timestamp_codec.py +0 -0
  2216. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/tools/__init__.py +0 -0
  2217. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/tools/compare_clusters.py +0 -0
  2218. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_banner.py +0 -0
  2219. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_callbacks.py +0 -0
  2220. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_callbacks_dev.py +0 -0
  2221. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  2222. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_context_manager.py +0 -0
  2223. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_data_timeline.py +0 -0
  2224. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_event.py +0 -0
  2225. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_exceptions.py +0 -0
  2226. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_history_db.py +0 -0
  2227. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_logger.py +0 -0
  2228. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_movie_writer.py +0 -0
  2229. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_rules.py +0 -0
  2230. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_suggestions.py +0 -0
  2231. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/training_timeline.py +0 -0
  2232. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/transformer_encoder.py +0 -0
  2233. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/type_aware_ops_config.py +0 -0
  2234. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/url_codec.py +0 -0
  2235. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/url_ops.py +0 -0
  2236. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/url_parser.py +0 -0
  2237. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/us_holidays.py +0 -0
  2238. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/utils.py +0 -0
  2239. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/vector_codec.py +0 -0
  2240. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  2241. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/viz_movement_distribution.py +0 -0
  2242. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  2243. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  2244. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/webhooks.py +0 -0
  2245. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/weight_timeline.py +0 -0
  2246. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/world_data.py +0 -0
  2247. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/xgboost_classifier.py +0 -0
  2248. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/xgboost_regressor.py +0 -0
  2249. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/year_json_codec.py +0 -0
  2250. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/year_json_ops.py +0 -0
  2251. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/threshold_clean/20260219_095554/es_training/best_model_package/lib/featrix/neural/zip_codec.py +0 -0
  2252. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/__init__.py +0 -0
  2253. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/__init__.py +0 -0
  2254. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/adaptive_event_log.py +0 -0
  2255. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/auc_animation.py +0 -0
  2256. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/calibration_utils.py +0 -0
  2257. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  2258. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/charting.py +0 -0
  2259. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/checkpoint_validation.py +0 -0
  2260. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/classification_metrics.py +0 -0
  2261. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  2262. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/config.py +0 -0
  2263. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/constants.py +0 -0
  2264. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/curve_plots_example.py +0 -0
  2265. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/customer_quality_tracker.py +0 -0
  2266. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/data_fips.py +0 -0
  2267. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/data_frame_data_set.py +0 -0
  2268. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/data_free_email_domains.py +0 -0
  2269. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/dataloader_utils.py +0 -0
  2270. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/default_training_rules.py +0 -0
  2271. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/detect.py +0 -0
  2272. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/dimension_validator.py +0 -0
  2273. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/domain_codec.py +0 -0
  2274. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/dropout_scheduler.py +0 -0
  2275. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/duration_ops.py +0 -0
  2276. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/dynamic_relationship_extractor.py +0 -0
  2277. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/email_codec.py +0 -0
  2278. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/email_domain_ops.py +0 -0
  2279. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/embedded_space.py +0 -0
  2280. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  2281. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/embedding_quality.py +0 -0
  2282. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/embedding_space_utils.py +0 -0
  2283. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/embedding_utils.py +0 -0
  2284. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/encoders.py +0 -0
  2285. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/enrich.py +0 -0
  2286. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  2287. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/es_projection.py +0 -0
  2288. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/es_training_callbacks.py +0 -0
  2289. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/es_training_viz.py +0 -0
  2290. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/exceptions.py +0 -0
  2291. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/featrix_csv.py +0 -0
  2292. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/featrix_json.py +0 -0
  2293. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/featrix_module_dict.py +0 -0
  2294. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/featrix_token.py +0 -0
  2295. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  2296. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/feature_engineer.py +0 -0
  2297. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  2298. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/fips_codec.py +0 -0
  2299. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/foundation_input_data.py +0 -0
  2300. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/geo_foundation.py +0 -0
  2301. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/geo_json_codec.py +0 -0
  2302. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/geo_json_ops.py +0 -0
  2303. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/geo_ops.py +0 -0
  2304. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/geo_spread.py +0 -0
  2305. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/geocode.py +0 -0
  2306. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/gpu_utils.py +0 -0
  2307. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/gradient_flow.py +0 -0
  2308. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/graph_encoder.py +0 -0
  2309. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/graph_encoder_training.py +0 -0
  2310. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/guardrails.py +0 -0
  2311. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/host_memory_tracker.py +0 -0
  2312. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  2313. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/hybrid_column_detector.py +0 -0
  2314. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/hybrid_encoders.py +0 -0
  2315. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/hybrid_scalar_set_codec.py +0 -0
  2316. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/hyperparam_search.py +0 -0
  2317. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/input_data_file.py +0 -0
  2318. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/input_data_set.py +0 -0
  2319. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/integrity.py +0 -0
  2320. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/io_utils.py +0 -0
  2321. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/ip_address_ops.py +0 -0
  2322. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/json_cache.py +0 -0
  2323. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/json_codec.py +0 -0
  2324. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/junction_adapter.py +0 -0
  2325. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/label_schema.py +0 -0
  2326. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/llm/__init__.py +0 -0
  2327. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/llm/schema_analyzer.py +0 -0
  2328. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/local_string_cache.py +0 -0
  2329. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/logging_config.py +0 -0
  2330. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/loss_framework.py +0 -0
  2331. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/loss_functions/__init__.py +0 -0
  2332. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  2333. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  2334. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  2335. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  2336. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/loss_short_embedding.py +0 -0
  2337. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/lr_timeline.py +0 -0
  2338. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/mask_bias_tracker.py +0 -0
  2339. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/mask_tracker.py +0 -0
  2340. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/model_config.py +0 -0
  2341. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/model_hash.py +0 -0
  2342. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/movie_frame_task.py +0 -0
  2343. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/multi_table_dataset.py +0 -0
  2344. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  2345. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/multilabel_codec.py +0 -0
  2346. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/multilabel_utils.py +0 -0
  2347. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/network_viz.py +0 -0
  2348. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/pair_scorer.py +0 -0
  2349. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/per_epoch_quality.py +0 -0
  2350. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/phone_codec.py +0 -0
  2351. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/platform_utils.py +0 -0
  2352. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/prng_control.py +0 -0
  2353. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  2354. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  2355. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  2356. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  2357. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/model_advisor.py +0 -0
  2358. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/show_results.py +0 -0
  2359. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_loss_benchmark.py +0 -0
  2360. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_adaptive_training.py +0 -0
  2361. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  2362. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  2363. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_cls_vs_mean_pooling.py +0 -0
  2364. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_confusion_matrix_metadata.py +0 -0
  2365. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  2366. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  2367. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  2368. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  2369. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_extend_embedding_space.py +0 -0
  2370. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_feature_engineering_prediction.py +0 -0
  2371. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison.py +0 -0
  2372. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_focal_comparison_enhanced.py +0 -0
  2373. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  2374. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  2375. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_label_smoothing.py +0 -0
  2376. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  2377. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  2378. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  2379. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  2380. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_multi_dataset.py +0 -0
  2381. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  2382. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  2383. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  2384. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  2385. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  2386. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  2387. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  2388. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  2389. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  2390. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  2391. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  2392. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  2393. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  2394. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/relationship_complexity.py +0 -0
  2395. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/relationship_estimator.py +0 -0
  2396. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/relationship_extractor.py +0 -0
  2397. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/relationship_importance_validator.py +0 -0
  2398. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/relationship_ops_base.py +0 -0
  2399. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/relationship_performance.py +0 -0
  2400. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/relationship_preanalysis.py +0 -0
  2401. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/relationship_search.py +0 -0
  2402. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/scalar_codec.py +0 -0
  2403. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  2404. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  2405. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/schema_history.py +0 -0
  2406. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/set_codec.py +0 -0
  2407. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/set_scalar_ops.py +0 -0
  2408. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/set_set_ops.py +0 -0
  2409. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/set_timestamp_ops.py +0 -0
  2410. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/setlist_codec.py +0 -0
  2411. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/simple_mlp.py +0 -0
  2412. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/simple_string_cache.py +0 -0
  2413. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/single_predictor.py +0 -0
  2414. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/single_predictor_mlp.py +0 -0
  2415. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/sphere_config.py +0 -0
  2416. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/sphere_init.py +0 -0
  2417. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/sqlite_utils.py +0 -0
  2418. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/stopwatch.py +0 -0
  2419. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/strategy_ops_base.py +0 -0
  2420. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  2421. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  2422. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  2423. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/string_analysis.py +0 -0
  2424. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/string_cache.py +0 -0
  2425. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/string_codec.py +0 -0
  2426. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/string_list_codec.py +0 -0
  2427. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/string_scalar_ops.py +0 -0
  2428. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/string_set_ops.py +0 -0
  2429. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  2430. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/tensor_utils.py +0 -0
  2431. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/timeline_events.py +0 -0
  2432. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/timestamp_codec.py +0 -0
  2433. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/tools/__init__.py +0 -0
  2434. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/tools/compare_clusters.py +0 -0
  2435. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_banner.py +0 -0
  2436. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_callbacks.py +0 -0
  2437. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_callbacks_dev.py +0 -0
  2438. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  2439. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_context_manager.py +0 -0
  2440. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_data_timeline.py +0 -0
  2441. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_event.py +0 -0
  2442. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_exceptions.py +0 -0
  2443. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_history_db.py +0 -0
  2444. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_logger.py +0 -0
  2445. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_movie_writer.py +0 -0
  2446. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_rules.py +0 -0
  2447. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_suggestions.py +0 -0
  2448. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/training_timeline.py +0 -0
  2449. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/transformer_encoder.py +0 -0
  2450. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/type_aware_ops_config.py +0 -0
  2451. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/url_codec.py +0 -0
  2452. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/url_ops.py +0 -0
  2453. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/url_parser.py +0 -0
  2454. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/us_holidays.py +0 -0
  2455. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/utils.py +0 -0
  2456. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/vector_codec.py +0 -0
  2457. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  2458. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/viz_movement_distribution.py +0 -0
  2459. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  2460. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  2461. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/webhooks.py +0 -0
  2462. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/weight_timeline.py +0 -0
  2463. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/world_data.py +0 -0
  2464. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/xgboost_classifier.py +0 -0
  2465. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/xgboost_regressor.py +0 -0
  2466. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/year_json_codec.py +0 -0
  2467. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/year_json_ops.py +0 -0
  2468. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/results/xor_clean/20260212_154344/es_training/best_model_package/lib/featrix/neural/zip_codec.py +0 -0
  2469. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/run.py +0 -0
  2470. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/run_all.sh +0 -0
  2471. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/tests/__init__.py +0 -0
  2472. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/tests/test_generators.py +0 -0
  2473. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/es-stress-tests/tests/test_runner_smoke.py +0 -0
  2474. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/__init__.py +0 -0
  2475. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/adaptive_event_log.py +0 -0
  2476. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/ascii_utils.py +0 -0
  2477. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/auc_animation.py +0 -0
  2478. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/baseline_models.py +0 -0
  2479. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/binary_metrics_helpers.py +0 -0
  2480. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/calibration_utils.py +0 -0
  2481. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/causal_relationship_scorer.py +0 -0
  2482. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/classification_metrics.py +0 -0
  2483. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/cluster_cohesion_tracker.py +0 -0
  2484. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/column_learnability_tracker.py +0 -0
  2485. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/config.py +0 -0
  2486. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/constants.py +0 -0
  2487. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/curve_plots_example.py +0 -0
  2488. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/customer_quality_tracker.py +0 -0
  2489. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/data_fips.py +0 -0
  2490. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/data_free_email_domains.py +0 -0
  2491. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/default_training_rules.py +0 -0
  2492. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/difficulty_tracker.py +0 -0
  2493. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/dimension_validator.py +0 -0
  2494. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/duration_ops.py +0 -0
  2495. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/email_domain_ops.py +0 -0
  2496. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/embedding_lr_scheduler.py +0 -0
  2497. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/embedding_quality.py +0 -0
  2498. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/embedding_utils.py +0 -0
  2499. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/__init__.py +0 -0
  2500. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/domain_codec.py +0 -0
  2501. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/email_codec.py +0 -0
  2502. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/flat_dict_json_codec.py +0 -0
  2503. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/geo_json_codec.py +0 -0
  2504. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/graph_encoder.py +0 -0
  2505. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/hybrid_scalar_set_codec.py +0 -0
  2506. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/hybrid_string_set_codec.py +0 -0
  2507. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/image_codec.py +0 -0
  2508. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/json_codec.py +0 -0
  2509. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/multilabel_codec.py +0 -0
  2510. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/phone_codec.py +0 -0
  2511. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/scalar_codec.py +0 -0
  2512. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/set_codec.py +0 -0
  2513. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/setlist_codec.py +0 -0
  2514. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/string_list_codec.py +0 -0
  2515. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/timestamp_codec.py +0 -0
  2516. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/timezone_codec.py +0 -0
  2517. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/url_codec.py +0 -0
  2518. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/vector_codec.py +0 -0
  2519. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/year_json_codec.py +0 -0
  2520. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/encoders/zip_codec.py +0 -0
  2521. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/epoch_cross_domain_analyzer.py +0 -0
  2522. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/es_projection.py +0 -0
  2523. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/es_training_callbacks.py +0 -0
  2524. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/exceptions.py +0 -0
  2525. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/featrix_csv.py +0 -0
  2526. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/featrix_json.py +0 -0
  2527. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/featrix_module_dict.py +0 -0
  2528. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/featrix_token.py +0 -0
  2529. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/feature_effectiveness_tracker.py +0 -0
  2530. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/feature_engineer.py +0 -0
  2531. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/feature_suggestion_tracker.py +0 -0
  2532. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/geo_json_ops.py +0 -0
  2533. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/geo_ops.py +0 -0
  2534. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/geo_spread.py +0 -0
  2535. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/gpu_utils.py +0 -0
  2536. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/graph_encoder_training.py +0 -0
  2537. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/guardrails.py +0 -0
  2538. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/host_memory_tracker.py +0 -0
  2539. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/hubspot_free_domains_list_may_2025.py +0 -0
  2540. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/hybrid_column_detector.py +0 -0
  2541. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/hyperparam_search.py +0 -0
  2542. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/image_embedding.py +0 -0
  2543. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/image_set_ops.py +0 -0
  2544. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/image_string_ops.py +0 -0
  2545. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/input_data_file.py +0 -0
  2546. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/input_data_utils.py +0 -0
  2547. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/integrity.py +0 -0
  2548. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/ip_address_ops.py +0 -0
  2549. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/jobs/__init__.py +0 -0
  2550. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/jobs/create_structured_data/__init__.py +0 -0
  2551. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/json_cache.py +0 -0
  2552. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/junction_adapter.py +0 -0
  2553. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/label_schema.py +0 -0
  2554. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/llm/__init__.py +0 -0
  2555. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/llm/column_enrichment.py +0 -0
  2556. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/local_string_cache.py +0 -0
  2557. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/logging_config.py +0 -0
  2558. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/loss_centroid_cohesion.py +0 -0
  2559. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/loss_functions/__init__.py +0 -0
  2560. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/loss_functions/list_versions.py +0 -0
  2561. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/loss_functions/loss_functions_01Jan2026.py +0 -0
  2562. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/loss_functions/loss_functions_01Jul2025.py +0 -0
  2563. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/loss_functions/loss_functions_21Jan2026.py +0 -0
  2564. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/loss_short_embedding.py +0 -0
  2565. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/mask_bias_tracker.py +0 -0
  2566. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/mask_tracker.py +0 -0
  2567. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/model_ema.py +0 -0
  2568. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/model_hash.py +0 -0
  2569. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/movie_frame_task.py +0 -0
  2570. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/multi_table_dataset.py +0 -0
  2571. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/multi_table_embedding_space.py +0 -0
  2572. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/multiclass_loss.py +0 -0
  2573. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/multilabel_loss.py +0 -0
  2574. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/multilabel_utils.py +0 -0
  2575. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/network_viz.py +0 -0
  2576. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/ordinal_loss.py +0 -0
  2577. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/pair_scorer.py +0 -0
  2578. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/per_epoch_quality.py +0 -0
  2579. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/platform_utils.py +0 -0
  2580. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/prediction_utils.py +0 -0
  2581. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/prng_control.py +0 -0
  2582. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/prune_coordinator.py +0 -0
  2583. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/assemble_training_animations.py +0 -0
  2584. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/demo_advisor_decisions.py +0 -0
  2585. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/example_complete_workflow.py +0 -0
  2586. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/generate_focal_report.py +0 -0
  2587. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/model_advisor.py +0 -0
  2588. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/show_results.py +0 -0
  2589. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_all_codecs.py +0 -0
  2590. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_checkpoint_dict_reconstruction.py +0 -0
  2591. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_data_timestamps.py +0 -0
  2592. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_embedding_quality.py +0 -0
  2593. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_embedding_space.py +0 -0
  2594. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_epoch_class_separation.py +0 -0
  2595. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_focal_loss_single_predictor.py +0 -0
  2596. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_hybrid_columns.py +0 -0
  2597. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_lift_measurement_validation.py +0 -0
  2598. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_lr_timeline_smoothness.py +0 -0
  2599. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_min_support_rank_scaling.py +0 -0
  2600. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_monitor_integration.py +0 -0
  2601. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_phone_zip_geo.py +0 -0
  2602. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_piecewise_epochs.py +0 -0
  2603. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_predict_during_training.py +0 -0
  2604. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_relationship_extractor_integration.py +0 -0
  2605. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_relationship_extractor_mixed_types.py +0 -0
  2606. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_set_encoder_strategies.py +0 -0
  2607. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_string_features.py +0 -0
  2608. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_temporal_relationships.py +0 -0
  2609. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_timeline_quick.py +0 -0
  2610. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_training_data_timeline.py +0 -0
  2611. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_training_monitor.py +0 -0
  2612. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/test_warning_tracking.py +0 -0
  2613. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/visualize_lift_waves.py +0 -0
  2614. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/qa/visualize_training_timeline.py +0 -0
  2615. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/regression_loss.py +0 -0
  2616. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/relationship_complexity.py +0 -0
  2617. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/relationship_estimator.py +0 -0
  2618. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/relationship_extractor.py +0 -0
  2619. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/relationship_importance_validator.py +0 -0
  2620. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/relationship_ops_base.py +0 -0
  2621. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/relationship_performance.py +0 -0
  2622. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/relationship_preanalysis.py +0 -0
  2623. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/relationship_search.py +0 -0
  2624. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/scalar_scalar_ops.py +0 -0
  2625. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/scalar_timestamp_ops.py +0 -0
  2626. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/schema_history.py +0 -0
  2627. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/set_scalar_ops.py +0 -0
  2628. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/set_set_ops.py +0 -0
  2629. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/set_timestamp_ops.py +0 -0
  2630. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/simple_mlp.py +0 -0
  2631. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/simple_string_cache.py +0 -0
  2632. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/sklearn_guardrails.py +0 -0
  2633. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/sp_diagnostics.py +0 -0
  2634. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/sp_loss_autotuner.py +0 -0
  2635. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/sp_multiclass_autotuner.py +0 -0
  2636. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/sp_multilabel_autotuner.py +0 -0
  2637. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/sp_probe.py +0 -0
  2638. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/sphere_init.py +0 -0
  2639. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/split_utils.py +0 -0
  2640. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/stopwatch.py +0 -0
  2641. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/strategy_ops_base.py +0 -0
  2642. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/strategy_scalar_scalar_ops.py +0 -0
  2643. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/strategy_set_scalar_ops.py +0 -0
  2644. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/strategy_string_scalar_ops.py +0 -0
  2645. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/string_analysis.py +0 -0
  2646. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/string_scalar_ops.py +0 -0
  2647. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/string_set_ops.py +0 -0
  2648. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/string_synonym_detection.py +0 -0
  2649. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/temporal_relationship_ops.py +0 -0
  2650. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/tensor_utils.py +0 -0
  2651. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/timeline_events.py +0 -0
  2652. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/tools/__init__.py +0 -0
  2653. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/tools/compare_clusters.py +0 -0
  2654. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_banner.py +0 -0
  2655. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_callbacks.py +0 -0
  2656. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_callbacks_dev.py +0 -0
  2657. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_callbacks_firmware.py +0 -0
  2658. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_context_manager.py +0 -0
  2659. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_data_timeline.py +0 -0
  2660. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_event.py +0 -0
  2661. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_exceptions.py +0 -0
  2662. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_history_db.py +0 -0
  2663. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_logger.py +0 -0
  2664. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_movie_writer.py +0 -0
  2665. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_rules.py +0 -0
  2666. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_suggestions.py +0 -0
  2667. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/training_timeline.py +0 -0
  2668. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/type_aware_ops_config.py +0 -0
  2669. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/url_ops.py +0 -0
  2670. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/url_parser.py +0 -0
  2671. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/us_holidays.py +0 -0
  2672. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/viz_cluster_movement_correlation.py +0 -0
  2673. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/viz_movement_distribution.py +0 -0
  2674. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/viz_pairwise_distance_distribution.py +0 -0
  2675. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/viz_pairwise_mi_heatmap.py +0 -0
  2676. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/warm_start.py +0 -0
  2677. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/webhooks.py +0 -0
  2678. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/world_data.py +0 -0
  2679. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/xgboost_classifier.py +0 -0
  2680. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/xgboost_regressor.py +0 -0
  2681. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix/neural/year_json_ops.py +0 -0
  2682. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/featrix_debug.py +0 -0
  2683. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/glb_builder.py +0 -0
  2684. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/job_manager.py +0 -0
  2685. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/job_types.py +0 -0
  2686. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/json_encoder_cache.py +0 -0
  2687. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/meta_learning_client.py +0 -0
  2688. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/model_repair.py +0 -0
  2689. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/pre_analysis_wrapper.py +0 -0
  2690. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/production_deploy.py +0 -0
  2691. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/queue_manager.py +0 -0
  2692. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/quick_architecture_search.py +0 -0
  2693. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/runtime_version_manager.py +0 -0
  2694. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/sp_decision_boundary_viz.py +0 -0
  2695. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/sp_projections.py +0 -0
  2696. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/sp_training_wrapper.py +0 -0
  2697. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/sphere_config.py +0 -0
  2698. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/system_health_monitor.py +0 -0
  2699. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/training_monitor.py +0 -0
  2700. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/utils.py +0 -0
  2701. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/vector_db.py +0 -0
  2702. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/webhook_helpers.py +0 -0
  2703. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/webhook_notify.py +0 -0
  2704. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/lib/weightwatcher_tracking.py +0 -0
  2705. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/llm_client.py +0 -0
  2706. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/load_and_test_model.py +0 -0
  2707. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/manage_churro.sh +0 -0
  2708. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/migrate_string_cache_naming.py +0 -0
  2709. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/neural.py +0 -0
  2710. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/node-install.sh +0 -0
  2711. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/prediction_drift_monitor.py +0 -0
  2712. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/prediction_persistence_worker.py +0 -0
  2713. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/__init__.py +0 -0
  2714. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/bootstrap.sh +0 -0
  2715. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/deploy.py +0 -0
  2716. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/gateway_watchdog.sh +0 -0
  2717. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/generate_fixture_from_model.py +0 -0
  2718. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/generate_validation_fixture.py +0 -0
  2719. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/patches/featrix/__init__.py +0 -0
  2720. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/patches/featrix/neural/__init__.py +0 -0
  2721. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/patches/featrix/neural/gpu_utils.py +0 -0
  2722. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/patches/job_manager.py +0 -0
  2723. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/patches/weightwatcher_tracking.py +0 -0
  2724. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/server.py +0 -0
  2725. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/stubs/config.py +0 -0
  2726. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/stubs/job_manager.py +0 -0
  2727. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/stubs/version.py +0 -0
  2728. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/tests/__init__.py +0 -0
  2729. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/tests/test_production_server.py +0 -0
  2730. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/production_server/worker_protocol.py +0 -0
  2731. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/publish_task.py +0 -0
  2732. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/query_schema_worker.py +0 -0
  2733. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/quick_test_deployment.sh +0 -0
  2734. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/redis_job_progress.py +0 -0
  2735. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/redis_prediction_cli.py +0 -0
  2736. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/redis_prediction_store.py +0 -0
  2737. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/render_sphere.py +0 -0
  2738. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/repair_checkpoint.py +0 -0
  2739. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/repair_model.py +0 -0
  2740. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/resubmit_es_completion.py +0 -0
  2741. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/run_api_server.sh +0 -0
  2742. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/send_email.py +0 -0
  2743. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/slack.py +0 -0
  2744. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/standalone_encoding.py +0 -0
  2745. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/standalone_prediction.py +0 -0
  2746. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/start_celery_cpu_worker.sh +0 -0
  2747. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/start_celery_gpu_worker.sh +0 -0
  2748. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/start_celery_movie_worker.sh +0 -0
  2749. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/tail-watch.py +0 -0
  2750. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/test_api_client.py +0 -0
  2751. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/tree.py +0 -0
  2752. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/upgrade-taco-python312.sh +0 -0
  2753. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/utils.py +0 -0
  2754. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/src/version.py +0 -0
  2755. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/system_monitor.py +0 -0
  2756. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_checkpoint_on_taco.py +0 -0
  2757. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_foundation_mode_local.py +0 -0
  2758. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_local_checkpoint.py +0 -0
  2759. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_ordinal_detection.py +0 -0
  2760. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_ordinal_embedding.py +0 -0
  2761. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_runtime_version_manager.py +0 -0
  2762. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_sequential_features.py +0 -0
  2763. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_sp_capacity_constraint.py +0 -0
  2764. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_sparse_fips_es.py +0 -0
  2765. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_sparse_multihot_es.py +0 -0
  2766. {featrixsphere-0.2.8097 → featrixsphere-0.2.8332}/tests/test_year_json_es.py +0 -0
@@ -0,0 +1,442 @@
1
+ Metadata-Version: 2.4
2
+ Name: featrixsphere
3
+ Version: 0.2.8332
4
+ Summary: Transform any CSV into a production-ready ML model in minutes, not months.
5
+ Home-page: https://github.com/Featrix/sphere
6
+ Author: Featrix
7
+ Author-email: support@featrix.com
8
+ Project-URL: Bug Tracker, https://github.com/Featrix/sphere/issues
9
+ Project-URL: Documentation, https://github.com/Featrix/sphere#readme
10
+ Project-URL: Source Code, https://github.com/Featrix/sphere
11
+ Keywords: machine learning,artificial intelligence,neural networks,embedding spaces,prediction,classification,regression,csv,api,client,featrix,sphere,automl,no-code ml
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
23
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
+ Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
25
+ Requires-Python: >=3.8
26
+ Description-Content-Type: text/markdown
27
+ Requires-Dist: requests>=2.20.0
28
+ Requires-Dist: pandas>=1.0.0
29
+ Provides-Extra: dev
30
+ Requires-Dist: pytest>=6.0; extra == "dev"
31
+ Requires-Dist: pytest-cov>=2.0; extra == "dev"
32
+ Requires-Dist: black>=21.0; extra == "dev"
33
+ Requires-Dist: flake8>=3.8; extra == "dev"
34
+ Requires-Dist: mypy>=0.800; extra == "dev"
35
+ Provides-Extra: progress
36
+ Requires-Dist: rich>=10.0.0; extra == "progress"
37
+ Provides-Extra: notebook
38
+ Requires-Dist: ipython>=7.0.0; extra == "notebook"
39
+ Requires-Dist: ipywidgets>=7.0.0; extra == "notebook"
40
+ Provides-Extra: interactive
41
+ Requires-Dist: ipywidgets>=7.0.0; extra == "interactive"
42
+ Requires-Dist: matplotlib>=3.0.0; extra == "interactive"
43
+ Provides-Extra: server
44
+ Requires-Dist: fastapi>=0.68.0; extra == "server"
45
+ Requires-Dist: uvicorn[standard]>=0.15.0; extra == "server"
46
+ Requires-Dist: celery[redis]>=5.0.0; extra == "server"
47
+ Requires-Dist: redis>=4.0.0; extra == "server"
48
+ Requires-Dist: pydantic-settings>=2.0.0; extra == "server"
49
+ Requires-Dist: python-multipart>=0.0.5; extra == "server"
50
+ Provides-Extra: ml
51
+ Requires-Dist: torch>=1.9.0; extra == "ml"
52
+ Requires-Dist: numpy>=1.21.0; extra == "ml"
53
+ Requires-Dist: scikit-learn>=1.0.0; extra == "ml"
54
+ Requires-Dist: pandas>=1.3.0; extra == "ml"
55
+ Provides-Extra: all
56
+ Requires-Dist: rich>=10.0.0; extra == "all"
57
+ Requires-Dist: ipython>=7.0.0; extra == "all"
58
+ Requires-Dist: ipywidgets>=7.0.0; extra == "all"
59
+ Requires-Dist: fastapi>=0.68.0; extra == "all"
60
+ Requires-Dist: uvicorn[standard]>=0.15.0; extra == "all"
61
+ Requires-Dist: celery[redis]>=5.0.0; extra == "all"
62
+ Requires-Dist: redis>=4.0.0; extra == "all"
63
+ Requires-Dist: pydantic-settings>=2.0.0; extra == "all"
64
+ Requires-Dist: python-multipart>=0.0.5; extra == "all"
65
+ Requires-Dist: torch>=1.9.0; extra == "all"
66
+ Requires-Dist: numpy>=1.21.0; extra == "all"
67
+ Requires-Dist: scikit-learn>=1.0.0; extra == "all"
68
+ Dynamic: author
69
+ Dynamic: author-email
70
+ Dynamic: classifier
71
+ Dynamic: description
72
+ Dynamic: description-content-type
73
+ Dynamic: home-page
74
+ Dynamic: keywords
75
+ Dynamic: project-url
76
+ Dynamic: provides-extra
77
+ Dynamic: requires-dist
78
+ Dynamic: requires-python
79
+ Dynamic: summary
80
+
81
+ # 🚀 Featrix Sphere API Client
82
+
83
+ **Transform any CSV into a production-ready ML model in minutes, not months.**
84
+
85
+ The Featrix Sphere API automatically builds neural embedding spaces from your data and trains high-accuracy predictors without requiring any ML expertise. Just upload your data, specify what you want to predict, and get a production API endpoint.
86
+
87
+ ## ✨ What Makes This Special?
88
+
89
+ - 🎯 **99.9%+ Accuracy** - Achieves state-of-the-art results on real-world data
90
+ - ⚡ **Zero ML Knowledge Required** - Upload CSV → Get Production API
91
+ - 🧠 **Neural Embedding Spaces** - Automatically discovers hidden patterns in your data
92
+ - 📊 **Real-time Training Monitoring** - Watch your model train with live loss plots
93
+ - 🔍 **Similarity Search** - Find similar records using vector embeddings
94
+ - 📈 **Beautiful Visualizations** - 2D projections of your high-dimensional data
95
+ - 🚀 **Production Ready** - Scalable batch predictions and real-time inference
96
+
97
+ ## 🎯 Real Results
98
+
99
+ ```python
100
+ # Actual results from fuel card fraud detection:
101
+ prediction = {
102
+ 'True': 0.9999743700027466, # 99.997% confidence - IS fraud
103
+ 'False': 0.000024269439, # 0.002% - not fraud
104
+ '<UNKNOWN>': 0.000001335 # 0.0001% - uncertain
105
+ }
106
+ # Perfect classification with extreme confidence!
107
+ ```
108
+
109
+ ## 🚀 Quick Start
110
+
111
+ ### 1. Install & Import
112
+ ```bash
113
+ pip install featrixsphere
114
+ ```
115
+
116
+ ```python
117
+ from featrixsphere.api import FeatrixSphere
118
+
119
+ # Initialize client
120
+ featrix = FeatrixSphere("http://your-sphere-server.com")
121
+ ```
122
+
123
+ ### 2. Upload Data & Train Model
124
+ ```python
125
+ # Option A: Upload CSV file
126
+ fm = featrix.create_foundational_model(
127
+ name="my_model",
128
+ data_file="your_data.csv"
129
+ )
130
+
131
+ # Option B: Upload DataFrame directly (no CSV file needed!)
132
+ import pandas as pd
133
+ df = pd.read_csv("your_data.csv") # or create/modify DataFrame however you want
134
+ fm = featrix.create_foundational_model(name="my_model", df=df)
135
+
136
+ # Wait for the embedding space to train
137
+ fm.wait_for_training()
138
+
139
+ # Create a binary classifier for your target column
140
+ predictor = fm.create_binary_classifier(
141
+ target_column="is_fraud",
142
+ name="fraud_detector"
143
+ )
144
+
145
+ # Wait for predictor training
146
+ predictor.wait_for_training()
147
+ ```
148
+
149
+ ### 3. Make Predictions
150
+ ```python
151
+ # Single prediction
152
+ result = predictor.predict({
153
+ "transaction_amount": 1500.00,
154
+ "merchant_category": "gas_station",
155
+ "location": "highway_exit"
156
+ })
157
+
158
+ print(result.predicted_class) # 'fraud'
159
+ print(result.confidence) # 0.95
160
+
161
+ # Batch predictions
162
+ results = predictor.predict_batch([
163
+ {"amount": 100, "merchant": "grocery"},
164
+ {"amount": 5000, "merchant": "unknown_vendor"},
165
+ ])
166
+ ```
167
+
168
+ ## 🎨 Beautiful Examples
169
+
170
+ ### 📊 **DataFrame Upload Workflow**
171
+ ```python
172
+ import pandas as pd
173
+ from featrixsphere.api import FeatrixSphere
174
+
175
+ # Load and prepare your data
176
+ df = pd.read_csv("transactions.csv")
177
+
178
+ # Optional: Clean/filter/modify your DataFrame
179
+ df = df.dropna()
180
+ df = df[df['amount'] > 0]
181
+
182
+ # Upload DataFrame directly - no need to save to CSV!
183
+ featrix = FeatrixSphere("https://sphere-api.featrix.com")
184
+ fm = featrix.create_foundational_model(name="transactions", df=df)
185
+ fm.wait_for_training()
186
+
187
+ # Create predictor
188
+ predictor = fm.create_binary_classifier(
189
+ target_column="is_fraud",
190
+ name="fraud_detector"
191
+ )
192
+ predictor.wait_for_training()
193
+
194
+ # Make predictions
195
+ result = predictor.predict({"amount": 1500, "merchant": "gas_station"})
196
+ print(result.predicted_class) # 'fraud' or 'legitimate'
197
+ print(result.confidence) # 0.95
198
+ ```
199
+
200
+ ### 🏦 Fraud Detection
201
+ ```python
202
+ # Create a binary classifier for fraud detection
203
+ predictor = fm.create_binary_classifier(
204
+ target_column="is_fraudulent",
205
+ name="fraud_classifier"
206
+ )
207
+ predictor.wait_for_training()
208
+
209
+ # Detect fraud in real-time
210
+ result = predictor.predict({
211
+ "amount": 5000,
212
+ "merchant": "unknown_vendor",
213
+ "time": "3:00 AM",
214
+ "location": "foreign_country"
215
+ })
216
+ print(result.predicted_class) # 'fraud'
217
+ print(result.confidence) # 0.98 ⚠️
218
+ ```
219
+
220
+ ### 🎯 Customer Segmentation
221
+ ```python
222
+ # Create a multiclass classifier
223
+ predictor = fm.create_multi_classifier(
224
+ target_column="customer_value_segment", # high/medium/low
225
+ name="customer_segmentation"
226
+ )
227
+ predictor.wait_for_training()
228
+
229
+ # Classify new customers
230
+ result = predictor.predict({
231
+ "age": 34,
232
+ "income": 75000,
233
+ "purchase_history": "electronics,books",
234
+ "engagement_score": 8.5
235
+ })
236
+ print(result.predicted_class) # 'high_value'
237
+ print(result.probabilities) # {'high_value': 0.87, 'medium_value': 0.12, 'low_value': 0.01}
238
+ ```
239
+
240
+ ### 🏠 Real Estate Pricing
241
+ ```python
242
+ # Create a regressor for continuous values
243
+ predictor = fm.create_regressor(
244
+ target_column="sale_price",
245
+ name="price_predictor"
246
+ )
247
+ predictor.wait_for_training()
248
+
249
+ # Get price estimates
250
+ result = predictor.predict({
251
+ "bedrooms": 4,
252
+ "bathrooms": 3,
253
+ "sqft": 2500,
254
+ "neighborhood": "downtown",
255
+ "year_built": 2010
256
+ })
257
+ print(result.predicted_value) # 485000.0 (predicted price: $485,000)
258
+ ```
259
+
260
+ ## 🔍 Advanced Features
261
+
262
+ ### Vector Embeddings
263
+ ```python
264
+ # Get neural embeddings for any record
265
+ fm = featrix.foundational_model("session-id")
266
+ embedding = fm.encode({
267
+ "text": "customer complaint about billing",
268
+ "category": "support",
269
+ "priority": "high"
270
+ })
271
+
272
+ print(f"3D embedding: {embedding['embedding_short']}")
273
+ print(f"Full embedding dimension: {len(embedding['embedding_long'])}")
274
+ # Embedding dimension: 512 (rich 512-dimensional representation!)
275
+ ```
276
+
277
+ ### Similarity Search
278
+ ```python
279
+ # Find similar records using neural embeddings
280
+ similar = fm.similarity_search({
281
+ "description": "suspicious late night transaction",
282
+ "amount": 2000
283
+ }, k=10)
284
+
285
+ print("Similar transactions:")
286
+ for record in similar:
287
+ print(f"Distance: {record['distance']:.3f} - {record['record']}")
288
+ ```
289
+
290
+ ### Working with Existing Models
291
+ ```python
292
+ # Load an existing foundational model
293
+ fm = featrix.foundational_model("session-123")
294
+ print(fm.status) # 'ready'
295
+
296
+ # List all predictors
297
+ predictors = fm.list_predictors()
298
+ for pred in predictors:
299
+ print(f"{pred.name}: {pred.target_column} ({pred.accuracy:.2%})")
300
+
301
+ # Get a specific predictor
302
+ predictor = fm.get_predictor("pred-456")
303
+ result = predictor.predict({"feature": "value"})
304
+ ```
305
+
306
+ ### Training Monitoring
307
+ ```python
308
+ # Create model with webhooks for notifications
309
+ fm = featrix.create_foundational_model(
310
+ name="my_model",
311
+ data_file="data.csv",
312
+ webhooks={
313
+ "on_complete": "https://your-server.com/webhook/training-done",
314
+ "on_error": "https://your-server.com/webhook/training-error"
315
+ }
316
+ )
317
+
318
+ # Or poll for status
319
+ while not fm.is_ready():
320
+ fm.refresh()
321
+ print(f"Status: {fm.status}")
322
+ time.sleep(10)
323
+ ```
324
+
325
+ ## 📊 API Reference
326
+
327
+ ### Core Classes
328
+
329
+ | Class | Purpose |
330
+ |-------|---------|
331
+ | `FeatrixSphere` | Main client - connect to API server |
332
+ | `FoundationalModel` | Embedding space - trained on your data |
333
+ | `Predictor` | ML model - makes predictions |
334
+ | `PredictionResult` | Prediction output with confidence |
335
+
336
+ ### FeatrixSphere Methods
337
+
338
+ | Method | Purpose |
339
+ |--------|---------|
340
+ | `create_foundational_model()` | Upload data & start training |
341
+ | `foundational_model(id)` | Load existing model |
342
+ | `predictor(id, session_id)` | Load existing predictor |
343
+ | `list_sessions()` | List available sessions |
344
+ | `health_check()` | Check API status |
345
+
346
+ ### FoundationalModel Methods
347
+
348
+ | Method | Purpose |
349
+ |--------|---------|
350
+ | `wait_for_training()` | Wait until training completes |
351
+ | `create_binary_classifier()` | Create 2-class predictor |
352
+ | `create_multi_classifier()` | Create multi-class predictor |
353
+ | `create_regressor()` | Create continuous value predictor |
354
+ | `list_predictors()` | List all predictors |
355
+ | `encode()` | Get neural embedding |
356
+ | `similarity_search()` | Find similar records |
357
+
358
+ ### Predictor Methods
359
+
360
+ | Method | Purpose |
361
+ |--------|---------|
362
+ | `wait_for_training()` | Wait until training completes |
363
+ | `predict()` | Single record prediction |
364
+ | `predict_batch()` | Multiple record predictions |
365
+ | `get_accuracy()` | Get accuracy metrics |
366
+
367
+ ## 🎯 Pro Tips
368
+
369
+ ### 🚀 Performance Optimization
370
+ ```python
371
+ # Use batch predictions for better throughput
372
+ results = predictor.predict_batch(records_list)
373
+ # 10x faster than individual predictions!
374
+
375
+ # Featrix auto-tunes model parameters for your data
376
+ predictor = fm.create_binary_classifier(
377
+ target_column="target",
378
+ name="my_predictor"
379
+ )
380
+ ```
381
+
382
+ ### 🎨 Data Preparation
383
+ ```python
384
+ # Your CSV just needs:
385
+ # ✅ Clean column names (no spaces/special chars work best)
386
+ # ✅ Target column for prediction
387
+ # ✅ Mix of categorical and numerical features
388
+ # ✅ At least 100+ rows (more = better accuracy)
389
+
390
+ # The system handles:
391
+ # ✅ Missing values
392
+ # ✅ Mixed data types
393
+ # ✅ Categorical encoding
394
+ # ✅ Feature scaling
395
+ # ✅ Train/validation splits
396
+ ```
397
+
398
+ ### 🔍 Debugging & Monitoring
399
+ ```python
400
+ # Check model status
401
+ fm = featrix.foundational_model("session-id")
402
+ print(f"Status: {fm.status}")
403
+
404
+ # Check predictor accuracy
405
+ predictor = fm.get_predictor("pred-id")
406
+ print(f"Accuracy: {predictor.accuracy:.2%}")
407
+ ```
408
+
409
+ ## 🏆 Success Stories
410
+
411
+ > **"We replaced 6 months of ML engineering with 30 minutes of CSV upload. Our fraud detection went from 87% to 99.8% accuracy."**
412
+ > *— FinTech Startup*
413
+
414
+ > **"The similarity search found patterns in our customer data that our data scientists missed. Revenue up 23%."**
415
+ > *— E-commerce Platform*
416
+
417
+ > **"Production-ready ML models without hiring a single ML engineer. This is the future."**
418
+ > *— Healthcare Analytics*
419
+
420
+ ## 🎯 Ready to Get Started?
421
+
422
+ 1. **Upload your CSV** - Any tabular data works
423
+ 2. **Specify your target** - What do you want to predict?
424
+ 3. **Wait for training** - Usually 5-30 minutes depending on data size
425
+ 4. **Start predicting** - Get production-ready predictions
426
+
427
+ ```python
428
+ # It's literally this simple:
429
+ from featrixsphere.api import FeatrixSphere
430
+
431
+ featrix = FeatrixSphere("http://your-server.com")
432
+ fm = featrix.create_foundational_model(name="my_model", data_file="data.csv")
433
+ fm.wait_for_training()
434
+
435
+ predictor = fm.create_binary_classifier(target_column="target", name="predictor")
436
+ predictor.wait_for_training()
437
+
438
+ result = predictor.predict(your_record)
439
+ print(f"Prediction: {result.predicted_class} ({result.confidence:.1%})")
440
+ ```
441
+
442
+ **Transform your data into AI. No PhD required.** 🚀
@@ -0,0 +1 @@
1
+ 0.2.8332
@@ -0,0 +1,107 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Copyright (c) 2023-2026 Featrix, Inc, All Rights Reserved
4
+ #
5
+ # Proprietary and Confidential. Unauthorized use, copying or dissemination
6
+ # of these materials is strictly prohibited.
7
+ #
8
+
9
+ """
10
+ Featrix Sphere API Client
11
+
12
+ Transform any CSV into a production-ready ML model in minutes, not months.
13
+
14
+ The Featrix Sphere API automatically builds neural embedding spaces from your data
15
+ and trains high-accuracy predictors without requiring any ML expertise.
16
+ Just upload your data, specify what you want to predict, and get a production API endpoint.
17
+
18
+ Usage:
19
+ ------
20
+
21
+ >>> from featrixsphere.api import FeatrixSphere
22
+ >>>
23
+ >>> featrix = FeatrixSphere("http://your-server.com")
24
+ >>>
25
+ >>> # Create foundational model
26
+ >>> fm = featrix.create_foundational_model(
27
+ ... name="my_model",
28
+ ... data_file="data.csv"
29
+ ... )
30
+ >>> fm.wait_for_training()
31
+ >>>
32
+ >>> # Create predictor
33
+ >>> predictor = fm.create_binary_classifier(
34
+ ... target_column="target",
35
+ ... name="my_predictor"
36
+ ... )
37
+ >>> predictor.wait_for_training()
38
+ >>>
39
+ >>> # Make predictions
40
+ >>> result = predictor.predict({"feature": "value"})
41
+ >>> print(result.predicted_class)
42
+ >>> print(result.confidence)
43
+
44
+ For more examples, see the documentation at https://docs.featrix.com
45
+ """
46
+
47
+ __version__ = "0.2.8332"
48
+ __author__ = "Featrix"
49
+ __email__ = "support@featrix.com"
50
+ __license__ = "MIT"
51
+
52
+ # New OO API - recommended
53
+ from .api import FeatrixSphere, FoundationalModel, Predictor, PredictionResult
54
+ from .api.exceptions import FeatrixAuthenticationError, FeatrixPredictionError
55
+ from .api.label_utils import find_similar_labels, collapse_similar_labels
56
+
57
+ __all__ = [
58
+ "FeatrixAuthenticationError",
59
+ "FeatrixPredictionError",
60
+ "FeatrixSphere",
61
+ "FoundationalModel",
62
+ "Predictor",
63
+ "PredictionResult",
64
+ "find_similar_labels",
65
+ "collapse_similar_labels",
66
+ "__version__",
67
+ ]
68
+
69
+
70
+ # Deprecation shim for old API - prints once and exits
71
+ _deprecated_warning_shown = False
72
+
73
+ def _show_deprecation_and_exit(name):
74
+ """Show deprecation warning once and exit."""
75
+ import sys
76
+ global _deprecated_warning_shown
77
+ if _deprecated_warning_shown:
78
+ sys.exit(1)
79
+ _deprecated_warning_shown = True
80
+
81
+ from pathlib import Path
82
+ guide_path = Path(__file__).parent / "MIGRATION.md"
83
+ guide_url = f"file://{guide_path.resolve()}" if guide_path.exists() else "(see featrixsphere docs)"
84
+
85
+ print("\n" + "=" * 70, file=sys.stderr)
86
+ print(f"ERROR: '{name}' has been removed.", file=sys.stderr)
87
+ print(file=sys.stderr)
88
+ print("Please upgrade to the new OO API:", file=sys.stderr)
89
+ print(file=sys.stderr)
90
+ print(" OLD: from featrixsphere import FeatrixSphereClient", file=sys.stderr)
91
+ print(" client = FeatrixSphereClient(url)", file=sys.stderr)
92
+ print(" session = client.upload_df_and_create_session(df=df)", file=sys.stderr)
93
+ print(file=sys.stderr)
94
+ print(" NEW: from featrixsphere.api import FeatrixSphere", file=sys.stderr)
95
+ print(" featrix = FeatrixSphere(url)", file=sys.stderr)
96
+ print(" fm = featrix.create_foundational_model(df=df)", file=sys.stderr)
97
+ print(" fm.wait_for_training()", file=sys.stderr)
98
+ print(file=sys.stderr)
99
+ print(f"Full migration guide: {guide_url}", file=sys.stderr)
100
+ print("=" * 70 + "\n", file=sys.stderr)
101
+ sys.exit(1)
102
+
103
+ def __getattr__(name):
104
+ """Provide helpful error for deprecated imports."""
105
+ if name in ("FeatrixSphereClient", "SessionInfo", "PredictionBatch", "PredictionGrid"):
106
+ _show_deprecation_and_exit(name)
107
+ raise AttributeError(f"module 'featrixsphere' has no attribute '{name}'")
@@ -0,0 +1,75 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Copyright (c) 2023-2026 Featrix, Inc, All Rights Reserved
4
+ #
5
+ # Proprietary and Confidential. Unauthorized use, copying or dissemination
6
+ # of these materials is strictly prohibited.
7
+ #
8
+
9
+ """
10
+ FeatrixSphere New API
11
+
12
+ A clean, object-oriented API for interacting with FeatrixSphere.
13
+
14
+ Usage:
15
+ from featrixsphere.api import FeatrixSphere
16
+
17
+ featrix = FeatrixSphere("https://sphere-api.featrix.com")
18
+
19
+ # Create foundational model
20
+ fm = featrix.create_foundational_model(
21
+ name="my_model",
22
+ data_file="data.csv"
23
+ )
24
+ fm.wait_for_training()
25
+
26
+ # Create a binary classifier
27
+ predictor = fm.create_binary_classifier(
28
+ target_column="target",
29
+ name="my_classifier"
30
+ )
31
+ predictor.wait_for_training()
32
+
33
+ # Or a multiclass classifier
34
+ predictor = fm.create_multi_classifier(
35
+ target_column="category",
36
+ name="my_multiclass"
37
+ )
38
+ predictor.wait_for_training()
39
+
40
+ # Make predictions
41
+ result = predictor.predict({"feature1": "value1"})
42
+ print(result.predicted_class)
43
+ print(result.confidence)
44
+ """
45
+
46
+ from .exceptions import FeatrixAuthenticationError, FeatrixPredictionError
47
+ from .client import FeatrixSphere
48
+ from .foundational_model import FoundationalModel
49
+ from .predictor import Predictor
50
+ from .published_predictor import PublishedPredictor
51
+ from .prediction_result import PredictionResult, PredictionFeedback
52
+ from .prediction_grid import PredictionGrid
53
+ from .vector_database import VectorDatabase
54
+ from .reference_record import ReferenceRecord
55
+ from .api_endpoint import APIEndpoint
56
+ from .notebook_helper import FeatrixNotebookHelper
57
+ from .label_utils import find_similar_labels, collapse_similar_labels
58
+
59
+ __all__ = [
60
+ 'FeatrixAuthenticationError',
61
+ 'FeatrixPredictionError',
62
+ 'FeatrixSphere',
63
+ 'FoundationalModel',
64
+ 'Predictor',
65
+ 'PublishedPredictor',
66
+ 'PredictionResult',
67
+ 'PredictionFeedback',
68
+ 'PredictionGrid',
69
+ 'VectorDatabase',
70
+ 'ReferenceRecord',
71
+ 'APIEndpoint',
72
+ 'FeatrixNotebookHelper',
73
+ 'find_similar_labels',
74
+ 'collapse_similar_labels',
75
+ ]