1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-21 17:17:06 +02:00

[programming challenge, SSN] Final touches.

This commit is contained in:
Michał W. Urbańczyk 2012-05-31 22:16:03 +00:00
parent 82a6520feb
commit 8ffff5e6a0

View File

@ -726,11 +726,11 @@ SSN::ParameterSet SSN::getBestParams()
SSN::ParameterSet params;
params.actSteepHidden = 1.18;
params.actSteepnessOutput = 1.26;
params.actSteepHidden = 0.784;
params.actSteepnessOutput = 0.713;
params.hiddenActFun = FANN::SIGMOID_STEPWISE;
params.outActFun = FANN::SIGMOID_SYMMETRIC;
params.neuronsInHidden = 47;
params.outActFun = FANN::SIGMOID_SYMMETRIC_STEPWISE;
params.neuronsInHidden = 14;
return params;
}
@ -869,6 +869,10 @@ struct SSN_Runner
}
else if(command == "ask")
{
if(ad.empty())
{
throw std::runtime_error("Army needs to be set first!");
}
int artid = boost::lexical_cast<int>(secondWord);
CArtifact *art = VLC->arth->artifacts.at(artid);