Assignments Object

A mapping from parameter names to values. Assignments are represented as a JSON object, with the keys being parameter names, and the values being the corresponding values. This object behaves like a dictionary or mapping in most programming languages. Fields can be accessed using standard notation, such as obj['key'] in Python or obj.get('key') in Java.

Example

{
  "degree": 2,
  "gamma": 3.6,
  "kernel":"rbf"
}

Last updated