Update README.md
Browse files
README.md
CHANGED
@@ -91,8 +91,9 @@ According ot the original [blog](https://www.yitay.net/blog/flan-ul2-20b) here a
|
|
91 |
|
92 |
You can use the [`convert_t5x_checkpoint_to_pytorch.py`](https://github.com/huggingface/transformers/blob/main/src/transformers/models/t5/convert_t5x_checkpoint_to_pytorch.py) script and pass the argument `strict = False`. The final layer norm is missing from the original dictionnary, that is why we are passing the `stric=False` argument.
|
93 |
```bash
|
94 |
-
python convert_t5x_checkpoint_to_pytorch.py --t5x_checkpoint_path
|
95 |
```
|
|
|
96 |
|
97 |
## Running the model
|
98 |
|
|
|
91 |
|
92 |
You can use the [`convert_t5x_checkpoint_to_pytorch.py`](https://github.com/huggingface/transformers/blob/main/src/transformers/models/t5/convert_t5x_checkpoint_to_pytorch.py) script and pass the argument `strict = False`. The final layer norm is missing from the original dictionnary, that is why we are passing the `stric=False` argument.
|
93 |
```bash
|
94 |
+
python convert_t5x_checkpoint_to_pytorch.py --t5x_checkpoint_path PATH_TO_T5X_CHECKPOINTS --config_file PATH_TO_CONFIG --pytorch_dump_path PATH_TO_SAVE
|
95 |
```
|
96 |
+
We used the same config file as [`google/ul2`](https://huggingface.co/google/ul2/blob/main/config.json).
|
97 |
|
98 |
## Running the model
|
99 |
|