Skip to content

Commit

Permalink
revert test paths
Browse files Browse the repository at this point in the history
  • Loading branch information
charlie-becker committed Feb 27, 2024
1 parent f84c379 commit ecfb15a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mlguess/tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
class TestModels(unittest.TestCase):
def setUp(self):
# Load configurations for the models
self.mlp_config = "/Users/cbecker/PycharmProjects/miles-guess/config/surface_layer/mlp.yml"
self.gaussian_config = "/Users/cbecker/PycharmProjects/miles-guess/config/surface_layer/gaussian.yml"
self.evidential_config = "/Users/cbecker/PycharmProjects/miles-guess/config/surface_layer/evidential.yml"
self.mlp_config = "config/surface_layer/mlp.yml"
self.gaussian_config = "config/surface_layer/gaussian.yml"
self.evidential_config = "config/surface_layer/evidential.yml"

with open(self.mlp_config) as cf:
self.mlp_conf = yaml.load(cf, Loader=yaml.FullLoader)
Expand Down

0 comments on commit ecfb15a

Please sign in to comment.