app.py
Browse filesPrediction of room temperature
app.py
CHANGED
@@ -21,8 +21,8 @@ for i in range(len(X[0])):
|
|
21 |
print("Coefficients:", coefficients)
|
22 |
|
23 |
# Predict the number of rooms required for a new scenario
|
24 |
-
new_students
|
25 |
-
new_temperature
|
26 |
|
27 |
# Create the feature array for the new scenario
|
28 |
new_scenario = [1, new_students, new_temperature]
|
|
|
21 |
print("Coefficients:", coefficients)
|
22 |
|
23 |
# Predict the number of rooms required for a new scenario
|
24 |
+
new_students=int(input("ENTER NEW STUDENTS : ")) # Number of students in the new scenario
|
25 |
+
new_temperature=int(input("ENTER NEW TEMPERATURE : "))# Temperature in the new scenario
|
26 |
|
27 |
# Create the feature array for the new scenario
|
28 |
new_scenario = [1, new_students, new_temperature]
|