spforge 0.8.32__py3-none-any.whl → 0.8.33__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of spforge might be problematic. Click here for more details.
- spforge/ratings/_player_rating.py +2 -2
- {spforge-0.8.32.dist-info → spforge-0.8.33.dist-info}/METADATA +1 -1
- {spforge-0.8.32.dist-info → spforge-0.8.33.dist-info}/RECORD +7 -7
- tests/ratings/test_player_rating_generator.py +35 -0
- {spforge-0.8.32.dist-info → spforge-0.8.33.dist-info}/WHEEL +0 -0
- {spforge-0.8.32.dist-info → spforge-0.8.33.dist-info}/licenses/LICENSE +0 -0
- {spforge-0.8.32.dist-info → spforge-0.8.33.dist-info}/top_level.txt +0 -0
|
@@ -595,7 +595,7 @@ class PlayerRatingGenerator(RatingGenerator):
|
|
|
595
595
|
* float(pre_player.match_performance.participation_weight)
|
|
596
596
|
)
|
|
597
597
|
|
|
598
|
-
if team1_def_perf is None:
|
|
598
|
+
if team1_def_perf is None or (not self.use_off_def_split and perf_value is None):
|
|
599
599
|
def_change = 0.0
|
|
600
600
|
else:
|
|
601
601
|
def_perf = float(team1_def_perf)
|
|
@@ -689,7 +689,7 @@ class PlayerRatingGenerator(RatingGenerator):
|
|
|
689
689
|
* float(pre_player.match_performance.participation_weight)
|
|
690
690
|
)
|
|
691
691
|
|
|
692
|
-
if team2_def_perf is None:
|
|
692
|
+
if team2_def_perf is None or (not self.use_off_def_split and perf_value is None):
|
|
693
693
|
def_change = 0.0
|
|
694
694
|
else:
|
|
695
695
|
def_perf = float(team2_def_perf)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: spforge
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.33
|
|
4
4
|
Summary: A flexible framework for generating features, ratings, and building machine learning or other models for training and inference on sports data.
|
|
5
5
|
Author-email: Mathias Holmstrøm <mathiasholmstom@gmail.com>
|
|
6
6
|
License: See LICENSE file
|
|
@@ -51,7 +51,7 @@ spforge/performance_transformers/_performance_manager.py,sha256=WmjmlMEnq7y75MiI
|
|
|
51
51
|
spforge/performance_transformers/_performances_transformers.py,sha256=0lxuWjAfWBRXRgQsNJHjw3P-nlTtHBu4_bOVdoy7hq4,15536
|
|
52
52
|
spforge/ratings/__init__.py,sha256=OZVH2Lo6END3n1X8qi4QcyAPlThIwAYwVKCiIuOQSQU,576
|
|
53
53
|
spforge/ratings/_base.py,sha256=ne4BRrYFPqMirdFPVnyDN44wjFQwOQgWoUXu_59xgWE,14687
|
|
54
|
-
spforge/ratings/_player_rating.py,sha256=
|
|
54
|
+
spforge/ratings/_player_rating.py,sha256=Ii1HNz0tC25dxZy9B2b_ULZVNwExNvdyIGw_1gRIeko,67163
|
|
55
55
|
spforge/ratings/_team_rating.py,sha256=3m90-R2zW0k5EHwjw-83Hacz91fGmxW1LQ8ZUGHlgt4,24970
|
|
56
56
|
spforge/ratings/enums.py,sha256=s7z_RcZS6Nlgfa_6tasO8_IABZJwywexe7sep9DJBgo,1739
|
|
57
57
|
spforge/ratings/league_identifier.py,sha256=_KDUKOwoNU6RNFKE5jju4eYFGVNGBdJsv5mhNvMakfc,6019
|
|
@@ -71,7 +71,7 @@ spforge/transformers/_other_transformer.py,sha256=w2a7Wnki3vJe4GAkSa4kealw0GILIo
|
|
|
71
71
|
spforge/transformers/_predictor.py,sha256=2sE6gfVrilXzPVcBurSrtqHw33v2ljygQcEYXt9LhZc,3119
|
|
72
72
|
spforge/transformers/_simple_transformer.py,sha256=zGUFNQYMeoDSa2CoQejQNiNmKCBN5amWTvyOchiUHj0,5660
|
|
73
73
|
spforge/transformers/_team_ratio_predictor.py,sha256=g8_bR53Yyv0iNCtol1O9bgJSeZcIco_AfbQuUxQJkeY,6884
|
|
74
|
-
spforge-0.8.
|
|
74
|
+
spforge-0.8.33.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
75
75
|
tests/test_autopipeline.py,sha256=7cNAn-nmGolfyfk3THh9IKcHZfRA-pLYC_xAyMg-No4,26863
|
|
76
76
|
tests/test_autopipeline_context.py,sha256=IuRUY4IA6uMObvbl2pXSaXO2_tl3qX6wEbTZY0dkTMI,1240
|
|
77
77
|
tests/test_feature_generator_pipeline.py,sha256=CK0zVL8PfTncy3RmG9i-YpgwjOIV7yJhV7Q44tbetI8,19020
|
|
@@ -94,7 +94,7 @@ tests/hyperparameter_tuning/test_estimator_tuner.py,sha256=iewME41d6LR2aQ0OtohGF
|
|
|
94
94
|
tests/hyperparameter_tuning/test_rating_tuner.py,sha256=usjC2ioO_yWRjjNAlRTyMVYheOrCi0kKocmHQHdTmpM,18699
|
|
95
95
|
tests/performance_transformers/test_performance_manager.py,sha256=gjuuV_hb27kCo_kUecPKG3Cbot2Gqis1W3kw2A4ovS4,10690
|
|
96
96
|
tests/performance_transformers/test_performances_transformers.py,sha256=A-tGiCx7kXrj1cVj03Bc7prOeZ1_Ryz8YFx9uj3eK6w,11064
|
|
97
|
-
tests/ratings/test_player_rating_generator.py,sha256=
|
|
97
|
+
tests/ratings/test_player_rating_generator.py,sha256=9iepzvjlAlye-CkrEX5GT6Pf4Bf4qi_uDwB6Wamo1JY,104641
|
|
98
98
|
tests/ratings/test_player_rating_no_mutation.py,sha256=GzO3Hl__5K68DS3uRLefwnbcTJOvBM7cZqww4M21UZM,8493
|
|
99
99
|
tests/ratings/test_ratings_property.py,sha256=ckyfGILXa4tfQvsgyXEzBDNr2DUmHwFRV13N60w66iE,6561
|
|
100
100
|
tests/ratings/test_team_rating_generator.py,sha256=SqQcfckNmJJc99feCdnmkNYDape-p69e92Dp8Vzpu2w,101156
|
|
@@ -108,7 +108,7 @@ tests/transformers/test_other_transformer.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
108
108
|
tests/transformers/test_predictor_transformer.py,sha256=N1aBYLjN3ldpYZLwjih_gTFYSMitrZu-PNK78W6RHaQ,6877
|
|
109
109
|
tests/transformers/test_simple_transformer.py,sha256=wWR0qjLb_uS4HXrJgGdiqugOY1X7kwd1_OPS02IT2b8,4676
|
|
110
110
|
tests/transformers/test_team_ratio_predictor.py,sha256=fOUP_JvNJi-3kom3ZOs1EdG0I6Z8hpLpYKNHu1eWtOw,8562
|
|
111
|
-
spforge-0.8.
|
|
112
|
-
spforge-0.8.
|
|
113
|
-
spforge-0.8.
|
|
114
|
-
spforge-0.8.
|
|
111
|
+
spforge-0.8.33.dist-info/METADATA,sha256=LH22MH7XYeFTROBWPYVVHWyYRSwMYGozGMCtaJdkLgg,20048
|
|
112
|
+
spforge-0.8.33.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
113
|
+
spforge-0.8.33.dist-info/top_level.txt,sha256=6UW2M5a7WKOeaAi900qQmRKNj5-HZzE8-eUD9Y9LTq0,23
|
|
114
|
+
spforge-0.8.33.dist-info/RECORD,,
|
|
@@ -2874,3 +2874,38 @@ def test_defense_participation_weight_backwards_compatibility(base_cn, library):
|
|
|
2874
2874
|
assert result is not None
|
|
2875
2875
|
assert len(gen._player_off_ratings) > 0
|
|
2876
2876
|
assert len(gen._player_def_ratings) > 0
|
|
2877
|
+
|
|
2878
|
+
|
|
2879
|
+
def test_fit_transform_null_perf_with_use_off_def_split_false__no_crash(base_cn):
|
|
2880
|
+
"""
|
|
2881
|
+
Regression test: null performance with use_off_def_split=False should not crash.
|
|
2882
|
+
|
|
2883
|
+
Bug: When use_off_def_split=False and a player has null performance:
|
|
2884
|
+
- Line 598 checks `if team1_def_perf is None` (team-level avg, not None if any played)
|
|
2885
|
+
- Line 605 does `def_perf = float(perf_value)` where perf_value is None
|
|
2886
|
+
- Crash: TypeError: float() argument must be a string or a number, not 'NoneType'
|
|
2887
|
+
|
|
2888
|
+
Fix: Check `if team1_def_perf is None or perf_value is None` to skip def update
|
|
2889
|
+
for players who didn't play (null performance means no rating update).
|
|
2890
|
+
"""
|
|
2891
|
+
df = pl.DataFrame(
|
|
2892
|
+
{
|
|
2893
|
+
"pid": ["P1", "P2", "P3", "P4", "P1", "P2", "P3", "P4"],
|
|
2894
|
+
"tid": ["T1", "T1", "T2", "T2", "T1", "T1", "T2", "T2"],
|
|
2895
|
+
"mid": ["M1", "M1", "M1", "M1", "M2", "M2", "M2", "M2"],
|
|
2896
|
+
"dt": ["2024-01-01"] * 4 + ["2024-01-02"] * 4,
|
|
2897
|
+
"perf": [0.6, 0.4, 0.5, 0.5, None, 0.6, 0.5, 0.5], # P1 null in M2
|
|
2898
|
+
"pw": [1.0] * 8,
|
|
2899
|
+
}
|
|
2900
|
+
)
|
|
2901
|
+
|
|
2902
|
+
gen = PlayerRatingGenerator(
|
|
2903
|
+
performance_column="perf",
|
|
2904
|
+
column_names=base_cn,
|
|
2905
|
+
use_off_def_split=False, # This triggers the buggy code path
|
|
2906
|
+
)
|
|
2907
|
+
|
|
2908
|
+
# Should not crash - before fix this raises:
|
|
2909
|
+
# TypeError: float() argument must be a string or a number, not 'NoneType'
|
|
2910
|
+
result = gen.fit_transform(df)
|
|
2911
|
+
assert result is not None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|