Skip to content

Commit 5423ca1

Browse files
authored
tfhub.dev --> kaggle.com/models in overview.md
As the home page of TF Hub docs, it would be ideal to point to the correct model catalog at this point, IMO.
1 parent a8576ce commit 5423ca1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

site/en/hub/overview.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# TensorFlow Hub
33

44
TensorFlow Hub is an open repository and library for reusable machine learning.
5-
The [tfhub.dev](https://tfhub.dev) repository provides many pre-trained models:
5+
[Kaggle Models](https://www.kaggle.com/models) provides many pre-trained models:
66
text embeddings, image classification models, TF.js/TFLite models and much more.
77
The repository is open to
8-
[community contributors](https://tfhub.dev/s?subtype=publisher).
8+
[community contributors](https://www.kaggle.com/models?owner-type=user).
99

1010
The [`tensorflow_hub`](https://github.com/tensorflow/hub) library lets you
1111
download and reuse them in your TensorFlow program with a minimum amount of
@@ -14,7 +14,7 @@ code.
1414
```python
1515
import tensorflow_hub as hub
1616

17-
model = hub.KerasLayer("https://tfhub.dev/google/nnlm-en-dim128/2")
17+
model = hub.KerasLayer("https://www.kaggle.com/models/google/nnlm/TensorFlow2/en-dim128/2")
1818
embeddings = model(["The rain in Spain.", "falls",
1919
"mainly", "In the plain!"])
2020

@@ -23,8 +23,8 @@ print(embeddings.shape) #(4,128)
2323

2424
## Next Steps
2525

26-
- [Find models on tfhub.dev](https://tfhub.dev)
27-
- [Publish models on tfhub.dev](publish.md)
26+
- [Find models on kaggle.com](https://www.kaggle.com/models)
27+
- [Publish models on kaggle.com](publish.md)
2828
- TensorFlow Hub library
2929
- [Install TensorFlow Hub](installation.md)
3030
- [Library overview](lib_overview.md)

0 commit comments

Comments
 (0)