/AliOS-Things-master/components/ble_mesh/bt_mesh/aos/ |
A D | mesh.c | 283 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 = ¶m->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 D | models_test.py | 23 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 D | BUILD | 51 name = "models", 53 "models.py", 71 ":models", 100 ":models", 121 ":models", 168 ":models", 210 ":models", 252 ":models", 420 ":models",
|
A D | freeze.py | 48 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 D | wav_to_features.py | 41 import models 67 model_settings = models.prepare_model_settings(
|
A D | train.py | 82 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 D | generate_streaming_test_wav.py | 50 import models 88 model_settings = models.prepare_model_settings(
|
A D | input_data_test.py | 28 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 D | mesh_model.c | 75 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 D | access.c | 67 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 D | cfg_srv.c | 151 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 D | provisioner_main.c | 1354 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 D | build_def.bzl | 87 # 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 D | train_micro_speech_model.ipynb | 125 "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 D | README.md | 34 - [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 D | access.h | 49 ….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 D | generate_test_models.py | 42 model = tf.keras.models.Sequential()
|
/AliOS-Things-master/components/genie_service/sal/src/ |
A D | genie_sal_ble.c | 175 p_model = p_element->models; in genie_sal_ble_send_msg()
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | install.txt | 750 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 D | libjpeg.txt | 3075 memory models (i.e., data pointers are 16 bits unless explicitly declared
|
/AliOS-Things-master/components/ble_mesh/bt_mesh/ |
A D | Kconfig | 227 models the local node supports, i.e. what's the largest
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | ChangeLog | 902 - 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 D | libpng-manual.txt | 2608 models machines, don't give it any more than
|