mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
2aefa921fe
- Add command-line model probing script for dev use - Minor documentation tweak
20 lines
358 B
Python
Executable File
20 lines
358 B
Python
Executable File
#!/bin/env python
|
|
|
|
import argparse
|
|
import sys
|
|
from pathlib import Path
|
|
from invokeai.backend.model_management.model_probe import ModelProbe
|
|
|
|
parser = argparse.ArgumentParser(description="Probe model type")
|
|
parser.add_argument(
|
|
'model_path',
|
|
type=Path,
|
|
)
|
|
args=parser.parse_args()
|
|
|
|
info = ModelProbe().probe(args.model_path)
|
|
print(info)
|
|
|
|
|
|
|