Notes on Installing Unity ML-Agents (Release 2)
I thought it would be fun to play with reinforcement learning via Unity ML-Agents. The official product landing page sends us to the ml-agents repository on GitHub. And just like every other repository, it's always a good idea to look over the README.md to understand their branch organization. Especially before we start cloning anything.
And indeed, the README includes a handy chart of releases. As of this writing there are eight releases listed plus main which is labeled as unstable. I'm glad I didn't blindly clone main! Of the eight stable releases, six are named "Release 13" to "Release 18" inclusive. The final two are named "Verified Package 1.0.7" and "Verified Package 1.0.8".
The "Verified" label is a guarantee of safety in the lifecycle of Unity packages. Therefore the most recent release with the highest guarantee of functionality is "Verified Package 1.0.8". In Unity's world, these verified packages are good enough for commercial production use. If our needs aren't quite that rigorous, we can use the builds labeled "Release." These numbers are explained in the ML-Agents versioning page, and it's something we can play with if we aren't shouldering the weight of commercial Unity production.
I think I'm fine to play with more recent "Release" builds, but I wanted to start with the most guarantee build to make sure I can at least get that working. Which meant cloning the build labeled "Verified Package 1.0.8" and that maps to "Release 2."
In order to open the Unity Project that is a part of this release, I wanted to get the version of Unity that exactly matched the version number in ProjectVersion.txt: 2018.4.17f1. If I tried to install Unity 2018 in Unity Hub, it offers me 2018.4.36f1 because that was the most recent supported version. In order to match version, I had to click the download archive link and look for 2018.4.17 under 2018 builds. (It was released February 11th, 2020.) Once found, I could click the "Unity Hub" button to prompt Unity Hub to install the build on my machine.
While Unity installed, I cloned the repository tagged release_2
and installed corresponding Python binaries. I encountered no problems following installation directions for this release, though there were slight modifications as I used Anaconda Individual to manage my Python virtual environments. I had the option of installing the locally cloned versions of the ml-agents-envs
and ml-agents
packages and I did so. I noticed that the installation had TensorFlow in CPU-only mode, but running without GPU acceleration is perfectly OK for a starting point.
Once Unity Editor 2018.4.17 was installed, I used it to open the Project directory of my cloned release_2
repository. It opened without errors. I proceeded to the Getting Started Guide for this release and verified I had basic functionality both running the pretrained 3D Balance Ball model and training a model of my own. The training was pretty quick, it took just under 8 minutes on the Core i5-7300HQ CPU of my Dell 7577 laptop plugged in to an AC power adapter.
Encouraged by this success, I proceeded to try Release 18 as well.