We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Which Algorithm GDAS: Searching for A Robust Neural Architecture in Four GPU Hours
Describe the Question In search_cells.py, there are two kinds of GDAS implementations:
self._ops[index](x) * weights[index]
weights[_ie] * edge(nodes[j]) if _ie == argmaxs else weights[_ie] for _ie, edge in enumerate(self.edges[node_str])
The text was updated successfully, but these errors were encountered:
To answer issue #119
8d0799d
Make a commitment to ablatively study this issue.
Sorry, something went wrong.
TODO:
Run python ./exps/NATS-algos/search-cell.py --dataset cifar10 --data_path $TORCH_HOME/cifar.python --algo gdas_v1 --rand_seed 777 and python ./exps/NATS-algos/search-cell.py --dataset cifar10 --data_path $TORCH_HOME/cifar.python --algo gdas --rand_seed 777 to see the performance difference.
python ./exps/NATS-algos/search-cell.py --dataset cifar10 --data_path $TORCH_HOME/cifar.python --algo gdas_v1 --rand_seed 777
python ./exps/NATS-algos/search-cell.py --dataset cifar10 --data_path $TORCH_HOME/cifar.python --algo gdas --rand_seed 777
May I ask the author if you have conducted experimental comparisons between these two implementations? Will they bring significant differences?
D-X-Y
No branches or pull requests
Which Algorithm
GDAS: Searching for A Robust Neural Architecture in Four GPU Hours
Describe the Question
In search_cells.py, there are two kinds of GDAS implementations:
self._ops[index](x) * weights[index]
weights[_ie] * edge(nodes[j]) if _ie == argmaxs else weights[_ie] for _ie, edge in enumerate(self.edges[node_str])
The text was updated successfully, but these errors were encountered: