Exoplanet detection system dashboard

exoplanet_app/ │ ├── app.py │ → Main Streamlit entry file. Initializes the application and handles page navigation. │ ├── pages/ │ │ │ ├── 1_Project_Info.py │ │ → Displays project overview, system workflow, model architecture, and performance metrics. │ │ │ ├── 2_Prediction.py │ │ → Accepts user input or CSV data and performs exoplanet prediction using trained model. │ │ │ └── 3_Light_Curves.py │ → Visualizes stellar light curves and transit dips using interactive graphs. │ ├── model.pkl │ → Saved trained Siamese Neural Network model used for prediction (optional). │ └── requirements.txt → Lists all Python dependencies required to run the application.

Pages