Skip to content
Snippets Groups Projects
Commit c79e0a23 authored by Franck Dary's avatar Franck Dary
Browse files

Small factorisation

parent 8604a7c1
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,8 @@ LSTMNetworkImpl::LSTMNetworkImpl(int nbOutputs, int unknownValueThreshold, std::
constexpr int rawInputLSTMSize = 32;
std::tuple<bool,bool,int,float,bool> lstmOptions{true,true,2,0.3,false};
std::tuple<bool,bool,int,float,bool> lstmOptionsAll{true,true,2,0.3,true};
auto lstmOptionsAll = lstmOptions;
std::get<4>(lstmOptionsAll) = true;
setBufferContext(bufferContext);
setStackContext(stackContext);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment