Spaces:
Sleeping
Sleeping
File size: 318 Bytes
f4da933 0a03158 f4da933 0a03158 |
1 2 3 4 5 6 7 8 9 10 11 |
from huggingface_hub import from_pretrained_keras
from pathlib import Path
import os
# Build paths inside the project like this: BASE_DIR / 'subdir'.
PARENT_DIR = Path(__file__).resolve().parent
CACHE_DIR = os.path.join(PARENT_DIR, ".cache")
MODEL = from_pretrained_keras("jsolow/grubguesser", cache_dir=CACHE_DIR)
|