NRN Agents Docs
  • Overview
    • Introduction
    • Installation & Setup
  • Admin
    • Overview
    • Model Architectures
    • Register
    • Unregister
  • Getting Started
    • Basic Integration
    • State Space
    • Action Space
    • Data Collection
    • Model Initialization
    • Inference
Powered by GitBook
On this page
  • Javascript
  • Unity
  • Unreal
Export as PDF
  1. Admin

Unregister

PreviousRegisterNextBasic Integration

Last updated 3 months ago

In the initial research phase of an NRN integration, it is very likely that we will test an architecture setup that does not work that well. As such, it is advised that game studios unregister their architecture to remove any unused architectures/clutter.

To unregister, admins only need to provide the architectureId as an input.

Developers can unregister their models in a no-code environment on our

Javascript

As mentioned in the register section, there is currently no GUI for registration, so admins will have to execute code as follows to unregister a model architecture:

const { Registry } = require('nrn-agents');

Registry.setApiKey("my-admin-api-key");
const registry = new Registry("my-game-id");

await registry.unregister("my-first-model)

Unity

To unregister, admins will need to add the "Registration" component as defined .

At the bottom of the component, admins will be able to enter the architectureId of the model architecture that they wish to remove.

Unreal

Not yet implemented. The NRN team will handle unregistering for the time being.

Unregistering active model architectures may break existing pipelines. Always ensure no current models are running on an architecture that you plan on unregistering.

dashboard
here