All Projects → Mid-Push → Moving Semantic Transfer Network

Mid-Push / Moving Semantic Transfer Network

Tensorflow codes for ICML2018, Learning Semantic Representations for Unsupervised Domain Adaptation

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Moving Semantic Transfer Network

StudyAdversarials
Some of my experiments targeting adversarial instances
Stars: ✭ 12 (-87.23%)
Mutual labels:  adversarial-networks
Adversarial Examples Pytorch
Implementation of Papers on Adversarial Examples
Stars: ✭ 293 (+211.7%)
Mutual labels:  adversarial-networks
Delving Deep Into Gans
Generative Adversarial Networks (GANs) resources sorted by citations
Stars: ✭ 834 (+787.23%)
Mutual labels:  adversarial-networks
AdversarialAudioSeparation
Code accompanying the paper "Semi-supervised adversarial audio source separation applied to singing voice extraction"
Stars: ✭ 70 (-25.53%)
Mutual labels:  adversarial-networks
Satellite-Image-Forgery-Detection-and-Localization
No description or website provided.
Stars: ✭ 17 (-81.91%)
Mutual labels:  adversarial-networks
Adversarial Frcnn
A-Fast-RCNN (CVPR 2017)
Stars: ✭ 461 (+390.43%)
Mutual labels:  adversarial-networks
Adversarial-Semisupervised-Semantic-Segmentation
Pytorch Implementation of "Adversarial Learning For Semi-Supervised Semantic Segmentation" for ICLR 2018 Reproducibility Challenge
Stars: ✭ 151 (+60.64%)
Mutual labels:  adversarial-networks
Inverse rl
Adversarial Imitation Via Variational Inverse Reinforcement Learning
Stars: ✭ 79 (-15.96%)
Mutual labels:  adversarial-networks
adapt
Awesome Domain Adaptation Python Toolbox
Stars: ✭ 46 (-51.06%)
Mutual labels:  adversarial-networks
Adversarialnetspapers
Awesome paper list with code about generative adversarial nets
Stars: ✭ 6,219 (+6515.96%)
Mutual labels:  adversarial-networks
GAN-70-Lines-of-Julia
A Knet implementation of MLP GAN for MNIST data.
Stars: ✭ 52 (-44.68%)
Mutual labels:  adversarial-networks
PerceptualGAN
Pytorch implementation of Image Manipulation with Perceptual Discriminators paper
Stars: ✭ 119 (+26.6%)
Mutual labels:  adversarial-networks
All About The Gan
All About the GANs(Generative Adversarial Networks) - Summarized lists for GAN
Stars: ✭ 630 (+570.21%)
Mutual labels:  adversarial-networks
Adversarial-Examples-in-PyTorch
Pytorch code to generate adversarial examples on mnist and ImageNet data.
Stars: ✭ 112 (+19.15%)
Mutual labels:  adversarial-networks
Robust Adv Malware Detection
Code repository for the paper "Adversarial Deep Learning for Robust Detection of Binary Encoded Malware"
Stars: ✭ 63 (-32.98%)
Mutual labels:  adversarial-networks
dan
Demo code for the paper ''Distributional Adversarial Networks''
Stars: ✭ 18 (-80.85%)
Mutual labels:  adversarial-networks
Attentiongan
AttentionGAN for Unpaired Image-to-Image Translation & Multi-Domain Image-to-Image Translation
Stars: ✭ 341 (+262.77%)
Mutual labels:  adversarial-networks
Torchadver
A PyTorch Toolbox for creating adversarial examples that fool neural networks.
Stars: ✭ 88 (-6.38%)
Mutual labels:  adversarial-networks
Man
Multinomial Adversarial Networks for Multi-Domain Text Classification (NAACL 2018)
Stars: ✭ 72 (-23.4%)
Mutual labels:  adversarial-networks
Adversarial video generation
A TensorFlow Implementation of "Deep Multi-Scale Video Prediction Beyond Mean Square Error" by Mathieu, Couprie & LeCun.
Stars: ✭ 662 (+604.26%)
Mutual labels:  adversarial-networks

Moving Semantic Transfer Network (ICML2018)

Based on adversarial adaptation, we propose a Pseudo Centroid Alignment Objective to enforce Semantic Transfer. If you are limited to use a relative-small batch size (64 for 31-classification or 100 for 1000-classification), you might be interested in our Moving Centroid Alignment.

Welcome to check our paper.

Citation

If you find this useful for your research, we would be appreciated if you cite the following papers:

@inproceedings{xie2018learning,
  title={Learning Semantic Representations for Unsupervised Domain Adaptation},
  author={Xie, Shaoan and Zheng, Zibin and Chen, Liang and Chen, Chuan},
  booktitle={International Conference on Machine Learning},
  pages={5419--5428},
  year={2018}
}

Tips for your reproduction of DANN and our work MSTN.

My work is based on DANN. During my reimplementation of DANN, I noticed following problems worth attention for reproduing DANN and our work MSTN. Hope these could help you. :)

Data Preprocessing
  1. Scale image to 256x256.
  2. When training, source and target images would be "Random Cropping". When testing, target images would be "Center Cropping" (Caffe only uses crop command but the inner implemenattion actually random crop when training while center crop when testing).
Implementing Moving Centroid
  1. We can not just update the centroid by "moving_centroid=theta*moving_centroid+(1-theta)*current_centroid". This is just a update_op and need to be executed by specifying. (Look our code for more detail.)
  2. Using tensorboard to check whether centroids have been updated.

Contact

If you have any problem about this library, please create an Issue or send us an Email at:

Acknowledgement for the code

For digits dataset, the code is modified from Here. For real-world dataset, the code is based on Here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].