code
code
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reservation Cancellation Prediction</title>
<!-- Bootstrap CSS -->
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet">
<!-- Link to your CSS file -->
<link href="{{ url_for('static', filename='style.css') }}" rel="stylesheet">
</head>
<body>
<div class="background">
<div class="container">
<h1 class="text-center">Reservation Cancellation Prediction</h1>
<form action="/predict" method="post" class="mt-4">
<div class="form-group">
<label for="adults">Adults:</label>
<input type="number" name="adults" class="form-control"
required value="{{ request.form.get('adults', '') }}">
</div>
<div class="form-group">
<label for="children">Children:</label>
<input type="number" name="children" class="form-control"
required value="{{ request.form.get('children', '') }}">
</div>
<div class="form-group">
<label for="weekday_nights">Weekday Nights:</label>
<input type="number" name="weekday_nights" class="form-
control" required value="{{ request.form.get('weekday_nights', '') }}">
</div>
<div class="form-group">
<label for="weekend_nights">Weekend Nights:</label>
<input type="number" name="weekend_nights" class="form-
control" required value="{{ request.form.get('weekend_nights', '') }}">
</div>
<div class="form-group">
<label for="lead_time">Lead Time:</label>
<input type="number" name="lead_time" class="form-control"
required value="{{ request.form.get('lead_time', '') }}">
</div>
<div class="form-group">
<label for="previous_cancellations">Previous
Cancellations:</label>
<input type="number" name="previous_cancellations"
class="form-control" required
value="{{ request.form.get('previous_cancellations', '') }}" >
</div>
<div class="form-group">
<label for="special_requests">Special Requests:</label>
<input type="number" name="special_requests" class="form-
control" required value="{{ request.form.get('special_requests', '') }}" >
</div>
<button type="submit" class="btn btn-primary btn-
block">Predict</button>
</form>
</div>
</div>
result.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prediction Result</title>
<!-- Bootstrap CSS -->
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet">
<!-- Link to your CSS file -->
<link href="{{ url_for('static', filename='style.css') }}" rel="stylesheet">
</head>
<body>
<div class="container text-center">
<h1>Prediction Result</h1>
<div class="mt-4">
{% if result == "Reservation will Cancel" %}
<div class="alert alert-danger" role="alert">
{{ result }}
</div>
{% else %}
<div class="alert alert-success" role="alert">
{{ result }}
</div>
{% endif %}
</div>
<div class="mt-4">
<a href="/" class="btn btn-primary">Go Back</a>
</div>
</div>
Style.css:
body {
background-color: #f8f9fa; /* Light background color */
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
height: 110vh;
overflow: auto; /* Ensure no scrollbars if unnecessary */
}
.background {
background-image: url('/static/hotel-background2.jpg'); /* Corrected path */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 120vh; /* Full viewport height */
width: 100vw; /* Full viewport width */
position: absolute;
}
.container {
margin-top: 10px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.alert {
font-size: 1.2em;
font-weight: bold;
}
.btn-primary {
margin-top: 20px;
}
App.py:
from flask import Flask, render_template, request
import numpy as np
import joblib
app = Flask(__name__)
@app.route('/')
def home():
return render_template('index.html')
@app.route('/predict', methods=['POST'])
def predict():
try:
# Collect data from the form
features = [
float(request.form['adults']),
float(request.form['children']),
float(request.form['weekday_nights']),
float(request.form['weekend_nights']),
float(request.form['lead_time']),
float(request.form['previous_cancellations']),
float(request.form['special_requests'])
]
input_data = np.array([features])
prediction = model.predict(input_data)[0]
result = "Reservation will Cancel" if prediction == 1 else "Reservation
will Not Cancel"
return render_template('result.html', result=result)
except Exception as e:
return f"Error: {e}"
if __name__ == "__main__":
app.run(debug=True)
Model_training.py:
import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import accuracy_score, precision_score, recall_score,
f1_score
import joblib
Reservations.csv:
import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import accuracy_score, precision_score, recall_score,
f1_score
import joblib