This message was deleted.
# ask-anything
s
This message was deleted.
e
Is the traceback visible or does it only show the error message?
a
only this error, no traceback
soorgeon refactor ../SHNetTests.ipynb --df-format parquet Added 'output' directory to .gitignore... Error: An error occurred when refactoring notebook. Try refactoring as a single task pipeline: $ soorgeon refactor ../SHNetTests.ipynb --single-task Error details: unsupported operand type(s) for +=: 'NoneType' and 'str' (automl) [arm2arm@nnewl3 pipeline]$
e
so my error management code is hiding the traceback 😕 let me try to debug. I think i know where the error might be. thanks for your feedback! will update you
a
thank you, i wondering if it is possible to use dask parquet output. i can see my all tasks dataframes are dumped as a pkl single files
e
yes, pkl is only the default, but you can manually change the code to store/load the data frames after running
soorgeon refactor
, the
--df-format
does it automatically for variables with the
df_
prefix. I'll look into this now 🙂
ok, so I published a new soorgeon version to ease debugging. please upgrade (ensure you get version
0.0.15
(
soorgeon --version
) then run
soorgeon refactor ../SHNetTests.ipynb --df-format parquet --log error
- this should now print the traceback, to help me understand why the
--df-format parquet
thing is breaking
👍 1