remove additional tailwind
Browse files+ unneeded html
cc @borisdayma
README.md
CHANGED
@@ -7,22 +7,12 @@ widget:
|
|
7 |
- text: "My dream is"
|
8 |
---
|
9 |
|
10 |
-
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/typography@0.2.x/dist/typography.min.css">
|
11 |
-
|
12 |
-
<style>
|
13 |
-
@media (prefers-color-scheme: dark) {
|
14 |
-
.prose { color: #E2E8F0 !important; }
|
15 |
-
.prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; }
|
16 |
-
}
|
17 |
-
</style>
|
18 |
-
|
19 |
-
<section class='prose'>
|
20 |
|
21 |
<div>
|
22 |
-
<div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1108502565925326850/zPsBf2BI_400x400.png')">
|
23 |
-
</div>
|
24 |
-
<div style="margin-top: 8px; font-size: 19px; font-weight: 800">Julien Chaumond 🤖 AI Bot </div>
|
25 |
-
<div style="font-size: 15px; color: #657786">@julien_c bot</div>
|
26 |
</div>
|
27 |
|
28 |
I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets).
|
@@ -84,11 +74,12 @@ At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/r
|
|
84 |
|
85 |
You can use this model directly with a pipeline for text generation:
|
86 |
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
|
|
92 |
|
93 |
### Limitations and bias
|
94 |
|
@@ -100,14 +91,10 @@ In addition, the data present in the user's tweets further affects the text gene
|
|
100 |
|
101 |
*Built by Boris Dayma*
|
102 |
|
103 |
-
</section>
|
104 |
|
105 |
[![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma)
|
106 |
|
107 |
-
<section class='prose'>
|
108 |
For more details, visit the project repository.
|
109 |
-
</section>
|
110 |
|
111 |
[![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
|
112 |
|
113 |
-
<!--- random size file -->
|
|
|
7 |
- text: "My dream is"
|
8 |
---
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
<div>
|
12 |
+
<div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1108502565925326850/zPsBf2BI_400x400.png')">
|
13 |
+
</div>
|
14 |
+
<div style="margin-top: 8px; font-size: 19px; font-weight: 800">Julien Chaumond 🤖 AI Bot </div>
|
15 |
+
<div style="font-size: 15px; color: #657786">@julien_c bot</div>
|
16 |
</div>
|
17 |
|
18 |
I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets).
|
|
|
74 |
|
75 |
You can use this model directly with a pipeline for text generation:
|
76 |
|
77 |
+
```python
|
78 |
+
from transformers import pipeline
|
79 |
+
generator = pipeline('text-generation',
|
80 |
+
model='huggingtweets/julien_c')
|
81 |
+
generator("My dream is", num_return_sequences=5)
|
82 |
+
```
|
83 |
|
84 |
### Limitations and bias
|
85 |
|
|
|
91 |
|
92 |
*Built by Boris Dayma*
|
93 |
|
|
|
94 |
|
95 |
[![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma)
|
96 |
|
|
|
97 |
For more details, visit the project repository.
|
|
|
98 |
|
99 |
[![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
|
100 |
|
|