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

Make tests more modular. split data prep from analysis. #67

Open
aiqc opened this issue Apr 15, 2021 · 0 comments
Open

Make tests more modular. split data prep from analysis. #67

aiqc opened this issue Apr 15, 2021 · 0 comments
Labels
good first issue Good for newcomers

Comments

@aiqc
Copy link
Owner

aiqc commented Apr 15, 2021

Difficulty: ★☆☆☆☆

Background

tests.py has tests for each:

  • data type (tabular, image)
  • analysis type (binary classify, multi label classify, regression)
  • library (pytorch, keras)

The make_test_batch_* function runs all of the low level api calls needed to prepare data to test that type of analysis.

Problem

When we add tensorflow, there will be 3 different libraries all making duplicate data preparation steps for make_test_batch_*

Solution

Make a functions that prepare low level api objects for:

  • tabular classify binary
  • tabular classify multi
  • tabular classify regression
  • image classify binary

So that they can be used by either keras, pytorch, or tensorflow

@aiqc aiqc self-assigned this Apr 15, 2021
@aiqc aiqc added the good first issue Good for newcomers label Apr 15, 2021
@aiqc aiqc removed their assignment Apr 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant