mirror of
https://github.com/wassname/PointCNN.git
synced 2026-08-28 12:44:16 +08:00
Flesh out directory structure for project.
This commit is contained in:
@@ -0,0 +1 @@
|
||||
# This is a file for the main PyTorch module.
|
||||
@@ -0,0 +1 @@
|
||||
# This is a file for utility functions.
|
||||
@@ -0,0 +1,5 @@
|
||||
nose
|
||||
sphinx
|
||||
numpy
|
||||
http://download.pytorch.org/whl/cu80/torch-0.3.1-cp35-cp35m-linux_x86_64.whl
|
||||
torchvision
|
||||
@@ -0,0 +1,6 @@
|
||||
import unittest
|
||||
|
||||
from test_basic import *
|
||||
from test_advanced import *
|
||||
|
||||
unittest.main()
|
||||
@@ -0,0 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import sys, os
|
||||
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
||||
|
||||
import pointcnn
|
||||
@@ -0,0 +1,12 @@
|
||||
import unittest
|
||||
|
||||
from context import pointcnn
|
||||
|
||||
class AdvancedTests(unittest.TestCase):
|
||||
""" Basic test cases """
|
||||
|
||||
def test_example(self):
|
||||
self.assertTrue(True)
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
@@ -0,0 +1,12 @@
|
||||
import unittest
|
||||
|
||||
from context import pointcnn
|
||||
|
||||
class BasicTests(unittest.TestCase):
|
||||
""" Basic test cases """
|
||||
|
||||
def test_example(self):
|
||||
self.assertTrue(True)
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user