Skip to content
Snippets Groups Projects
Commit faed86cb authored by Thomas Purcell's avatar Thomas Purcell
Browse files

Lossen check model standards

make it 1e-4 beacuse of parameterization
parent 41c1eac0
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@ build.intel:
- make install
- cd ../
- pytest tests/pytest
- tests/googletest/sisso_test
- cd tests/exec_test/classification
- ../../../bin/sisso++
- python check_model.py
......@@ -38,7 +39,6 @@ build.intel:
- ../../../bin/sisso++
- python ../check_model.py
- cd ../../../
- tests/googletest/sisso_test
tags:
- docker
......@@ -56,6 +56,7 @@ build.gnu:
- make install
- cd ../
- pytest tests/pytest
- tests/googletest/sisso_test
- cd tests/exec_test/classification
- ../../../bin/sisso++
- python check_model.py
......@@ -75,6 +76,5 @@ build.gnu:
- ../../../bin/sisso++
- python ../check_model.py
- cd ../../../
- tests/googletest/sisso_test
tags:
- docker
......@@ -6,5 +6,5 @@ import numpy as np
model = ModelRegressor(
str("models/train_dim_2_model_0.dat"), str("models/test_dim_2_model_0.dat")
)
assert model.rmse < 1e-7
assert model.test_rmse < 1e-7
assert model.rmse < 1e-4
assert model.test_rmse < 1e-4
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment