目录
目录README.md

CGAN_jittor

简述

使用jittor实现CGAN,完成手写数字识别,最后生成自己电话号码的手写数字生成。

该项目可以使用于偷歌平台的竞赛的热身部分。

如何安装项目

安装jittor

环境

我是用的是anaconda + jupyternote book + jittor 我们创建一个新的anaconda环境,需要python的版本为3.8以上 windows操作系统,有cuda和gpu

conda create --name jittor python=3.8

接着安装jittor

jittor安装需要的网站为https://cg.cs.tsinghua.edu.cn/jittor/download/ 环境为

具体指令如下

python --version
python -m pip install jittor
python -m jittor.test.test_core
python -m jittor.test.test_example
python -m jittor.test.test_cudnn_op

安装完成之后下载jupyternotebook

pip install jupyter notebook 

注意这个时候还需要安装jupyter的kernel


python -m ipykernel install --user --name "jittor"  --display-name "jittor"

然后

jupyter notebook

进入notebook打开文件即可

如何创建本地仓库

git init
git add .
git remote rm origin
git remote add origin 
git remote add origin https://gitlink.org.cn/NKUchenyang/CGAN_jittor.git
git branch --set-upstream-to=origin/master

阅读文档

jittor官方手册 https://cg.cs.tsinghua.edu.cn/jittor/assets/docs/_modules/jittor/nn.html#Sigmoid

jittor学习资料 https://cg.cs.tsinghua.edu.cn/jittor/tutorial/

头歌实验平台 https://www.educoder.net/competitions/index/Jittor-3

关于

A Jittor implementation of Conditional GAN (CGAN).

234.0 KB
邀请码