- 전체
- Sample DB
- database modeling
- [표준 SQL] Standard SQL
- G-SQL
- 10-Min
- ORACLE
- MS SQLserver
- MySQL
- SQLite
- postgreSQL
- 데이터아키텍처전문가 - 국가공인자격
- 데이터 분석 전문가 [ADP]
- [국가공인] SQL 개발자/전문가
- NoSQL
- hadoop
- hadoop eco system
- big data (빅데이터)
- stat(통계) R 언어
- XML DB & XQuery
- spark
- DataBase Tool
- 데이터분석 & 데이터사이언스
- Engineer Quality Management
- [기계학습] machine learning
- 데이터 수집 및 전처리
- 국가기술자격 빅데이터분석기사
- 암호화폐 (비트코인, cryptocurrency, bitcoin)
[기계학습] machine learning DCGAN in Tensorflow [적대적 신경망]
2020.06.07 00:23
DCGAN in Tensorflow [적대적 신경망]
DCGAN-tensorflow-master.zip
DCGAN in Tensorflow
Tensorflow implementation of Deep Convolutional Generative Adversarial Networks which is a stabilize Generative Adversarial Networks. The referenced torch code can be found here.
- Brandon Amos wrote an excellent blog post and image completion code based on this repo.
- To avoid the fast convergence of D (discriminator) network, G (generator) network is updated twice for each D network update, which differs from original paper.
Online Demo
Prerequisites
- Python 2.7 or Python 3.3+
- Tensorflow 0.12.1
- SciPy
- pillow
- (Optional) moviepy (for visualization)
- (Optional) Align&Cropped Images.zip : Large-scale CelebFaces Dataset
Usage
First, download dataset with:
$ python download.py mnist celebA
To train a model with downloaded dataset:
$ python main.py --dataset mnist --input_height=28 --output_height=28 --train
$ python main.py --dataset celebA --input_height=108 --train --crop
To test with an existing model:
$ python main.py --dataset mnist --input_height=28 --output_height=28
$ python main.py --dataset celebA --input_height=108 --crop
Or, you can use your own dataset (without central crop) by:
$ mkdir data/DATASET_NAME
... add images to data/DATASET_NAME ...
$ python main.py --dataset DATASET_NAME --train
$ python main.py --dataset DATASET_NAME
$ # example
$ python main.py --dataset=eyes --input_fname_pattern="*_cropped.png" --train
If your dataset is located in a different root directory:
$ python main.py --dataset DATASET_NAME --data_dir DATASET_ROOT_DIR --train
$ python main.py --dataset DATASET_NAME --data_dir DATASET_ROOT_DIR
$ # example
$ python main.py --dataset=eyes --data_dir ../datasets/ --input_fname_pattern="*_cropped.png" --train
Results
celebA
After 6th epoch:
After 10th epoch:
Asian face dataset
MNIST
MNIST codes are written by @PhoenixDai.
More results can be found here and here.
Training details
Details of the loss of Discriminator and Generator (with custom dataset not celebA).
Details of the histogram of true and fake result of discriminator (with custom dataset not celebA).
Related works
Author
Taehoon Kim / @carpedm20
[출처] https://github.com/carpedm20/DCGAN-tensorflow
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
댓글 0
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|
| 공지 | 오라클 기본 샘플 데이터베이스 | 졸리운_곰 | 2014.01.02 | 86305 |
| 공지 | [SQL컨셉] 서적 "SQL컨셉"의 샘플 데이타 베이스 SAMPLE DATABASE of ORACLE | 가을의 곰을... | 2013.02.10 | 78757 |
| 공지 | [G_SQL] Sample Database | 가을의 곰을... | 2012.05.20 | 95504 |
| 8 |
DBeaver 설치 및 실행 (Window10)
| 졸리운_곰 | 2020.05.26 | 1740 |
| 7 |
[Greenplum DB] 세계 최초 오픈소스 대용량 데이터 병렬 처리 데이터 분석 플랫폼, Greenplum Database (GPDB)
| 졸리운_곰 | 2020.05.12 | 2217 |
| 6 |
symmetricDS 간단 소개(매뉴얼 속독정리)
| 졸리운_곰 | 2019.02.25 | 1484 |
| 5 |
Sync Framework Tutorial
| 졸리운_곰 | 2017.05.05 | 1828 |
| 4 |
Database Synchronization with Microsoft Sync Framework
| 졸리운_곰 | 2017.05.05 | 10402 |
| 3 |
Microsoft Sync Framework
| 졸리운_곰 | 2017.05.05 | 1571 |
| 2 |
Microsoft Sync Framework (MSF)
| 졸리운_곰 | 2017.05.05 | 1474 |
| 1 |
쿼리박스(QueryBox), 사용이 편리한 무료 멀티 데이터베이스 쿼리 툴
| 졸리운_곰 | 2017.05.05 | 1781 |
















