Skip to content

Commit

Permalink
Merge pull request #6 from IBM/TF-release
Browse files Browse the repository at this point in the history
Tensorflow Documentation Release Updates
  • Loading branch information
thakobian authored Nov 15, 2024
2 parents dca8880 + 9a605a2 commit 74b7a8f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ schedule.

The International License Agreement for Non-Warranted Programs (ILAN) agreement
can be found
[here](https://www.ibm.com/support/customer/csol/terms/?id=L-RFWG-5CWP5P&lc=en).
[here](https://www.ibm.com/support/customer/csol/terms/?id=L-SFFB-XMC6QG&lc=en).

The registered trademark Linux® is used pursuant to a sublicense from the Linux
Foundation, the exclusive licensee of Linus Torvalds, owner of the mark on a
Expand Down
2 changes: 1 addition & 1 deletion samples/fashion-mnist/fashion_mnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

X_test = X_test.astype('float32') / 255

model = tf.keras.models.load_model('./saved_model/1')
model = tf.keras.models.load_model('model.keras')
print(model.summary())

y_pred = model.predict(X_test, batch_size=64)
Expand Down
2 changes: 1 addition & 1 deletion samples/fashion-mnist/fashion_mnist_training.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@

# Print test accuracy
print('\n', 'Test accuracy:', score[1])
model.save('./saved_model/1')
model.save('model.keras')

0 comments on commit 74b7a8f

Please sign in to comment.