Adolfo E. García
Adolfo E. García
Hi @tonyboston-au, I don't know if you have already solved this by yourself, but I wanted to share a quick modification you could use, in case it helps: ```python from...
Hi, can you try this change: ```python from tensorflow.python.keras.utils import losses_utils # ... class RSquare(Metric): # ... def update_state(self, y_true, y_pred, sample_weight=None) -> None: y_true = tf.cast(y_true, dtype=self._dtype) y_pred =...
Hi @adumont, You can gain access to a shell by using the web interface:  For example:  I noticed the `power-management` container exits in the case of the Jetson...
@chrisys Thanks for the info., I wasn't aware of that. I'm running directly the master branch (using Balena CLI), but I don't yet have a fan to test. One question:...
Hi, is there a way to request a subset of a dataset? For example, the first 256 samples?
Hi, @floion the device is currently running balenaOS (production) version 2.80.3+rev1, on a Revpi Connect. The conflicting version is the one stated in the issue's title (2.98.33) --I didn't try...
Hi, Zephyr has support for a lot of boards, including the following: - Teensy 4 (https://docs.zephyrproject.org/latest/boards/arm/teensy4/doc/index.html) - nRF52 DK (https://docs.zephyrproject.org/2.7.0/boards/arm/nrf52dk_nrf52832/doc/index.html)
The port of AtomVM to Zephyr, I think could be structured as a module (https://docs.zephyrproject.org/latest/develop/modules.html), by adding `libAtomVM` as a library and some platform files specific to the Zephyr-port. An...
A good example of how another project structured their Zephyr port is QPCPP: - https://github.com/QuantumLeaps/qpcpp - https://github.com/QuantumLeaps/qpcpp-zephyr-app
Hi @mkschreder, thanks for the information! I will try to take a look again, sometime in the near future