Skip to content

Commit

Permalink
standardize code
Browse files Browse the repository at this point in the history
  • Loading branch information
chenweikai committed Jun 14, 2022
1 parent c3b418b commit da174c4
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions single_view_recon/src/model/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import tensorflow as tf
from tensorflow.keras import Model

from src.model.imgEncoder import ImageEncoder
from src.model.mlpClassifier import Classifier
from src.model.pointConv import PointConv
from src.model.img_encoder import ImageEncoder
from src.model.mlp_classifier import Classifier
from src.model.point_conv import PointConv
from src.utils.transform_utils import grid_sample


Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion single_view_recon/src/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import tensorflow as tf
from tqdm import tqdm

from model.dataLoader import Dataloader
from model.data_loader import Dataloader
from src.utils.io_utils import save_obj_mesh_filterNAN, load_filelist
from src.utils.transform_utils import getShapenetBbox, computeOctreeSamplingPointsFromBoundingBox

Expand Down
2 changes: 1 addition & 1 deletion single_view_recon/src/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import horovod.tensorflow as hvd
import tensorflow as tf

from src.model.dataLoader import Dataloader
from src.model.data_loader import Dataloader
from src.model.network import DeepImpNet
from src.utils.io_utils import load_filelist

Expand Down
2 changes: 1 addition & 1 deletion single_view_recon/src/utils/shapenet_tfrecord_generator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from src.model.dataLoader import Dataloader
from src.model.data_loader import Dataloader

if __name__ == '__main__':
# demo script to generate tfrecord of shapenet data for training
Expand Down

0 comments on commit da174c4

Please sign in to comment.