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

Null value for number_missing_values #20

Open
ArlindKadra opened this issue Feb 20, 2018 · 0 comments
Open

Null value for number_missing_values #20

ArlindKadra opened this issue Feb 20, 2018 · 0 comments

Comments

@ArlindKadra
Copy link
Member

ArlindKadra commented Feb 20, 2018

When using the data features, while passing through each feature, I found a null value for number_missing_values. The following code can replicate the problem:

OpenmlConnector connector = new OpenmlConnector("https://www.openml.org/", "9ed41f60b87fbe17054397936b96212d");
		Settings.CACHE_ALLOWED = false;
		DataFeature dataFeatures = connector.dataFeatures(2);
		for(Feature feature : dataFeatures.getFeatures()) {
			if(feature.getNumberOfMissingValues() != null && feature.getNumberOfMissingValues() instanceof Integer) {
				continue;
			} else {
				throw new IllegalArgumentException();
			}
		}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant