Update cgan.py
suggest
select
create
accounts.UsernameGeneration.cachedUsernames
accounts.UsernameGeneration.cacheExpirationHours
accounts.UsernameGeneration.numberOfSuggestions
accounts.UsernameGeneration.suggestedUsernamesTimeout
accounts.UsernameGeneration.patterns
patterns
apis.GoogleAPIs.domain
apis.GoogleAPIs.authUser
apis.GoogleAPIs.keyPath
apis.GoogleAPIs.serviceAccountEmail
apis.GoogleAPIs.appName
db.h2.name
db.h2.path
security.ssl.useSSL
security.ssl.keyStorePath
security.ssl.keyStorePassword
security.ssl.keyManagerPassword
anomaly_details_*.csv
anomaly_details_*.json
anomaly_summary_*.txt
make test
gitlink-cli
基于Jittor框架实现CGAN。CGAN的核心思路是将噪声与标签一起投入生成器,将真实图片与标签一起投入判别器,从而使生成器可以生成指定类别的图片。由于MLP与CNN都可以对图像信息进行提取,所以分别基于二者实现CGAN(基于CNN实现的CGAN也可以看作是DCGAN的变种)。实现的两种模型分别在MNIST与CIFAR10上进行训练和测试。
python 3.10.4
安装Jittor
# 检查python版本大于等于3.8 python --version conda install pywin32 python -m pip install jittor python -m jittor.test.test_core python -m jittor.test.test_example python -m jittor.test.test_cudnn_op
Copyright © 2022 Yiruuu.
A Jittor implementation of Conditional GAN (CGAN).
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802047560号
A Jittor implementation of Conditional GAN (CGAN)
suggestmethodsuggestselectmethodselectcreatemethodcreateaccounts.UsernameGeneration.cachedUsernamesaccounts.UsernameGeneration.cacheExpirationHoursaccounts.UsernameGeneration.numberOfSuggestionsaccounts.UsernameGeneration.suggestedUsernamesTimeoutaccounts.UsernameGeneration.patternspatternsexampleapis.GoogleAPIs.domainapis.GoogleAPIs.authUserapis.GoogleAPIs.keyPathapis.GoogleAPIs.serviceAccountEmailapis.GoogleAPIs.appNamedb.h2.namedb.h2.pathsecurity.ssl.useSSLsecurity.ssl.keyStorePathsecurity.ssl.keyStorePasswordsecurity.ssl.keyManagerPasswordanomaly_details_*.csv)anomaly_details_*.json)anomaly_summary_*.txt)make test进行测试gitlink-clireports a missing binary?🌈 概述
基于Jittor框架实现CGAN。CGAN的核心思路是将噪声与标签一起投入生成器,将真实图片与标签一起投入判别器,从而使生成器可以生成指定类别的图片。由于MLP与CNN都可以对图像信息进行提取,所以分别基于二者实现CGAN(基于CNN实现的CGAN也可以看作是DCGAN的变种)。实现的两种模型分别在MNIST与CIFAR10上进行训练和测试。
🔧 环境配置
python 3.10.4
安装Jittor
🔗 参考
Copyright © 2022 Yiruuu.