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
1.Data is augmented by three times, so line 123 of the train.py should be
train.py
positiveCount = len(positiveImageFiles)*3 negativeCount = len(negativeImageFiles)*3
2.The amount of FN and FP is reversed.
The text was updated successfully, but these errors were encountered:
Hi @zhenhao-huang , what you did with this "2.The amount of FN and FP is reversed."
Sorry, something went wrong.
I changed their location.
if y_test[i] == 0: if np.argmax(model_out[i, :]) == y_test[i]: TP = TP + 1 else: FP = FP + 1 else: if np.argmax(model_out[i, :]) == y_test[i]: TN = TN + 1 else: FN = FN + 1
@zhenhao-huang 你好,请问可以分享下你能够跑通的代码吗 包括推理一张图片的demo,谢谢
No branches or pull requests
1.Data is augmented by three times, so line 123 of the
train.py
should be2.The amount of FN and FP is reversed.
The text was updated successfully, but these errors were encountered: