climate
File size: 1,167 Bytes
dba03b9
 
9f78b45
 
 
 
1362a9e
e20893d
1362a9e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
license: apache-2.0
datasets:
- jonathan-roberts1/Satellite-Images-of-Hurricane-Damage
tags:
- climate
---
# Model Card for fluffypotato/flooding-classifier

<!-- Provide a quick summary of what the model is/does. -->

This model is trained on a subset of `jonathan-roberts1/Satellite-Images-of-Hurricane-Damage?` and performs binary classification on satellite images into either damaged or not damaged.

The model was trained using PyTorch on Intel Developer Cloud using ipex optimization. Here is the Neural Network architecture:

```python
model.fc = nn.Sequential(
           nn.Linear(2048, 128),
           nn.ReLU(inplace=True),
            nn.Linear(128, 64),
           nn.ReLU(inplace=True),
           nn.Linear(64, 2))
```

## Uses

<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->

Some use cases include emergency response and disaster detection.

## Bias, Risks, and Limitations

This model is limited in use as it only performs binary classification. Further extensions include adding more classes to the model or more diverse data to the model.