From c32c9d3b19a6a384b218b902fd69e0f65b797d45 Mon Sep 17 00:00:00 2001 From: siddy819 <60478931+siddy819@users.noreply.github.com> Date: Wed, 5 Apr 2023 12:32:46 +0530 Subject: [PATCH] Update requirements.txt The dependencies for torch and torchvision were incompatible. Torch 1.10.0 utilizes torchvision 0.11.1 instead of 0.9.0. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 22717ac..49efea7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,5 +5,5 @@ numpy==1.21.6 scipy==1.7.2 tensorboard==2.7.0 torch==1.10.0 -torchvision==0.9.0 +torchvision==0.11.1 webrtcvad==2.0.10