From 894497ca69fdc4ece9ed2850a02829071de7f582 Mon Sep 17 00:00:00 2001 From: anudeeps0306 Date: Tue, 27 Feb 2024 16:27:30 +0530 Subject: [PATCH] final commit --- .../components/PropertiesBar/PropertiesBar.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tensormap-client/src/components/PropertiesBar/PropertiesBar.js b/tensormap-client/src/components/PropertiesBar/PropertiesBar.js index de22610..346f5c9 100644 --- a/tensormap-client/src/components/PropertiesBar/PropertiesBar.js +++ b/tensormap-client/src/components/PropertiesBar/PropertiesBar.js @@ -88,6 +88,23 @@ const PropertiesBar = ({ formState, setFormState }) => { })); }; + const optimizerOptions = [ + { key: 'opt_1', text: 'Adam', value: 'adam' }, + ]; + + const metricOptions = [ + { key: 'acc_1', text: 'Accuracy', value: 'accuracy' }, + ]; + + const problemTypeOptions = [ + { key: 'prob_type_1', text: 'Multi class classification [All values float]', value: 1 }, + ]; + + const activationOptions = [ + { key: 'act_1', text: 'ReLU', value: 'relu' }, + { key: 'act_2', text: 'Linear', value: 'linear' } + ]; + const fileFieldsList = (