Skip to main content

A simple framework for unsupervised domain adaptation

Project description

FastDA

Introduction

FastDA is a simple framework for domain adaptation training.

It relies on MMCV via borrowing a lot of useful tools and mechanisms (e.g., Config, Registry, Hook). MMCV acts as a foundational library for computer vision research and supports many projects such as MMClassification, MMSegmentation, MMDetection.

We hope FastDA can also support domain adaptation training for different research areas.

Design idea

To make FastDA more suitable for domain adaptation, we first review the differences between traditional supervised training and domain adaptation training.

Training in mmcls/mmseg/mmdet Training in domain adaptation
Dataset single train dataset multiple train datasets
Model single model with single optimizer multiple models (e.g., base model and domain classifier)
sometimes different models has different optimizer parameters
Optimizer single loss (summation of all losses)
call loss.backward() once in each iteration
multiple loss.backward() for calculating gradients of
different models

It can be seen that the training process in domain adaptation are more complicated.

1. Datasets and Models

For dataset and model which are the basic parts for training, we define a set of new rules when writing dataset and model configs. By parsing the dataset config, we can get multiples training datasets. By parsing the model config, we can get a ModuleDict where the key is an user defined name and the value contains a instantiated model and its optimizer and learning rate scheduler.

2. Trainer and Validator

For the training and testing process, MMCV use the Runner class to control them. Two kinds of runners are provided, namely EpochBasedRunner and IterBasedRunner . The latter one is more natural for domain adaptation training since the number of samples in the source and target datasets are always different and it is hard to define an epoch. Actually, most methods report their implementation details based on iterations but not epochs.

Instead of directly using IterBasedRunner where the whole training process are wrapped in a single top-level model's train_step function, we put interaction among different models in a Trainer. It can be regarded as a minimum implementation of basic running process, which can take care of text logging, tensorboard logging, checkpoint saving, resume training, scheduler step etc. This is achieved by registering predefined hooks to trainer.

Besides Trainer, we also introduce Validator to control the validation (testing) process. There is not default hook for validator. When building your own project, you should create a task-specific evaluation hook and register it to validator.

Note: For a more concise and easy implementation, we impose some restrictions as follows:

  • We only consider training and testing based on GPU device.
  • Use DistributedDataParallel instead of original model or DataParallel. More specifically, we use MMDistributedDataParallel in mmcv which is more consistent with the DataContainer.
  • In the BaseTrainer class, we do not impose operations of optimizer such as optimizer.zero_grad() and optimizer.step(). You can either register OptimizerHook in your trainer's init function or manipulate it yourself.

Installation

  1. Prepare environment: Install pytorch and mmcv .
pip3 install torch
pip3 install mmcv

Note: Since MMCV requires Python 3.6+, FastDA also maintains this requirement.

  1. Install FastDA
pip3 install fastda

Train procedure

img

Build your own project

License

This project is released under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastda-0.0.18.tar.gz (21.0 kB view details)

Uploaded Source

Built Distribution

fastda-0.0.18-py3-none-any.whl (27.5 kB view details)

Uploaded Python 3

File details

Details for the file fastda-0.0.18.tar.gz.

File metadata

  • Download URL: fastda-0.0.18.tar.gz
  • Upload date:
  • Size: 21.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.8.1 requests/2.24.0 setuptools/59.4.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.9

File hashes

Hashes for fastda-0.0.18.tar.gz
Algorithm Hash digest
SHA256 96ba01ad4bb986a4786aa63681fc1de8d9a670d84de80e8979529c52f165c531
MD5 243e2fdaa9c745612df448a416a5767b
BLAKE2b-256 19dc6f73c7454e7afde09af1af69d4aec5737ea3d8294458770e80114df97ec0

See more details on using hashes here.

File details

Details for the file fastda-0.0.18-py3-none-any.whl.

File metadata

  • Download URL: fastda-0.0.18-py3-none-any.whl
  • Upload date:
  • Size: 27.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.8.1 requests/2.24.0 setuptools/59.4.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.9

File hashes

Hashes for fastda-0.0.18-py3-none-any.whl
Algorithm Hash digest
SHA256 4a402a73258f869a4ee1c7af2e3928c70460c161418b210741cda67230765541
MD5 c72e4ce5536d063b06c136055b14cf6b
BLAKE2b-256 3c1591320c3156c07616f123169ca6b39ee15d60bc3b75e4fc5d5df937317b90

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page