Patel, Dhruvang, 22306142
Talaviya, Jevin, 22402981
Title - Airline enquiry
https://mygit.th-deg.de/dp08142/assistance-system
https://mygit.th-deg.de/dp08142/assistance-system/-/wikis/home
Project Description
This project involves analyzing Airline dataset containing records of passenger information, flight details, and airport data. The main objectives of this analysis are to explore trends, identify patterns, and derive insights that can enhance the understanding of airline operations and customer details.
Prerequisites
This project is develop using the following:-
- Python - 3.8.2
- Python virtual environment - 20.4.7
- System - Windows 11
- Streamlit Version - 1.40.1
- Pandas Version - 2.0.3
- Scikit- learn Version - 1.1.3
- Matplotlib Version - 3.5.3
- Rasa Version - 3.6.20
- Joblib Version - 1.2.0
- Altair Version - 5.4.1
- Faker - 33.3.1
Installation
- Clone the repository.
- Create a Virtual environment:>
python -m venv Venv
- Activate the Virtual Environment:
Venv\scripts\activate
(Windows) orsource/Venv/bin/activate
(Linux / MacOS). - Install Dependencies:
pip install -r requirements.txt
. - Now Follow the steps of "Basic usage" to start the application.
Basic usage
- After setting up the Installation, Open the Terminal from Menubar or press 'CTRL + J'.
- Change Powershell to Comand Prompt by pressing the plus(+) symbol on top right corner of the Terminal.
- Activate the Virtual Environment (Venv) in Comand Prompt:
Venv\scripts\activate
(Windows) orsource/Venv/bin/activate
(Linux / MacOS). - Now you are in your Virtual environment, Next step is to start Rasa server by:
rasa run
. - Now it will show in console that Rasa server is up and running, It indicates that till now your rasa is running perfectly without any errors (You are very Lucky).
- If rasa server is running, Then Again open a new comand prompt from Terminal without closing the previous prompt.
- Now it's time to Run the chatbot on Streamlit. For that enter :
streamlit run app.py
in new Comand Prompt. - This will direct you to a default Browser, where you will find our 'Airline Chatbot'.
Overview of Chatbot
-
Title and Branding - At the top, there is a welcoming gif with hello logo and the title "Airline Chatbot & Data explorer with predictions" indicating the chatbot's purpose.
-
Central Panel - When you scroll down, there is a section labeled "Chat with Airline Assistant". This allows user to interact with chatbot by entering specific details like
Passenger ID
&Last Name
. Then on clicking on Get Flight Details it retrieves the passenger's flight information. Where it shows wheather the flight isOn Time
orDelayed
and further information. -
Features on the Left Sidebar - The left Sidebar has features like Chatbot, Data Explorer, Visualization and Predictions. Below there is Explanation on each features.
- Chatbot: - Likely the current mode, allowing users to interact with the chatbot for flight details or other queries.
- Data Explorer: - It explore the Airline Dataset. First one is Select columns to view where you can select on your own which columns information you want and second one is filter of flight status.
- Visualizations: - It show the visualizations of top 10 passenger nationalities, passenger age distribution and flight status distribution.
- Predictions: - It show the predictions of passenger satisfaction and flight status.
This layout appears user-friendly and efficient for retrieving passenger detials and exploring related data through multiple features.
Data
Data Source - We have use Airline Dataset from Kaggle.
Data Handling -
- Outlier Detection - The method that can handle both numerical and categorical data effictibely is Isolation Forest algorithm.
- Fake Data - Added 25% realistic data balancing across target variable.
There is more details explain about data in Wiki.
Implementation of the Requests
Here is the overview of the requests:
-
Web App with Streamlit: This project was made with the help of streamlit where it facilitate components like inputing messages, slidebar, data analysis, buttons etc.
-
requirments.txt: In this file it contains different version for dependencies. The file is available on git repository.
-
CSV file: The dataset was take from kaggle where you can find here Airline Dataset. It show the original version of dataset but later it was edit according to project use.
-
Pandas: With the help of pandas we loaded the csv file and implemented functions to locate the data of the users as well as for data overview and visualizations.
-
Scikt-Learn Model: The code uses RandomForestClassifier to train both models.
-
Matplotlib: With the help of matplotlib we have implemented graphs and pie charts according to out dataset.
-
Chatbot Implementation with RASA:
- Intent:
domain.yml
&nlu.yml
file where it gives the intent and according to that it show the responses for the user & nlu gives the examples according to the intent. - Actions:
actions.py
file contains the back-end data where it read the csv file and use class function to get passenger flight details from the csv file and generate the response to users. - Streamlit File:
app.py
file contains the front-end data, which communicate between the user and the chatbot. - stories.yml:
stories.yml
where it shows the process of conversation for the chatbot. - rules.yml:
rules.yml
where user says goodbye and conversation end. - endpoints.yml:
endpoints.yml
where things runs smoothly with the help of url. - train models.py:
train_models.py
where it contains two models for the prediciton of the data.
- Intent:
Each component has it's own where it has created user- friendly chatbot and gives predictions and analysis according to the data.
Work Done
The Chatbot was done by two team members, each contributing their work in this project. Below it's show which member has done which work:
Student 1: [Patel Dhruvang, 22306142]
-
Data analysis with pandas & Strategies for outliers and fake data
-
Scikit-learn
-
Dialog flow
Student 2: [Talaviya Jevin, 22402981]
-
Graphical User Interface
-
Visualization (with pandas and matplotlib)
-
Sample Dialog
Both: Documentation, Rasa Implementation and Programming
Demonstrating Video
A video of the project is upload on git repository. If the video is buffering, please download the video and know how our Chatbot works.
Project Structure
Airline Inquiry Chatbot/
│
├── data/
│ ├── nlu.yml/
│ ├── rules.yml/
│ ├── stories.yml/
│
├── actions/
│ ├── _pycache_
│ ├── __init__.py
│ ├── action.py
│
├── Add_Fake_data.py
│
├── Airline_Dataset.csv
│
├── Chatbot_image.gif
│
├── FakeDataset.csv
│
├── Project_Video.mp4
│
├── README.md
│
├── app.py
│
├── config.yml
│
├── credentials.yml
│
├── domain.yml
│
├── endpoints.yml
│
├── requirments.txt
│
├── train_models.py