Skip to content

Commit

Permalink
avoid triton
Browse files Browse the repository at this point in the history
  • Loading branch information
eaidova committed Jan 28, 2025
1 parent 6132239 commit 921de05
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions notebooks/openvoice/openvoice.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
"\n",
"from cmd_helper import clone_repo\n",
"from pip_helper import pip_install\n",
"import platform\n",
"\n",
"\n",
"repo_dir = Path(\"OpenVoice\")\n",
Expand Down Expand Up @@ -127,8 +128,12 @@
"\n",
"pip_install(\"librosa>=0.8.1\", \"pydub>=0.25.1\", \"tqdm\", \"inflect>=7.0.0\", \"pypinyin>=0.50.0\", \"openvino>=2023.3\", \"gradio>=4.15\")\n",
"pip_install(\"--extra-index-url\", \"https://download.pytorch.org/whl/cpu\", \n",
" \"wavmark>=0.0.3\", \"faster-whisper>=0.9.0\", \"whisper-timestamped>=1.14.2\", \"eng_to_ipa>=0.0.2\", \n",
" \"cn2an>=0.5.22\", \"jieba>=0.42.1\", \"langid>=1.1.6\", \"ipywebrtc\", \"anyascii\", \"torch>=2.1\", \"nncf>=2.11.0\")"
" \"wavmark>=0.0.3\", \"faster-whisper>=0.9.0\", \"eng_to_ipa>=0.0.2\", \n",
" \"cn2an>=0.5.22\", \"jieba>=0.42.1\", \"langid>=1.1.6\", \"ipywebrtc\", \"anyascii\", \"torch>=2.1\", \"nncf>=2.11.0\", \"dtw-python\", \"more-itertools\", \"tiktoken\")\n",
"pip_install(\"--no-deps\", \"whisper-timestamped>=1.14.2\", \"openai-whsiper\")\n",
"\n",
"if platform.system == \"Darwin\":\n",
" pip_install(\"numpy<2.0.0\")"
]
},
{
Expand Down

0 comments on commit 921de05

Please sign in to comment.