SuperModelingFactory 0.1.0__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 (71) hide show
  1. supermodelingfactory-0.1.0/LICENSE +102 -0
  2. supermodelingfactory-0.1.0/MANIFEST.in +61 -0
  3. supermodelingfactory-0.1.0/Modeling_Tool/Core/Binning_Tool.c +32221 -0
  4. supermodelingfactory-0.1.0/Modeling_Tool/Core/Binning_Tool.pyi +48 -0
  5. supermodelingfactory-0.1.0/Modeling_Tool/Core/Check_DuckDB_Compatibility.py +835 -0
  6. supermodelingfactory-0.1.0/Modeling_Tool/Core/Json_Data_Converter.py +621 -0
  7. supermodelingfactory-0.1.0/Modeling_Tool/Core/ODPS_Tool.py +284 -0
  8. supermodelingfactory-0.1.0/Modeling_Tool/Core/Slope_Tool.c +12356 -0
  9. supermodelingfactory-0.1.0/Modeling_Tool/Core/Slope_Tool.pyi +31 -0
  10. supermodelingfactory-0.1.0/Modeling_Tool/Core/XOR_Encryptor.c +11973 -0
  11. supermodelingfactory-0.1.0/Modeling_Tool/Core/XOR_Encryptor.pyi +26 -0
  12. supermodelingfactory-0.1.0/Modeling_Tool/Core/__init__.py +100 -0
  13. supermodelingfactory-0.1.0/Modeling_Tool/Core/kDataFrame.c +16118 -0
  14. supermodelingfactory-0.1.0/Modeling_Tool/Core/kDataFrame.pyi +43 -0
  15. supermodelingfactory-0.1.0/Modeling_Tool/Core/utils.py +2646 -0
  16. supermodelingfactory-0.1.0/Modeling_Tool/Eval/Evaluation_Tool.c +33826 -0
  17. supermodelingfactory-0.1.0/Modeling_Tool/Eval/Evaluation_Tool.pyi +47 -0
  18. supermodelingfactory-0.1.0/Modeling_Tool/Eval/Model_Eval_Tool.c +36857 -0
  19. supermodelingfactory-0.1.0/Modeling_Tool/Eval/Model_Eval_Tool.pyi +37 -0
  20. supermodelingfactory-0.1.0/Modeling_Tool/Eval/__init__.py +64 -0
  21. supermodelingfactory-0.1.0/Modeling_Tool/Eval/evaluate_model.c +47296 -0
  22. supermodelingfactory-0.1.0/Modeling_Tool/Eval/evaluate_model.pyi +50 -0
  23. supermodelingfactory-0.1.0/Modeling_Tool/Feature/Distribution_Tool.c +15154 -0
  24. supermodelingfactory-0.1.0/Modeling_Tool/Feature/Distribution_Tool.pyi +42 -0
  25. supermodelingfactory-0.1.0/Modeling_Tool/Feature/Feature_Insights.c +15623 -0
  26. supermodelingfactory-0.1.0/Modeling_Tool/Feature/Feature_Insights.pyi +32 -0
  27. supermodelingfactory-0.1.0/Modeling_Tool/Feature/PSI_Tool.c +17244 -0
  28. supermodelingfactory-0.1.0/Modeling_Tool/Feature/PSI_Tool.pyi +29 -0
  29. supermodelingfactory-0.1.0/Modeling_Tool/Feature/__init__.py +37 -0
  30. supermodelingfactory-0.1.0/Modeling_Tool/Model/Backward_Tool.c +26762 -0
  31. supermodelingfactory-0.1.0/Modeling_Tool/Model/Backward_Tool.pyi +45 -0
  32. supermodelingfactory-0.1.0/Modeling_Tool/Model/GBM_Tool.c +21099 -0
  33. supermodelingfactory-0.1.0/Modeling_Tool/Model/GBM_Tool.pyi +64 -0
  34. supermodelingfactory-0.1.0/Modeling_Tool/Model/LRM_Tool.c +42753 -0
  35. supermodelingfactory-0.1.0/Modeling_Tool/Model/LRM_Tool.pyi +53 -0
  36. supermodelingfactory-0.1.0/Modeling_Tool/Model/__init__.py +81 -0
  37. supermodelingfactory-0.1.0/Modeling_Tool/Sample/Distribution_Adaptation.c +11689 -0
  38. supermodelingfactory-0.1.0/Modeling_Tool/Sample/Distribution_Adaptation.pyi +30 -0
  39. supermodelingfactory-0.1.0/Modeling_Tool/Sample/Reject_Infer.c +13610 -0
  40. supermodelingfactory-0.1.0/Modeling_Tool/Sample/Reject_Infer.pyi +43 -0
  41. supermodelingfactory-0.1.0/Modeling_Tool/Sample/Sample_Split.c +17121 -0
  42. supermodelingfactory-0.1.0/Modeling_Tool/Sample/Sample_Split.pyi +43 -0
  43. supermodelingfactory-0.1.0/Modeling_Tool/Sample/__init__.py +31 -0
  44. supermodelingfactory-0.1.0/Modeling_Tool/UAT/UAT_Consistency_Checker.py +1088 -0
  45. supermodelingfactory-0.1.0/Modeling_Tool/UAT/__init__.py +19 -0
  46. supermodelingfactory-0.1.0/Modeling_Tool/WOE/WOE_Master.c +18697 -0
  47. supermodelingfactory-0.1.0/Modeling_Tool/WOE/WOE_Master.pyi +40 -0
  48. supermodelingfactory-0.1.0/Modeling_Tool/WOE/WOE_Monotone_Binner.c +90200 -0
  49. supermodelingfactory-0.1.0/Modeling_Tool/WOE/WOE_Monotone_Binner.pyi +71 -0
  50. supermodelingfactory-0.1.0/Modeling_Tool/WOE/WOE_Plot_Tool.c +24284 -0
  51. supermodelingfactory-0.1.0/Modeling_Tool/WOE/WOE_Plot_Tool.pyi +46 -0
  52. supermodelingfactory-0.1.0/Modeling_Tool/WOE/WOE_Report_Builder.c +12928 -0
  53. supermodelingfactory-0.1.0/Modeling_Tool/WOE/WOE_Report_Builder.pyi +24 -0
  54. supermodelingfactory-0.1.0/Modeling_Tool/WOE/WOE_Tool.c +22781 -0
  55. supermodelingfactory-0.1.0/Modeling_Tool/WOE/WOE_Tool.pyi +41 -0
  56. supermodelingfactory-0.1.0/Modeling_Tool/WOE/__init__.py +78 -0
  57. supermodelingfactory-0.1.0/Modeling_Tool/WOE/plot_woe_tool.c +16434 -0
  58. supermodelingfactory-0.1.0/Modeling_Tool/WOE/plot_woe_tool.pyi +25 -0
  59. supermodelingfactory-0.1.0/Modeling_Tool/__init__.py +170 -0
  60. supermodelingfactory-0.1.0/PKG-INFO +260 -0
  61. supermodelingfactory-0.1.0/README.md +210 -0
  62. supermodelingfactory-0.1.0/SuperModelingFactory.egg-info/PKG-INFO +260 -0
  63. supermodelingfactory-0.1.0/SuperModelingFactory.egg-info/SOURCES.txt +69 -0
  64. supermodelingfactory-0.1.0/SuperModelingFactory.egg-info/dependency_links.txt +1 -0
  65. supermodelingfactory-0.1.0/SuperModelingFactory.egg-info/not-zip-safe +1 -0
  66. supermodelingfactory-0.1.0/SuperModelingFactory.egg-info/requires.txt +26 -0
  67. supermodelingfactory-0.1.0/SuperModelingFactory.egg-info/top_level.txt +1 -0
  68. supermodelingfactory-0.1.0/pyproject.toml +113 -0
  69. supermodelingfactory-0.1.0/requirements.txt +62 -0
  70. supermodelingfactory-0.1.0/setup.cfg +4 -0
  71. supermodelingfactory-0.1.0/setup.py +190 -0
@@ -0,0 +1,102 @@
1
+ Business Source License 1.1
2
+
3
+ Parameters
4
+ ----------
5
+ Licensor: Kyle Sun (github.com/Kyle-J-Sun)
6
+ Licensed Work: SuperModelingFactory (the "Software")
7
+ The Licensed Work is (c) 2026 Kyle Sun.
8
+ Additional Use Grant: You may use, copy, modify, redistribute, and create
9
+ derivative works of the Licensed Work for any purpose
10
+ that is NOT a Production Use, including:
11
+ - personal study and academic research;
12
+ - internal evaluation, prototyping, and testing;
13
+ - non-commercial benchmarking, teaching, and publication.
14
+
15
+ "Production Use" means any use of the Licensed Work, or
16
+ of any derivative work, in connection with offering a
17
+ commercial product or service, or in connection with the
18
+ ongoing operation of a business — including, without
19
+ limitation, deploying the Licensed Work (or any portion
20
+ thereof) inside a credit-risk, lending, scoring,
21
+ underwriting, marketing, or other revenue-generating
22
+ pipeline of any organization other than the Licensor.
23
+
24
+ Production Use requires a separate commercial license
25
+ from the Licensor. Contact the Licensor at the email
26
+ address listed in pyproject.toml to obtain one.
27
+
28
+ Change Date: 2030-06-24
29
+ Change License: Apache License, Version 2.0
30
+
31
+ For information about alternative licensing arrangements for the Software,
32
+ please contact the Licensor.
33
+
34
+ Notice
35
+ ------
36
+ Business Source License 1.1
37
+
38
+ Terms
39
+
40
+ The Licensor hereby grants you the right to copy, modify, create derivative
41
+ works, redistribute, and make non-production use of the Licensed Work. The
42
+ Licensor may make an Additional Use Grant, above, permitting limited
43
+ production use.
44
+
45
+ Effective on the Change Date, or the fourth anniversary of the first
46
+ publicly available distribution of a specific version of the Licensed Work
47
+ under this License, whichever comes first, the Licensor hereby grants you
48
+ rights under the terms of the Change License, and the rights granted in the
49
+ paragraph above terminate.
50
+
51
+ If your use of the Licensed Work does not comply with the requirements
52
+ currently in effect as described in this License, you must purchase a
53
+ commercial license from the Licensor, its affiliated entities, or authorized
54
+ resellers, or you must refrain from using the Licensed Work.
55
+
56
+ All copies of the original and modified Licensed Work, and derivative works
57
+ of the Licensed Work, are subject to this License. This License applies
58
+ separately for each version of the Licensed Work and the Change Date may
59
+ vary for each version of the Licensed Work released by Licensor.
60
+
61
+ You must conspicuously display this License on each original or modified
62
+ copy of the Licensed Work. If you receive the Licensed Work in original or
63
+ modified form from a third party, the terms and conditions set forth in
64
+ this License apply to your use of that work.
65
+
66
+ Any use of the Licensed Work in violation of this License will automatically
67
+ terminate your rights under this License for the current and all other
68
+ versions of the Licensed Work.
69
+
70
+ This License does not grant you any right in any trademark or logo of
71
+ Licensor or its affiliates (provided that you may use a trademark or logo of
72
+ Licensor as expressly required by this License).
73
+
74
+ TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
75
+ AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
76
+ EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
77
+ MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.
78
+
79
+ MariaDB hereby grants you permission to use this License's text to license
80
+ your works, and to refer to it using the trademark "Business Source
81
+ License", as long as you comply with the Covenants of Licensor below.
82
+
83
+ Covenants of Licensor
84
+
85
+ In consideration of the right to use this License's text and the "Business
86
+ Source License" name and trademark, Licensor covenants to MariaDB, and to
87
+ all other recipients of the Licensed Work to be provided by Licensor:
88
+
89
+ 1. To specify as the Change License the GPL Version 2.0 or any later
90
+ version, or a license that is compatible with GPL Version 2.0 or a later
91
+ version, where "compatible" means that software provided under the
92
+ Change License can be included in a program with software provided under
93
+ GPL Version 2.0 or a later version. Licensor may specify additional
94
+ Change Licenses without limitation.
95
+
96
+ 2. To either: (a) specify an additional grant of rights to use that does not
97
+ impose any additional restriction on the right granted in this License,
98
+ as the Additional Use Grant; or (b) insert the text "None".
99
+
100
+ 3. To specify a Change Date.
101
+
102
+ 4. Not to modify this License in any other way.
@@ -0,0 +1,61 @@
1
+ # =============================================================================
2
+ # MANIFEST.in — controls what ends up inside the sdist (.tar.gz)
3
+ # -----------------------------------------------------------------------------
4
+ # Wheels are built by cibuildwheel from the source tree and *do* contain the
5
+ # compiled .so / .pyd. The sdist, however, is a fallback meant only for users
6
+ # who need to rebuild from source. To keep the algorithm closed even in the
7
+ # sdist, we EXCLUDE every closed-source .py listed below — only stubs, the
8
+ # generated .c files, and open-source modules remain.
9
+ #
10
+ # If you regret this and want full re-buildability from the sdist, comment out
11
+ # the `exclude` block. Most users will install the prebuilt wheel anyway.
12
+ # =============================================================================
13
+
14
+ include README.md
15
+ include LICENSE
16
+ include pyproject.toml
17
+ include setup.py
18
+ include requirements.txt
19
+
20
+ # Ship .pyi stubs (carry copyright headers + fingerprints).
21
+ recursive-include Modeling_Tool *.pyi
22
+
23
+ # Ship cythonize() output so the sdist can still build without re-running
24
+ # Cython on the original .py source. Comment this out if you also want to
25
+ # keep .c files private; the sdist will then require Cython + the .py files
26
+ # to build, defeating the purpose of withholding them.
27
+ recursive-include Modeling_Tool *.c
28
+
29
+ # ---- EXCLUDE closed-source originals ----
30
+ exclude Modeling_Tool/WOE/WOE_Master.py
31
+ exclude Modeling_Tool/WOE/WOE_Monotone_Binner.py
32
+ exclude Modeling_Tool/WOE/WOE_Plot_Tool.py
33
+ exclude Modeling_Tool/WOE/WOE_Report_Builder.py
34
+ exclude Modeling_Tool/WOE/WOE_Tool.py
35
+ exclude Modeling_Tool/WOE/plot_woe_tool.py
36
+ exclude Modeling_Tool/Feature/Distribution_Tool.py
37
+ exclude Modeling_Tool/Feature/Feature_Insights.py
38
+ exclude Modeling_Tool/Feature/PSI_Tool.py
39
+ exclude Modeling_Tool/Model/Backward_Tool.py
40
+ exclude Modeling_Tool/Model/GBM_Tool.py
41
+ exclude Modeling_Tool/Model/LRM_Tool.py
42
+ exclude Modeling_Tool/Eval/Evaluation_Tool.py
43
+ exclude Modeling_Tool/Eval/Model_Eval_Tool.py
44
+ exclude Modeling_Tool/Eval/evaluate_model.py
45
+ exclude Modeling_Tool/Sample/Distribution_Adaptation.py
46
+ exclude Modeling_Tool/Sample/Reject_Infer.py
47
+ exclude Modeling_Tool/Sample/Sample_Split.py
48
+ exclude Modeling_Tool/Core/Binning_Tool.py
49
+ exclude Modeling_Tool/Core/kDataFrame.py
50
+ exclude Modeling_Tool/Core/XOR_Encryptor.py
51
+ exclude Modeling_Tool/Core/Slope_Tool.py
52
+
53
+ # ---- Always exclude development / backup / test scratch ----
54
+ recursive-exclude Modeling_Tool/**/backup *
55
+ recursive-exclude Modeling_Tool/backup *
56
+ exclude Modeling_Tool/Core/test_remove_comments.py
57
+ global-exclude __pycache__
58
+ global-exclude *.py[cod]
59
+ global-exclude *.so
60
+ global-exclude *.pyd
61
+ global-exclude .DS_Store