librarian-bot commited on
Commit
f5c0467
1 Parent(s): 1b9b03d

Librarian Bot: Add base_model information to model

Browse files

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