๐ ์บฃ์ค์บ: ๊ณ ์์ด ์์ธ๋ฅผ ํตํ ํต์ฆยท์ง๋ณ ์กฐ๊ธฐ ํ์ง ์ธ๊ณต์ง๋ฅ ๋ชจ๋ธ
- ๊ณ ์์ด์ ํน์ ์์ธ 4๊ฐ์ง(arch, lying, roll, sitdown) ์ด๋ฏธ์ง๋ฅผ ๋ถ์ํ์ฌ '์ง๋ณ ์์(Y)' vs '์์(N)'์ ๋ถ๋ฅ
- input : Cat Image Data(jpg)
- model : Mini-Xception, MobileNetV2, ResNet50, EfficientNetB0
- Anaconda PowerShell Prompt
- ๊ฐ์ํ๊ฒฝ์ด ์๋ ๊ฒฝ์ฐ ๋ค์ ๋ช ๋ น์ด๋ก ๊ฐ์ํ๊ฒฝ ๋ง๋ค๊ธฐ
conda create --name <ํ๊ฒฝ์ด๋ฆ> python=3.9
โฌ๏ธ e.g.
conda create --name aimedic python=3.9
- ๊ฐ์ํ๊ฒฝ ํ์ฑํ ๋ฐ ํ์ํ ๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ค์น
conda activate <ํ๊ฒฝ ์ด๋ฆ>
pip install -r .\requirements.txt
(๋ง์ฝ ๋ค์๊ณผ ๊ฐ์ ์ค๋ฅ ์ฝ๋๊ฐ ์ถ๋ ฅ๋์๋ค๋ฉด ํ์ํ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ์ง์ ์ค์น)
ERROR: Ignored the following versions that require a different python version: 0.28.0 Requires-Python >=3.7, <3.11; 1.21.2 Requires-Python >=3.7,<3.11; 1.21.3 Requires-Python >=3.7,<3.11; 1.21.4 Requires-Python >=3.7,<3.11; 1.21.5 Requires-Python >=3.7,<3.11; 1.21.6 Requires-Python >=3.7,<3.11
ERROR: Could not find a version that satisfies the requirement tensorflow-io-gcs-filesystem==0.37.1 (from versions: 0.29.0, 0.30.0, 0.31.0)
ERROR: No matching distribution found for tensorflow-io-gcs-filesystem==0.37.1
๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ค์น ๋ช ๋ น์ด
pip install <๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ด๋ฆ>
โฌ๏ธ e.g.
ModuleNotFoundError: No module named 'tensorflow'
--> pip install tensorflow
ModuleNotFoundError: No module named 'cv2'
--> pip install opencv-python
- ์ฝ๋ ์คํ
python main.py