durrani commited on
Commit
e6fdb30
·
1 Parent(s): 2d62ac6

Prediction of room temperature

Files changed (1) hide show
  1. app.py +2 -2
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 = 750 # Number of students in the new scenario
25
- new_temperature = 20 # Temperature in the new scenario
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]