程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python virtual environment creation

編輯:Python

Creating a virtual environment

Use the command to create a new virtual environment

conda create --name XX python=3.8 -y

Start this virtual environment

conda activate XX

Install the necessary tool kit

pip install torch torchvision
pip install matplotlib

Add the created virtual environment to jupyter notebook Of kernel in

conda install -c anaconda ipykernel
python -m ipykernel install --user --name=XX

start-up jupyter notebook

jupyter notebook

Fundamentals of deep learning

Tools :pytorch,torchvision,matplotlib
tensorflow and pytorch difference :
tensorflow Based on static graph , The calculation process / The calculation diagram is built first , Then input it into the calculation diagram .
pytorch Based on dynamic graph , That is to say pytorch Each forward calculation will reproduce and build a new calculation diagram , This feature makes pytorch More intuitive , The logic of writing code is closer python Its own style , Easy to debug .


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved