Ryan Bales
Ryan Bales
Note: I'm now passing in 41 classes and am getting 41 results. model = train(features, labels, num_classes = len(np.unique(labels)), epochs = 500)
Ah, I think it's here. https://github.com/98mprice/pyAudioClassification/blob/master/pyaudioclassification/__init__.py#L30 Doing np.max takes ignores zero and gives you off by one errors. This would fix it len(np.unique(labels). I can submit a PR if you...
Also, Why are you subtracting by 1 here? https://github.com/98mprice/pyAudioClassification/blob/master/pyaudioclassification/__init__.py#L42
Also interesting in this ticket. Is anyone currently working on this feature?
Sorry for the delay, I re-ran that sample again and interestingly get a different error. Here's the full error and stack trace > base = declarative_base(bind=engine) Traceback (most recent call...
AH I see why, The first error was run on the following Catalog: samples Schema: default The most recent error was run on: Catalog: hive_metastore Schema: default
Here's the trace for the initial error message > base = declarative_base(bind=engine) Traceback (most recent call last): File "/Users/rbales/Library/Caches/pypoetry/virtualenvs/active-ai-api-NyKgQ79e-py3.8/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1900, in _execute_context self.dialect.do_execute( File "/Users/rbales/Library/Caches/pypoetry/virtualenvs/active-ai-api-NyKgQ79e-py3.8/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 736, in do_execute...
Thanks @susodapop After further review we don't have a UC created yet but are working on that now. It seems like a UC is required to use the databricks-sql-connector. Is...
Thanks @susodapop. Interesting, I'm getting this error: **[UC_NOT_ENABLED] Unity Catalog is not enabled on this cluster.** When trying to create a new catalog/schema with the sql connector. > create_catalog_stmt =...
It's not, no UC is enabled.