Skip to content

Commit

Permalink
Create prediction.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored May 11, 2024
1 parent fa972a4 commit 5ba03f6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions machine learning/prediction.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import tensorflow as tf

def predict(model, data):
# Make predictions using the trained model
predictions = model.predict(data)

return predictions

0 comments on commit 5ba03f6

Please sign in to comment.