Boris Dayma commited on
Commit
193467a
1 Parent(s): 1b8a254

Update README.md

Browse files

Remove custom style

Files changed (1) hide show
  1. README.md +13 -41
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/874276197357596672/kUuht00m_400x400.jpg')">
23
  </div>
24
  <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Donald J. Trump 🤖 AI Bot </div>
25
- <div style="font-size: 15px; color: #657786">@realdonaldtrump bot</div>
26
  </div>
27
 
28
  I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets).
@@ -41,32 +31,12 @@ To understand how the model was developed, check the [W&B report](https://app.wa
41
 
42
  The model was trained on [@realdonaldtrump's tweets](https://twitter.com/realdonaldtrump).
43
 
44
- <table style='border-width:0'>
45
- <thead style='border-width:0'>
46
- <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>
47
- <th style='border-width:0'>Data</th>
48
- <th style='border-width:0'>Quantity</th>
49
- </tr>
50
- </thead>
51
- <tbody style='border-width:0'>
52
- <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>
53
- <td style='border-width:0'>Tweets downloaded</td>
54
- <td style='border-width:0'>2195</td>
55
- </tr>
56
- <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>
57
- <td style='border-width:0'>Retweets</td>
58
- <td style='border-width:0'>716</td>
59
- </tr>
60
- <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>
61
- <td style='border-width:0'>Short tweets</td>
62
- <td style='border-width:0'>364</td>
63
- </tr>
64
- <tr style='border-width:0'>
65
- <td style='border-width:0'>Tweets kept</td>
66
- <td style='border-width:0'>1115</td>
67
- </tr>
68
- </tbody>
69
- </table>
70
 
71
  [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1zmvkb6j/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline.
72
 
@@ -84,10 +54,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
- <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline
88
- generator = pipeline(<span style="color:#FF9800">'text-generation'</span>,
89
- model=<span style="color:#FF9800">'huggingtweets/realdonaldtrump'</span>)
90
- generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre>
 
 
91
 
92
 
93
  ### Limitations and bias
 
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/874276197357596672/kUuht00m_400x400.jpg')">
13
  </div>
14
  <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Donald J. Trump 🤖 AI Bot </div>
15
+ <div style="font-size: 15px">@realdonaldtrump bot</div>
16
  </div>
17
 
18
  I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets).
 
31
 
32
  The model was trained on [@realdonaldtrump's tweets](https://twitter.com/realdonaldtrump).
33
 
34
+ | Data | Quantity |
35
+ | ---- | -------- |
36
+ | Tweets downloaded | 2195 |
37
+ | Retweets | 716 |
38
+ | Short tweets | 364 |
39
+ | Tweets kept | 1115 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
  [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1zmvkb6j/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline.
42
 
 
54
 
55
  You can use this model directly with a pipeline for text generation:
56
 
57
+ ```python
58
+ from transformers import pipeline
59
+ generator = pipeline('text-generation',
60
+ model='huggingtweets/realdonaldtrump')
61
+ generator("My dream is", num_return_sequences=5)
62
+ ```
63
 
64
 
65
  ### Limitations and bias