Skip to content

[BUG]: tokenizer.json file not found #2840

Closed
@Rfank2021

Description

@Rfank2021

} else if (Files.exists(tokenizerPath)) {
throw new IOException("Tokenizer file not exits: " + tokenizerPath);
}

should be

} else if (!Files.exists(tokenizerPath)) {
    throw new IOException("Tokenizer file not exits: " + tokenizerPath);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions