librarian-bot commited on
Commit
a6a8f9e
1 Parent(s): 71467b3

Librarian Bot: Add base_model information to model

Browse files

This pull request aims to enrich the metadata of your model by adding [`facebook/opt-350m`](https://huggingface.co/facebook/opt-350m) 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 +27 -13
README.md CHANGED
@@ -9,29 +9,43 @@ tags:
9
  - auto-complete
10
  datasets:
11
  - aeslc
12
-
13
  widget:
14
- - text: "Hey <NAME>,\n\nThank you for signing up for my weekly newsletter. Before we get started, you'll have to confirm your email address."
15
- example_title: "newsletter"
16
- - text: "Hi <NAME>,\n\nI hope this email finds you well. Let me start by saying that I am a big fan of your work."
17
- example_title: "fan"
18
- - text: "Greetings <NAME>,\n\nI hope you had a splendid evening at the Company sausage eating festival. I am reaching out because"
19
- example_title: "festival"
20
- - text: "Good Morning <NAME>,\n\nI was just thinking to myself about how much I love creating value"
21
- example_title: "value"
22
- - text: "URGENT - I need"
23
- example_title: "URGENT"
 
 
 
 
 
 
 
 
 
 
24
 
 
 
 
 
25
  inference:
26
  parameters:
27
  min_length: 4
28
  max_length: 64
29
  length_penalty: 0.7
30
  no_repeat_ngram_size: 3
31
- do_sample: False
32
  num_beams: 4
33
- early_stopping: True
34
  repetition_penalty: 3.5
 
35
  ---
36
 
37
 
 
9
  - auto-complete
10
  datasets:
11
  - aeslc
 
12
  widget:
13
+ - text: 'Hey <NAME>,
14
+
15
+
16
+ Thank you for signing up for my weekly newsletter. Before we get started, you''ll
17
+ have to confirm your email address.'
18
+ example_title: newsletter
19
+ - text: 'Hi <NAME>,
20
+
21
+
22
+ I hope this email finds you well. Let me start by saying that I am a big fan of
23
+ your work.'
24
+ example_title: fan
25
+ - text: 'Greetings <NAME>,
26
+
27
+
28
+ I hope you had a splendid evening at the Company sausage eating festival. I am
29
+ reaching out because'
30
+ example_title: festival
31
+ - text: 'Good Morning <NAME>,
32
+
33
 
34
+ I was just thinking to myself about how much I love creating value'
35
+ example_title: value
36
+ - text: URGENT - I need
37
+ example_title: URGENT
38
  inference:
39
  parameters:
40
  min_length: 4
41
  max_length: 64
42
  length_penalty: 0.7
43
  no_repeat_ngram_size: 3
44
+ do_sample: false
45
  num_beams: 4
46
+ early_stopping: true
47
  repetition_penalty: 3.5
48
+ base_model: facebook/opt-350m
49
  ---
50
 
51