Skip to content

Commit

Permalink
Correct accidentally removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCsabaToth authored Aug 29, 2023
1 parent 9cb9bd9 commit acf60e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"outputs": [],
"source": [
"# this should output \"Num GPUs Available: 1\" if you have one GPU attached\n",
"\"Num GPUs Available: \", len(tf.config.list_physical_devices(\"GPU\")))"
"print(\"Num GPUs Available: \", len(tf.config.list_physical_devices(\"GPU\")))"
]
},
{
Expand Down Expand Up @@ -221,7 +221,7 @@
"outputs": [],
"source": [
"# Train tokenizer vocabulary\n",
"\"Training the word piece tokenizer. This will take 5-10 mins...\")\n",
"print(\"Training the word piece tokenizer. This will take 5-10 mins...\")\n",
"vocab = keras_nlp.tokenizers.compute_word_piece_vocabulary(\n",
" raw_train_ds,\n",
" vocabulary_size=VOCAB_SIZE,\n",
Expand Down

0 comments on commit acf60e8

Please sign in to comment.