Spaces:
Runtime error
Runtime error
subreddits
Browse files- .gitignore +1 -1
- app.py +0 -3
.gitignore
CHANGED
@@ -2,4 +2,4 @@
|
|
2 |
*.pth
|
3 |
*ipynb_checkpoints
|
4 |
__pycache__
|
5 |
-
|
|
|
2 |
*.pth
|
3 |
*ipynb_checkpoints
|
4 |
__pycache__
|
5 |
+
.json
|
app.py
CHANGED
@@ -18,9 +18,6 @@ with st.spinner("Loading Model"):
|
|
18 |
st.write(f"Import TIME: {time.time()-start}")
|
19 |
sample_images = get_samples()
|
20 |
start = time.time()
|
21 |
-
download_files()
|
22 |
-
st.write(f"download TIME: {time.time()-start}")
|
23 |
-
start = time.time()
|
24 |
virtexModel = VirTexModel()
|
25 |
imageLoader = ImageLoader()
|
26 |
st.write(f"model TIME: {time.time()-start}")
|
|
|
18 |
st.write(f"Import TIME: {time.time()-start}")
|
19 |
sample_images = get_samples()
|
20 |
start = time.time()
|
|
|
|
|
|
|
21 |
virtexModel = VirTexModel()
|
22 |
imageLoader = ImageLoader()
|
23 |
st.write(f"model TIME: {time.time()-start}")
|