Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- app.py +3 -0
- requirements.txt +1 -2
app.py
CHANGED
@@ -27,6 +27,9 @@ from data.fintune_dataset import pc_norm
|
|
27 |
from functools import partial
|
28 |
import glob
|
29 |
|
|
|
|
|
|
|
30 |
T_random_resized_crop = transforms.Compose([
|
31 |
transforms.RandomResizedCrop(size=(224, 224), scale=(0.9, 1.0), ratio=(0.75, 1.3333), interpolation=3,
|
32 |
antialias=None), # 3 is bicubic
|
|
|
27 |
from functools import partial
|
28 |
import glob
|
29 |
|
30 |
+
import os
|
31 |
+
print(os.path.dirname(os.path.abspath(__file__)))
|
32 |
+
|
33 |
T_random_resized_crop = transforms.Compose([
|
34 |
transforms.RandomResizedCrop(size=(224, 224), scale=(0.9, 1.0), ratio=(0.75, 1.3333), interpolation=3,
|
35 |
antialias=None), # 3 is bicubic
|
requirements.txt
CHANGED
@@ -12,5 +12,4 @@ torchaudio
|
|
12 |
matplotlib
|
13 |
flash-attn
|
14 |
gradio
|
15 |
-
plotly
|
16 |
-
git+https://github.com/csuhan/pointnet2_backup.git
|
|
|
12 |
matplotlib
|
13 |
flash-attn
|
14 |
gradio
|
15 |
+
plotly
|
|