cjwbw
/
audiosep
Separate Anything You Describe
Prediction
cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8IDubswi7lbfm3x5i6rlzb6f566vaStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- text
- water drops
- audio_file
- Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "text": "water drops", "audio_file": "https://replicate.delivery/pbxt/JjHni6Yk1WlvV0kFqmGjDtHVW7PVX9RikiR1PwbVGrK5MUEq/sample.wav" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", { input: { text: "water drops", audio_file: "https://replicate.delivery/pbxt/JjHni6Yk1WlvV0kFqmGjDtHVW7PVX9RikiR1PwbVGrK5MUEq/sample.wav" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", input={ "text": "water drops", "audio_file": "https://replicate.delivery/pbxt/JjHni6Yk1WlvV0kFqmGjDtHVW7PVX9RikiR1PwbVGrK5MUEq/sample.wav" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", "input": { "text": "water drops", "audio_file": "https://replicate.delivery/pbxt/JjHni6Yk1WlvV0kFqmGjDtHVW7PVX9RikiR1PwbVGrK5MUEq/sample.wav" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "completed_at": "2023-10-20T00:10:07.829884Z", "created_at": "2023-10-20T00:10:02.101098Z", "data_removed": false, "error": null, "id": "ubswi7lbfm3x5i6rlzb6f566va", "input": { "text": "water drops", "audio_file": "https://replicate.delivery/pbxt/JjHni6Yk1WlvV0kFqmGjDtHVW7PVX9RikiR1PwbVGrK5MUEq/sample.wav" }, "logs": "Separate audio from [/tmp/tmpsv6f1jgcsample.wav] with textual query [water drops]\nWrite separated audio to [/tmp/separated_audio.wav]", "metrics": { "predict_time": 3.580067, "total_time": 5.728786 }, "output": "https://pbxt.replicate.delivery/NMPkbyf9HfvtYEecWiY1CexldkfRlKeoUJv0oe7X7Q2ee6ufGB/separated_audio.wav", "started_at": "2023-10-20T00:10:04.249817Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/ubswi7lbfm3x5i6rlzb6f566va", "cancel": "https://api.replicate.com/v1/predictions/ubswi7lbfm3x5i6rlzb6f566va/cancel" }, "version": "f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8" }
Generated inSeparate audio from [/tmp/tmpsv6f1jgcsample.wav] with textual query [water drops] Write separated audio to [/tmp/separated_audio.wav]
Prediction
cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8IDhufiahdbpxco756yfcgnxeqibyStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- text
- acoustic guitar
- audio_file
- Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "text": "acoustic guitar", "audio_file": "https://replicate.delivery/pbxt/JjHqbjCAZXSkPgSzlCk8EptdbM7cFKXge9m7hz2mErFpDD9U/acoustic_guitar.wav" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", { input: { text: "acoustic guitar", audio_file: "https://replicate.delivery/pbxt/JjHqbjCAZXSkPgSzlCk8EptdbM7cFKXge9m7hz2mErFpDD9U/acoustic_guitar.wav" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", input={ "text": "acoustic guitar", "audio_file": "https://replicate.delivery/pbxt/JjHqbjCAZXSkPgSzlCk8EptdbM7cFKXge9m7hz2mErFpDD9U/acoustic_guitar.wav" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", "input": { "text": "acoustic guitar", "audio_file": "https://replicate.delivery/pbxt/JjHqbjCAZXSkPgSzlCk8EptdbM7cFKXge9m7hz2mErFpDD9U/acoustic_guitar.wav" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "completed_at": "2023-10-20T00:13:07.283270Z", "created_at": "2023-10-20T00:13:05.383015Z", "data_removed": false, "error": null, "id": "hufiahdbpxco756yfcgnxeqiby", "input": { "text": "acoustic guitar", "audio_file": "https://replicate.delivery/pbxt/JjHqbjCAZXSkPgSzlCk8EptdbM7cFKXge9m7hz2mErFpDD9U/acoustic_guitar.wav" }, "logs": "Separate audio from [/tmp/tmpjmglnopracoustic_guitar.wav] with textual query [acoustic guitar]\nWrite separated audio to [/tmp/separated_audio.wav]", "metrics": { "predict_time": 1.941599, "total_time": 1.900255 }, "output": "https://pbxt.replicate.delivery/2GPIbO0oN8Y6HFhbMWmtSMtxtayLCtfgpILSV5jEMvIJw73IA/separated_audio.wav", "started_at": "2023-10-20T00:13:05.341671Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/hufiahdbpxco756yfcgnxeqiby", "cancel": "https://api.replicate.com/v1/predictions/hufiahdbpxco756yfcgnxeqiby/cancel" }, "version": "f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8" }
Generated inSeparate audio from [/tmp/tmpjmglnopracoustic_guitar.wav] with textual query [acoustic guitar] Write separated audio to [/tmp/separated_audio.wav]
Prediction
cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8ID4w3qvvtbsx4ampi3bo7c5fhxlqStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- text
- laughing
- audio_file
- Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "text": "laughing", "audio_file": "https://replicate.delivery/pbxt/JjHs6IMRLsXynfG53epwdUjlx7KSamKAuvSvhhCMCx96pnqn/laughing.wav" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", { input: { text: "laughing", audio_file: "https://replicate.delivery/pbxt/JjHs6IMRLsXynfG53epwdUjlx7KSamKAuvSvhhCMCx96pnqn/laughing.wav" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", input={ "text": "laughing", "audio_file": "https://replicate.delivery/pbxt/JjHs6IMRLsXynfG53epwdUjlx7KSamKAuvSvhhCMCx96pnqn/laughing.wav" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", "input": { "text": "laughing", "audio_file": "https://replicate.delivery/pbxt/JjHs6IMRLsXynfG53epwdUjlx7KSamKAuvSvhhCMCx96pnqn/laughing.wav" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "completed_at": "2023-10-20T00:14:41.514432Z", "created_at": "2023-10-20T00:14:39.696222Z", "data_removed": false, "error": null, "id": "4w3qvvtbsx4ampi3bo7c5fhxlq", "input": { "text": "laughing", "audio_file": "https://replicate.delivery/pbxt/JjHs6IMRLsXynfG53epwdUjlx7KSamKAuvSvhhCMCx96pnqn/laughing.wav" }, "logs": "Separate audio from [/tmp/tmpm48ky_dvlaughing.wav] with textual query [laughing]\nWrite separated audio to [/tmp/separated_audio.wav]", "metrics": { "predict_time": 1.828367, "total_time": 1.81821 }, "output": "https://pbxt.replicate.delivery/Ro5kC70f9k0HHidesSKvMonEkWrBWAGfetVp6juAEDSCHeebE/separated_audio.wav", "started_at": "2023-10-20T00:14:39.686065Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/4w3qvvtbsx4ampi3bo7c5fhxlq", "cancel": "https://api.replicate.com/v1/predictions/4w3qvvtbsx4ampi3bo7c5fhxlq/cancel" }, "version": "f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8" }
Generated inSeparate audio from [/tmp/tmpm48ky_dvlaughing.wav] with textual query [laughing] Write separated audio to [/tmp/separated_audio.wav]
Prediction
cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8IDh7vrw3lb6yg7drsz2q2db5apx4StatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- text
- A ticktock sound playing at the same rhythm with piano.
- audio_file
- Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "text": "A ticktock sound playing at the same rhythm with piano.", "audio_file": "https://replicate.delivery/pbxt/JjHuyc32FrtG5o6ns761yhVw5omO80eZny7xDGx4dSK49ZQa/ticktok_piano.wav" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", { input: { text: "A ticktock sound playing at the same rhythm with piano.", audio_file: "https://replicate.delivery/pbxt/JjHuyc32FrtG5o6ns761yhVw5omO80eZny7xDGx4dSK49ZQa/ticktok_piano.wav" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", input={ "text": "A ticktock sound playing at the same rhythm with piano.", "audio_file": "https://replicate.delivery/pbxt/JjHuyc32FrtG5o6ns761yhVw5omO80eZny7xDGx4dSK49ZQa/ticktok_piano.wav" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", "input": { "text": "A ticktock sound playing at the same rhythm with piano.", "audio_file": "https://replicate.delivery/pbxt/JjHuyc32FrtG5o6ns761yhVw5omO80eZny7xDGx4dSK49ZQa/ticktok_piano.wav" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "completed_at": "2023-10-20T00:17:43.459707Z", "created_at": "2023-10-20T00:17:41.607089Z", "data_removed": false, "error": null, "id": "h7vrw3lb6yg7drsz2q2db5apx4", "input": { "text": "A ticktock sound playing at the same rhythm with piano.", "audio_file": "https://replicate.delivery/pbxt/JjHuyc32FrtG5o6ns761yhVw5omO80eZny7xDGx4dSK49ZQa/ticktok_piano.wav" }, "logs": "Separate audio from [/tmp/tmpykqff95qticktok_piano.wav] with textual query [A ticktock sound playing at the same rhythm with piano.]\nWrite separated audio to [/tmp/separated_audio.wav]", "metrics": { "predict_time": 1.853074, "total_time": 1.852618 }, "output": "https://pbxt.replicate.delivery/ICuyLHd4zHIbLJyjLiudcKv1zkqeDHvUavCVRjbILZMTy73IA/separated_audio.wav", "started_at": "2023-10-20T00:17:41.606633Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/h7vrw3lb6yg7drsz2q2db5apx4", "cancel": "https://api.replicate.com/v1/predictions/h7vrw3lb6yg7drsz2q2db5apx4/cancel" }, "version": "f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8" }
Generated inSeparate audio from [/tmp/tmpykqff95qticktok_piano.wav] with textual query [A ticktock sound playing at the same rhythm with piano.] Write separated audio to [/tmp/separated_audio.wav]
Prediction
cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8IDgvuypwlbcgpldw676jnsd4xfhqStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- text
- speech
- audio_file
- Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "text": "speech", "audio_file": "https://replicate.delivery/pbxt/JjI2fPYhuX9PrxeWgcpol0tQVRhgpUFoKiOdaIBfjvk0OVns/noisy_speech.wav" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", { input: { text: "speech", audio_file: "https://replicate.delivery/pbxt/JjI2fPYhuX9PrxeWgcpol0tQVRhgpUFoKiOdaIBfjvk0OVns/noisy_speech.wav" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", input={ "text": "speech", "audio_file": "https://replicate.delivery/pbxt/JjI2fPYhuX9PrxeWgcpol0tQVRhgpUFoKiOdaIBfjvk0OVns/noisy_speech.wav" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run cjwbw/audiosep using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "cjwbw/audiosep:f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8", "input": { "text": "speech", "audio_file": "https://replicate.delivery/pbxt/JjI2fPYhuX9PrxeWgcpol0tQVRhgpUFoKiOdaIBfjvk0OVns/noisy_speech.wav" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "completed_at": "2023-10-20T00:25:50.341728Z", "created_at": "2023-10-20T00:25:48.374408Z", "data_removed": false, "error": null, "id": "gvuypwlbcgpldw676jnsd4xfhq", "input": { "text": "speech", "audio_file": "https://replicate.delivery/pbxt/JjI2fPYhuX9PrxeWgcpol0tQVRhgpUFoKiOdaIBfjvk0OVns/noisy_speech.wav" }, "logs": "Separate audio from [/tmp/tmpap5qi8rvnoisy_speech.wav] with textual query [speech]\nWrite separated audio to [/tmp/separated_audio.wav]", "metrics": { "predict_time": 2.057977, "total_time": 1.96732 }, "output": "https://pbxt.replicate.delivery/18CVvc6g4h7mLh0q30bhACenQoKEXexoC8frZJiXeyq3weebE/separated_audio.wav", "started_at": "2023-10-20T00:25:48.283751Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/gvuypwlbcgpldw676jnsd4xfhq", "cancel": "https://api.replicate.com/v1/predictions/gvuypwlbcgpldw676jnsd4xfhq/cancel" }, "version": "f07004438b8f3e6c5b720ba889389007cbf8dbbc9caa124afc24d9bbd2d307b8" }
Generated inSeparate audio from [/tmp/tmpap5qi8rvnoisy_speech.wav] with textual query [speech] Write separated audio to [/tmp/separated_audio.wav]
Want to make some of these yourself?
Run this model