You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement a method to run a preprocessing pipeline on a dataset.
Should basically be a convenience function for running pipeline on each individual image.
Pseudocode:
mydataset = pathml.datasets.PESO.download()
mypipeline = pathml.preprocessing.default_pipeline()
mypipeline.run(mydataset)
### should be equivalent to:
for wsi in mydataset:
mypipeline.run(wsi)
The text was updated successfully, but these errors were encountered:
Implement a method to run a preprocessing pipeline on a dataset.
Should basically be a convenience function for running pipeline on each individual image.
Pseudocode:
The text was updated successfully, but these errors were encountered: