We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug 'export_pairs' is not working due to missing 'write' function
To Reproduce
add w.export_pairs() to WorkFlow.ipynb
Expected behavior
export pairs as a dataframe
Screenshots
NameError Traceback (most recent call last) Cell In[18], line 1 ----> 1 w.export_pairs()
File site-packages\pyjedai\workflow.py:195, in PYJEDAIWorkFlow.export_pairs(self) 189 def export_pairs(self) -> pd.DataFrame: 190 """Export pairs to file. 191 192 Returns: 193 pd.DataFrame: pairs as a DataFrame 194 """ --> 195 return write(self.final_pairs, self.data)
NameError: name 'write' is not defined
Desktop (please complete the following information):
Additional context in the past 'write' was in evaluation.py
The text was updated successfully, but these errors were encountered:
Thanks for the detailed report. It is fixed and will be updated in the next public release!
Sorry, something went wrong.
Fixed issues #22 and #23;
b360040
Nikoletos-K
No branches or pull requests
Describe the bug
'export_pairs' is not working due to missing 'write' function
To Reproduce
add w.export_pairs() to WorkFlow.ipynb
Expected behavior
export pairs as a dataframe
Screenshots
NameError Traceback (most recent call last)
Cell In[18], line 1
----> 1 w.export_pairs()
File site-packages\pyjedai\workflow.py:195, in PYJEDAIWorkFlow.export_pairs(self)
189 def export_pairs(self) -> pd.DataFrame:
190 """Export pairs to file.
191
192 Returns:
193 pd.DataFrame: pairs as a DataFrame
194 """
--> 195 return write(self.final_pairs, self.data)
NameError: name 'write' is not defined
Desktop (please complete the following information):
Additional context
in the past 'write' was in evaluation.py
The text was updated successfully, but these errors were encountered: