Skip to content

Commit 8c900ab

Browse files
fix hard-coded input file path
1 parent 3c81e10 commit 8c900ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/lookup/lookup-create.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ int main(int argc, char ** argv){
3232
// tokenize the prompt
3333
const bool add_bos = llama_should_add_bos_token(model);
3434

35-
const char * static_input_file = "./wikitext-2-raw/wiki.train.raw";
35+
const char * static_input_file = "./wikitext-103-raw/wiki.train.raw";
3636
std::ifstream file(static_input_file);
3737
if (!file) {
3838
fprintf(stderr, "error: failed to open file '%s'\n", static_input_file);

0 commit comments

Comments
 (0)