You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of this morning, every time i try to run a csv through the online application i receive the below error message. I have previously run the same csv through with no issue.
TypeError: blake3.new() got an unexpected keyword argument 'multithreading'
Traceback:
File "/usr/local/lib/python3.7/site-packages/streamlit/script_runner.py", line 354, in _run_script
exec(code, module.dict)
File "/var/app/app.py", line 45, in
outputs = form(df)
File "./src/components.py", line 102, in form
df = pipe.vaex_process(df, text_column)
File "./src/preprocessing.py", line 114, in vaex_process
vdf = vaex.from_pandas(df)
File "/usr/local/lib/python3.7/site-packages/vaex/init.py", line 444, in from_pandas
return from_dict(columns)
File "/usr/local/lib/python3.7/site-packages/vaex/init.py", line 310, in from_dict
return vaex.from_arrays(**data)
File "/usr/local/lib/python3.7/site-packages/vaex/init.py", line 365, in from_arrays
dataset = vaex.dataset.DatasetArrays(arrays)
File "/usr/local/lib/python3.7/site-packages/vaex/dataset.py", line 1287, in init
self._ids = frozendict({key: hash_array(array) for key, array in self._columns.items()})
File "/usr/local/lib/python3.7/site-packages/vaex/dataset.py", line 1287, in
self._ids = frozendict({key: hash_array(array) for key, array in self._columns.items()})
File "/usr/local/lib/python3.7/site-packages/vaex/dataset.py", line 190, in hash_array
blake = blake3.blake3(multithreading=False) # small amounts of data
The text was updated successfully, but these errors were encountered:
As of this morning, every time i try to run a csv through the online application i receive the below error message. I have previously run the same csv through with no issue.
TypeError: blake3.new() got an unexpected keyword argument 'multithreading'
Traceback:
File "/usr/local/lib/python3.7/site-packages/streamlit/script_runner.py", line 354, in _run_script
exec(code, module.dict)
File "/var/app/app.py", line 45, in
outputs = form(df)
File "./src/components.py", line 102, in form
df = pipe.vaex_process(df, text_column)
File "./src/preprocessing.py", line 114, in vaex_process
vdf = vaex.from_pandas(df)
File "/usr/local/lib/python3.7/site-packages/vaex/init.py", line 444, in from_pandas
return from_dict(columns)
File "/usr/local/lib/python3.7/site-packages/vaex/init.py", line 310, in from_dict
return vaex.from_arrays(**data)
File "/usr/local/lib/python3.7/site-packages/vaex/init.py", line 365, in from_arrays
dataset = vaex.dataset.DatasetArrays(arrays)
File "/usr/local/lib/python3.7/site-packages/vaex/dataset.py", line 1287, in init
self._ids = frozendict({key: hash_array(array) for key, array in self._columns.items()})
File "/usr/local/lib/python3.7/site-packages/vaex/dataset.py", line 1287, in
self._ids = frozendict({key: hash_array(array) for key, array in self._columns.items()})
File "/usr/local/lib/python3.7/site-packages/vaex/dataset.py", line 190, in hash_array
blake = blake3.blake3(multithreading=False) # small amounts of data
The text was updated successfully, but these errors were encountered: