KaiyangZhou
Dassl.pytorch
Python

A PyTorch toolbox for domain generalization, domain adaptation and semi-supervised learning.

Last updated Jul 6, 2026
1.4k
Stars
196
Forks
29
Issues
0
Stars/day
Attention Score
74
Language breakdown
Python 99.8%
Shell 0.2%
โ–ธ Files click to expand
README

Dassl

Introduction

Dassl is a PyTorch toolbox initially developed for our project Domain Adaptive Ensemble Learning (DAEL) to support research in domain adaptation and generalization---since in DAEL we study how to unify these two problems in a single learning framework. Given that domain adaptation is closely related to semi-supervised learning---both study how to exploit unlabeled data---we also incorporate components that support research for the latter.

Why the name "Dassl"? Dassl combines the initials of domain adaptation (DA) and semi-supervised learning (SSL), which sounds natural and informative.

Dassl has a modular design and unified interfaces, allowing fast prototyping and experimentation of new DA/DG/SSL methods. With Dassl, a new method can be implemented with only a few lines of code. Don't believe? Take a look at the engine folder, which contains the implementations of many existing methods (then you will come back and star this repo). :-)

Basically, Dassl is perfect for doing research in the following areas:

  • Domain adaptation
  • Domain generalization
  • Semi-supervised learning
BUT, thanks to the neat design, Dassl can also be used as a codebase to develop any deep learning projects, like this. :-)

A drawback of Dassl is that it doesn't (yet? hmm) support distributed multi-GPU training (Dassl uses DataParallel to wrap a model, which is less efficient than DistributedDataParallel).

We don't provide detailed documentations for Dassl, unlike another project of ours. This is because Dassl is developed for research purpose and as a researcher, we think it's important to be able to read source code and we highly encourage you to do so---definitely not because we are lazy. :-)

What's new

More
  • [Jun 2022] v0.6.0: Make cfg.TRAINER.METHOD_NAME consistent with the method class name.
  • [Jun 2022] A new domain adaptation method CDAC (CVPR'21) is added by Shreejal Trivedi. See here for more details.
  • [Jun 2022] Adds three datasets from the WILDS benchmark: iWildCam, FMoW and Camelyon17. See here for more details.
  • [May 2022] A new domain generalization method DDG developed by Zhishu Sun and to appear at IJCAI'22 is added to this repo. See here for more details.
  • [Mar 2022] A new domain generalization method EFDM developed by Yabin Zhang (PolyU) and to appear at CVPR'22 is added to this repo. See here for more details.
  • [Feb 2022] In case you don't know, a class in the painting domain of DomainNet (the official splits) only has test images (no training images), which could affect performance. See section 4.a in our paper for more details.
  • [Oct 2021] v0.5.0: Important changes made to transforms.py. 1) centercrop becomes a default transform in testing (applied after resizing the smaller edge to a certain size to keep the image aspect ratio). 2) For training, Resize(cfg.INPUT.SIZE) is deactivated when randomcrop or randomresizedcrop is used. These changes won't make any difference to the training transforms used in existing config files, nor to the testing transforms unless the raw images are not squared (the only difference is that now the image aspect ratio is respected).
  • [Oct 2021] v0.4.3: Copy the attributes in self.dm (data manager) to SimpleTrainer and make self.dm optional, which means from now on, you can build data loaders from any source you like rather than being forced to use DataManager.
  • [Sep 2021] v0.4.2: An important update is to set droplast=istrain and len(datasource)>=batchsize when constructing a data loader to avoid 0-length.

Overview

Dassl has implemented the following methods:

  • Single-source domain adaptation
- Cross Domain Adaptive Clustering for Semi Supervised Domain Adaptation (CVPR'21) [dassl/engine/da/cdac.py] - Semi-supervised Domain Adaptation via Minimax Entropy (ICCV'19) [dassl/engine/da/mme.py] - Maximum Classifier Discrepancy for Unsupervised Domain Adaptation (CVPR'18) [dassl/engine/da/mcd.py] - Self-ensembling for visual domain adaptation (ICLR'18) [dassl/engine/da/selfensembling.py] - Revisiting Batch Normalization For Practical Domain Adaptation (ICLR-W'17) [dassl/engine/da/adabn.py] - Adversarial Discriminative Domain Adaptation (CVPR'17) [dassl/engine/da/adda.py] - Domain-Adversarial Training of Neural Networks (JMLR'16) [dassl/engine/da/dann.py]
  • Multi-source domain adaptation
- Domain Aadaptive Ensemble Learning [dassl/engine/da/dael.py] - Moment Matching for Multi-Source Domain Adaptation (ICCV'19) [dassl/engine/da/m3sda.py]
  • Domain generalization
- Dynamic Domain Generalization (IJCAI'22) [dassl/modeling/backbone/resnetdynamic.py] [dassl/engine/dg/domain_mix.py] - Exact Feature Distribution Matching for Arbitrary Style Transfer and Domain Generalization (CVPR'22) [dassl/modeling/ops/efdmix.py] - Domain Generalization with MixStyle (ICLR'21) [dassl/modeling/ops/mixstyle.py] - Deep Domain-Adversarial Image Generation for Domain Generalisation (AAAI'20) [dassl/engine/dg/ddaig.py] - Generalizing Across Domains via Cross-Gradient Training (ICLR'18) [dassl/engine/dg/crossgrad.py]
  • Semi-supervised learning
- FixMatch: Simplifying Semi-Supervised Learning with Consistency and Confidence [dassl/engine/ssl/fixmatch.py] - MixMatch: A Holistic Approach to Semi-Supervised Learning (NeurIPS'19) [dassl/engine/ssl/mixmatch.py] - Mean teachers are better role models: Weight-averaged consistency targets improve semi-supervised deep learning results (NeurIPS'17) [dassl/engine/ssl/meanteacher.py] - Semi-supervised Learning by Entropy Minimization (NeurIPS'04) [dassl/engine/ssl/entmin.py]

Feel free to make a PR to add your methods here to make it easier for others to benchmark!

Dassl supports the following datasets:

  • Domain adaptation
- Office-31 - Office-Home - VisDA17 - CIFAR10-STL10 - Digit-5 - DomainNet - miniDomainNet
  • Domain generalization
- PACS - VLCS - Office-Home - Digits-DG - Digit-Single - CIFAR-10-C - CIFAR-100-C - iWildCam-WILDS - Camelyon17-WILDS - FMoW-WILDS
  • Semi-supervised learning
- CIFAR10/100 - SVHN - STL10

Get started

Installation

Make sure conda is installed properly.

# Clone this repo
git clone https://github.com/KaiyangZhou/Dassl.pytorch.git
cd Dassl.pytorch/

Create a conda environment

conda create -y -n dassl python=3.8

Activate the environment

conda activate dassl

Install torch (requires version >= 1.8.1) and torchvision

Please refer to https://pytorch.org/ if you need a different cuda version

conda install pytorch torchvision cudatoolkit=10.2 -c pytorch

Install dependencies

pip install -r requirements.txt

Install this library (no need to re-build if the source code is modified)

python setup.py develop

Follow the instructions in DATASETS.md to preprocess the datasets.

Training

The main interface is implemented in tools/train.py, which basically does

  • initialize the config with cfg = setup_cfg(args) where args contains the command-line input (see tools/train.py for the list of input arguments);
  • instantiate a trainer with build_trainer(cfg) which loads the dataset and builds a deep neural network model;
  • call trainer.train() for training and evaluating the model.
Below we provide an example for training a source-only baseline on the popular domain adaptation dataset, Office-31,
CUDAVISIBLEDEVICES=0 python tools/train.py \
--root $DATA \
--trainer SourceOnly \
--source-domains amazon \
--target-domains webcam \
--dataset-config-file configs/datasets/da/office31.yaml \
--config-file configs/trainers/da/source_only/office31.yaml \
--output-dir output/sourceonlyoffice31

$DATA denotes the location where datasets are installed. --dataset-config-file loads the common setting for the dataset (Office-31 in this case) such as image size and model architecture. --config-file loads the algorithm-specific setting such as hyper-parameters and optimization parameters.

To use multiple sources, namely the multi-source domain adaptation task, one just needs to add more sources to --source-domains. For instance, to train a source-only baseline on miniDomainNet, one can do

CUDAVISIBLEDEVICES=0 python tools/train.py \
--root $DATA \
--trainer SourceOnly \
--source-domains clipart painting real \
--target-domains sketch \
--dataset-config-file configs/datasets/da/mini_domainnet.yaml \
--config-file configs/trainers/da/sourceonly/minidomainnet.yaml \
--output-dir output/sourceonlyminidn

After the training finishes, the model weights will be saved under the specified output directory, along with a log file and a tensorboard file for visualization.

To print out the results saved in the log file (so you do not need to exhaustively go through all log files and calculate the mean/std by yourself), you can use tools/parsetestres.py. The instruction can be found in the code.

For other trainers such as MCD, you can set --trainer MCD while keeping the config file unchanged, i.e. using the same training parameters as SourceOnly (in the simplest case). To modify the hyper-parameters in MCD, like NSTEPF (number of steps to update the feature extractor), you can append TRAINER.MCD.NSTEPF 4 to the existing input arguments (otherwise the default value will be used). Alternatively, you can create a new .yaml config file to store your custom setting. See here for a complete list of algorithm-specific hyper-parameters.

Test

Model testing can be done by using --eval-only, which asks the code to run trainer.test(). You also need to provide the trained model and specify which model file (i.e. saved at which epoch) to use. For example, to use model.pth.tar-20 saved at output/sourceonlyoffice31/model, you can do
CUDAVISIBLEDEVICES=0 python tools/train.py \
--root $DATA \
--trainer SourceOnly \
--source-domains amazon \
--target-domains webcam \
--dataset-config-file configs/datasets/da/office31.yaml \
--config-file configs/trainers/da/source_only/office31.yaml \
--output-dir output/sourceonlyoffice31_test \
--eval-only \
--model-dir output/sourceonlyoffice31 \
--load-epoch 20

Note that --model-dir takes as input the directory path which was specified in --output-dir in the training stage.

Write a new trainer

A good practice is to go through dassl/engine/trainer.py to get familar with the base trainer classes, which provide generic functions and training loops. To write a trainer class for domain adaptation or semi-supervised learning, the new class can subclass TrainerXU. For domain generalization, the new class can subclass TrainerX. In particular, TrainerXU and TrainerX mainly differ in whether using a data loader for unlabeled data. With the base classes, a new trainer may only need to implement the forwardbackward() method, which performs loss computation and model update. See dassl/enigne/da/sourceonly.py for example.

Add a new backbone/head/network

backbone corresponds to a convolutional neural network model which performs feature extraction. head (which is an optional module) is mounted on top of backbone for further processing, which can be, for example, a MLP. backbone and head are basic building blocks for constructing a SimpleNet() (see dassl/engine/trainer.py) which serves as the primary model for a task. network contains custom neural network models, such as an image generator.

To add a new module, namely a backbone/head/network, you need to first register the module using the corresponding registry, i.e. BACKBONEREGISTRY for backbone, HEADREGISTRY for head and NETWORKRESIGTRY for network. Note that for a new backbone, we require the model to subclass Backbone as defined in dassl/modeling/backbone/backbone.py and specify the self.out_features attribute.

We provide an example below for how to add a new backbone.

from dassl.modeling import Backbone, BACKBONE_REGISTRY

class MyBackbone(Backbone):

def init(self): super().init() # Create layers self.conv = ...

self.outfeatures = 2048

def forward(self, x): # Extract and return features

@BACKBONE_REGISTRY.register() def my_backbone(**kwargs): return MyBackbone()

Then, you can set MODEL.BACKBONE.NAME to my_backbone to use your own architecture. For more details, please refer to the source code in dassl/modeling.

Add a dataset

An example code structure is shown below. Make sure you subclass DatasetBase and register the dataset with @DATASETREGISTRY.register(). All you need is to load trainx, trainu (optional), val (optional) and test, among which trainu and val could be None or simply ignored. Each of these variables contains a list of Datum objects. A Datum object (implemented here) contains information for a single image, like impath (string) and label (int).
from dassl.data.datasets import DATASET_REGISTRY, Datum, DatasetBase

@DATASET_REGISTRY.register() class NewDataset(DatasetBase):

dataset_dir = ''

def init(self, cfg): train_x = ... train_u = ... # optional, can be None val = ... # optional, can be None test = ...

super().init(trainx=trainx, trainu=trainu, val=val, test=test)

We suggest you take a look at the datasets code in some projects like this, which is built on top of Dassl.

Relevant Research

We would like to share here our research relevant to Dassl.

Citation

If you find this code useful to your research, please give credit to the following paper

@article{zhou2022domain,
  title={Domain generalization: A survey},
  author={Zhou, Kaiyang and Liu, Ziwei and Qiao, Yu and Xiang, Tao and Loy, Chen Change},
  journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
  year={2022},
  publisher={IEEE}
}

@article{zhou2021domain, title={Domain adaptive ensemble learning}, author={Zhou, Kaiyang and Yang, Yongxin and Qiao, Yu and Xiang, Tao}, journal={IEEE Transactions on Image Processing}, volume={30}, pages={8008--8018}, year={2021}, publisher={IEEE} }

ยฉ 2026 GitRepoTrend ยท KaiyangZhou/Dassl.pytorch ยท Updated daily from GitHub