Spaces:
Sleeping
Sleeping
File size: 6,400 Bytes
6424951 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | #!/usr/bin/env python3
"""NBA game winner prediction model training script.
This script trains a neural network to predict game winners based on
team statistics. It uses RandomizedSearchCV to find optimal hyperparameters.
Usage:
python scripts/compile_model.py
"""
import logging
from pathlib import Path
import numpy as np
import pandas as pd
from scikeras.wrappers import KerasClassifier
from sklearn.model_selection import RandomizedSearchCV, train_test_split
from tensorflow import keras
from tensorflow.keras import layers
from tensorflow.keras.losses import BinaryCrossentropy
# Configure logging
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(levelname)s - %(message)s",
)
logger = logging.getLogger(__name__)
# Data file paths
ROSTER_FILE = Path("player_stats.txt")
SCHEDULE_FILE = Path("schedule.txt")
OUTPUT_MODEL = Path("winner.keras")
# Feature columns from roster data
FEATURE_COLS: list[str] = [
"TEAM",
"PTS/G",
"ORB",
"DRB",
"AST",
"STL",
"BLK",
"TOV",
"3P%",
"FT%",
"2P",
]
# Hyperparameter search space
OPTIMIZERS: list[str] = [
"SGD",
"RMSprop",
"Adagrad",
"Adadelta",
"Adam",
"Adamax",
"Nadam",
]
INITIALIZERS: list[str] = [
"uniform",
"lecun_uniform",
"normal",
"zero",
"glorot_normal",
"glorot_uniform",
"he_normal",
"he_uniform",
]
EPOCHS: list[int] = [500, 1000, 1500]
BATCH_SIZES: list[int] = [50, 100, 200]
def create_stats(
roster: pd.DataFrame, schedule: pd.DataFrame
) -> list[np.ndarray]:
"""Create feature arrays from roster and schedule data.
Args:
roster: DataFrame with player statistics
schedule: DataFrame with game schedule and scores
Returns:
List of numpy arrays, one per game with combined team stats
"""
home_stats: list[list] = []
away_stats: list[list] = []
features: list[np.ndarray] = []
new_roster = roster[FEATURE_COLS]
# Get stats for each team in each game
for team in schedule["Home/Neutral"]:
home_stats.append(new_roster[new_roster["TEAM"] == team].values.tolist())
for team in schedule["Visitor/Neutral"]:
away_stats.append(new_roster[new_roster["TEAM"] == team].values.tolist())
# Combine home and away stats for each game
for i in range(len(home_stats)):
arr: list[float] = []
for j in range(len(home_stats[i])):
del home_stats[i][j][0] # Remove team name
arr.extend(home_stats[i][j])
for j in range(len(away_stats[i])):
del away_stats[i][j][0] # Remove team name
arr.extend(away_stats[i][j])
# Handle NaN values
features.append(np.nan_to_num(np.array(arr), copy=False))
return features
def create_model(
optimizer: str = "rmsprop", init: str = "glorot_uniform"
) -> keras.Model:
"""Create the neural network model architecture.
Args:
optimizer: Optimizer name
init: Weight initializer name
Returns:
Compiled Keras model
"""
inputs = keras.Input(shape=(100,))
x = layers.Dense(50, activation="relu", kernel_initializer=init)(inputs)
x = layers.Dense(64, activation="relu", kernel_initializer=init)(x)
outputs = layers.Dense(1, activation="sigmoid")(x)
model = keras.Model(inputs=inputs, outputs=outputs, name="nba_model")
model.compile(
loss=BinaryCrossentropy(from_logits=False),
optimizer=optimizer,
metrics=["accuracy"],
)
return model
def train_model(
x_train: np.ndarray,
y_train: np.ndarray,
x_test: np.ndarray,
y_test: np.ndarray,
n_iterations: int = 100,
) -> tuple[keras.Model, dict, float]:
"""Train model with hyperparameter search.
Args:
x_train: Training features
y_train: Training labels
x_test: Test features
y_test: Test labels
n_iterations: Number of random search iterations
Returns:
Tuple of (best_model, best_params, test_accuracy)
"""
model = KerasClassifier(
model=create_model,
verbose=0,
init="glorot_uniform",
)
param_grid = {
"optimizer": OPTIMIZERS,
"epochs": EPOCHS,
"batch_size": BATCH_SIZES,
"init": INITIALIZERS,
}
logger.info(f"Starting randomized search with {n_iterations} iterations")
random_search = RandomizedSearchCV(
estimator=model,
param_distributions=param_grid,
n_iter=n_iterations,
verbose=3,
)
random_search_result = random_search.fit(x_train, y_train)
best_model = random_search_result.best_estimator_
best_params = random_search_result.best_params_
test_accuracy = best_model.score(x_test, y_test)
return best_model.model_, best_params, test_accuracy
def main() -> None:
"""Main training pipeline."""
logger.info("Loading data files")
if not ROSTER_FILE.exists():
logger.error(f"Roster file not found: {ROSTER_FILE}")
raise FileNotFoundError(f"Missing {ROSTER_FILE}")
if not SCHEDULE_FILE.exists():
logger.error(f"Schedule file not found: {SCHEDULE_FILE}")
raise FileNotFoundError(f"Missing {SCHEDULE_FILE}")
roster = pd.read_csv(ROSTER_FILE, delimiter=",")
schedule = pd.read_csv(SCHEDULE_FILE, delimiter=",")
logger.info(f"Loaded {len(roster)} players and {len(schedule)} games")
# Create target variable: 0 = home wins, 1 = away wins
schedule["winner"] = schedule.apply(
lambda x: 0 if x["PTS"] > x["PTS.1"] else 1, axis=1
)
# Create feature arrays
logger.info("Creating feature arrays")
X = np.array(create_stats(roster, schedule))
y = np.array(schedule["winner"])
logger.info(f"Feature shape: {X.shape}, Target shape: {y.shape}")
# Split data
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.2, random_state=42
)
logger.info(f"Train size: {len(X_train)}, Test size: {len(X_test)}")
# Train model
best_model, best_params, test_accuracy = train_model(
X_train, y_train, X_test, y_test
)
# Save model
logger.info(f"Saving model to {OUTPUT_MODEL}")
best_model.save(OUTPUT_MODEL)
logger.info(f"Best parameters: {best_params}")
logger.info(f"Test accuracy: {test_accuracy:.4f}")
if __name__ == "__main__":
main()
|