SOM general dashboard

This visualisation is related to SOM algorithm.

Keys processingKeyword, customer, name, startTS, latestUpdateTS, status, processingContext, processingId, processingName, callingContext, editionContext, processingName, dataset, name, collection, project, id, and name are unchanged and follow the classic of mandatory payload, mandatory keys for this payload are :

  • visualisationKeyword : Its value is “GeneralDashboard”.
  • dataLocations : Dictionary where keys are named accordingly with data nature and values are the dataLocationIds.
  • hyperParameters : Dictionary with required hyperparameters.
    • maxIterations : Maximum number of SOM iterations.
    • width : SOM grid width.
    • length : SOM grid length.
    • tMin : Minimal temperature from which starts iterations.
    • tMax : Maximal temperature from which ends iterations.
    • numericalFeatureColumnNames : String JSON Array of column names containing numerical features from which learning vector will be made.

(visualisation_1_description_hyperparameters)=

Hyperparameters description.

JSON template

{
  "visualisationKeyword": "numerical_som_general_dashboard",
  "customer": "username",
  "name": "user defined name of the representation",
  "creationTS": 17267393322,
  "latestUpdateTS": 17267393344,
  "status": 1,
  "dataLocations": [
    {
      "role": "hardClustering",
      "dataLocationId": "62bc108b8c51f362811989c8"
    },
    {
      "role": "somModel",
      "dataLocationId": "62bc108b8c51f362811989c8"
    },
    {
      "role": "domainData",
      "dataLocationId": "62bc108b8c51f362811989c8"
    }
  ],
  "processingContext": {
    "processingName": "user define name, ex SOM",
    "editionContext": "user",
    "callingContext": "hephIA-solution",
    "view": {
      "id": "637ce534dd85c10875c4fe26",
      "name": "view_11-22-2022_15:05:24"
    },
    "dataset": {
      "name": "my_dataset",
      "collection": "datasets"
    },
    "project": {
      "id": 2,
      "name": "SOM"
    }
  },
  "hyperParameters": [
    {
      "hyperParamName": "maxIterations",
      "value": 10
    },
    {
      "hyperParamName": "width",
      "value": 10
    },
    {
      "hyperParamName": "length",
      "value": 10
    },
    {
      "hyperParamName": "tMin",
      "value": 0.8
    },
    {
      "hyperParamName": "tMax",
      "value": 12.2
    }
  ]
}