File size: 255 Bytes
f4973d4
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10

import os
from transformers import AutoTokenizer


CURRENT_DIR = os.path.dirname(os.path.abspath(__file__))
TOKENIZER_DIR = os.path.join(CURRENT_DIR, "Llama-2-7b-chat-hf")
tokenizer = AutoTokenizer.from_pretrained(TOKENIZER_DIR, trust_remote_code=True)