RedHitMark commited on
Commit
8e3f8ff
·
verified ·
1 Parent(s): ce282c3

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
@@ -57,8 +78,8 @@ Load SEMPL-IT model and tokenizer:
57
  ```py
58
  from transformers import AutoModelForCausalLM, AutoTokenizer
59
 
60
- tokenizer = AutoTokenizer.from_pretrained("VerbACxSS/sempl-it-sentence-reorganizer-awq")
61
- model = AutoModelForCausalLM.from_pretrained("VerbACxSS/sempl-it-sentence-reorganizer-awq").to("cuda")
62
  ```
63
 
64
  Define and apply chat template:
 
9
  tags:
10
  - legal
11
  ---
12
+ # sempl-it-sentence-reorganizer-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)
24
+ 7. [verbs](https://huggingface.co/VerbACxSS/sempl-it-verbs-bnb)
25
+ 8. [sentence-reorganizer](https://huggingface.co/VerbACxSS/sempl-it-sentence-reorganizer-bnb) (this)
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
 
78
  ```py
79
  from transformers import AutoModelForCausalLM, AutoTokenizer
80
 
81
+ tokenizer = AutoTokenizer.from_pretrained("VerbACxSS/sempl-it-sentence-reorganizer-bnb")
82
+ model = AutoModelForCausalLM.from_pretrained("VerbACxSS/sempl-it-sentence-reorganizer-bnb").to("cuda")
83
  ```
84
 
85
  Define and apply chat template: