mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
16 lines
439 B
Python
16 lines
439 B
Python
|
import json
|
||
|
from pathlib import Path
|
||
|
from typing import Any
|
||
|
|
||
|
|
||
|
def get_model_path(output_dir: Path | str) -> Path:
|
||
|
output_dir = Path(output_dir)
|
||
|
output_dir.mkdir(parents=True, exist_ok=True)
|
||
|
return output_dir / "model.onnx"
|
||
|
|
||
|
|
||
|
def save_config(config: Any, output_path: Path | str) -> None:
|
||
|
output_path = Path(output_path)
|
||
|
output_path.parent.mkdir(parents=True, exist_ok=True)
|
||
|
json.dump(config, output_path.open("w"))
|