Register
Last updated
Last updated
In order to register model architectures for a game on the NRN Agents platform, we will need to define a few parameters:
modelType
: "neural-network"
for Feedforward Neural Network or "simple"
for Tabular Agent.
architectureId
: The unique identifier you want to use for your model architecture.
inputDim
: The number of features in the state space (i.e. the input dimensionality).
actions
: The structure of the action space. Each action "head" is responsible for a portion of the action space. Thus, we have to define the list of actions that each head is able to execute.
Through the Javascript SDK developers can register as follows:
For Unity games, we created a component in the library that admins can add to the inspector. To use the registration component, follow these instructions:
Select any game object in the scene
In the Inspector, click Add Component
and search for NrnAgents
then proceed to select Registration
Fill out all the appropriate parameters and then click the "Register" button
Below is a snapshot of what the registration component looks like in the Unity inspector.
Not yet implemented. The NRN team will handle registration for the time being.