marmoi / dcase2021_task1a_baseline

MIT License
14 stars 6 forks source link

Requirements.txt #1

Closed hekkelek closed 3 years ago

hekkelek commented 3 years ago

Currently, the requirements cannot be installed using pip install -r requirements.txt (as suggested by README).

Also, it seems to have some compatibility issues too:

marmoi commented 3 years ago

I have changed the requirements.txt file. The problem is that currently dcase_util has to be installed manually with "python setup.py develop" command from the development branch of the repository.

hekkelek commented 3 years ago

Thank you for the quick fix. Unfortunately, manually installing the develop branch of dcase_util still does not fix the issue. I attached the output log. output.txt

marmoi commented 3 years ago

Sorry , we are still working on it. But this should fix the problem:

import tensorflow as tf tf.compat.v1.ConfigProto

marmoi commented 3 years ago

The main files task1a.py and task1a_tflite.py have been updated, also the is a new release of the dcase_utils v0.2.17 which can be installed using "pip install dcase_util". This should solve the incompatibility problems.

hekkelek commented 3 years ago

Thank you, it works now.