-
Notifications
You must be signed in to change notification settings - Fork 5
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
NullPointerException with GridSearch #4
Comments
I can bypass this bug selecting a block cleaning method. |
Hi, To test this I put the following code at the end of the WizardController.initialize() method: model.setErType(JedaiOptions.CLEAN_CLEAN_ER);
model.setEntityProfilesD1Type(JedaiOptions.SERIALIZED);
model.setEntityProfilesD2Type(JedaiOptions.SERIALIZED);
model.setGroundTruthType(JedaiOptions.SERIALIZED);
model.setEntityProfilesD1Parameters(FXCollections.observableArrayList(
new JPair<>("File Path", "YOUR_PATH_TO_JEDAI/JedAIToolkit/jedai-core/data/cleanCleanErDatasets/abtProfiles")
));
model.setEntityProfilesD2Parameters(FXCollections.observableArrayList(
new JPair<>("File Path", "YOUR_PATH_TO_JEDAI/JedAIToolkit/jedai-core/data/cleanCleanErDatasets/buyProfiles")
));
model.setGroundTruthParameters(FXCollections.observableArrayList(
new JPair<>("File Path", "YOUR_PATH_TO_JEDAI/JedAIToolkit/jedai-core/data/cleanCleanErDatasets/abtBuyIdDuplicates")
));
model.getBlockBuildingMethods().get(0).setEnabled(false);
model.getBlockBuildingMethods().get(2).setEnabled(true);
model.getBlockBuildingMethods().get(2).setConfigurationType(JedaiOptions.AUTOMATIC_CONFIG);
model.setComparisonCleaning(JedaiOptions.COMPARISON_PROPAGATION);
model.setComparisonCleaningConfigType(JedaiOptions.AUTOMATIC_CONFIG);
model.setEntityMatching(JedaiOptions.PROFILE_MATCHER);
model.setEntityMatchingConfigType(JedaiOptions.AUTOMATIC_CONFIG);
model.setEntityClusteringConfigType(JedaiOptions.AUTOMATIC_CONFIG);
model.setAutoConfigType(JedaiOptions.AUTOCONFIG_STEPBYSTEP);
model.setSearchType(JedaiOptions.AUTOCONFIG_GRIDSEARCH); Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It raises this exception:
Using AbtBuy Clean-Clean serialized dataset and the following configuration:
The text was updated successfully, but these errors were encountered: