jev-aleks commited on
Commit
ff4c202
·
1 Parent(s): 19bc42e

change order of imports

Browse files
Files changed (1) hide show
  1. app.py +13 -13
app.py CHANGED
@@ -1,25 +1,25 @@
1
- from demo_utils.utils import (load_modules,
2
- load_sample_from_path,
3
- load_sample_from_dataset,
4
- get_fov_mask,
5
- inference_3d,
6
- inference_rendered_2d)
7
-
8
  import tempfile
9
  import os
10
  import sys
11
  import yaml
12
 
 
 
 
 
 
 
 
13
  sys.path.append("./sscbench")
14
  from sscbench.gen_voxelgrid_npy import save_as_voxel_ply, classes_to_colors
15
  from download_checkpoint_hf import download_scenedino_checkpoint
16
 
17
- import torch
18
-
19
- import numpy as np
20
- import gradio as gr
21
- import open3d as o3d
22
- import spaces
23
 
24
 
25
  # Load checkpoints from Hugging Face
 
 
 
 
 
 
 
 
1
  import tempfile
2
  import os
3
  import sys
4
  import yaml
5
 
6
+ import numpy as np
7
+ import open3d as o3d
8
+
9
+ import gradio as gr
10
+ import spaces
11
+ import torch
12
+
13
  sys.path.append("./sscbench")
14
  from sscbench.gen_voxelgrid_npy import save_as_voxel_ply, classes_to_colors
15
  from download_checkpoint_hf import download_scenedino_checkpoint
16
 
17
+ from demo_utils.utils import (load_modules,
18
+ load_sample_from_path,
19
+ load_sample_from_dataset,
20
+ get_fov_mask,
21
+ inference_3d,
22
+ inference_rendered_2d)
23
 
24
 
25
  # Load checkpoints from Hugging Face