Skip to content

Commit

Permalink
Create prediction.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH committed May 11, 2024
1 parent 2bba486 commit 78361d3
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 78361d3

Please sign in to comment.