librarian-bot commited on
Commit
83eee7a
1 Parent(s): d5b43d3

Librarian Bot: Add base_model information to model

Browse files

This pull request aims to enrich the metadata of your model by adding [`google/flan-t5-large`](https://huggingface.co/google/flan-t5-large) as a `base_model` field, situated in the `YAML` block of your model's `README.md`.

How did we find this information? We performed a regular expression match on your `README.md` file to determine the connection.

**Why add this?** Enhancing your model's metadata in this way:
- **Boosts Discoverability** - It becomes straightforward to trace the relationships between various models on the Hugging Face Hub.
- **Highlights Impact** - It showcases the contributions and influences different models have within the community.

For a hands-on example of how such metadata can play a pivotal role in mapping model connections, take a look at [librarian-bots/base_model_explorer](https://huggingface.co/spaces/librarian-bots/base_model_explorer).

This PR comes courtesy of [Librarian Bot](https://huggingface.co/librarian-bot). If you have any feedback, queries, or need assistance, please don't hesitate to reach out to [@davanstrien](https://huggingface.co/davanstrien). Your input is invaluable to us!

Files changed (1) hide show
  1. README.md +19 -19
README.md CHANGED
@@ -1,14 +1,19 @@
1
  ---
 
 
2
  license: apache-2.0
 
3
  tags:
4
  - generated_from_trainer
5
  - summarization
6
  - stacked summaries
7
  - prompt engineering
8
- metrics:
9
- - rouge
10
  datasets:
11
  - stacked-summaries/stacked-samsum-1024
 
 
 
 
12
  model-index:
13
  - name: flan-t5-large-stacked-samsum1024-WIP3
14
  results:
@@ -21,35 +26,30 @@ model-index:
21
  config: samsum
22
  split: test
23
  metrics:
24
- - name: ROUGE-1
25
- type: rouge
26
  value: 47.6682
 
27
  verified: true
28
- - name: ROUGE-2
29
- type: rouge
30
  value: 23.3053
 
31
  verified: true
32
- - name: ROUGE-L
33
- type: rouge
34
  value: 39.7678
 
35
  verified: true
36
- - name: ROUGE-LSUM
37
- type: rouge
38
  value: 43.259
 
39
  verified: true
40
- - name: loss
41
- type: loss
42
  value: 2.372586965560913
 
43
  verified: true
44
- - name: gen_len
45
- type: gen_len
46
  value: 17.4237
 
47
  verified: true
48
- language:
49
- - en
50
- library_name: transformers
51
- pipeline_tag: summarization
52
-
53
  ---
54
 
55
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: apache-2.0
5
+ library_name: transformers
6
  tags:
7
  - generated_from_trainer
8
  - summarization
9
  - stacked summaries
10
  - prompt engineering
 
 
11
  datasets:
12
  - stacked-summaries/stacked-samsum-1024
13
+ metrics:
14
+ - rouge
15
+ pipeline_tag: summarization
16
+ base_model: google/flan-t5-large
17
  model-index:
18
  - name: flan-t5-large-stacked-samsum1024-WIP3
19
  results:
 
26
  config: samsum
27
  split: test
28
  metrics:
29
+ - type: rouge
 
30
  value: 47.6682
31
+ name: ROUGE-1
32
  verified: true
33
+ - type: rouge
 
34
  value: 23.3053
35
+ name: ROUGE-2
36
  verified: true
37
+ - type: rouge
 
38
  value: 39.7678
39
+ name: ROUGE-L
40
  verified: true
41
+ - type: rouge
 
42
  value: 43.259
43
+ name: ROUGE-LSUM
44
  verified: true
45
+ - type: loss
 
46
  value: 2.372586965560913
47
+ name: loss
48
  verified: true
49
+ - type: gen_len
 
50
  value: 17.4237
51
+ name: gen_len
52
  verified: true
 
 
 
 
 
53
  ---
54
 
55