Skip to content

Commit

Permalink
Fixed the broken link in handwriting_recognition.py (#1757)
Browse files Browse the repository at this point in the history
* Fixed the broken link in handwriting_recognition.py

* Fixed the broken link in handwriting_recognition.md and handwriting_recognition.ipynb

* Update handwriting_recognition.ipynb
  • Loading branch information
tilakrayal authored Feb 13, 2024
1 parent 7a885f1 commit ff4276a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/vision/handwriting_recognition.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def clean_labels(labels):
### Building the character vocabulary
Keras provides different preprocessing layers to deal with different modalities of data.
[This guide](https://keras.io/guides/preprocessing_layers/) provides a comprehensive introduction.
[This guide](https://keras.io/api/layers/preprocessing_layers/) provides a comprehensive introduction.
Our example involves preprocessing labels at the character
level. This means that if there are two labels, e.g. "cat" and "dog", then our character
vocabulary should be {a, c, d, g, o, t} (without any special tokens). We use the
Expand Down
2 changes: 1 addition & 1 deletion examples/vision/ipynb/handwriting_recognition.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
"### Building the character vocabulary\n",
"\n",
"Keras provides different preprocessing layers to deal with different modalities of data.\n",
"[This guide](https://keras.io/guides/preprocessing_layers/) provides a comprehensive introduction.\n",
"[This guide](https://keras.io/api/layers/preprocessing_layers/) provides a comprehensive introduction.\n",
"Our example involves preprocessing labels at the character\n",
"level. This means that if there are two labels, e.g. \"cat\" and \"dog\", then our character\n",
"vocabulary should be {a, c, d, g, o, t} (without any special tokens). We use the\n",
Expand Down
2 changes: 1 addition & 1 deletion examples/vision/md/handwriting_recognition.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ test_labels_cleaned = clean_labels(test_labels)
### Building the character vocabulary

Keras provides different preprocessing layers to deal with different modalities of data.
[This guide](https://keras.io/guides/preprocessing_layers/) provides a comprehensive introduction.
[This guide](https://keras.io/api/layers/preprocessing_layers/) provides a comprehensive introduction.
Our example involves preprocessing labels at the character
level. This means that if there are two labels, e.g. "cat" and "dog", then our character
vocabulary should be {a, c, d, g, o, t} (without any special tokens). We use the
Expand Down

0 comments on commit ff4276a

Please sign in to comment.