1e0d25821a 更新 'Mindspore/denoising-diffusion/train.py'
JeffDing created CPU/GPU type debugging task onflowbuild
10 hours ago
JeffDing created CPU/GPU type debugging task d2l-oneflow
11 hours ago
JeffDing created CPU/GPU type debugging task d2l-oneflow
12 hours ago
JeffDing pushed to master at JeffDing/MyAscendCode
4 days ago
JeffDing created repository JeffDing/MyAscendCode
4 days ago
JeffDing commented on issue Datawhale/d2l#33
Pycharm社区版本无法显示动图Pycharm 社区版好像显示不了动图,专业版有设置地方。具体的方法搜索引擎能搜到不少,可以参考一下设置看看。 另外: 《动手学深度学习》课程代码建议使用jupyter notebook学习效果会好点 安装过程可以参考: https://zh-v2.d2l.ai/chapter_installation/index.html
4 days ago
JeffDing commented on issue Datawhale/d2l#34
安装pytorch时出现问题尝试下这个命令试试看能不能安装 ```bash pip install torch -i https://mirror.sjtu.edu.cn/pypi/web/simple ```
4 days ago
JeffDing commented on issue Datawhale/d2l#31
环境安装有疑问### 更换conda源 ```bash vim ~/.condarc ``` 内容如下: ``` default_channels: - https://mirror.sjtu.edu.cn/anaconda/pkgs/r - https://mirror.sjtu.edu.cn/anaconda/pkgs/main custom_channels: conda-forge: https://mirror.sjtu.edu.cn/anaconda/cloud/ pytorch: https://mirror.sjtu.edu.cn/anaconda/cloud/ channels: - defaults ``` ### 创建学习环境 ```bash conda create -n d2l python=3.9 ``` ### 激活环境 ```bash conda activate d2l ``` ### 变更pip源头 ```bash pip config set global.index-url https://mirror.sjtu.edu.cn/pypi/web/simple ``` ### 安装必要的包 **安装torch** ```bash pip install torch==1.12.0 pip install torchvision==0.13.0 ``` **安装d2l包** ```bash pip install d2l ``` ### 下载代码仓 ```bash git clone https://openi.pcl.ac.cn/Datawhale/d2l ``` 注:如果没有git工具安装命令如下 ```bash (sudo) apt install git #ubuntu系统 (sudo) yum install git #centos系统 ``` ### 安装jupyter lab 个人比较喜欢使用juypter lab进行时间,如果喜欢使用notebook的话可以不执行这一步 **安装** ```bash pip install jupyterlab ``` **设置密码** ```bash jupyter lab passwd ``` ### 启动juypterlab ```bash jupyter lab --ip 0.0.0.0 --allow-root ``` 至此环境准备工作全部完成
4 days ago
JeffDing commented on issue Datawhale/d2l#35
本地浏览器无法访问远程主机jupyter,8888端口无法映射问题1: 你试试看使用jupyter notebook --ip 0.0.0.0 --allow-root 启动juypter notebook试试看 问题2: 看下是不是虚拟机里防火墙设置有问题,或者没有安装sshd服务 安装sshd服务 ```bash sudo apt-get install openssh-server ``` 启动sshd服务 ```bash sudo net start sshd ``` 检查防火墙设置,关闭防火墙 ```bash sudo ufw disable ``` 检验方法 ```bash ssh localhost ```
4 days ago
JeffDing created CPU/GPU type debugging task d2l-datawhale
5 days ago
JeffDing created CPU/GPU type debugging task d2l-datawhale
5 days ago
JeffDing upload dataset cat_simple.zip
5 days ago