Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Airline Dataset
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dhruvang Patel
Airline Dataset
Commits
4efce005
Commit
4efce005
authored
2 months ago
by
Dhruvang Patel
Browse files
Options
Downloads
Patches
Plain Diff
Update app.py
parent
fb315fc8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app.py
+8
-8
8 additions, 8 deletions
app.py
with
8 additions
and
8 deletions
app.py
+
8
−
8
View file @
4efce005
...
...
@@ -3,9 +3,9 @@ import streamlit as st
import
altair
as
alt
import
os
from
sklearn.preprocessing
import
LabelEncoder
import
joblib
# For loading Scikit-Learn models
import
joblib
# Load the dataset
df
=
pd
.
read_csv
(
"
FakeDataset.csv
"
)
# Load Scikit-Learn models
...
...
@@ -23,7 +23,7 @@ if not os.path.exists("country_code_encoder.pkl"):
country_code_encoder
=
LabelEncoder
()
df
[
"
Airport Country Code
"
]
=
country_code_encoder
.
fit_transform
(
df
[
"
Airport Country Code
"
])
# Save the encoder for future use
joblib
.
dump
(
country_code_encoder
,
"
country_code_encoder.pkl
"
)
st
.
success
(
"
Country code encoder has been created and saved as
'
country_code_encoder.pkl
'
.
"
)
else
:
...
...
@@ -39,7 +39,7 @@ if not os.path.exists("airport_encoder.pkl"):
airport_encoder
=
LabelEncoder
()
df
[
"
Arrival Airport
"
]
=
airport_encoder
.
fit_transform
(
df
[
"
Arrival Airport
"
])
# Save the encoder for future use
joblib
.
dump
(
airport_encoder
,
"
airport_encoder.pkl
"
)
st
.
success
(
"
Airport encoder has been created and saved as
'
airport_encoder.pkl
'
.
"
)
else
:
...
...
@@ -48,19 +48,19 @@ else:
# Load the encoder if it already exists
airport_encoder
=
joblib
.
load
(
"
airport_encoder.pkl
"
)
#
Initialize
Streamlit
#
Starting
Streamlit
st
.
title
(
"
Airline Chatbot & Data Explorer with Predictions
"
)
# Adding the Bot image
st
.
image
(
"
Chatbot_image.gif
"
,
caption
=
"
Welcome to the Airline Chatbot & Data Explorer!
"
,
use_container_width
=
True
)
# Add navigation
# Add
ed
navigation
menu
=
st
.
sidebar
.
selectbox
(
"
Select a Feature
"
,
[
"
Chatbot
"
,
"
Data Explorer
"
,
"
Visualizations
"
,
"
Predictions
"
])
def
show_chatbot_section
():
st
.
subheader
(
"
Chat with Airline Assistant
"
)
# Initialize
session
states for conversation flow
# Initialize
different
states for conversation flow
if
"
greeted
"
not
in
st
.
session_state
:
st
.
session_state
.
greeted
=
False
if
"
help_query
"
not
in
st
.
session_state
:
...
...
@@ -98,7 +98,7 @@ def show_chatbot_section():
else
:
st
.
info
(
"
Let me know how I can assist you further.
"
)
# Passenger ID and Last Name functionality
# Passenger ID and Last Name
Input
functionality
if
st
.
session_state
.
help_query
and
not
st
.
session_state
.
details_fetched
:
passenger_id
=
st
.
text_input
(
"
Please enter your Passenger ID:
"
)
last_name
=
st
.
text_input
(
"
Please enter your Last Name:
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment