katalinic commited on
Commit
984d565
1 Parent(s): 5b32796

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -1,3 +1,24 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ # Graphcore/distilroberta-base-ipu
6
+
7
+ Optimum Graphcore is a new open-source library and toolkit that enables developers to access IPU-optimized models certified by Hugging Face. It is an extension of Transformers, providing a set of performance optimization tools enabling maximum efficiency to train and run models on Graphcore’s IPUs - a completely new kind of massively parallel processor to accelerate machine intelligence. Learn more about how to take train Transformer models faster with IPUs at [hf.co/hardware/graphcore](https://huggingface.co/hardware/graphcore).
8
+
9
+ Through HuggingFace Optimum, Graphcore released ready-to-use IPU-trained model checkpoints and IPU configuration files to make it easy to train models with maximum efficiency in the IPU. Optimum shortens the development lifecycle of your AI models by letting you plug-and-play any public dataset and allows a seamless integration to our State-of-the-art hardware giving you a quicker time-to-value for your AI project.
10
+
11
+ ## Model description
12
+
13
+ This model is a distilled version of the [RoBERTa-base model](https://arxiv.org/abs/1907.11692).
14
+
15
+ ## Intended uses & limitations
16
+
17
+ This model contains just the `IPUConfig` files for running the [distilroberta-base](https://huggingface.co/distilroberta-base) model on Graphcore IPUs.
18
+
19
+ ## Usage
20
+
21
+ ```
22
+ from optimum.graphcore import IPUConfig
23
+ ipu_config = IPUConfig.from_pretrained("Graphcore/distilroberta-base-ipu")
24
+ ```