Skip to content

Commit

Permalink
Merge pull request #164 from sashafrey/master
Browse files Browse the repository at this point in the history
perplexity.cc:60:11: error: ‘<::’ cannot begin a template-argument list
  • Loading branch information
bigartm committed Mar 16, 2015
2 parents 002727c + fae3068 commit 19b63b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/artm/score_sandbox/perplexity.cc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void Perplexity::AppendScore(
bool use_classes_from_model = false;
if (config_.class_id_size() == 0) use_classes_from_model = true;

std::map<::artm::core::ClassId, float> class_weights;
std::map< ::artm::core::ClassId, float> class_weights;
if (use_classes_from_model) {
for (int i = 0; (i < model_config.class_id_size()) && (i < model_config.class_weight_size()); ++i)
class_weights.insert(std::make_pair(model_config.class_id(i), model_config.class_weight(i)));
Expand Down

0 comments on commit 19b63b8

Please sign in to comment.