Error with Select and Load Model - sd-v1-4.ckpt

Hey chaps,
I need a little help here I’m not sure its me or the server side…
Yesterday the Collab worked like a charm with sd-v1-4.ckpt but today I received this messages with the exact same files:

/content/drive/MyDrive/AI/models/v1-inference.yaml exists
Using config: /content/drive/MyDrive/AI/models/v1-inference.yaml
/content/drive/MyDrive/AI/models/sd-v1-4.ckpt exists

…checking sha256
hash is correct

Using ckpt: /content/drive/MyDrive/AI/models/sd-v1-4.ckpt


ScannerError Traceback (most recent call last)

in
153
154 if load_on_run_all and ckpt_valid:
→ 155 local_config = OmegaConf.load(f"{ckpt_config_path}“)
156 model = load_model_from_config(local_config, f”{ckpt_path}", half_precision=half_precision)
157 device = torch.device(“cuda”) if torch.cuda.is_available() else torch.device(“cpu”)

9 frames

/usr/local/lib/python3.7/dist-packages/omegaconf/omegaconf.py in load(file_)
186 if isinstance(file_, (str, pathlib.Path)):
187 with io.open(os.path.abspath(file_), “r”, encoding=“utf-8”) as f:
→ 188 obj = yaml.load(f, Loader=get_yaml_loader())
189 elif getattr(file_, “read”, None):
190 obj = yaml.load(file_, Loader=get_yaml_loader())

/usr/local/lib/python3.7/dist-packages/yaml/init.py in load(stream, Loader)
79 loader = Loader(stream)
80 try:
—> 81 return loader.get_single_data()
82 finally:
83 loader.dispose()

/usr/local/lib/python3.7/dist-packages/yaml/constructor.py in get_single_data(self)
47 def get_single_data(self):
48 # Ensure that the stream contains a single document and construct it.
—> 49 node = self.get_single_node()
50 if node is not None:
51 return self.construct_document(node)

/usr/local/lib/python3.7/dist-packages/yaml/composer.py in get_single_node(self)
34 document = None
35 if not self.check_event(StreamEndEvent):
—> 36 document = self.compose_document()
37
38 # Ensure that the stream contains no more documents.

/usr/local/lib/python3.7/dist-packages/yaml/composer.py in compose_document(self)
56
57 # Drop the DOCUMENT-END event.
—> 58 self.get_event()
59
60 self.anchors = {}

/usr/local/lib/python3.7/dist-packages/yaml/parser.py in get_event(self)
116 if self.current_event is None:
117 if self.state:
→ 118 self.current_event = self.state()
119 value = self.current_event
120 self.current_event = None

/usr/local/lib/python3.7/dist-packages/yaml/parser.py in parse_document_end(self)
191
192 # Parse the document end.
→ 193 token = self.peek_token()
194 start_mark = end_mark = token.start_mark
195 explicit = False

/usr/local/lib/python3.7/dist-packages/yaml/scanner.py in peek_token(self)
127 # Return None if no more tokens.
128 while self.need_more_tokens():
→ 129 self.fetch_more_tokens()
130 if self.tokens:
131 return self.tokens[0]

/usr/local/lib/python3.7/dist-packages/yaml/scanner.py in fetch_more_tokens(self)
221 # Is it the value indicator?
222 if ch == ‘:’ and self.check_value():
→ 223 return self.fetch_value()
224
225 # Is it an alias?

/usr/local/lib/python3.7/dist-packages/yaml/scanner.py in fetch_value(self)
577 raise ScannerError(None, None,
578 “mapping values are not allowed here”,
→ 579 self.get_mark())
580
581 # If this value starts a new block mapping, we need to add

ScannerError: mapping values are not allowed here
in “/content/drive/MyDrive/AI/models/v1-inference.yaml”, line 28, column 66

Am I miss something?
All kind of help is highly appreciated! :slight_smile: Thanks