{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schema.rtemis.org/clustering/neuralgas/v1/schema.json",
  "title": "rtemis NeuralGasConfig",
  "description": "Neural Gas clustering. See setup_NeuralGas.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "k": {
      "type": "integer",
      "minimum": 1,
      "default": 3,
      "description": "Number of clusters."
    },
    "dist": {
      "type": "string",
      "enum": ["euclidean", "manhattan"],
      "default": "euclidean",
      "description": "Distance measure."
    }
  }
}
