luckynozomi commited on
Commit
612d37c
1 Parent(s): 3e2bfef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -5
README.md CHANGED
@@ -6,17 +6,21 @@ tags:
6
 
7
  ## Model description
8
 
9
- More information needed
10
 
11
- ## Intended uses & limitations
12
 
13
- More information needed
14
 
15
  ## Training and evaluation data
16
 
17
- More information needed
18
 
19
- ## Training procedure
 
 
 
 
20
 
21
  ### Training hyperparameters
22
 
 
6
 
7
  ## Model description
8
 
9
+ Implement a Transformer block as a Keras layer and use it for text classification.
10
 
11
+ For details on the implementation, please see the original link on [keras](https://keras.io/examples/nlp/text_classification_with_transformer/)
12
 
13
+ Full credits to: [Apoorv Nandan](https://twitter.com/NandanApoorv)
14
 
15
  ## Training and evaluation data
16
 
17
+ The model is trained and evaluated on the IMDB dataset for sentiment analysis.
18
 
19
+ Details on the dstaset can be found on [keras](https://keras.io/api/datasets/imdb/)
20
+
21
+ Note that the keras dataset is already tokenized, so the model doesn't have an associated tokenizer. Since the hosted text classification pipeline only accepts text as input, it is currently broken.
22
+
23
+ For a live demo of the model using my own tokenizer, please use the [space](https://huggingface.co/spaces/keras-io/text-classification-with-transformer)
24
 
25
  ### Training hyperparameters
26