File size: 683 Bytes
6ee59dc
 
 
 
c6458c3
 
 
 
6ee59dc
0e27558
6ee59dc
0e27558
6ee59dc
0e27558
6ee59dc
c6458c3
 
6ee59dc
c6458c3
 
 
 
 
 
 
 
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
---
library_name: keras
tags:
- Image Classification
language:
- en
metrics:
- accuracy
---
# Cats vs Dogs CNN (Teeny-Tiny Castle)

This model is part of a tutorial tied to the [Teeny-Tiny Castle](https://github.com/Nkluge-correa/TeenyTinyCastle), an open-source repository containing educational tools for AI Ethics and Safety research. 

## How to Use

```python
!pip install huggingface_hub["tensorflow"] -q

# We are loading our Keras model from the Hub via the `huggingface_hub.from_pretrained_keras`
from huggingface_hub import from_pretrained_keras
import tensorflow as tf

model = from_pretrained_keras("AiresPucrs/cats-vs-dogs")
model.trainable = False
model.summary()
```