-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,43 @@ | ||
# MARTA-GAN | ||
This is the code for [MARTA GANs: Unsupervised Representation Learning for Remote Sensing Image Classification](http://ieeexplore.ieee.org/document/8059820/). An multiple-layer feature-matching generative adversarial networks (MARTA GANs) to learn a representation using only unlabeled data. | ||
|
||
|
||
|
||
## Prepare data | ||
|
||
Download and unzip dataset from [BaiDuYun](https://pan.baidu.com/s/1i5zQNdj) or [Google Drive](https://drive.google.com/open?id=0B1Evui8Soh85ZXM3cDNvbGdOamc). | ||
|
||
## Dependencies | ||
- tensorflow | ||
- tensorlayer | ||
- sklearn | ||
|
||
## Usage | ||
|
||
### Training GAN | ||
``` | ||
python train_marta_gan.py | ||
``` | ||
|
||
### Extract features | ||
``` | ||
python extract_feature.py | ||
``` | ||
|
||
### Training SVM | ||
|
||
``` | ||
python train_svm.py | ||
``` | ||
|
||
## Citation | ||
If you find this code useful for your research, please cite: | ||
``` | ||
@article{lin2017marta, | ||
title={MARTA GANs: Unsupervised Representation Learning for Remote Sensing Image Classification}, | ||
author={Lin, Daoyu and Fu, Kun and Wang, Yang and Xu, Guangluan and Sun, Xian}, | ||
journal={IEEE Geoscience and Remote Sensing Letters}, | ||
year={2017}, | ||
publisher={IEEE} | ||
} | ||
``` |