librarian-bot commited on
Commit
ff88973
1 Parent(s): 866b33d

Librarian Bot: Add base_model information to model

Browse files

This pull request aims to enrich the metadata of your model by adding [`distilgpt2`](https://huggingface.co/distilgpt2) 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 +57 -27
README.md CHANGED
@@ -8,41 +8,71 @@ tags:
8
  datasets:
9
  - aeslc
10
  - postbot/multi_emails
11
-
12
  widget:
13
- - text: "Good Morning Professor Beans,
14
-
15
- Hope you are doing well. I just wanted to reach out and ask if differential calculus will be on the exam"
16
- example_title: "email to prof"
17
- - 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."
18
- example_title: "newsletter"
19
- - text: "Hi <NAME>,\n\nI hope this email finds you well. I wanted to reach out and ask about office hours"
20
- example_title: "office hours"
21
- - text: "Greetings <NAME>,\n\nI hope you had a splendid evening at the Company sausage eating festival. I am reaching out because"
22
- example_title: "festival"
23
- - text: "Good Morning Harold,\n\nI was wondering when the next"
24
- example_title: "event"
25
- - text: "URGENT - I need the TPS reports"
26
- example_title: "URGENT"
27
- - text: "Hi Archibald,\n\nI hope this email finds you extremely well."
28
- example_title: "emails that find you"
29
- - text: "Hello there.\n\nI just wanted to reach out and check in to"
30
- example_title: "checking in"
31
- - text: "Hello <NAME>,\n\nI hope this email finds you well. I wanted to reach out and see if you've enjoyed your time with us"
32
- example_title: "work well"
33
- - text: "Hi <NAME>,\n\nI hope this email finds you well. I wanted to reach out and see if we could catch up"
34
- example_title: "catch up"
35
- - text: "I'm <NAME> and I just moved into the area and wanted to reach out and get some details on where I could get groceries and"
36
- example_title: "grocery"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  parameters:
38
  min_length: 4
39
  max_length: 128
40
  length_penalty: 0.8
41
  no_repeat_ngram_size: 2
42
- do_sample: False
43
  num_beams: 8
44
- early_stopping: True
45
  repetition_penalty: 5.5
 
46
  ---
47
 
48
 
 
8
  datasets:
9
  - aeslc
10
  - postbot/multi_emails
 
11
  widget:
12
+ - text: 'Good Morning Professor Beans,
13
+
14
+ Hope you are doing well. I just wanted to reach out and ask if differential calculus
15
+ will be on the exam'
16
+ example_title: email to prof
17
+ - text: 'Hey <NAME>,
18
+
19
+
20
+ Thank you for signing up for my weekly newsletter. Before we get started, you''ll
21
+ have to confirm your email address.'
22
+ example_title: newsletter
23
+ - text: 'Hi <NAME>,
24
+
25
+
26
+ I hope this email finds you well. I wanted to reach out and ask about office hours'
27
+ example_title: office hours
28
+ - text: 'Greetings <NAME>,
29
+
30
+
31
+ I hope you had a splendid evening at the Company sausage eating festival. I am
32
+ reaching out because'
33
+ example_title: festival
34
+ - text: 'Good Morning Harold,
35
+
36
+
37
+ I was wondering when the next'
38
+ example_title: event
39
+ - text: URGENT - I need the TPS reports
40
+ example_title: URGENT
41
+ - text: 'Hi Archibald,
42
+
43
+
44
+ I hope this email finds you extremely well.'
45
+ example_title: emails that find you
46
+ - text: 'Hello there.
47
+
48
+
49
+ I just wanted to reach out and check in to'
50
+ example_title: checking in
51
+ - text: 'Hello <NAME>,
52
+
53
+
54
+ I hope this email finds you well. I wanted to reach out and see if you''ve enjoyed
55
+ your time with us'
56
+ example_title: work well
57
+ - text: 'Hi <NAME>,
58
+
59
+
60
+ I hope this email finds you well. I wanted to reach out and see if we could catch
61
+ up'
62
+ example_title: catch up
63
+ - text: I'm <NAME> and I just moved into the area and wanted to reach out and get
64
+ some details on where I could get groceries and
65
+ example_title: grocery
66
  parameters:
67
  min_length: 4
68
  max_length: 128
69
  length_penalty: 0.8
70
  no_repeat_ngram_size: 2
71
+ do_sample: false
72
  num_beams: 8
73
+ early_stopping: true
74
  repetition_penalty: 5.5
75
+ base_model: distilgpt2
76
  ---
77
 
78