convert_test.py 201 B

1234567891011121314
  1. from caffe2.python import workspace
  2. import unittest
  3. class TestOperator(unittest.TestCase):
  4. def setUp(self):
  5. workspace.ResetWorkspace()
  6. if __name__ == '__main__':
  7. unittest.main()