Update app.py
Browse files
app.py
CHANGED
@@ -13,8 +13,6 @@ import tensorflow as tf
|
|
13 |
hf_key = text_input = st.text_input("Access token")
|
14 |
|
15 |
class CNN(nn.Module):
|
16 |
-
"""A simple CNN model."""
|
17 |
-
|
18 |
@nn.compact
|
19 |
def __call__(self, x):
|
20 |
x = nn.Conv(features=32, kernel_size=(3, 3))(x)
|
|
|
13 |
hf_key = text_input = st.text_input("Access token")
|
14 |
|
15 |
class CNN(nn.Module):
|
|
|
|
|
16 |
@nn.compact
|
17 |
def __call__(self, x):
|
18 |
x = nn.Conv(features=32, kernel_size=(3, 3))(x)
|