Closed benjamin5988 closed 7 months ago
Thanks for the bug report. For now, please use the step-by-step method (see the example notebook) until I figure out what's wrong with the envelope function.
There's a lot going on in between so there are many ways the envelope function can go wrong, and apparently we haven't covered all our bases
@benjamin5988 Upon inspecting the error traceback, it seems that your code didn't get very far. It got stuck in the preprocessing step, for that I would need a minimal working example to debug. Basically, a script that "only" reproduces the bug, no more. Please include the data as well as I suspect it's the data (not that your data is the issue, but your data has revealed the potential bug, so I'll need it to reproduce and provide a fix)
The data is the test data. I’m just doing step by step. It’s fine - no worries.
On Thu, Feb 15, 2024 at 1:52 PM Amin Sadeghi @.***> wrote:
@benjamin5988 https://github.com/benjamin5988 Upon inspecting the error traceback, it seems that your code didn't get very far. It got stuck in the preprocessing step, for that I would need a minimal working example to debug. Basically, a script that "only" reproduces the bug, no more. Please include the data as well as I suspect it's the data (not that your data is the issue, but your data has revealed the potential bug, so I'll need it to reproduce and provide a fix)
— Reply to this email directly, view it on GitHub https://github.com/AUTODIAL/AutoEIS/issues/93#issuecomment-1947163676, or unsubscribe https://github.com/notifications/unsubscribe-auth/AYCJLMHUJKM5467232WFNMLYTZRRDAVCNFSM6AAAAABDIX6VCSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNBXGE3DGNRXGY . You are receiving this because you were mentioned.Message ID: @.***>
I ran into the same issue, but that's actually the documentation mixing the order of the input parameters, here should be the right way to run the sample dataset (note the switch between the freq and Z argument:
import numpy as np
import autoeis as ae
# Load test dataset shipped with AutoEIS
Z, freq = ae.io.load_test_dataset()
# Perform automated EIS analysis
circuits = ae.perform_full_analysis(freq, Z, iters=100, parallel=False)
print(circuits)
It would be great if the documentation could be updated to reflect the actual order of the arguments.
@megrez-light, @benjamin5988: Thanks again for the bug report, the documentation is now fixed.