728x90
반응형
[Unity] |
Package Manager - Ml-agents 다운 |
[Python] |
Version 3.8.1 |
[cmd ] | |
cd [프로젝트 경로] | cd C:\Users\Dev-park\Desktop\MLAgent_Test |
pytorch 다운(옵션) | //https://pytorch.org/get-started/previous-versions/ pytorch 버전 참고 pip install torch==1.7.1+cu110 torchvision==0.8.2+cu110 torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html |
ml-agent 다운 | python -m pip install mlagents==0.20.0 //or python -m pip install mlagents==0.18.0 |
|
python -m venv [가상 환경 이름] python -m venv agentTrain |
|
cd [가상 환경 이름]/scripts cd agentTrain/sciprts cd [프로젝트 경로]/[가상 환경 이름]/scripts cd C:\Users\Dev-park\Desktop\MLAgent_Test/agentTrain/scripts |
실행 방법
일반 실행 | mlagents-learn |
덮어 쓰기 | mlagents-learn --force |
이어 하기 | mlagents-learn --resume |
학습된 브레인 경로 | [가상 환경 이름]/scripts/results/ppo cagentTrain/sciprts/results/ppo [학습명].nn <- Agent에 부착한 Behavior Parameters에 Behavior Name이 이름 |
728x90
반응형
'Unity' 카테고리의 다른 글
[Unity] Some objects were not cleaned up when closing the scene. (Did you spawn new GameObjects from OnDestroy?)The following scene GameObjects were found 해결법 (1) | 2022.01.03 |
---|---|
[Unity] C# 중복 실행 방지 코드 (0) | 2021.06.10 |
[Unity] Unity Window Build 파일 SetFocus()/SetForeGround()하기 (1) | 2021.06.08 |
[Unity] AR Foundation 물건 배치 (0) | 2021.05.09 |
[Unity] StreamWritter 덮어쓰기/이어쓰기 기록 (0) | 2021.03.24 |