Added weight report and more comments.

This commit is contained in:
Batuhan Berk Başoğlu 2025-09-22 18:01:29 -04:00
parent c81789fbd3
commit 6922a8e6cb
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo
4 changed files with 22 additions and 6 deletions

View file

@ -164,3 +164,7 @@ if __name__ == "__main__":
preds = model.predict(x_test)
print("\nFirst 10 predictions:")
print(preds.head(10))
# weight report
print("\nWeights from the model:")
print(model.w)