Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# BERT Large model IPU config
|
2 |
+
|
3 |
+
This model contains just the `IPUConfig` files for running the BERT large model (e.g. [bert-large-uncased](https://huggingface.co/bert-large-uncased) or [bert-large-cased](https://huggingface.co/bert-large-cased)) on Graphcore IPUs.
|
4 |
+
|
5 |
+
**This model contains no model weights, only an IPUConfig.**
|
6 |
+
|
7 |
+
## Usage
|
8 |
+
|
9 |
+
```
|
10 |
+
from optimum.graphcore import IPUConfig
|
11 |
+
ipu_config = IPUConfig.from_pretrained("Graphcore/bert-large-ipu")
|
12 |
+
```
|