Home
last modified time | relevance | path

Searched refs:tf (Results 1 – 21 of 21) sorted by relevance

/Zephyr-Core-3.5.0/samples/modules/tflite-micro/magic_wand/train/
Dtrain.py30 import tensorflow as tf namespace
33 tensorboard_callback = tf.keras.callbacks.TensorBoard(log_dir=logdir)
37 reshaped_data = tf.reshape(data, [-1, 3, 1])
52 model = tf.keras.Sequential([
53 tf.keras.layers.Conv2D(
58 tf.keras.layers.MaxPool2D((3, 3)), # (batch, 42, 1, 8)
59 tf.keras.layers.Dropout(0.1), # (batch, 42, 1, 8)
60 tf.keras.layers.Conv2D(16, (4, 1), padding="same",
62 tf.keras.layers.MaxPool2D((3, 1), padding="same"), # (batch, 14, 1, 16)
63 tf.keras.layers.Dropout(0.1), # (batch, 14, 1, 16)
[all …]
Dtrain_test.py26 import tensorflow as tf namespace
43 self.assertIsInstance(self.train_data, tf.data.Dataset)
44 self.assertIsInstance(self.valid_data, tf.data.Dataset)
45 self.assertIsInstance(self.test_data, tf.data.Dataset)
52 cnn_prob = cnn(tf.constant(cnn_data, dtype="float32")).numpy()
53 lstm_prob = lstm(tf.constant(lstm_data, dtype="float32")).numpy()
54 self.assertIsInstance(cnn, tf.keras.Sequential)
55 self.assertIsInstance(lstm, tf.keras.Sequential)
Ddata_load_test.py27 import tensorflow as tf namespace
89 self.assertIsInstance(self.loader.train_data, tf.data.Dataset)
90 self.assertIsInstance(self.loader.valid_data, tf.data.Dataset)
91 self.assertIsInstance(self.loader.test_data, tf.data.Dataset)
Ddata_load.py27 import tensorflow as tf namespace
94 dataset = tf.data.Dataset.from_tensor_slices(
/Zephyr-Core-3.5.0/drivers/sensor/ms5607/
Dms5607.c79 err = config->tf->read_prom(config, cmd, val); in ms5607_read_prom()
97 err = config->tf->start_conversion(config, cmd); in ms5607_get_measurement()
104 err = config->tf->read_adc(config, val); in ms5607_get_measurement()
235 err = config->tf->bus_check(config); in ms5607_init()
258 err = config->tf->reset(config); in ms5607_init()
325 .tf = &ms5607_spi_transfer_function, \
334 .tf = &ms5607_i2c_transfer_function, \
Dms5607.h91 const struct ms5607_transfer_function *tf; member
/Zephyr-Core-3.5.0/scripts/utils/
Dntc_thermistor_table.py96 main(args.r25, args.beta, args.interval, args.ti, args.tf)
/Zephyr-Core-3.5.0/samples/tfm_integration/tfm_regression_test/
DREADME.rst14 …he TF-M regression tests are implemented in the tf-m-tests repo: https://git.trustedfirmware.org/T…
/Zephyr-Core-3.5.0/doc/services/tfm/
Dtestsuites.rst6 * tf-m-tests - Standard TF-M specific regression tests
Doverview.rst4 `Trusted Firmware-M (TF-M) <https://tf-m-user-guide.trustedfirmware.org/>`__
193 folder of the TF-M module (which is in ``modules/tee/tf-m/trusted-firmware-m/``
213 `TF-M Documentation <https://tf-m-user-guide.trustedfirmware.org/>`__.
/Zephyr-Core-3.5.0/samples/tfm_integration/
Dtfm_integration.rst52 https://tf-m-user-guide.trustedfirmware.org/
/Zephyr-Core-3.5.0/samples/tfm_integration/tfm_secure_partition/
DREADME.rst26 https://tf-m-user-guide.trustedfirmware.org/integration_guide/services/tfm_secure_partition_additio…
/Zephyr-Core-3.5.0/modules/trusted-firmware-m/
DCMakeLists.txt156 set(TFM_TEST_REPO_PATH ${ZEPHYR_CURRENT_MODULE_DIR}/../tf-m-tests)
160 set(TFM_API_NS_PATH ${TFM_BINARY_DIR}/tf-m-tests/app/libtfm_api_ns.a)
166 set(PSA_TEST_VAL_FILE ${TFM_BINARY_DIR}/tf-m-tests/app/psa_api_tests/val/val_nspe.a)
167 set(PSA_TEST_PAL_FILE ${TFM_BINARY_DIR}/tf-m-tests/app/psa_api_tests/platform/pal_nspe.a)
173 …set(PSA_TEST_COMBINE_FILE ${TFM_BINARY_DIR}/tf-m-tests/app/psa_api_tests/dev_apis/${COMBINE_DIR_${…
/Zephyr-Core-3.5.0/boards/arm/nrf9161dk_nrf9161/doc/
Dindex.rst203 .. _Trusted Firmware M: https://www.trustedfirmware.org/projects/tf-m/
/Zephyr-Core-3.5.0/boards/arm/nrf9160dk_nrf9160/doc/
Dindex.rst264 .. _Trusted Firmware M: https://www.trustedfirmware.org/projects/tf-m/
/Zephyr-Core-3.5.0/boards/arm/nrf5340dk_nrf5340/doc/
Dindex.rst330 .. _Trusted Firmware M: https://www.trustedfirmware.org/projects/tf-m/
/Zephyr-Core-3.5.0/boards/arm/v2m_musca_b1/doc/
Dindex.rst396 https://tf-m-user-guide.trustedfirmware.org/building/tfm_build_instruction.html
/Zephyr-Core-3.5.0/boards/arm/v2m_musca_s1/doc/
Dindex.rst424 https://tf-m-user-guide.trustedfirmware.org/building/tfm_build_instruction.html
/Zephyr-Core-3.5.0/boards/arm/bl5340_dvk/doc/
Dindex.rst436 .. _Trusted Firmware M: https://www.trustedfirmware.org/projects/tf-m/
/Zephyr-Core-3.5.0/samples/modules/tflite-micro/hello_world/train/
Dtrain_hello_world_model.ipynb156 "import tensorflow as tf\n",
172 "tf.random.set_seed(seed)"
394 "model_1 = tf.keras.Sequential()\n",
1727 "model = tf.keras.Sequential()\n",
2794tf.keras.models.load_model`, continue reading (otherwise, you may ignore the following instruction…
2991 "converter = tf.lite.TFLiteConverter.from_saved_model(MODEL_TF)\n",
3002 "converter.optimizations = [tf.lite.Optimize.DEFAULT]\n",
3004 "converter.target_spec.supported_ops = [tf.lite.OpsSet.TFLITE_BUILTINS_INT8]\n",
3005 "converter.inference_input_type = tf.int8\n",
3006 "converter.inference_output_type = tf.int8\n",
[all …]
/Zephyr-Core-3.5.0/boards/arm/mps2_an521/doc/
Dindex.rst565 https://tf-m-user-guide.trustedfirmware.org/building/tfm_build_instruction.html