Skip to content

Commit

Permalink
Merge pull request #200 from h2oai/sr/fix-torch-version
Browse files Browse the repository at this point in the history
don't use rocm variant of torchvision
  • Loading branch information
rsujeevan authored May 27, 2024
2 parents 38e4aa0 + 54442ac commit dbe21a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/video_to_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class VideoToFrames:
Additionally detects all faces for each frame.
"""

_modules_needed_by_name = ["torchvision==0.18.0+rocm6.0", "facenet-pytorch==2.5.3"]
_modules_needed_by_name = ["torchvision==0.18.0", "facenet-pytorch==2.5.3"]

def __init__(self, num_frames_per_video=3, face_additional_area=0.5):
self.num_frames_per_video = num_frames_per_video
Expand Down

0 comments on commit dbe21a6

Please sign in to comment.