Skip to content

Commit

Permalink
final commit
Browse files Browse the repository at this point in the history
  • Loading branch information
anudeeps0306 committed Feb 27, 2024
1 parent 6e342ef commit 894497c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tensormap-client/src/components/PropertiesBar/PropertiesBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = (
<Dropdown
style={{ marginTop: '2%' }}
Expand Down

0 comments on commit 894497c

Please sign in to comment.