Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion invokeai/backend/model_manager/load/load_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ def _load_and_cache(self, config: AnyModelConfig, submodel_type: Optional[SubMod

config.path = str(self._get_model_path(config))
self._ram_cache.make_room(self.get_size_fs(config, Path(config.path), submodel_type))
self._logger.info(f"Loading model '{stats_name}' into RAM cache..., config={config}")
loaded_model = self._load_model(config, submodel_type)

self._ram_cache.put(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ def _load_from_singlefile(
# Some weights of the model checkpoint were not used when initializing CLIPTextModelWithProjection:
# ['text_model.embeddings.position_ids']

self._logger.info(f"Loading model from single file at {config.path} using {load_class.__name__}")
with SilenceWarnings():
pipeline = load_class.from_single_file(config.path, torch_dtype=self._torch_dtype)

Expand Down