-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodelo_lstm.py
52 lines (40 loc) · 1.84 KB
/
modelo_lstm.py
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
import numpy as np
import pandas as pd
from sklearn.model_selection import train_test_split
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense, LSTM
# Cargar el archivo CSV
data = pd.read_csv('data-1883.csv')
# Crear una función para predecir cada bola individualmente
def entrenar_y_predecir_bola(data, bola):
X = data.drop(columns=[bola, 'numero', 'fecha']).values # Usar otras bolas como entrada
y = data[bola].values # La bola a predecir es la salida
# Normalizar los datos
X_normalized = X / 56
y_normalized = y / 56
# Dividir en entrenamiento y prueba
X_train, X_test, y_train, y_test = train_test_split(X_normalized, y_normalized, test_size=0.2, random_state=42)
# Redimensionar para LSTM
X_train = np.reshape(X_train, (X_train.shape[0], X_train.shape[1], 1))
X_test = np.reshape(X_test, (X_test.shape[0], X_test.shape[1], 1))
# Crear el modelo
model = Sequential()
model.add(LSTM(50, input_shape=(X_train.shape[1], 1), return_sequences=True))
model.add(LSTM(50))
model.add(Dense(1, activation='linear'))
# Compilar el modelo
model.compile(optimizer='adam', loss='mean_squared_error')
# Entrenar el modelo
model.fit(X_train, y_train, epochs=20, batch_size=16, validation_data=(X_test, y_test), verbose=1)
# Hacer una predicción para el siguiente resultado
prediccion = model.predict(X_test[:1])
return prediccion[0][0] * 56 # Desnormalizar
# Predecir para cada bola y el comodín
predicciones = {}
for i in range(1, 7):
predicciones[f"bola-{i}"] = entrenar_y_predecir_bola(data, f"bola-{i}")
# Predecir para la bola comodín
predicciones["bola-comodin"] = entrenar_y_predecir_bola(data, "bola-comodin")
print("Predicciones para el próximo sorteo:")
for bola, valor in predicciones.items():
print(f"{bola}: {round(valor)}")