Skip to content

Commit 7ee831f

Browse files
authored
Merge pull request #9 from rafid-dev/validation
Fix typo real quick
2 parents d3717ba + 4afcc4c commit 7ee831f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main.cu

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int main(int argc, char* argv[]) {
2323
.help("Total positions in each epoch")
2424
.scan<'i', int>();
2525

26-
program.add_argument("--val--size")
26+
program.add_argument("--val-size")
2727
.default_value(10000000)
2828
.help("Total positions for each validation epoch")
2929
.scan<'i', int>();
@@ -117,6 +117,7 @@ int main(int argc, char* argv[]) {
117117

118118
std::cout << "Epochs: " << total_epochs << "\n"
119119
<< "Epochs Size: " << epoch_size << "\n"
120+
<< "Validation Size: " << val_epoch_size << "\n"
120121
<< "Save Rate: " << save_rate << "\n"
121122
<< "FT Size: " << ft_size << "\n"
122123
<< "Lambda: " << lambda << "\n"

0 commit comments

Comments
 (0)