Spaces:
Sleeping
Sleeping
Kieran Fraser
commited on
Commit
•
070cdef
1
Parent(s):
17d66d4
Fix layout
Browse files- .gitignore +3 -1
- app.py +7 -0
.gitignore
CHANGED
@@ -257,4 +257,6 @@ wheels/
|
|
257 |
Pipfile
|
258 |
.vscode
|
259 |
Pipfile.lock
|
260 |
-
Data - DELETE AT THE END OF THE PROJECT
|
|
|
|
|
|
257 |
Pipfile
|
258 |
.vscode
|
259 |
Pipfile.lock
|
260 |
+
Data - DELETE AT THE END OF THE PROJECT
|
261 |
+
data/imagenette2-320
|
262 |
+
data/imagenette2-320_old
|
app.py
CHANGED
@@ -26,6 +26,13 @@ device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
|
26 |
|
27 |
css = """
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
"""
|
30 |
|
31 |
def sample_CIFAR10():
|
|
|
26 |
|
27 |
css = """
|
28 |
|
29 |
+
.center-text { text-align: center !important }
|
30 |
+
.larger-gap { gap: 100px !important; }
|
31 |
+
.symbols { text-align: center !important; margin: auto !important; }
|
32 |
+
|
33 |
+
div.svelte-15lo0d8>*, div.svelte-15lo0d8>.form > * {
|
34 |
+
min-width: 0px !important;
|
35 |
+
}
|
36 |
"""
|
37 |
|
38 |
def sample_CIFAR10():
|