Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from __future__ import absolute_import
import os
import logging
import ssl
from pathlib import Path
import platform

Expand All @@ -13,10 +12,6 @@

logger = logging.getLogger(__name__)

# Otherwise it will complain SSL: CERTIFICATE_VERIFY_FAILED
# When trying to download models from torchvision
ssl._create_default_https_context = ssl._create_unverified_context

TRITON_MODEL_DIR = os.getenv("TRITON_MODEL_DIR")


Expand Down
Loading