Home
last modified time | relevance | path

Searched refs:models (Results 1 – 23 of 23) sorted by relevance

/AliOS-Things-master/components/ble_mesh/bt_mesh/aos/
A Dmesh.c283 if (models == NULL) { in ble_stack_mesh_init()
288 elems->models = models; in ble_stack_mesh_init()
291 memset(models->keys, 0xFF, sizeof(models->keys)); in ble_stack_mesh_init()
305 models->pub = NULL; in ble_stack_mesh_init()
311 models->pub = NULL; in ble_stack_mesh_init()
402 models->id = param->comp->elem[i].models[j].id; in ble_stack_mesh_init()
403 models->op = op; in ble_stack_mesh_init()
405 models->user_data = &param->comp->elem[i].models[j]; in ble_stack_mesh_init()
413 if (models == NULL) { in ble_stack_mesh_init()
421 memset(models->keys, 0xFF, sizeof(models->keys)); in ble_stack_mesh_init()
[all …]
/AliOS-Things-master/solutions/tflite_micro_speech_demo/micro_speech/train/speech_commands/
A Dmodels_test.py23 from tensorflow.examples.speech_commands import models
31 return models.prepare_model_settings(
42 models.prepare_model_settings(
56 logits, dropout_rate = models.create_model(
68 logits = models.create_model(fingerprint_input, model_settings, "conv",
78 logits, dropout_rate = models.create_model(
90 logits, dropout_rate = models.create_model(
102 models.create_model(fingerprint_input, model_settings,
111 logits, dropout_rate = models.create_model(
A DBUILD51 name = "models",
53 "models.py",
71 ":models",
100 ":models",
121 ":models",
168 ":models",
210 ":models",
252 ":models",
420 ":models",
A Dfreeze.py48 import models
91 model_settings = models.prepare_model_settings(
151 logits = models.create_model(
231 models.load_variables_from_checkpoint(sess, FLAGS.start_checkpoint)
A Dwav_to_features.py41 import models
67 model_settings = models.prepare_model_settings(
A Dtrain.py82 import models
98 model_settings = models.prepare_model_settings(
135 logits, dropout_rate = models.create_model(
209 models.load_variables_from_checkpoint(sess, FLAGS.start_checkpoint)
A Dgenerate_streaming_test_wav.py50 import models
88 model_settings = models.prepare_model_settings(
A Dinput_data_test.py28 from tensorflow.examples.speech_commands import models
77 model_settings = models.prepare_model_settings(
/AliOS-Things-master/components/ble_mesh/bt_mesh/mesh_models/common/
A Dmesh_model.c75 S_ELEM_STATE *elemState = (S_ELEM_STATE *)elem->models[2].user_data; in elem_state_init()
217 if (comp->elem[ele_num].models[model_num].id != BT_MESH_MODEL_ID_CFG_SRV && \ in mesh_model_set_user_data()
218 comp->elem[ele_num].models[model_num].id != BT_MESH_MODEL_ID_CFG_CLI && \ in mesh_model_set_user_data()
219 comp->elem[ele_num].models[model_num].id != BT_MESH_MODEL_ID_HEALTH_SRV && \ in mesh_model_set_user_data()
220 comp->elem[ele_num].models[model_num].id != BT_MESH_MODEL_ID_HEALTH_CLI) { in mesh_model_set_user_data()
221 comp->elem[ele_num].models[model_num].user_data = &state[ele_num]; in mesh_model_set_user_data()
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/src/
A Daccess.c67 struct bt_mesh_model *model = &elem->models[j]; in bt_mesh_model_foreach()
290 return &elem->models[mod_idx]; in bt_mesh_model_get()
311 mod->mod_idx = mod - elem->models; in mod_init()
414 model = &elem->models[i]; in bt_mesh_elem_find_group()
488 *model = &models[i]; in find_op()
572 struct bt_mesh_model *models = NULL, *model = NULL; in bt_mesh_model_recv() local
616 models = elem->models; in bt_mesh_model_recv()
619 models = elem->vnd_models; in bt_mesh_model_recv()
623 op = find_op(models, count, rx->ctx.recv_dst, rx->ctx.app_idx, opcode, &model); in bt_mesh_model_recv()
826 if (elem->models[i].id == id) { in bt_mesh_model_find()
[all …]
A Dcfg_srv.c151 mod = &elem->models[i]; in comp_add_elem()
532 mod = bt_mesh_model_find(elem, elem->models[j].id); in genie_mesh_setup()
534 BT_DBG(">>>model %04x app_key[%02x]<<<", elem->models[j].id, status); in genie_mesh_setup()
A Dprovisioner_main.c1354 model = &elem->models[j]; in bt_mesh_provisioner_print_local_element_info()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/mlir/testing/
A Dbuild_def.bzl87 # List of models that fail generated tests for the conversion mode.
94 """Returns a list of models to be tested with MLIR-based conversion."""
95 models = []
99 models.append(model)
100 return models
/AliOS-Things-master/solutions/tflite_micro_speech_demo/micro_speech/train/
A Dtrain_micro_speech_model.ipynb125 "MODELS_DIR = 'models'\n",
339 "import models\n",
376 "model_settings = models.prepare_model_settings(\n",
463 " # For quantized models, manually quantize the input data from float to integer\n",
541 …/models`](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/micro/examples/micr…
600 " --model=./models/saved_model/ \\\n",
A DREADME.md34 - [Trained Models](#trained-models)
72 …ech_commands.zip](https://storage.googleapis.com/download.tensorflow.org/models/tflite/micro/micro…
75 The `models` directory in the above zip file can be generated by following the
99 …://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/speech_commands/models.py#L673)
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/inc/api/mesh/
A Daccess.h49 ….loc = (_loc), .model_count = ARRAY_SIZE(_mods), .models = (_mods), .vnd_model_count = ARRAY_SIZE(…
65 struct bt_mesh_model *models; member
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/testing/
A Dgenerate_test_models.py42 model = tf.keras.models.Sequential()
/AliOS-Things-master/components/genie_service/sal/src/
A Dgenie_sal_ble.c175 p_model = p_element->models; in genie_sal_ble_send_msg()
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dinstall.txt750 models (i.e., data pointers are 16 bits unless explicitly declared "far";
797 None of the above comments about memory models apply if you are using a
913 sections above for more info about memory models.) In the 16-bit memory
914 models only, you'll need to put
918 jmemnobs.c works without modification in large or flat memory models, but to
A Dlibjpeg.txt3075 memory models (i.e., data pointers are 16 bits unless explicitly declared
/AliOS-Things-master/components/ble_mesh/bt_mesh/
A DKconfig227 models the local node supports, i.e. what's the largest
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/
A DChangeLog902 - Use far memory allocators in small 16-bit memory models for
1290 small and medium models; this makes the library incompatible with previous
1291 versions for these models. (No effect in large model or on other systems.)
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/
A Dlibpng-manual.txt2608 models machines, don't give it any more than

Completed in 39 milliseconds