librarian-bot commited on
Commit
0257072
1 Parent(s): f98d7f3

Librarian Bot: Add base_model information to model

Browse files

This pull request aims to enrich the metadata of your model by adding [`google/t5-v1_1-base`](https://huggingface.co/google/t5-v1_1-base) 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 +17 -14
README.md CHANGED
@@ -1,7 +1,7 @@
1
  ---
2
- license: apache-2.0
3
  language:
4
  - en
 
5
  tags:
6
  - t5
7
  - qa
@@ -13,17 +13,20 @@ datasets:
13
  metrics:
14
  - rouge
15
  widget:
16
- - text: "why hasn't humanity expanded to live on other planets in our solar system?"
17
- example_title: "solar system"
18
- - text: "question: what is a probability distribution? context: I am just learning about statistics."
19
- example_title: "probability distribution"
20
- - text: "question: What are the underlying physical processes by which exercise helps us lose weight? context: I started working out two weeks ago and already feel a lot better, and started to think about it and became deeply confused."
21
- example_title: "pumpen"
22
- - text: "what is a neural network?"
23
- example_title: "deep learning"
24
- - text: "What is the process that computers use to understand human language in deep learning models?"
25
- example_title: "NLP"
26
-
 
 
 
27
  inference:
28
  parameters:
29
  max_length: 64
@@ -32,8 +35,8 @@ inference:
32
  repetition_penalty: 3.51
33
  length_penalty: 0.8
34
  num_beams: 4
35
- early_stopping: True
36
-
37
  ---
38
 
39
 
 
1
  ---
 
2
  language:
3
  - en
4
+ license: apache-2.0
5
  tags:
6
  - t5
7
  - qa
 
13
  metrics:
14
  - rouge
15
  widget:
16
+ - text: why hasn't humanity expanded to live on other planets in our solar system?
17
+ example_title: solar system
18
+ - text: 'question: what is a probability distribution? context: I am just learning
19
+ about statistics.'
20
+ example_title: probability distribution
21
+ - text: 'question: What are the underlying physical processes by which exercise helps
22
+ us lose weight? context: I started working out two weeks ago and already feel
23
+ a lot better, and started to think about it and became deeply confused.'
24
+ example_title: pumpen
25
+ - text: what is a neural network?
26
+ example_title: deep learning
27
+ - text: What is the process that computers use to understand human language in deep
28
+ learning models?
29
+ example_title: NLP
30
  inference:
31
  parameters:
32
  max_length: 64
 
35
  repetition_penalty: 3.51
36
  length_penalty: 0.8
37
  num_beams: 4
38
+ early_stopping: true
39
+ base_model: google/t5-v1_1-base
40
  ---
41
 
42