https://github.com/stephanfward/aiproject
https://github.com/stephanfward/aiproject
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stephanfward/aiproject
- Owner: StephanFWard
- Created: 2023-12-04T19:51:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-13T18:39:42.000Z (over 1 year ago)
- Last Synced: 2023-12-13T20:36:45.969Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AI Project: Bright Flash Detection
## Overview
This repository contains the code and resources for an AI project focused on detecting bright flashes in images. The goal is to identify instances of explosions, fires, or cloudy smoke in photos. OR THE REVERSE COULD BE TRUE :)
## Project Structure
- **`notebooks/`**: Jupyter Notebooks for different stages of the project, including data exploration, model development, and evaluation.
- **`data/`**: Placeholder for the dataset. You can organize your dataset here or provide instructions on how to obtain it.
- **`models/`**: Saved models after training. Include instructions on how to load and use the models.
- **`scripts/`**: Additional scripts or utilities used in the project.## Getting Started
### Prerequisites
- Python 3.x
- JupyterLab
- Required Python libraries (install them using `pip install -r requirements.txt`):```
pip install -r requirements.txt
```Clone the repository:
```
git clone https://github.com/StephanFWard/AIProject.git
cd AIProject
```Set up a virtual environment (optional but recommended):
```
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
```Install dependencies:
```
pip install -r requirements.txt
```Open JupyterLab:
Navigate to the notebooks/ directory and run the Jupyter Notebooks in sequence.
Model Deployment
For deploying the trained model, we recommend using TensorFlow Serving. Follow the steps in the deployment guide for detailed instructions.Note: Image training library not included in repo.