1 Star 1 Fork 0

令1/DCGAN无监督数据生成

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
predict.py 519 Bytes
一键复制 编辑 原始数据 按行查看 历史
baozaoderenlei 提交于 2023-02-13 10:44 . first commit
#-------------------------------------#
# 运行predict.py可以生成图片
# 生成1x1的图片和5x5的图片
#-------------------------------------#
from dcgan import DCGAN
if __name__ == "__main__":
# save_path_5x5 = "results/predict_out/predict_5x5_results.png"
save_path_1x1 = "results/predict_out/predict_1x1_results.png"
dcgan = DCGAN()
while True:
img = input('Just Click Enter~')
# dcgan.generate_5x5_image(save_path_5x5)
dcgan.generate_1x1_image(save_path_1x1)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhou-xuanling/dcgan-unsupervised-data.git
[email protected]:zhou-xuanling/dcgan-unsupervised-data.git
zhou-xuanling
dcgan-unsupervised-data
DCGAN无监督数据生成
master

搜索帮助