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
# Import the datamodulefromanomalib.dataimportFolder# Create the datamoduledatamodule=Folder(
name="hazelnut_toy",
root="datasets/hazelnut_toy/hazelnut_toy",
normal_dir="good",
abnormal_dir="crack",
mask_dir="mask/crack",
normal_test_dir="../../../datasets/hazelnut_toy/hazelnut_toy/good",
train_batch_size=16,
eval_batch_size=16,
normal_split_ratio=0.0,
)
# Setup the datamoduledatamodule.setup()
# Access the datasetstrain_dataset=datamodule.train_dataval_dataset=datamodule.val_datatest_dataset=datamodule.test_data# Access the dataloaderstrain_dataloader=datamodule.train_dataloader()
val_dataloader=datamodule.val_dataloader()
test_dataloader=datamodule.test_dataloader()
# Print the number of samples in each datasetlen(train_dataset), len(val_dataset), len(test_dataset)
The result is:
34, 19, 20
This mean that it don't load any abnormal images from the crack dir into train_dataset.
Could you kindly explain that is the right Datasetloader or I'm wrong in some step.
Thank you,
Best regard,
Ha
The text was updated successfully, but these errors were encountered:
Anomaly detection is often seen as a unsupervised learning problem. The goal is to predict anomalies only from normal samples. Thats why anomalibs models dont need abnormal samples for training
When I use this command:
The result is:
This mean that it don't load any abnormal images from the crack dir into train_dataset.
Could you kindly explain that is the right Datasetloader or I'm wrong in some step.
Thank you,
Best regard,
Ha
The text was updated successfully, but these errors were encountered: