Skip to content
Merged
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
5 changes: 4 additions & 1 deletion models/rf3/src/rf3/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@

# Setup root dir and environment variables (more info: https://github.com/ashleve/rootutils)
# NOTE: Sets the `PROJECT_ROOT` environment variable to the root directory of the project (where `.project-root` is located)
rootutils.setup_root(__file__, indicator=".project-root", pythonpath=True)
try:
rootutils.setup_root(__file__, indicator=".project-root", pythonpath=True)
except Exception:
pass

load_dotenv(override=True)

Expand Down
Loading