I moved the one_million_questions into QuantaTools/maths_test_questions.py . Couldn't add them to model_loss, due to circular import issues. (one_million_questions depends on functions in maths_test_questions, which in turn depends on functions in model_loss so...). Feels like it belongs with maths_test_questions anyway.
I renamed it as test_correctness_on_num_questions which accepts a variable number of questions but I default it to 1 million. (Just incase someone doesnt want to run the full 1 million.)
I checked the notebook can install and run the function.
model_loss
, due to circular import issues. (one_million_questions
depends on functions in maths_test_questions, which in turn depends on functions inmodel_loss
so...). Feels like it belongs withmaths_test_questions
anyway.test_correctness_on_num_questions
which accepts a variable number of questions but I default it to 1 million. (Just incase someone doesnt want to run the full 1 million.)