I ran the code it analyzed my files for a day and nothing happened
#1
by
dpe1
- opened
I ran
from audiodiffusion.audio_encoder import AudioEncoder
audio_encoder = AudioEncoder.from_pretrained("teticio/audio-encoder")
audio_encoder.encode()
What is supposed to happen after I run it? It just closed
Try running on just one file to being with like so:
audio_encoder.encode(["file.mp3"])
If you do this in a Jupyter notebook, it will output a vector of numbers for this file. So then you can try on more files and do something with the vectors (e.g., look at cosine proximity between them, cluster them, feed into a classification model, or use to do coniditional generation with audiodiffusers)
teticio
changed discussion status to
closed