Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Integration of Drag-and-Drop Functionality for Dropout Nodes #34

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Revert "final commit"
This reverts commit 894497c.
  • Loading branch information
anudeeps0306 committed Mar 3, 2024
commit 597e8cb5704ec17e9d7128a6fa27afcc3184c2a8
17 changes: 0 additions & 17 deletions tensormap-client/src/components/PropertiesBar/PropertiesBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,23 +88,6 @@ 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