@@ -42,7 +42,66 @@ This project is develop using the following:-
2. Change Powershell to Comand Prompt by pressing the plus(+) symbol on top right corner of the Terminal.
3. Activate the Virtual Environment (Venv) in Comand Prompt: `Venv\scripts\activate` (Windows) or `source/Venv/bin/activate` (Linux / MacOS).
4. Now you are in your Virtual environment, Next step is to start Rasa server by: `rasa run`.
5. 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).
5. 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**).
6. If rasa server is running, Then Again open a new comand prompt from Terminal without closing the previous prompt.
7. Now it's time to Run the chatbot on Streamlit. For that enter : `streamlit run app.py` in new Comand Prompt.
8. This will direct you to a default Browser, where you will find our 'Airline Chatbot'.
\ No newline at end of file
8. 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 is `On Time` or `Delayed` 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.
1. _Chatbot_: - Likely the current mode, allowing users to interact with the chatbot for flight details or other queries.
2. _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.
3. _Visualizations_: -
4. _Predictions_: -
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](https://www.kaggle.com/datasets/iamsouravbanerjee/airline-dataset/data?select=Airline+Dataset.csv) from Kaggle.
**Data Handling** -
1. _Outlier Detection_ - The method that can handle both numerical and categorical data effictibely is Isolation Forest algorithm.
2. _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](https://www.kaggle.com/datasets/iamsouravbanerjee/airline-dataset/data?select=Airline+Dataset.csv). 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:
- Matplotlib: With the help of matplotlib we have implemented graphs and pie charts according to out dataset.
- Chatbot Implementation with RASA:
1. 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.
2. 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.
3. Streamlit File: `app.py` file contains the front-end data, which communicate between the user and the chatbot.
4. stories.yml: `stories.yml` where it shows the process of conversation for the chatbot.
5. rules.yml: `rules.yml` where user says goodbye and conversation end.
6. endpoints.yml: `endpoints.yml` where things runs smoothly with the help of url.
7. train models.py: `train_models.py` where it contains two models for the prediciton of the data.
Each component has it's own where it has created user- friendly chatbot and gives predictions and analysis according to the data.