emajoch1 commited on
Commit
eaf438b
1 Parent(s): b73027e

Updated README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -7,4 +7,16 @@ sdk: static
7
  pinned: false
8
  ---
9
 
10
- Edit this `README.md` markdown file to author your organization card.
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pinned: false
8
  ---
9
 
10
+ ## Description
11
+ A collection of pruned models on different pruning methods, sparsity types and ratios, calibration sets as well as calibration languages. All of the model names are in the format:
12
+ ```
13
+ pruned-<original model name>-<pruning method>-<sparsity ratio>-<sparsity type>-<calibration dataset>-<calibration languages>
14
+ ```
15
+
16
+ ## Usage
17
+ Load the model using the `transformers` library, which can be installed using `pip install transformers`:
18
+ ```python
19
+ # main.py
20
+ from transformers import AutoModel
21
+ model = AutoModel.from_pretrained("multilingual-pruning/<model name>")
22
+ ```