Open G-walk opened 2 weeks ago
oh my god! I have encounted the same problem with you! did you solve this problem? would you like to give me a hand? thank you very much!
I am not very familiar with librosa . I have search the problem on the net, it seems like that the librosa cannot be used to load file with the format of mp4, it is used to load audio file? I am not sure whether it is true or not. so, why this problem happen, does anyone can help me? thank u very much~
It could be a problem with the librosa version. There was a researcher who had the same issue, but the only assumption I could make was the difference in the library version.
It could be a problem with the librosa version. There was a researcher who had the same issue, but the only assumption I could make was the difference in the library version.
dear author, thank you so much. but after change the version of librosa(like change to librosa==0.7.2, 0.8.1, 0.9.2, 0.10.0, 0.10.1, 0.10.2, 0.10.2.post1 ) I still have the same problem! can you post you version of your packages in the requirements.txt . I feel so disturbed of this error! thank you soooooo much! and my versions of packages are as follows: av==10.0.0 librosa==0.10.0 numpy==1.23.5 opencv-python==4.7.0.72 pandas==1.5.3 scikit-learn==1.2.2 scipy==1.10.1 torch==1.13.1 torchaudio==0.13.1 torchvision==0.14.1 transformers==4.27.2
they are all int the env of python=3.9.0
thank you again!
oh my god! I have encounted the same problem with you! did you solve this problem? would you like to give me a hand? thank you very much!
Sorry, I haven't solved the problem yet. But I tried to train the model with the IEMOCAP dataset and related codes, this time it worked well. After all the IEMOCAP dataset's format is different from MELD's.
It could be a problem with the librosa version. There was a researcher who had the same issue, but the only assumption I could make was the difference in the library version.
Thank you for your reply. I tried the code in https://github.com/yuntaeyang/TelME/issues/2#issuecomment-2102006530, it worked well:
But the same issue as https://github.com/yuntaeyang/TelME/issues/6#issue-2591188904 occurred if I ran python MELD/teacher.py
. Maybe the librosa version isn't the problem?
Hi, I think we need to make sure that dia125_utt3.mp4 in the Meld dataset has no problem.
I share the issue of Meld dataset regarding this issue. https://github.com/declare-lab/MELD/issues/39
Hi, I think we need to make sure that dia125_utt3.mp4 in the Meld dataset has no problem.
I share the issue of Meld dataset regarding this issue. declare-lab/MELD#39
I replaced dia125_utt3.mp4 with the video in https://github.com/declare-lab/MELD/issues/39#issuecomment-1113166077, it seemed the problem is solved. Thank you very much!
But the video used as a replacement is clipped with subtitles and some irrelevant UIs. I will see if I can make a cleaner one later.
But it is enough to use it to test the code. Thanks again!
Hi, I think we need to make sure that dia125_utt3.mp4 in the Meld dataset has no problem. I share the issue of Meld dataset regarding this issue. declare-lab/MELD#39
I replaced dia125_utt3.mp4 with the video in declare-lab/MELD#39 (comment), it seemed the problem is solved. Thank you very much!
But the video used as a replacement is clipped with subtitles and some irrelevant UIs. I will see if I can make a cleaner one later.
But it is enough to use it to test the code. Thanks again!
I made a cleaner version of dia125_utt3.mp4 and put it in this issue: https://github.com/declare-lab/MELD/issues/39#issuecomment-2443931712
However, I also noticed there were other missing files in the dev set and test set, this issue also mentioned the problem: https://github.com/declare-lab/MELD/issues/22#issue-698055546
So I think it is better to make a missing file check in utils.py
:
if not os.path.exists(video_path):
print(f"Missing video file: {video_path}")
continue
I ran
python MELD/teacher.py
and the following message occured:I have ffmpeg installed and it is OK if I run
python MELD/inference.py
with the checkpoint you released in this project. I don't know why this happened.