Spaces:
Runtime error
Runtime error
Gianluca Ruberto
commited on
Commit
·
ba1d2e6
1
Parent(s):
c83ef86
updated
Browse files- app.py +3 -3
- appunti lab scalable.txt +8 -0
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
|
2 |
import numpy as np
|
3 |
from math import ceil
|
4 |
-
|
5 |
|
6 |
-
model =
|
7 |
def double_res(input_image):
|
8 |
input_height = input_image.shape[0]
|
9 |
input_width = input_image.shape[1]
|
|
|
1 |
+
import gradio as gr
|
2 |
import numpy as np
|
3 |
from math import ceil
|
4 |
+
from huggingface_hub import from_pretrained_keras
|
5 |
|
6 |
+
model = from_pretrained_keras("GIanlucaRub/autoencoder_model_d_0")
|
7 |
def double_res(input_image):
|
8 |
input_height = input_image.shape[0]
|
9 |
input_width = input_image.shape[1]
|
appunti lab scalable.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
L'idea è dividere il progetto in 3 parti:
|
2 |
+
1) download delle feature (feature pipeline)
|
3 |
+
2) training pipeline
|
4 |
+
3) augmentation bisogna mostrare che si è migliorato per ottenere un A
|
5 |
+
|
6 |
+
common voice = fine della feature pipeline, l'idea è salvarlo localmente con save to disk
|
7 |
+
|
8 |
+
volendo si può salvare tutto su hopsworks, forse si hanno 25 GB a disposizione però è più lento di google drive a caricarle dopo
|