RedHitMark commited on
Commit
9660c08
·
verified ·
1 Parent(s): c2ee595

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -2
README.md CHANGED
@@ -9,6 +9,27 @@ library_name: transformers
9
  tags:
10
  - legal
11
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ## Usage
13
  Install the following dependencies:
14
  ```sh
@@ -56,8 +77,8 @@ Load SEMPL-IT model and tokenizer:
56
  ```py
57
  from transformers import AutoModelForCausalLM, AutoTokenizer
58
 
59
- tokenizer = AutoTokenizer.from_pretrained("VerbACxSS/sempl-it-nominalizations-awq")
60
- model = AutoModelForCausalLM.from_pretrained("VerbACxSS/sempl-it-nominalizations-awq").to("cuda")
61
  ```
62
 
63
  Define and apply chat template:
 
9
  tags:
10
  - legal
11
  ---
12
+ # sempl-it-nominalizations-bnb
13
+ SEMPL-IT aims to simplify Italian administrative texts using a progressive approach based on multiple specialized models.
14
+ Each model addresses a specific aspect of the text transformation process, ensuring a step-by-step refinement.
15
+
16
+ ## Simplification Pipeline
17
+ The complete text simplification pipeline follows eight sequential steps:
18
+ 1. [proofreading](https://huggingface.co/VerbACxSS/sempl-it-proofreading-bnb)
19
+ 2. [lex](https://huggingface.co/VerbACxSS/sempl-it-lex-bnb)
20
+ 3. [connectives](https://huggingface.co/VerbACxSS/sempl-it-connectives-bnb)
21
+ 4. [expressions](https://huggingface.co/VerbACxSS/sempl-it-expressions-bnb)
22
+ 5. [sentence-splitter](https://huggingface.co/VerbACxSS/sempl-it-sentence-splitter-bnb)
23
+ 6. [nominalizations](https://huggingface.co/VerbACxSS/sempl-it-nominalizations-bnb) (this)
24
+ 7. [verbs](https://huggingface.co/VerbACxSS/sempl-it-verbs-bnb)
25
+ 8. [sentence-reorganizer](https://huggingface.co/VerbACxSS/sempl-it-sentence-reorganizer-bnb)
26
+
27
+ ## Web App
28
+ To integrate this model into the full system, check out:
29
+ - Frontend: [GitHub Repository](https://github.com/VerbACxSS/sempl-it-frontend)
30
+ - Backend: [GitHub Repository](https://github.com/VerbACxSS/sempl-it-backend)
31
+ - Inference: [GitHub Repository](https://github.com/VerbACxSS/sempl-it-inference)
32
+
33
  ## Usage
34
  Install the following dependencies:
35
  ```sh
 
77
  ```py
78
  from transformers import AutoModelForCausalLM, AutoTokenizer
79
 
80
+ tokenizer = AutoTokenizer.from_pretrained("VerbACxSS/sempl-it-nominalizations-bnb")
81
+ model = AutoModelForCausalLM.from_pretrained("VerbACxSS/sempl-it-nominalizations-bnb").to("cuda")
82
  ```
83
 
84
  Define and apply chat template: