@webwriter/neural-network
Version:
Deep learning visualization for feed-forward networks with custom datasets, training and prediction.
25 lines (23 loc) • 691 B
text/typescript
import type { Settings } from '@/types/settings'
// The SettingsUtils class provides the static default app settings.
export class SettingsUtils {
static defaultSettings: Settings = {
mayImport: true,
showDefaultConfs: true,
mayExport: true,
allowDenseLayers: true,
mayAddAndRemoveLayers: true,
mayEditLayers: true,
maySelectDataOnInputLayer: true,
mayChangeNeurons: true,
mayChangeActivationFunction: true,
mayChangeLayerConnections: true,
maySelectDataSet: true,
mayManageDataSets: true,
showPlots: true,
mayEditHyperparameters: true,
mayEditBatchSize: true,
mayEditLearningRate: true,
mayEditDropoutRate: true,
}
}