From 23fd2b4518901379a446d53da4c6aa292ca22710 Mon Sep 17 00:00:00 2001 From: eaidova Date: Thu, 31 Oct 2024 13:29:12 +0400 Subject: [PATCH] more fixes --- notebooks/3D-pose-estimation-webcam/3D-pose-estimation.ipynb | 2 +- notebooks/distil-whisper-asr/distil-whisper-asr.ipynb | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/notebooks/3D-pose-estimation-webcam/3D-pose-estimation.ipynb b/notebooks/3D-pose-estimation-webcam/3D-pose-estimation.ipynb index 31d2dfa39de..a53211bf6de 100644 --- a/notebooks/3D-pose-estimation-webcam/3D-pose-estimation.ipynb +++ b/notebooks/3D-pose-estimation-webcam/3D-pose-estimation.ipynb @@ -195,7 +195,7 @@ " from model.model import PoseEstimationWithMobileNet\n", "\n", " pose_estimation_model = PoseEstimationWithMobileNet(is_convertible_by_mo=True)\n", - " pose_estimation_model.loas_state_dict(torch.load(ckpt_file, map_location=\"cpu\"))\n", + " pose_estimation_model.load_state_dict(torch.load(ckpt_file, map_location=\"cpu\"))\n", " pose_estimation_model.eval()\n", "\n", " with torch.no_grad():\n", diff --git a/notebooks/distil-whisper-asr/distil-whisper-asr.ipynb b/notebooks/distil-whisper-asr/distil-whisper-asr.ipynb index c949507a57a..82bbf60dd80 100644 --- a/notebooks/distil-whisper-asr/distil-whisper-asr.ipynb +++ b/notebooks/distil-whisper-asr/distil-whisper-asr.ipynb @@ -121,7 +121,8 @@ " \"distil-whisper/distil-small.en\",\n", " ],\n", " \"Whisper\": [\n", - " \"openai/whisper-large-v3-turbo\" \"openai/whisper-large-v3\",\n", + " \"openai/whisper-large-v3-turbo\",\n", + " \"openai/whisper-large-v3\",\n", " \"openai/whisper-large-v2\",\n", " \"openai/whisper-large\",\n", " \"openai/whisper-medium\",\n",