Hi,
In evaluation.py, you define the function evaluate twice with different arguments. And yet, Python does not support function overloading. Here are your declarations:
def evaluate(G: object, k: int = 2, method: str = 'all'):
def evaluate(G, dfnodes, graphEdges, method, k):
I do not understand how your examples could work. Any help is appreciated.
Also, could you please provide an uncommented example that calls predict and evaluate that can run as is? At this
time, you include an example in the README.md file, but it does not run properly.
Thanks,
Hi,
In evaluation.py, you define the function
evaluatetwice with different arguments. And yet, Python does not support function overloading. Here are your declarations:I do not understand how your examples could work. Any help is appreciated.
Also, could you please provide an uncommented example that calls predict and evaluate that can run as is? At this
time, you include an example in the README.md file, but it does not run properly.
Thanks,