Skip to content

Commit

Permalink
fix hard-coded input file path
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesGaessler committed Feb 13, 2024
1 parent 3c81e10 commit 8c900ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/lookup/lookup-create.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ int main(int argc, char ** argv){
// tokenize the prompt
const bool add_bos = llama_should_add_bos_token(model);

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

0 comments on commit 8c900ab

Please sign in to comment.