TomAtGithub

Results 3 comments of TomAtGithub

I had the same problem and was able to solve it by changing lines 71-73 in `opensmile/src/main/java/com/audeering/opensmile/OpenSMILEJNI.java` to: ``` public static boolean SwigDirector_CallbackExternalSink_onCalledExternalSinkCallback(CallbackExternalSink jself, float[] data) { return jself.onCalledExternalSinkCallback(data); }...

Hey, I experienced the same problem. I was able to workaround this problem by removing all params except `faiss_config_path` and `faiss_index_path` from the FAISSDocumentStore. This makes sense because the FAISSDocumentStore...

The problem seems to be here: https://github.com/dbt-labs/dbt-core/blob/7e2a08f3a5a873d37d7e9de1ada935a5d78c3b22/core/dbt/plugins/manager.py#L96 Because all python scripts (*.py modules) in `sys.path` are loaded. The `path` of `pkgutil.iter_modules` could be set to `dbt_packages/` ([see here](https://docs.python.org/3/library/pkgutil.html#pkgutil.iter_modules)), but this...