27b94dcecdd186886888261579c01229227ead1c,dlpy/tests/test_model.py,TestModel,test_model24,#TestModel#,691

Before Change


        except:
            unittest.TestCase.skipTest(self, "onnx not found in the libraries")

        if self.data_dir_local is None:
            unittest.TestCase.skipTest(self, "DLPY_DATA_DIR_LOCAL is not set in "
                                             "the environment variables")

        m = onnx.load(os.path.join(self.data_dir_local, "model.onnx"))
        model1 = Model.from_onnx_model(self.s, m)
        model1.print_summary()

After Change


        except:
            unittest.TestCase.skipTest(self, "onnx not found in the libraries")

        m = onnx.load(os.path.join(os.path.dirname(__file__), "datasources", "model.onnx"))
        model1 = Model.from_onnx_model(self.s, m)
        model1.print_summary()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 9

Instances


Project Name: sassoftware/python-dlpy
Commit Name: 27b94dcecdd186886888261579c01229227ead1c
Time: 2019-04-18
Author: Ethem.Can@sas.com
File Name: dlpy/tests/test_model.py
Class Name: TestModel
Method Name: test_model24


Project Name: sassoftware/python-dlpy
Commit Name: 27b94dcecdd186886888261579c01229227ead1c
Time: 2019-04-18
Author: Ethem.Can@sas.com
File Name: dlpy/tests/test_model.py
Class Name: TestModel
Method Name: test_model25


Project Name: sassoftware/python-dlpy
Commit Name: 27b94dcecdd186886888261579c01229227ead1c
Time: 2019-04-18
Author: Ethem.Can@sas.com
File Name: dlpy/tests/test_model.py
Class Name: TestModel
Method Name: test_model27


Project Name: sassoftware/python-dlpy
Commit Name: 27b94dcecdd186886888261579c01229227ead1c
Time: 2019-04-18
Author: Ethem.Can@sas.com
File Name: dlpy/tests/test_model.py
Class Name: TestModel
Method Name: test_model28