Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ def load_file(uploaded_file):
|
|
23 |
# Train the model if it doesn't already exist
|
24 |
def train_model(data):
|
25 |
# data['Hour'] = pd.to_datetime(data['Timestamp']).dt.hour
|
26 |
-
data['Hour'] = pd.to_datetime(data['
|
27 |
X = data[['Hour', 'Temperature', 'CloudCover','DATE_TIME','PLANT_ID','SOURCE_KEY','DC_POWER','AC_POWER','DAILY_YIELD','TOTAL_YIELD']]
|
28 |
y = data['SolarOutput']
|
29 |
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
|
|
|
23 |
# Train the model if it doesn't already exist
|
24 |
def train_model(data):
|
25 |
# data['Hour'] = pd.to_datetime(data['Timestamp']).dt.hour
|
26 |
+
data['Hour'] = pd.to_datetime(data['Timestamp']).dt.hour
|
27 |
X = data[['Hour', 'Temperature', 'CloudCover','DATE_TIME','PLANT_ID','SOURCE_KEY','DC_POWER','AC_POWER','DAILY_YIELD','TOTAL_YIELD']]
|
28 |
y = data['SolarOutput']
|
29 |
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
|