Bump to 0.7.3 (#49)

* Bump to 0.7.3

* Update README.md
This commit is contained in:
hexgrad
2025-02-03 22:38:30 -08:00
committed by GitHub
parent 0922f3cbf9
commit ed4639ffdf
3 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ An inference library for [Kokoro-82M](https://huggingface.co/hexgrad/Kokoro-82M)
You can run this cell on [Google Colab](https://colab.research.google.com/). [Listen to samples](https://huggingface.co/hexgrad/Kokoro-82M/blob/main/SAMPLES.md). You can run this cell on [Google Colab](https://colab.research.google.com/). [Listen to samples](https://huggingface.co/hexgrad/Kokoro-82M/blob/main/SAMPLES.md).
```py ```py
# 1⃣ Install kokoro # 1⃣ Install kokoro
!pip install -q kokoro>=0.3.5 soundfile !pip install -q kokoro>=0.7.3 soundfile
# 2⃣ Install espeak, used for English OOD fallback and some non-English languages # 2⃣ Install espeak, used for English OOD fallback and some non-English languages
!apt-get -qq -y install espeak-ng > /dev/null 2>&1 !apt-get -qq -y install espeak-ng > /dev/null 2>&1
# 🇪🇸 'e' => Spanish es # 🇪🇸 'e' => Spanish es
@@ -82,6 +82,6 @@ dependencies:
- 📊 Thank you to everyone who contributed synthetic training data. - 📊 Thank you to everyone who contributed synthetic training data.
- ❤️ Special thanks to all compute sponsors. - ❤️ Special thanks to all compute sponsors.
- 👾 Discord server: https://discord.gg/QuGxSWBfQy - 👾 Discord server: https://discord.gg/QuGxSWBfQy
- 🪽 Kokoro is a Japanese word that translates to "heart" or "spirit". Kokoro is also the name of an [AI in the Terminator franchise](https://terminator.fandom.com/wiki/Kokoro). - 🪽 Kokoro is a Japanese word that translates to "heart" or "spirit". Kokoro is also a [character in the Terminator franchise](https://terminator.fandom.com/wiki/Kokoro) along with [Misaki](https://github.com/hexgrad/misaki?tab=readme-ov-file#acknowledgements).
<img src="https://static0.gamerantimages.com/wordpress/wp-content/uploads/2024/08/terminator-zero-41-1.jpg" width="400" alt="kokoro" /> <img src="https://static0.gamerantimages.com/wordpress/wp-content/uploads/2024/08/terminator-zero-41-1.jpg" width="400" alt="kokoro" />

View File

@@ -1,4 +1,4 @@
__version__ = '0.7.2' __version__ = '0.7.3'
from loguru import logger from loguru import logger
import sys import sys

View File

@@ -2,12 +2,12 @@ from setuptools import setup, find_packages
setup( setup(
name='kokoro', name='kokoro',
version='0.7.2', version='0.7.3',
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
'huggingface_hub', 'huggingface_hub',
'loguru', 'loguru',
'misaki[en]>=0.7.2', 'misaki[en]>=0.7.3',
'numpy==1.26.4', 'numpy==1.26.4',
'scipy', 'scipy',
'torch', 'torch',