12 lines
349 B
Python
12 lines
349 B
Python
#!/usr/bin/env python3
|
|
"""Backward-compatible entrypoint; bakes all hub weights (see bake_pretrained_weights.py)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import runpy
|
|
from pathlib import Path
|
|
|
|
if __name__ == "__main__":
|
|
target = Path(__file__).resolve().parent / "bake_pretrained_weights.py"
|
|
runpy.run_path(str(target), run_name="__main__")
|