saritha commited on
Commit
507427d
·
1 Parent(s): e0365a1

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +101 -0
app.py ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import tensorflow as tf
3
+ from tensorflow import keras
4
+ from tensorflow.keras.preprocessing.sequence import pad_sequences
5
+ from tensorflow.keras.datasets import imdb # pyright: reportMissingImports=false
6
+ from huggingface_hub import from_pretrained_keras
7
+ import gradio as gr
8
+ from typing import Dict
9
+
10
+ class KerasIMDBTokenizer:
11
+
12
+ def __init__(self, vocab_size: int = 20000) -> None:
13
+
14
+ # Parameters used in `keras.datasets.imdb.load_data`
15
+ self.START_CHAR = 1
16
+ self.OOV_CHAR = 2
17
+ self.INDEX_FROM = 3
18
+
19
+ self.word_index: dict[str, int] = imdb.get_word_index()
20
+ self.word_index = {
21
+ token: input_id + self.INDEX_FROM
22
+ for token, input_id in self.word_index.items() if input_id <= vocab_size
23
+ }
24
+
25
+ def tokenize_and_pad(self, text: str, maxlen: int = 200) -> np.ndarray:
26
+ tokens = text.split()
27
+ input_ids = [self.word_index.get(token.lower(), self.OOV_CHAR) for token in tokens]
28
+ input_ids.insert(0, self.START_CHAR)
29
+ # pad_sequences only accepts a list of sequences
30
+ return pad_sequences([input_ids], maxlen=maxlen)
31
+
32
+ model = from_pretrained_keras("keras-io/text-classification-with-transformer", compile=False)
33
+ tokenizer = KerasIMDBTokenizer()
34
+
35
+ def sentiment_analysis(model_input: str) -> Dict[str, float]:
36
+ tokenized = tokenizer.tokenize_and_pad(model_input)
37
+
38
+ prediction = model.predict(tokenized)[0]
39
+ ret = {
40
+ "negative": float(prediction[0]),
41
+ "positive": float(prediction[1])
42
+ }
43
+ return ret
44
+
45
+
46
+ model_input = gr.Textbox("Input text here", show_label=False)
47
+ model_output = gr.Label("Sentiment Analysis Result", num_top_classes=2, show_label=True, label="Sentiment Analysis Result")
48
+
49
+
50
+ examples = [
51
+ (
52
+ "Story of a man who has unnatural feelings for a pig. "
53
+ "Starts out with a opening scene that is a terrific example of absurd comedy. "
54
+ "A formal orchestra audience is turned into an insane, violent mob by the crazy chantings of it's singers. "
55
+ "Unfortunately it stays absurd the WHOLE time with no general narrative eventually making it just too off putting. "
56
+ "Even those from the era should be turned off. "
57
+ "The cryptic dialogue would make Shakespeare seem easy to a third grader. "
58
+ "On a technical level it's better than you might think with some good cinematography by future great Vilmos Zsigmond. "
59
+ "Future stars Sally Kirkland and Frederic Forrest can be seen briefly."
60
+ ),
61
+ (
62
+ "I came in in the middle of this film so I had no idea about any credits or even its title till I looked it up here, "
63
+ "where I see that it has received a mixed reception by your commentators. "
64
+ "I'm on the positive side regarding this film but one thing really caught my attention as I watched: "
65
+ "the beautiful and sensitive score written in a Coplandesque Americana style. "
66
+ "My surprise was great when I discovered the score to have been written by none other than John Williams himself. "
67
+ "True he has written sensitive and poignant scores such as Schindler's List but one usually associates "
68
+ "his name with such bombasticities as Star Wars. "
69
+ "But in my opinion what Williams has written for this movie surpasses anything I've ever heard of his "
70
+ "for tenderness, sensitivity and beauty, fully in keeping with the tender and lovely plot of the movie. "
71
+ "And another recent score of his, for Catch Me if You Can, shows still more wit and sophistication. "
72
+ "As to Stanley and Iris, I like education movies like How Green was my Valley and Konrack, "
73
+ "that one with John Voigt and his young African American charges in South Carolina, "
74
+ "and Danny deVito's Renaissance Man, etc. They tell a necessary story of intellectual and spiritual awakening, "
75
+ "a story which can't be told often enough. This one is an excellent addition to that genre."
76
+ )
77
+ ]
78
+
79
+ title = "Text classification with Transformer"
80
+ description = "Implement a Transformer block as a Keras layer and use it for text classification."
81
+ article = (
82
+ "Author: Xin Sui "
83
+ "Based on <a href=\"https://keras.io/examples/nlp/text_classification_with_transformer\">this</a> "
84
+ "keras example by <a href=\"https://twitter.com/NandanApoorv\">Apoorv Nandan</a>. "
85
+ "HuggingFace Model <a href=\"https://huggingface.co/keras-io/text-classification-with-transformer\">here</a>"
86
+ )
87
+
88
+
89
+ app = gr.Interface(
90
+ sentiment_analysis,
91
+ inputs=model_input,
92
+ outputs=model_output,
93
+ examples=examples,
94
+ title=title,
95
+ description=description,
96
+ article=article,
97
+ allow_flagging='never',
98
+ analytics_enabled=False,
99
+ )
100
+
101
+ app.launch(enable_queue=True)