Live data from Hacker News

Hertz-dev, the first open-source base model for conversational audio

si.inc

51–58 of 58 posts

Re: Hertz-dev, the first open-source base model for conversational audio

#51
post #46

Can one of the authors explain what this actually means from the post? hertz-vae: a 1.8 billion parameter transformer decoder which acts as a learned prior for the audio VAE. The model uses a context of 8192 sampled latent representations (17 minutes) and predicts the next encoded audio frame as a mixture of gaussians. 15 bits of quantized information from the next token act as semantic scaffolding to steer the gener…

My guess:

1. `codec`: First, compress 16k samplerate audio into 8 samples per second with convolutions. Then, vector quantize to 128 bits (probably 8 floats) to get a codec. This is not nearly enough bits to actually represent the audio, it's more to represent phenomes.

2. `vae` -> This looks like a VAE-based diffusion model, that uses the codec as its prompt.

3. `dev` -> This is a next-codec prediction model.

Put together, it probably runs like so:

1. Turn your prompt into tokens with the `codec`.

2. If you want s more seconds of audio, use `dev` to predict 8 * s more tokens.

3. Turn it back into audio with the `vae` diffusion model.

Re: Hertz-dev, the first open-source base model for conversational audio

#52
> Base models are uniquely valuable as a research product because they accurately model the distribution of the data that they were trained on, as opposed to models that have had substantial RL tuning done to collapse their generation distributions. This makes base models the best starting point to fine-tune for a large number of different tasks.

Is this idea (‘collapse of their generation distributions’) a researched topic? If so, under what name?

Sounds interesting and maybe related to the whole continual learning / how to finetune properly line of work

Re: Hertz-dev, the first open-source base model for conversational audio

#53
post #46

Can one of the authors explain what this actually means from the post? hertz-vae: a 1.8 billion parameter transformer decoder which acts as a learned prior for the audio VAE. The model uses a context of 8192 sampled latent representations (17 minutes) and predicts the next encoded audio frame as a mixture of gaussians. 15 bits of quantized information from the next token act as semantic scaffolding to steer the gener…

My guess: 1. `codec`: First, compress 16k samplerate audio into 8 samples per second with convolutions. Then, vector quantize to 128 bits (probably 8 floats) to get a codec. This is not nearly enough bits to actually represent the audio, it's more to represent phenomes. 2. `vae` -> This looks like a VAE-based diffusion model, that uses the codec as its prompt. 3. `dev` -> This is a next-codec prediction model. Put to…

I dont actually see any tokens used in the model. It seems like the model actually predicts latents and then VAE converts back to audio. More like Tortoise or XTTS

Re: Hertz-dev, the first open-source base model for conversational audio

#55

That's really cool. I'm currently exploring VUI (Voice User Interface) and this might come in handy. I might be a bit biased (did my PhD exploring how VUI can persuade humans), but I think VUI is "the future" of computer interaction. If it's not the future, than at least it adds a new group of people (kids + elderly people) as potential users.

I'm really interested in voice user interfaces. What are you building? Do you have a link?

Re: Hertz-dev, the first open-source base model for conversational audio

#57

Tesla’s approach to pure vision-based autonomous driving—temporarily setting aside lidar and other sensors—seems designed to make this technology more accessible and scalable. By focusing on a vision-only model, they can accelerate adoption and gather large datasets for quicker iterations. Once the vision-based system reaches a mature stage, I imagine Tesla might reintegrate additional sensor data, like lidar or rada…

I'm one of the devs. Our model is fully voice-to-voice, no text was involved in the making of hertz-dev for exactly this reason.

Have you thought that this would be useful for an end-to-end translation for calls in Asterisk?
Post reply on HN