ml-server / src /utils /constants.py
Partha11's picture
added project files from private repo
ae2ef1b
raw
history blame contribute delete
182 Bytes
import os
from definitions import ROOT_DIR
class Constants:
MODEL_NAME = 'bert-base-multilingual-uncased'
MODEL_PATH = os.path.join(ROOT_DIR, 'static', 'models', MODEL_NAME)