переименовал runner на run
This commit is contained in:
4
main.py
4
main.py
@@ -1,6 +1,6 @@
|
||||
import logging
|
||||
from pathlib import Path
|
||||
from src.runner import runner
|
||||
from src.runner import run
|
||||
from src.config import presets
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ def main():
|
||||
default="global",
|
||||
)
|
||||
args = parser.parse_args()
|
||||
runner(
|
||||
run(
|
||||
base_path=Path(args.base_path),
|
||||
video_path=Path(args.video_path),
|
||||
output_video=args.output,
|
||||
|
||||
@@ -182,7 +182,7 @@ class InterpolationPipeline:
|
||||
yield interpolated[i]
|
||||
|
||||
|
||||
def runner(
|
||||
def run(
|
||||
base_path: Path,
|
||||
video_path: Path,
|
||||
output_video: str,
|
||||
|
||||
Reference in New Issue
Block a user