Skip to content
Snippets Groups Projects
Commit 420d8b89 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

fix test

parent 115f85e4
No related branches found
No related tags found
No related merge requests found
......@@ -179,6 +179,7 @@ class MeasurementCollection(object):
assert len(self.df) > 0
dataset = self.to_dataset(include_ms=False)
assert len(dataset) > 0
imputer = imputer_from_name(impute_method, **imputer_args)
result_df = dataset.impute_missing_values(
imputation_method=imputer,
......
......@@ -99,8 +99,8 @@ def test_train_command():
dropout_probability=[.25],
n_training_epochs=[10],
imputer_args=[{"n_burn_in": 2, "n_imputations": 10}],
impute_min_observations_per_peptide=[5],
impute_min_observations_per_allele=[2000], # limit num alleles
impute_min_observations_per_peptide=[1],
impute_min_observations_per_allele=[1],
)
print("Model selection will be over %d models" % len(models))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment