modelPanels top-level property

List<Map<String, dynamic>> modelPanels
final

Implementation

final List<Map<String, dynamic>> modelPanels = [
  {
    'title': 'Overview',
    'widget': const ModelPanel(),
  },
  {
    'title': 'Cluster',
    'widget': const ClusterPanel(),
  },
  {
    'title': 'Associations',
    'widget': const AssociationPanel(),
  },
  {
    'title': 'Tree',
    'widget': const TreePanel(),
  },
  {
    'title': 'Forest',
    'widget': const ForestPanel(),
  },
  {
    'title': 'Boost',
    'widget': const BoostPanel(),
  },
  {
    'title': 'SVM',
    'widget': const SvmPanel(),
  },
  {
    'title': 'Linear',
    'widget': const LinearPanel(),
  },
  {
    'title': 'Neural',
    'widget': const NeuralPanel(),
  },
  {
    'title': 'Word Cloud',
    'widget': const WordCloudPanel(),
  },
];