Update README.md
Browse files
README.md
CHANGED
@@ -5,5 +5,18 @@ tags:
|
|
5 |
|
6 |
|
7 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
-
|
|
|
|
5 |
|
6 |
|
7 |
---
|
8 |
+
license:
|
9 |
+
- cc0-1.0
|
10 |
+
---
|
11 |
+
|
12 |
+
## Keras Implementation of Text generation with a miniature GPT
|
13 |
+
|
14 |
+
This repo contains the model and the notebook [to this Keras example on Text generation with a miniature GPT](https://keras.io/examples/generative/text_generation_with_miniature_gpt/).
|
15 |
+
|
16 |
+
Full credits to: [fchollet](https://twitter.com/fchollet)
|
17 |
+
|
18 |
+
## Background Information
|
19 |
+
This example demonstrates how to implement text generation with a miniature GPT model. The model consists of a single Transformer block with causal masking in its attention layer.
|
20 |
|
21 |
+
## Datasets
|
22 |
+
IMDB sentiment classification dataset for training. The model generates new movie reviews for a given prompt
|