Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assertion error, when generating after cloning #24

Open
AndreyRGW opened this issue Apr 30, 2023 · 9 comments
Open

Assertion error, when generating after cloning #24

AndreyRGW opened this issue Apr 30, 2023 · 9 comments

Comments

@AndreyRGW
Copy link

AndreyRGW commented Apr 30, 2023

---------------------------------------------------------------------------
AssertionError                            Traceback (most recent call last)
Cell In[15], line 2
      1 # simple generation
----> 2 audio_array = generate_audio(text_prompt, history_prompt=voice_name, text_temp=0.7, waveform_temp=0.7)

File f:\WBC\bark-with-voice-clone\bark\api.py:113, in generate_audio(text, history_prompt, text_temp, waveform_temp, silent, output_full)
     94 """Generate audio array from input text.
     95 
     96 Args:
   (...)
    105     numpy audio array at sample frequency 24khz
    106 """
    107 semantic_tokens = text_to_semantic(
    108     text,
    109     history_prompt=history_prompt,
    110     temp=text_temp,
    111     silent=silent,
    112 )
--> 113 out = semantic_to_waveform(
    114     semantic_tokens,
    115     history_prompt=history_prompt,
    116     temp=waveform_temp,
    117     silent=silent,
    118     output_full=output_full,
...
    570 )
    571 x_coarse_history = _flatten_codebooks(x_coarse_history) + SEMANTIC_VOCAB_SIZE
    572 # trim histories correctly

AssertionError: 
@SunixLiu
Copy link

SunixLiu commented May 3, 2023

Same issue here, could not figure out why.

1 similar comment
@gianfrancolombardo
Copy link

Same issue here, could not figure out why.

@Tywors
Copy link

Tywors commented May 10, 2023

Same issue

@NickAnastasoff
Copy link

NickAnastasoff commented May 10, 2023

I made a fix just by changing the rounding. heres the pr #28

@Tywors
Copy link

Tywors commented May 11, 2023

I made a fix just by changing the rounding. heres the pr #28

Thanks, i will check

@Tywors
Copy link

Tywors commented May 11, 2023

Doing tests, with different audio files, there is audio that does clone them and others give this issue

@NickAnastasoff
Copy link

from what ive seen, the assert statements arent doing anything there, so I think you can just comment them out

@abhiprojectz
Copy link

I have fixed the issue, and its working fine for anyone interested reply here.

@Ishani71199
Copy link

@abhiprojectz how did you solve?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants