- Three version of SimpNet: Python, C++, HLSL
- Python + Keras version is the high level overview of the network structure, also does the offline training.
- C++ + OpenCV version is a low level version to help me convert the network into HLSL.
- HLSL version is the one used in-game in VRChat.
- Four pre-trained networks included: Fruits, Age Classification, Hololive VTubers, and VRC Devs.
- VRC SDK 2 setup in a Unity project
- VRChat layers must be setup already
- Post Processing V2 (Not needed, but you do need to remove the missing scripts)
- Import the SimpNet.unitypackage in Releases
- In Prefabs folder, put SimpNetAvatarPrefab.prefab on your avatar
- Unpack the prefab and put HandCamera on your hands
- I suggest having them off by default
- Clone the repository
- Open the Unity project
- Import VRCSDK2
- Remove any missing scripts (Post Processing V2)
OR
- Open a new Unity project
- Import VRCSDK2
- Import the SimpNet.unitypackage in Releases
- Remove any missing scripts (Post Processing V2)
I will be converting everything to Udon at some point.
If you wish to run the Python code, here's what you need.
- Anaconda 1.19.12
- Python 3.7
- TensorFlow 1.14.0
- Keras 2.3.1
I suggest following a guide on Keras + Anaconda installations like this one https://inmachineswetrust.com/posts/deep-learning-setup/
If you wish to run the C++ code.
You can follow a guide on OpenCV + Visual Studio here https://www.deciphertechnic.com/install-opencv-with-visual-studio/