Update app.py
Browse files
app.py
CHANGED
@@ -42,6 +42,9 @@ data_fields = {
|
|
42 |
# Organize input fields into two columns
|
43 |
col1, col2 = st.columns(2)
|
44 |
|
|
|
|
|
|
|
45 |
# Function to preprocess input data
|
46 |
def preprocess_input_data(input_data):
|
47 |
numerical_cols = ['PRG', 'PL', 'PR', 'SK', 'TS', 'M11', 'BD2', 'Age']
|
|
|
42 |
# Organize input fields into two columns
|
43 |
col1, col2 = st.columns(2)
|
44 |
|
45 |
+
# Initialize input_data dictionary
|
46 |
+
input_data = {}
|
47 |
+
|
48 |
# Function to preprocess input data
|
49 |
def preprocess_input_data(input_data):
|
50 |
numerical_cols = ['PRG', 'PL', 'PR', 'SK', 'TS', 'M11', 'BD2', 'Age']
|