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

Don't load abnormal image #2626

Open
hamac03 opened this issue Mar 24, 2025 · 1 comment
Open

Don't load abnormal image #2626

hamac03 opened this issue Mar 24, 2025 · 1 comment

Comments

@hamac03
Copy link

hamac03 commented Mar 24, 2025

When I use this command:

# Import the datamodule
from anomalib.data import Folder

# Create the datamodule
datamodule = 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 datamodule
datamodule.setup()

# Access the datasets
train_dataset = datamodule.train_data
val_dataset = datamodule.val_data
test_dataset = datamodule.test_data

# Access the dataloaders
train_dataloader = datamodule.train_dataloader()
val_dataloader = datamodule.val_dataloader()
test_dataloader = datamodule.test_dataloader()

# Print the number of samples in each dataset
len(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

@alexriedel1
Copy link
Contributor

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

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

2 participants