You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 7, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: docs/cloud_tpu.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,11 @@ See the official tutorial for [running Transformer
18
18
on Cloud TPUs](https://cloud.google.com/tpu/docs/tutorials/transformer)
19
19
for some examples and try out your own problems.
20
20
21
+
You can train an Automatic Speech Recognition (ASR) model with Transformer
22
+
on TPU by using `transformer` as `model` with `transformer_librispeech_tpu` as
23
+
`hparams_set` and `librispeech` as `problem`. See this [tutorial](tutorials/ast_with_transformer.md) for more details on training it and this
24
+
[notebook](https://colab.research.google.com/github/tensorflow/tensor2tensor/blob/master/tensor2tensor/notebooks/asr_transformer.ipynb) to see how the resulting model transcribes your speech to text.
25
+
21
26
Image Transformer:
22
27
*`imagetransformer` with `imagetransformer_base_tpu` (or
*[IPython notebook](https://colab.research.google.com/github/tensorflow/tensor2tensor/blob/master/tensor2tensor/notebooks/hello_t2t.ipynb): Get a hands-on experience.
23
+
*[Automatic Speech Recognition notebook](https://colab.research.google.com/github/tensorflow/tensor2tensor/blob/master/tensor2tensor/notebooks/asr_transformer.ipynb): Transcribe speech to text with a T2T model.
24
+
25
+
## Basics
26
+
23
27
*[Overview](overview.md): How all parts of T2T code are connected.
24
28
*[New Problem](new_problem.md): Train T2T models on your data.
25
29
*[New Model](new_model.md): Create your own T2T model.
Copy file name to clipboardExpand all lines: docs/tutorials/asr_with_transformer.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,13 @@
1
1
# Automatic Speech Recognition (ASR) with Transformer
2
2
3
+
Check out the [Automatic Speech Recognition notebook](https://colab.research.google.com/github/tensorflow/tensor2tensor/blob/master/tensor2tensor/notebooks/asr_transformer.ipynb) to see how the resulting model transcribes your speech to text.
4
+
3
5
## Data set
4
6
5
7
This tutorial uses the publicly available
6
8
[Librispeech](http://www.openslr.org/12/) ASR corpus.
7
9
10
+
8
11
## Generate the dataset
9
12
10
13
To generate the dataset use `t2t-datagen`. You need to create environment
0 commit comments