# DomainBed Mixup for ColoredMNIST This model was trained using the DomainBed framework with the following configuration: - Algorithm: Mixup - Dataset: ColoredMNIST - Test Environments: [0, 1] - Input Shape: (2, 28, 28) - Number of Classes: 2 - Number of Domains: 1 ## Usage ```python from transformers import AutoModel, AutoConfig # Load the model model = AutoModel.from_pretrained("liangshuxin/domainbed-mixup-coloredmnist-test0-1") # Get model config config = AutoConfig.from_pretrained("liangshuxin/domainbed-mixup-coloredmnist-test0-1") ```