Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -8,48 +8,38 @@ pinned: false
|
|
| 8 |
---
|
| 9 |
|
| 10 |
<div class="grid lg:grid-cols-3 gap-x-4 gap-y-7">
|
| 11 |
-
|
| 12 |
-
|
| 13 |
learning disabilities by highlighting words as they read and providing an audio companion to show how words are
|
| 14 |
-
correctly pronounced through audio synthesis. We use 🤗HuggingFace to facilitate model training, hosting, and
|
| 15 |
-
|
|
|
|
| 16 |
<a href="https://www.bookbotkids.com/" class="block overflow-hidden">
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
/>
|
| 22 |
-
<div class="underline">Bookbot Website</div>
|
| 23 |
-
</a>
|
| 24 |
<a href="https://www.youtube.com/watch?v=fbmP2rkwcc0" class="block overflow-hidden">
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
/>
|
| 30 |
-
<div class="underline">Bookbot Overview</div>
|
| 31 |
-
</a>
|
| 32 |
<a href="https://huggingface.co/bookbot" class="block overflow-hidden">
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
/>
|
| 38 |
-
<div class="underline">Find all our models in the Hub</div>
|
| 39 |
-
</a>
|
| 40 |
<div class="lg:col-span-3">
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
>
|
| 47 |
-
<pre class="break-words leading-1 whitespace-pre-line text-xs md:text-sm text-gray-800">
|
| 48 |
from transformers import pipeline
|
| 49 |
pretrained_name = "bookbot/gpt2-indo-medium-kids-stories"
|
| 50 |
nlp = pipeline("text-generation", model=pretrained_name, tokenizer=pretrained_name)
|
| 51 |
nlp("Archie sedang mengendarai roket ke planet Mars.")
|
| 52 |
</pre>
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
</div>
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
<div class="grid lg:grid-cols-3 gap-x-4 gap-y-7">
|
| 11 |
+
<p class="lg:col-span-3">
|
| 12 |
+
Bookbot is a learn-to-read mobile app, compatible with iOS & Android. Our app tailors to the needs of users with
|
| 13 |
learning disabilities by highlighting words as they read and providing an audio companion to show how words are
|
| 14 |
+
correctly pronounced through audio synthesis. We use 🤗HuggingFace to facilitate model training, hosting, and
|
| 15 |
+
sharing.
|
| 16 |
+
</p>
|
| 17 |
<a href="https://www.bookbotkids.com/" class="block overflow-hidden">
|
| 18 |
+
<img alt="" src="https://huggingface.co/spaces/bookbot/README/raw/main/logo.png"
|
| 19 |
+
class="w-full h-40 object-cover mb-2 bg-gray-300 rounded-lg" />
|
| 20 |
+
<div class="underline">Bookbot Website</div>
|
| 21 |
+
</a>
|
|
|
|
|
|
|
|
|
|
| 22 |
<a href="https://www.youtube.com/watch?v=fbmP2rkwcc0" class="block overflow-hidden">
|
| 23 |
+
<img alt="" src="https://huggingface.co/spaces/bookbot/README/raw/main/overview.png"
|
| 24 |
+
class="w-full h-40 object-cover mb-2 bg-gray-300 rounded-lg" />
|
| 25 |
+
<div class="underline">Bookbot Overview</div>
|
| 26 |
+
</a>
|
|
|
|
|
|
|
|
|
|
| 27 |
<a href="https://huggingface.co/bookbot" class="block overflow-hidden">
|
| 28 |
+
<img alt="" src="https://huggingface.co/spaces/bookbot/README/raw/main/demo.png"
|
| 29 |
+
class="w-full h-40 object-cover mb-2 bg-gray-300 rounded-lg" />
|
| 30 |
+
<div class="underline">Find all our models in the Hub</div>
|
| 31 |
+
</a>
|
|
|
|
|
|
|
|
|
|
| 32 |
<div class="lg:col-span-3">
|
| 33 |
+
<p class="mb-4">
|
| 34 |
+
To use one of our models available on the Hub, you can try the following example:
|
| 35 |
+
</p>
|
| 36 |
+
<div class="p-4 bg-gradient-to-b from-gray-50-to-white border border-gray-100 rounded-lg relative mb-4">
|
| 37 |
+
<pre class="break-words leading-1 whitespace-pre-line text-xs md:text-sm text-gray-800">
|
|
|
|
|
|
|
| 38 |
from transformers import pipeline
|
| 39 |
pretrained_name = "bookbot/gpt2-indo-medium-kids-stories"
|
| 40 |
nlp = pipeline("text-generation", model=pretrained_name, tokenizer=pretrained_name)
|
| 41 |
nlp("Archie sedang mengendarai roket ke planet Mars.")
|
| 42 |
</pre>
|
| 43 |
+
</div>
|
| 44 |
+
</div>
|
| 45 |
+
</div>
|