We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06a9517 commit 96880e8Copy full SHA for 96880e8
vue/src/App.vue
@@ -77,6 +77,12 @@ const summarize = () => {
77
<div class="app">
78
<h1>Transformers.js</h1>
79
<h2>ML-powered text summarization in Vue!</h2>
80
+ <h3>
81
+ Using
82
+ <a href="https://huggingface.co/Xenova/distilbart-cnn-6-6" target="_blank" class="model-link"
83
+ >Xenova/distilbart-cnn-6-6</a
84
+ >
85
+ </h3>
86
87
<div class="container">
88
<div class="textbox-container">
@@ -186,4 +192,14 @@ button:disabled {
186
192
margin-left: auto;
187
193
margin-right: auto;
188
194
}
195
+
196
+.model-link {
197
+ color: #2196f3;
198
+ text-decoration: none;
199
+ font-weight: 500;
200
+}
201
202
+.model-link:hover {
203
+ text-decoration: underline;
204
189
205
</style>
0 commit comments