resemble-ai / Resemblyzer

A python package to analyze and compare voices with deep learning
Apache License 2.0
2.75k stars 424 forks source link

Demo2 not showing any result #90

Open dmestudent opened 6 months ago

dmestudent commented 6 months ago

Hello,

I am currently evaluating this project and I am trying to get the demos working. I cloned the repository, run the setup.py, installed the demo requirements and run the demo02_diarization.py. Afterwards I receive the plot but no interaction is possible.

I tried this on my machine (Win11 + Jetbrains PyCharm Professional) as well as on Google Colab. In both cases I get the same result. The plot with no data.

image

Thanks in advance for any suggestions Best regards

Feadim commented 4 months ago

I have the same issue, do you find the error?

dmestudent commented 4 months ago

I have the same issue, do you find the error?

Sadly never found a solution so I switched to another project 👍

arjuna-dev commented 3 months ago

@dmestudent which other project? Thanks!

sucv commented 1 week ago

It's not a problem of the code, but the issue of matplotlib library. Basically all you need to do is to activate the interactive backend of matplotlib by adding the below line into the first few lines of demo_utils.py.

import matplotlib; matplotlib.use("TkAgg")