Librarian Bot: Add base_model information to model
Browse filesThis pull request aims to enrich the metadata of your model by adding [`facebook/bart-large`](https://huggingface.co/facebook/bart-large) 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,29 +1,27 @@
|
|
1 |
---
|
2 |
language:
|
3 |
- en
|
4 |
-
datasets:
|
5 |
-
- Short-Answer-Feedback/saf_communication_networks_english
|
6 |
tags:
|
7 |
- generated_from_trainer
|
|
|
|
|
8 |
widget:
|
9 |
-
- text:
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
header
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
header
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
connection Question: State at least 4 of the differences shown in the
|
26 |
-
lecture between the UDP and TCP headers.
|
27 |
---
|
28 |
|
29 |
# bart-score-finetuned-saf-communication-networks
|
|
|
1 |
---
|
2 |
language:
|
3 |
- en
|
|
|
|
|
4 |
tags:
|
5 |
- generated_from_trainer
|
6 |
+
datasets:
|
7 |
+
- Short-Answer-Feedback/saf_communication_networks_english
|
8 |
widget:
|
9 |
+
- text: 'Answer: In TCP there is a Sequence Number field to identify packets individually
|
10 |
+
for reliability. There is no Sequence Number in UDP. The UDP header does not have
|
11 |
+
an options field, while the TCP header does. In TCP there is an Advertised Window
|
12 |
+
field for the Sliding Window Protocol for Flow Control. There is no Flow Control
|
13 |
+
and therefore no Advertised Window field in UDP. In TCP there there is only a
|
14 |
+
Data Offset field that specifies the header length. In UDP the whole Packet Length
|
15 |
+
is transmitted. Reference: Possible Differences : The UPD header (8 bytes) is
|
16 |
+
much shorter than the TCP header (20-60 bytes) The UDP header has a fixed length
|
17 |
+
while the TCP header has a variable length Fields contained in the TCP header
|
18 |
+
and not the UDP header : -Sequence number -Acknowledgment number -Reserved -Flags/Control
|
19 |
+
bits -Advertised window -Urgent Pointer -Options + Padding if the options are
|
20 |
+
UDP includes the packet length (data + header) while TCP has the header length/data
|
21 |
+
offset (just header) field instead The sender port field is optional in UDP, while
|
22 |
+
the source port in TCP is necessary to establish the connection Question: State
|
23 |
+
at least 4 of the differences shown in the lecture between the UDP and TCP headers.'
|
24 |
+
base_model: facebook/bart-large
|
|
|
|
|
25 |
---
|
26 |
|
27 |
# bart-score-finetuned-saf-communication-networks
|