Shutdown Linux Computer after you leave
About I will take a leave before regular time today. To enjoy summer vacation earlier than the other employees, what…
About I will take a leave before regular time today. To enjoy summer vacation earlier than the other employees, what…
About Understanding of Http Request structure would help you to implement code. For example, It lets you know how to…
About In the former article (https://eye.kohei-kevin.com/2024/05/24/esp32-cam-image-webserver/), I wrote the code to enable the ESP32 to function as an HTTP server,…
About Multi-Output(MOGP) and Multi-Task(MTGP) In BoTorch document, it mentions that the multi-task and multi-output gaussian processes are difference. The MOGP…
import GPy # the name of kernel kernel_name = 'Matern32' # get class from module kernel_class = getattr(GPy.kern, kernel_name) #…
import os import ftplib import glob import config from logging import getLogger, StreamHandler, Formatter, DEBUG, INFO logger = getLogger("FTP-client") logger.setLevel(INFO)…
Specifying the Python root directory is good to set in order to clarify which directory is root. And it helps…
Run Celery Worker Call function from Publisher thru broker Kill the process from broker
Set Information Id and Summary Convert Documents with Nodes, and Insert thoes
import os import zipfile def zip_directory( folder_path: str, zip_path: str ): with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf: for root, dirs,…