MCPcopy Create free account
hub / github.com/ModelTC/LightX2V / _parse_csv_override

Function _parse_csv_override

tools/convert/converter.py:854–860  ·  view source on GitHub ↗
(v: str | None)

Source from the content-addressed store, hash-verified

852
853 except MemoryError:
854 logger.error("Memory error while saving. The model is too large to save as a single file.")
855 logger.error("Please use --save_by_block or remove --single_file to use chunked saving.")
856 raise
857 except Exception as e:
858 logger.error(f"Error saving model: {e}")
859 raise
860 elif args.save_by_block:
861 logger.info("Backward conversion: grouping weights by block")
862 block_groups = defaultdict(dict)
863 non_block_weights = {}

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected