(String[] vocab)
| 7 | private final String[] vocab; |
| 8 | |
| 9 | public Tokenizer(String[] vocab) { |
| 10 | this.vocab = vocab; |
| 11 | } |
| 12 | |
| 13 | public static Tokenizer loadFromFile(String filename) { |
| 14 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected