Skip to content

Commit 006e9d4

Browse files
committed
SensorTile Example fixes
1 parent b0677d5 commit 006e9d4

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

.DS_Store

0 Bytes
Binary file not shown.
12.7 MB
Binary file not shown.

Source/embeddedML.c

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -231,14 +231,6 @@ void set_model_parameters(ANN *model, unsigned int *topology, unsigned int nlaye
231231
model->output_activation_function = &relu2;
232232
model->hidden_activation_function = &relu2;
233233
break;
234-
case 's':
235-
model->output_activation_function = &sigmoid;
236-
model->hidden_activation_function = &sigmoid;
237-
break;
238-
case 't':
239-
model->output_activation_function = &tanhf;
240-
model->hidden_activation_function = &tanhf;
241-
break;
242234
default:
243235
model->output_activation_function = &relu;
244236
model->hidden_activation_function = &relu;

0 commit comments

Comments
 (0)