forked from nnstreamer/nnstreamer-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nnstreamer_example_text_classification_tflite.c
364 lines (295 loc) · 8.86 KB
/
nnstreamer_example_text_classification_tflite.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/**
* @file nnstreamer_example_text_classification_tflite.c
* @date 26 November 2019
* @brief Example with tensorflolw-lite model for text classification.
* @author Gichan Jang <[email protected]>
* @bug No known bugs.
*/
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include <gst/gst.h>
#include <gst/app/app.h>
#define MAX_SENTENCE_LENGTH 256
/**
* @brief Data structure for app.
*/
typedef struct
{
gboolean running;
GstElement *pipeline; /**< gst pipeline for data stream */
GstBus *bus; /**< gst bus for data pipeline */
GstElement *src; /**< appsrc element in pipeline */
gchar *model_file; /**< tensorflow-lite model file */
gchar **labels;
GHashTable *words;
} app_data_s;
/**
* @brief Function to print error message.
*/
static void
parse_err_message (GstMessage * message)
{
gchar *debug;
GError *error;
g_return_if_fail (message != NULL);
switch (GST_MESSAGE_TYPE (message)) {
case GST_MESSAGE_ERROR:
gst_message_parse_error (message, &error, &debug);
break;
case GST_MESSAGE_WARNING:
gst_message_parse_warning (message, &error, &debug);
break;
default:
return;
}
gst_object_default_error (GST_MESSAGE_SRC (message), error, debug);
g_error_free (error);
g_free (debug);
}
/**
* @brief Function to print qos message.
*/
static void
parse_qos_message (GstMessage * message)
{
GstFormat format;
guint64 processed;
guint64 dropped;
gst_message_parse_qos_stats (message, &format, &processed, &dropped);
g_warning ("format[%d] processed[%" G_GUINT64_FORMAT "] dropped[%"
G_GUINT64_FORMAT "]", format, processed, dropped);
}
/**
* @brief Callback for message.
*/
static void
bus_message_cb (GstBus * bus, GstMessage * message, gpointer user_data)
{
app_data_s *app;
app = (app_data_s *) user_data;
switch (GST_MESSAGE_TYPE (message)) {
case GST_MESSAGE_EOS:
app->running = FALSE;
break;
case GST_MESSAGE_ERROR:
parse_err_message (message);
app->running = FALSE;
break;
case GST_MESSAGE_WARNING:
parse_err_message (message);
break;
case GST_MESSAGE_STREAM_START:
break;
case GST_MESSAGE_QOS:
parse_qos_message (message);
break;
default:
break;
}
}
/**
* @brief Function to load dictionary.
*/
static gboolean
load_model_files (app_data_s * app)
{
const gchar path[] = "./tflite_text_classification";
gboolean failed = FALSE;
gchar *model = g_build_filename (path, "text_classification.tflite", NULL);
gchar *label = g_build_filename (path, "labels.txt", NULL);
gchar *vocab = g_build_filename (path, "vocab.txt", NULL);
gchar *contents;
/* check the model files */
if (!g_file_test (model, G_FILE_TEST_EXISTS) ||
!g_file_test (label, G_FILE_TEST_EXISTS) ||
!g_file_test (vocab, G_FILE_TEST_EXISTS)) {
g_critical ("Failed to get model files.");
g_print ("Please enter as below to download and locate the model.\n");
g_print ("$ cd $NNST_ROOT/bin/ \n");
g_print ("$ ./get-model.sh text-classification-tflite \n");
failed = TRUE;
goto error;
}
/* load label file */
if (g_file_get_contents (label, &contents, NULL, NULL)) {
app->labels = g_strsplit (contents, "\n", -1);
g_free (contents);
} else {
g_critical ("Failed to load label file.");
failed = TRUE;
goto error;
}
/* load dictionary */
if (g_file_get_contents (vocab, &contents, NULL, NULL)) {
gchar **dics = g_strsplit (contents, "\n", -1);
guint dics_len = g_strv_length (dics);
guint i;
/* init hash table */
app->words = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
g_assert (app->words);
for (i = 0; i < dics_len; i++) {
/* get word and index */
gchar **word = g_strsplit (dics[i], " ", 2);
if (g_strv_length (word) == 2) {
gint word_index = (gint) g_ascii_strtoll (word[1], NULL, 10);
gpointer key = g_strdup (word[0]);
gpointer value = GINT_TO_POINTER (word_index);
g_assert (g_hash_table_insert (app->words, key, value));
} else {
g_print ("Failed to parse voca.\n");
}
g_strfreev (word);
}
g_strfreev (dics);
g_free (contents);
} else {
g_critical ("Failed to load dictionary file.");
failed = TRUE;
goto error;
}
error:
g_free (label);
g_free (vocab);
app->model_file = model;
return !failed;
}
/**
* @brief Function to handle input string.
*/
static void
handle_input_string (app_data_s * app)
{
GstBuffer *buf;
gchar **tokens;
gint tokens_len, i, value, start, unknown, pad;
gfloat *float_array;
float_array = g_malloc0 (sizeof (gfloat) * MAX_SENTENCE_LENGTH);
g_assert (float_array);
/* Get user input */
gchar sentence[MAX_SENTENCE_LENGTH] = { 0, };
g_print ("Please enter your movie review : ");
if (fgets (sentence, sizeof (sentence), stdin)) {
g_print ("Input : %s", sentence);
}
start = GPOINTER_TO_INT (g_hash_table_lookup (app->words, "<START>"));
pad = GPOINTER_TO_INT (g_hash_table_lookup (app->words, "<PAD>"));
unknown = GPOINTER_TO_INT (g_hash_table_lookup (app->words, "<UNKNOWN>"));
float_array[0] = (gfloat) start;
tokens = g_strsplit_set (sentence, " \n\t", MAX_SENTENCE_LENGTH);
tokens_len = g_strv_length (tokens);
for (i = 1; i < tokens_len; i++) {
value = GPOINTER_TO_INT (g_hash_table_lookup (app->words, tokens[i - 1]));
float_array[i] = (gfloat) (value > 0 ? value : unknown);
}
while (i < MAX_SENTENCE_LENGTH) {
float_array[i++] = (gfloat) pad;
}
buf =
gst_buffer_new_wrapped (float_array,
MAX_SENTENCE_LENGTH * sizeof (gfloat));
g_assert (buf);
g_assert (gst_app_src_push_buffer (GST_APP_SRC (app->src),
buf) == GST_FLOW_OK);
}
/**
* @brief Callback for tensor sink signal.
*/
static void
new_data_cb (GstElement * element, GstBuffer * buffer, gpointer user_data)
{
GstMemory *mem_res;
GstMapInfo info_res;
gfloat *output;
mem_res = gst_buffer_get_memory (buffer, 0);
g_assert (gst_memory_map (mem_res, &info_res, GST_MAP_READ));
output = (gfloat *) info_res.data;
g_print ("Output : \n");
if (output[0] >= output[1]) {
g_print (" Negative : %.6f\n", output[0]);
g_print (" Positive : %.6f\n", output[1]);
} else {
g_print (" Positive : %.6f\n", output[1]);
g_print (" Negative : %.6f\n", output[0]);
}
gst_memory_unmap (mem_res, &info_res);
gst_memory_unref (mem_res);
}
/**
* @brief Main function.
*/
int
main (int argc, char **argv)
{
app_data_s *app;
gchar *pipeline;
GstElement *element;
gchar *str_dim, *str_type, *str_caps;
GstCaps *caps;
/* init gstreamer */
gst_init (&argc, &argv);
/* init app variable */
app = g_new0 (app_data_s, 1);
g_assert (app);
/* load model files */
g_assert (load_model_files (app));
/* init pipeline */
pipeline =
g_strdup_printf
("appsrc name=appsrc ! "
"tensor_filter name=tfilter framework=tensorflow-lite model=%s ! "
"tensor_sink name=tensor_sink", app->model_file);
app->pipeline = gst_parse_launch (pipeline, NULL);
g_free (pipeline);
g_assert (app->pipeline);
/* bus and message callback */
app->bus = gst_element_get_bus (app->pipeline);
g_assert (app->bus);
gst_bus_add_signal_watch (app->bus);
g_signal_connect (app->bus, "message", G_CALLBACK (bus_message_cb), app);
/* get tensor sink element using name */
element = gst_bin_get_by_name (GST_BIN (app->pipeline), "tensor_sink");
g_assert (element != NULL);
/* tensor sink signal : new data callback */
g_signal_connect (element, "new-data", (GCallback) new_data_cb, NULL);
gst_object_unref (element);
/* appsrc element to push input buffer */
app->src = gst_bin_get_by_name (GST_BIN (app->pipeline), "appsrc");
g_assert (app->src);
/* get tensor metadata to set caps in appsrc */
element = gst_bin_get_by_name (GST_BIN (app->pipeline), "tfilter");
g_assert (element);
str_dim = str_type = NULL;
g_object_get (element, "input", &str_dim, "inputtype", &str_type, NULL);
str_caps =
g_strdup_printf
("other/tensor,dimension=(string)%s,type=(string)%s,framerate=(fraction)0/1",
str_dim, str_type);
caps = gst_caps_from_string (str_caps);
gst_app_src_set_caps (GST_APP_SRC (app->src), caps);
g_free (str_dim);
g_free (str_type);
g_free (str_caps);
gst_caps_unref (caps);
gst_object_unref (element);
/* Start playing */
gst_element_set_state (app->pipeline, GST_STATE_PLAYING);
/* ready to get input sentence */
app->running = TRUE;
/* get user input */
while (app->running) {
g_usleep (200 * 1000);
handle_input_string (app);
}
/* stop the pipeline */
gst_element_set_state (app->pipeline, GST_STATE_NULL);
/* close app */
gst_bus_remove_signal_watch (app->bus);
gst_object_unref (app->bus);
gst_object_unref (app->pipeline);
g_free (app->model_file);
g_strfreev (app->labels);
g_hash_table_destroy (app->words);
g_free (app);
return 0;
}