Advent of Code 2023 – Day 5
I'm trying to solve all the Advent of Code puzzles in this video series.
We talk about the struggles I had with running inferences in Java using a Keras model in tensorflow. This is the train.py used in this example. import tensorflow as tf #import tensorflowjs as tfjs import os from datetime import datetime from tensorflow.keras.models import Sequential, Model from tensorflow.keras.layers import Conv2D, MaxPooling2D, BatchNormalization, Layer from tensorflow.keras.layers import…
In this video series, I try to challenge myself with the Advent of Code trials. Each solution will be published to Github, and I hope you will learn something from my coding mistakes and perhaps send some code my way on how you have done these challenges. I know by reading code, so this is…
Keeping track of your disks in a Ceph cluster is important so you could replace them in time before data loss. In this video we look into how to use SMART data to run a machine learning prediction in order predict when a disk fails. SmartMonTools is used locally to fetch the data. The data…
Today I tried to look into the new functionality for B2B users. The first thing I realized after some testing was that I used the wrong store. I published the AuroraStoreFrontAssetStore from ExtendedSites section that we usually use. And none of the functionality was present. Seemed strange and I couldn’t see any other sars in…
We use JCuda to run some workloads on the GPU and see the difference in speed.
In this video, I get back to the basics and show you how to use the code from my series Java By Example to read data from an excel spreadsheet in order to populate your invoice PDF.