Update Cert-Maneger
About I upgraded the version of Cert-Manger. I left what I did here. Check Cert-Manager Version Image: quay.io/jetstack/cert-manager-controller:v1.9.1 prompt output…
About I upgraded the version of Cert-Manger. I left what I did here. Check Cert-Manager Version Image: quay.io/jetstack/cert-manager-controller:v1.9.1 prompt output…
About Because my microk8s version was bit old (1.25), I upgraded it. This is the note. Check Version Update to…
list all the available disks First, list all the available disks to see if the new HDD is recognized. This…
import matplotlib.pyplot as plt import numpy as np import matplotlib as mpl data = np.random.rand(100, 2) indices = np.arange(data.shape[0]) norm…
#!/bin/bash # ERRシグナルをキャッチしてエラーが発生したらループを抜ける trap 'break' ERR # リストの中の各要素に対して処理を行うforループ for item in item1 item2 item3 item4; do echo "Processing $item" #…
import matplotlib.pyplot as plt import numpy as np # サンプルデータを生成 x = np.linspace(0, 10, 100) y = np.sin(x) # プロット…
class TemperatureCelsius: def __init__(self, temperature=0): self._temperature = temperature @property def temperature(self) : float: print("Getting temperature") return self._temperature @temperature.setter def temperature(self,…
Implements pure virtual function in Interface Inherit the virtual class Usage
About In BoTorch, there are 2 fitting functions are prepared, fit_gpytorch_mll / fit_fully_bayesian_model_nuts(https://botorch.org/api/fit.html). And there are some loss functions are…
About https://arxiv.org/abs/1708.02002 The Focal Loss is a loss function designed to solve class imbalance problems, especially when some classes appear…