Skip to content
Snippets Groups Projects
Commit f843d9ff authored by Julian Steiner's avatar Julian Steiner
Browse files

Rename Forsest fire detection jupyter notebook.

parent 9330f51f
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id: tags:
# Forest Fire Detection
%% Cell type:markdown id: tags:
# Forest Fire Detection
%% Cell type:markdown id: tags:
## Import TensorFlow and other libraries
%% Cell type:code id: tags:
``` python
import matplotlib.pyplot as plt
import numpy as np
import os
import PIL
import tensorflow as tf
import pathlib
from tensorflow import keras
from tensorflow.keras import layers
from tensorflow.keras.models import Sequential
```
%% Cell type:code id: tags:
``` python
data_dir = pathlib.Path('data')
```
%% Cell type:code id: tags:
``` python
image_count = len(list(data_dir.glob("*/*")))
image_count
```
%% Output
15765
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment