https://github.com/willguimont/frame-interpolation-docker
Run frame-interpolation in Docker
https://github.com/willguimont/frame-interpolation-docker
Last synced: 6 months ago
JSON representation
Run frame-interpolation in Docker
- Host: GitHub
- URL: https://github.com/willguimont/frame-interpolation-docker
- Owner: willGuimont
- License: mit
- Created: 2023-09-18T01:29:49.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-28T01:23:16.000Z (about 2 years ago)
- Last Synced: 2025-10-08T19:05:52.637Z (10 months ago)
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# frame-interpolation Dockerfile
## Running
Download `film_net` and `vgg` to `output/Models` from [frame-interpolation's GDrive](https://drive.google.com/drive/folders/1q8110-qp225asX3DQvZnfLfJPkCHmDpy).
```bash
docker-compose run --build app
```
`/app/output` is a volume mapped to `./output/`, so you can use it to transfert data from and to the container.
Follow instructions from [frame-interpolation](https://github.com/google-research/frame-interpolation)
Examples:
```bash
python3 -m eval.interpolator_test --frame1 /output/test/1.png --frame2 /output/test/2.png --model_path Models/film_net/Style/saved_model --output_frame /output/out.png
python3 -m eval.interpolator_cli --pattern "/output/test/" --model_path Models/film_net/Style/saved_model --times_to_interpolate 6 --output_video
```