Skip to content

Commit

Permalink
bumped version to 5.0.0-beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
k4yt3x committed Feb 15, 2022
1 parent 595b179 commit c07fafc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/container-run-interpolate-rife.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ set -euxo pipefail
sudo podman run \
-it --rm --gpus all -v /dev/dri:/dev/dri \
-v $PWD/data:/host \
ghcr.io/k4yt3x/video2x:5.0.0-beta2-cuda \
ghcr.io/k4yt3x/video2x:5.0.0-beta3-cuda \
-i input.mp4 -o output.mp4 \
interpolate
2 changes: 1 addition & 1 deletion examples/container-run-upscale-waifu2x.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -euxo pipefail
sudo podman run \
-it --rm --gpus all -v /dev/dri:/dev/dri \
-v $PWD/data:/host \
ghcr.io/k4yt3x/video2x:5.0.0-beta2-cuda \
ghcr.io/k4yt3x/video2x:5.0.0-beta3-cuda \
-i input.mp4 -o output.mp4 \
-p5 upscale \
-h 720 -a waifu2x -n3
2 changes: 1 addition & 1 deletion scripts/run-source-in-container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sudo podman run -it --rm \
--cpus 0.9 \
-v $HOME/projects/media2x/video2x:/video2x \
-e PYTHONPATH="/video2x" \
ghcr.io/k4yt3x/video2x:5.0.0-beta2-cuda \
ghcr.io/k4yt3x/video2x:5.0.0-beta3-cuda \
-i data/input.mp4 -o data/output.mp4 \
-p5 \
upscale \
Expand Down
2 changes: 1 addition & 1 deletion video2x/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

# version assignment has to precede imports to
# prevent setup.cfg from producing import errors
__version__ = "5.0.0-beta2"
__version__ = "5.0.0-beta3"

# local imports
from .video2x import Video2X
Expand Down

0 comments on commit c07fafc

Please sign in to comment.