From 4d8f17c69d65064d7df0518b06eedebbe127820b Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Wed, 19 Jul 2023 22:03:03 -0400 Subject: [PATCH] fix v1-finetune.yaml is not in the subpath of "" --- invokeai/app/services/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/app/services/config.py b/invokeai/app/services/config.py index 2fc1678483..85f469cea2 100644 --- a/invokeai/app/services/config.py +++ b/invokeai/app/services/config.py @@ -446,7 +446,7 @@ setting environment variables INVOKEAI_. Path to the runtime root directory ''' if self.root: - return Path(self.root).expanduser() + return Path(self.root).expanduser().absolute() else: return self.find_root()