Giter VIP home page Giter VIP logo

Comments (6)

rsxdalv avatar rsxdalv commented on June 27, 2024 1

Hey,

i dont mind if anything complains ;) but unfortunately the entire musicgen / audiogen part is not working at all, in my docker install. TortoiseTTS is not working as well, i am unable to install the Bark Voice Cloning in Docker etc.

tts-generation-webui  | Traceback (most recent call last):
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/gradio/queueing.py", line 407, in call_prediction
tts-generation-webui  |     output = await route_utils.call_process_api(
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/gradio/route_utils.py", line 226, in call_process_api
tts-generation-webui  |     output = await app.get_blocks().process_api(
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/gradio/blocks.py", line 1550, in process_api
tts-generation-webui  |     result = await self.call_function(
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/gradio/blocks.py", line 1185, in call_function
tts-generation-webui  |     prediction = await anyio.to_thread.run_sync(
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/anyio/to_thread.py", line 33, in run_sync
tts-generation-webui  |     return await get_asynclib().run_sync_in_worker_thread(
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 877, in run_sync_in_worker_thread
tts-generation-webui  |     return await future
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 807, in run
tts-generation-webui  |     result = context.run(func, *args)
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/gradio/utils.py", line 661, in wrapper
tts-generation-webui  |     response = f(*args, **kwargs)
tts-generation-webui  |   File "/app/tts-generation-webui/src/musicgen/musicgen_tab.py", line 148, in generate
tts-generation-webui  |     MODEL = load_model(model)
tts-generation-webui  |   File "/app/tts-generation-webui/src/musicgen/musicgen_tab.py", line 127, in load_model
tts-generation-webui  |     return MusicGen.get_pretrained(version)
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/audiocraft/models/musicgen.py", line 91, in get_pretrained
tts-generation-webui  |     return MusicGen(name, compression_model, lm)
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/audiocraft/models/musicgen.py", line 52, in __init__
tts-generation-webui  |     super().__init__(name, compression_model, lm, max_duration)
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/audiocraft/models/genmodel.py", line 55, in __init__
tts-generation-webui  |     self.compression_model = get_wrapped_compression_model(self.compression_model, self.cfg)
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/audiocraft/models/builders.py", line 254, in get_wrapped_compression_model
tts-generation-webui  |     if cfg.interleave_stereo_codebooks.use:
tts-generation-webui  | AttributeError: 'NoneType' object has no attribute 'use'

This issue has been resolved with the new docker image. Also I fixed the build process so the ghcr.io/rsxdalv/tts-generation-webui:main images are now up to date.

from tts-generation-webui.

rsxdalv avatar rsxdalv commented on June 27, 2024

from tts-generation-webui.

tilllt avatar tilllt commented on June 27, 2024

Hey,

i dont mind if anything complains ;) but unfortunately the entire musicgen / audiogen part is not working at all, in my docker install. TortoiseTTS is not working as well, i am unable to install the Bark Voice Cloning in Docker etc.

tts-generation-webui  | Traceback (most recent call last):
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/gradio/queueing.py", line 407, in call_prediction
tts-generation-webui  |     output = await route_utils.call_process_api(
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/gradio/route_utils.py", line 226, in call_process_api
tts-generation-webui  |     output = await app.get_blocks().process_api(
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/gradio/blocks.py", line 1550, in process_api
tts-generation-webui  |     result = await self.call_function(
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/gradio/blocks.py", line 1185, in call_function
tts-generation-webui  |     prediction = await anyio.to_thread.run_sync(
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/anyio/to_thread.py", line 33, in run_sync
tts-generation-webui  |     return await get_asynclib().run_sync_in_worker_thread(
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 877, in run_sync_in_worker_thread
tts-generation-webui  |     return await future
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 807, in run
tts-generation-webui  |     result = context.run(func, *args)
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/gradio/utils.py", line 661, in wrapper
tts-generation-webui  |     response = f(*args, **kwargs)
tts-generation-webui  |   File "/app/tts-generation-webui/src/musicgen/musicgen_tab.py", line 148, in generate
tts-generation-webui  |     MODEL = load_model(model)
tts-generation-webui  |   File "/app/tts-generation-webui/src/musicgen/musicgen_tab.py", line 127, in load_model
tts-generation-webui  |     return MusicGen.get_pretrained(version)
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/audiocraft/models/musicgen.py", line 91, in get_pretrained
tts-generation-webui  |     return MusicGen(name, compression_model, lm)
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/audiocraft/models/musicgen.py", line 52, in __init__
tts-generation-webui  |     super().__init__(name, compression_model, lm, max_duration)
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/audiocraft/models/genmodel.py", line 55, in __init__
tts-generation-webui  |     self.compression_model = get_wrapped_compression_model(self.compression_model, self.cfg)
tts-generation-webui  |   File "/venv/lib/python3.10/site-packages/audiocraft/models/builders.py", line 254, in get_wrapped_compression_model
tts-generation-webui  |     if cfg.interleave_stereo_codebooks.use:
tts-generation-webui  | AttributeError: 'NoneType' object has no attribute 'use'

from tts-generation-webui.

rsxdalv avatar rsxdalv commented on June 27, 2024

from tts-generation-webui.

rsxdalv avatar rsxdalv commented on June 27, 2024

from tts-generation-webui.

rsxdalv avatar rsxdalv commented on June 27, 2024

Ok, I believe the issue should be resolved. If there's something that's not resolved or some concern, feel free to reopen the issue or creating an additional one.

from tts-generation-webui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.