Librarian Bot: Add base_model information to model
Browse filesThis pull request aims to enrich the metadata of your model by adding [`facebook/opt-125m`](https://huggingface.co/facebook/opt-125m) 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!
@@ -1,4 +1,3 @@
|
|
1 |
-
|
2 |
---
|
3 |
license: other
|
4 |
tags:
|
@@ -11,28 +10,43 @@ tags:
|
|
11 |
- 125m
|
12 |
datasets:
|
13 |
- aeslc
|
14 |
-
|
15 |
widget:
|
16 |
-
- text:
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
example_title:
|
22 |
-
- text:
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
parameters:
|
27 |
min_length: 4
|
28 |
max_length: 64
|
29 |
length_penalty: 0.7
|
30 |
no_repeat_ngram_size: 3
|
31 |
-
do_sample:
|
32 |
num_beams: 4
|
33 |
-
early_stopping:
|
34 |
repetition_penalty: 3.5
|
35 |
-
use_fast:
|
|
|
36 |
---
|
37 |
> NOTE: there is currently a bug with huggingface API for OPT models. Please use the [colab notebook](https://colab.research.google.com/gist/pszemraj/033dc9a38da31ced7a0343091ba42e31/email-autocomplete-demo-125m.ipynb) to test :)
|
38 |
|
|
|
|
|
1 |
---
|
2 |
license: other
|
3 |
tags:
|
|
|
10 |
- 125m
|
11 |
datasets:
|
12 |
- aeslc
|
|
|
13 |
widget:
|
14 |
+
- text: 'Hey <NAME>,
|
15 |
+
|
16 |
+
|
17 |
+
Thank you for signing up for my weekly newsletter. Before we get started, you''ll
|
18 |
+
have to confirm your email address.'
|
19 |
+
example_title: newsletter
|
20 |
+
- text: 'Hi <NAME>,
|
21 |
+
|
22 |
+
|
23 |
+
I hope this email finds you well. Let me start by saying that I am a big fan of
|
24 |
+
your work.'
|
25 |
+
example_title: fan
|
26 |
+
- text: 'Greetings <NAME>,
|
27 |
+
|
28 |
+
|
29 |
+
I hope you had a splendid evening at the Company sausage eating festival. I am
|
30 |
+
reaching out because'
|
31 |
+
example_title: festival
|
32 |
+
- text: 'Good Morning <NAME>,
|
33 |
+
|
34 |
+
|
35 |
+
I was just thinking to myself about how much I love creating value'
|
36 |
+
example_title: value
|
37 |
+
- text: URGENT - I need
|
38 |
+
example_title: URGENT
|
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 |
+
use_fast: false
|
49 |
+
base_model: facebook/opt-125m
|
50 |
---
|
51 |
> NOTE: there is currently a bug with huggingface API for OPT models. Please use the [colab notebook](https://colab.research.google.com/gist/pszemraj/033dc9a38da31ced7a0343091ba42e31/email-autocomplete-demo-125m.ipynb) to test :)
|
52 |
|