# Noise detection project ## Requirements ``` pip install -r requirements.txt ``` ## How to use Generate dataset (run only once time) : ``` python generate_dataset.py ``` It will split scenes and generate all data you need for your neural network. You can specify the number of sub images you want in the script by modifying NUMBER_SUB_IMAGES variables. After your built your neural network in classification_cnn_keras.py, you just have to run it : ``` python classification_cnn_keras.py ```