Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update paths #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions fairness_indicators/jupyter_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,42 +46,42 @@ class TestNotebook(unittest.TestCase):

def test_example(self):
errors = get_errors(
'examples/Fairness_Indicators_Example_Colab.ipynb')
'fairness_indicators/examples/Fairness_Indicators_Example_Colab.ipynb')
self.assertIsNone(errors, [])

def test_facessd(self):
errors = get_errors(
'examples/Facessd_Fairness_Indicators_Example_Colab.ipynb'
'fairness_indicators/examples/Facessd_Fairness_Indicators_Example_Colab.ipynb'
)
self.assertIsNone(errors, [])

def test_lineage(self):
errors = get_errors(
'examples/Fairness_Indicators_Lineage_Case_Study.ipynb'
'fairness_indicators/examples/Fairness_Indicators_Lineage_Case_Study.ipynb'
)
self.assertIsNone(errors, [])

def test_tb(self):
errors = get_errors(
'examples/Fairness_Indicators_TensorBoard_Plugin_Example_Colab.ipynb'
'fairness_indicators/examples/Fairness_Indicators_TensorBoard_Plugin_Example_Colab.ipynb'
)
self.assertIsNone(errors, [])

def test_tfco_celeba(self):
errors = get_errors(
'examples/Fairness_Indicators_TFCO_CelebA_Case_Study.ipynb'
'fairness_indicators/examples/Fairness_Indicators_TFCO_CelebA_Case_Study.ipynb'
)
self.assertIsNone(errors, [])

def test_tfco_wiki(self):
errors = get_errors(
'examples/Fairness_Indicators_TFCO_Wiki_Case_Study.ipynb'
'fairness_indicators/examples/Fairness_Indicators_TFCO_Wiki_Case_Study.ipynb'
)
self.assertIsNone(errors, [])

def test_tfhub(self):
errors = get_errors(
'examples/Fairness_Indicators_on_TF_Hub_Text_Embeddings.ipynb'
'fairness_indicators/examples/Fairness_Indicators_on_TF_Hub_Text_Embeddings.ipynb'
)
self.assertIsNone(errors, [])

Expand Down