RemiRigal / snreval-python

This repository provides a small Python wrapper for the Matlab tool SNR Eval provided by Labrosa: https://labrosa.ee.columbia.edu/projects/snreval/
MIT License
11 stars 1 forks source link

Empty Data frame output from snr_eavl.eval() #2

Open bchinnari opened 2 years ago

bchinnari commented 2 years ago

I installed the pre-requisites on my MAC from https://labrosa.ee.columbia.edu/projects/snreval/#9 and I changed the path MCRROOT accordingly in snreval_MACI64/run_snreval_prj.sh. I installed snreval using pip.

I am getting an empty output data frame from the following code

from snreval import SNREval
import pandas as pd

snr_eval = SNREval("/users/bchinnari/Downloads/snreval_MACI64")
df = snr_eval.eval("/users/bchinnari/Downloads/SineWaveMinus16.wav")
print(type(df))
print(df)

this is the ouput

<class 'pandas.core.frame.DataFrame'>
Empty DataFrame
Columns: [file, STNR, SNR]
Index: []

I don't know where I am going wrong

Thanks Bhargav

koudounasalkis commented 2 years ago

I am facing the same issue. Were you finally able to find a solution?

bchinnari commented 2 years ago

No.

neharaj-commits commented 1 year ago

I am facing the same issue. I know its been a while since this was posted but I was wondering if anyone found a solution.

bchinnari commented 1 year ago

I did not find any solution

RemiRigal commented 1 year ago

@bchinnari sorry for the delayed response.

Could any of you provide the following information:

Thank you !

bchinnari commented 1 year ago

Hi @RemiRigal ..I am using python 3.8.9 and MACOS BigSur - 11.6.4. I don't know how to check the executable. I am just using the python code which is written above in my previous messages.

gongchenghhu commented 1 year ago

I am facing the same issue.