Skip to content

Commit c6f6979

Browse files
committed
Update
1 parent 6460e81 commit c6f6979

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/slm_mixture_of_experts_ex.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,6 @@ int main(int argc, char** argv)
621621
std::string external_corpus_for_tokenizer;
622622
if (parser.option("external-data")) {
623623
std::string external_path = parser.option("external-data").argument();
624-
cout << "Externa source: " << external_path << "\n";
625624

626625
std::string external_text = load_external_data(external_path, true);
627626
if (!external_text.empty()) {
@@ -691,7 +690,7 @@ int main(int argc, char** argv)
691690
total_tokens += segment_tokens.size();
692691

693692
cout << "Loaded " << full_tokens.size() << " segments ("
694-
<< total_tokens << " tokens) from file.\n";
693+
<< total_tokens << " tokens) from file\n";
695694
tokens_loaded = true;
696695
}
697696
catch (const std::exception& e) {

0 commit comments

Comments
 (0)