(참고 : https://webnautes.tistory.com/1639)
Developer.apple.com
conda create -n tensorflow-dev python=3.8
conda activate tensorflow-dev
conda install -c apple tensorflow-deps
python -m pip install tensorflow-macos
python -m pip install tensorflow-metal
import tensorflow as tf
tf.__version__
tf.config.list_physical_devices('GPU')
[PhysicalDevice(name='/physical_device:GPU:0', device_type='GPU']
라고 뜨면 사용 가능
(참고 : https://pytorch.org/get-started/locally/)
conda install pytorch torchvision torchaudio -c pytorch
`pip install torch
- 전체 자료 백업 완료
Tensorflow
강의 (10강)PyTorch
강의 (11강)