File size: 2,547 Bytes
c7fe52a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f3b8b19
c7fe52a
 
 
 
 
 
 
 
 
 
 
 
 
 
b17fbe5
c7fe52a
b364747
 
 
 
 
c7fe52a
b364747
b17fbe5
c7fe52a
 
 
 
 
 
f3b8b19
 
 
 
785d01e
 
 
 
c7fe52a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
license: apache-2.0
base_model: t5-small
tags:
- generated_from_trainer
metrics:
- rouge
model-index:
- name: text_shortening_model_v1
  results: []
---

<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->

# text_shortening_model_v1

This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on a dataset of 699 original-shortened texts pairs of advertising texts.
It achieves the following results on the evaluation set:
- Loss: 1.9266
- Rouge1: 0.4797
- Rouge2: 0.2787
- Rougel: 0.4325
- Rougelsum: 0.4321
- Bert precision: 0.8713
- Bert recall: 0.8594
- Average word count: 10.0714
- Max word count: 18
- Min word count: 1
- Average token count: 15.45

## Model description
Data is cleaned and preprocessed: "summarize" prefix added for each original text input.

Loss is a combination of:
- CrossEntropy
- Custom loss which can be seen as a length penalty: +1 if predicted text length > 12, else 0

Loss = theta * Custom loss + (1 - theta) * CrossEntropy

(theta = 0.3)

## Intended uses & limitations

More information needed

## Training and evaluation data

699 original-shortened texts pairs of advertising texts of various lengths.
- Original texts lengths: > 12
- Shortened texts lengths: < 13

Splitting amongst sub-datasets:
- 70% of the dataset is used for training
- 20% of the dataset is used for validation
- 10% of the dataset is kept for testing

## Training procedure

### Training hyperparameters

The following hyperparameters were used during training:
- learning_rate: 0.0001
- train_batch_size: 64
- eval_batch_size: 64
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 1

### Training results

| Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Bert precision | Bert recall | Average word count | Max word count | Min word count | Average token count |
|:-------------:|:-----:|:----:|:---------------:|:------:|:------:|:------:|:---------:|:--------------:|:-----------:|:------------------:|:--------------:|:--------------:|:-------------------:|
| 1.7188        | 1.0   | 8    | 1.9266          | 0.4797 | 0.2787 | 0.4325 | 0.4321    | 0.8713         | 0.8594      | 10.0714            | 18             | 1              | 15.45               |


### Framework versions

- Transformers 4.32.1
- Pytorch 2.0.1+cu118
- Datasets 2.14.4
- Tokenizers 0.13.3