This and that using reflect

# Purpose I will leave it as a memorandum because I lack understanding of `reflect`. ## Use reflect to populate the fields of the structure ### goal I want to enter a specific value for a structure

[Machine learning] I tried to summarize the theory of Adaboost

# Introduction This time, I will summarize the theory about Adaboost in ensemble learning. There are many terms in this area, so I will explain the terms used for ensemble learning first. AdaBoos

In creating a model for discriminating tweet emotions with LSTM + Embedding, I reaffirmed the importance of preprocessing in NLP.

# motivation There are many connections, and we have decided to solve the Text Classification problem, which classifies "Is the student's answer a gold, silver, bronze, or out of range?" In practi

Procedure for creating a Line Bot on AWS Lambda

# Overview We have summarized the procedure for creating a LineBot on AWS Lambda. I wrote from 1 without using line-bot-sdk-python. I use almost "reference" articles. ## What is a webhook -[What is

The story of running the asp.net core 3.1 app on arm64 version Amazon Linux 2

Hello. https://qiita.com/yKimisaki/items/fa528de37413c1001bb6 I wrote in a past article that I made a SlackBot, but recently I put it on an instance of AWS Graviton (64bit version arm CPU, AWS ind

[Python + Selenium] Tips for scraping

## About this article I used to scrape in practice, so this is a memo of the trick I input at that time. ## tool Python3(3.6.2) Selenium Chrome driver(85.0.4183.87) ## 1. Operate js (display hidd

I tried to get the movie information of TMDb API with Python

# About TMDb and TMDb API TMDb [^ 1](The Movie Database) is a community-based database that collects data on movies and TV programs. This service has an API [^ 2], and various information can be obta

On a Linux environment, create a NuGet package from a C # project and load it into another project

I'm in charge of [Azure Functions kafka Extension](https://github.com/Azure/azure-functions-kafka-extension), but recently I have a lot of pull requests, so I want to write E2E tests in languages oth

Features of symbolic and hard links

# [Characteristics of symbolic and hard links] ## Symbolic link A symbolic link is one of the functions of the file system of an operating system (OS), and is a mechanism that creates another file

Try adding a wall to your IFC file with IfcOpenShell python

## Introduction ### What is an IFC file? A file created based on the Industry Foundation Classes specifications. Includes elements used in construction (walls, windows, doors, building equipment, et

About Go Interface

This article is a translation and addition of [Chapter II: Interfaces](https://github.com/teh-cmc/go-internals/blob/master/chapter2_interfaces/README.md). ```bash $ go version go version go1.10 linu

Numpy Useful method list

# Calculate the cumulative sum of arrays ```python import numpy as np y = [0, 1, 2, 3, 4, 5] np.cumsum(y) #Cumulative sum is output as ndarray # [ 0 1 3 6 10 15] np.cumsum(y).tolist() #Can also

Operate Excel with Python (1)

# Today's purpose --Get the data written in the opened Excel and save it in another Excel. ## Folder structure root/  ├ code/ │ └ Execution sources  └ data/ └ Excel you want to open ## Point-like

ABC182

AtCoder Beginner Contest 182 C - To 3 https://atcoder.jp/contests/abc182/tasks/abc182_c ```golang package main import( "fmt" "bufio" "os" "strconv" "strings" ) var rdr=bufio.NewRe

[Selenium] How to specify the relative path of chromedriver?

## 1. I'm addicted I had Selenium's chromedriver in the same directory as the python script files. The chromedriver is in the current directory as seen from the script file, so it worked below. #

[Blender x Python] Let's get started with Blender Python !!

# table of contents 0. What is Python? 1. How to get started with Blender Python 2. Run the program 3. How to save Finally ## 0. What is Python? Python is one of the programming languages.

[Linux] Review of commands for deploying on AWS

## table of contents --About Linux --Basic commands --Server settings --Process display --Combine multiple commands on the terminal I wrote a review of Linux commands for deploying applications

Introduction to Artificial Intelligence with Python 1 "Genetic Algorithm-Theory-"

## Relatively easy-to-understand genetic algorithm This is what artificial intelligence (AI) does not require that much physical strength to understand from 1 to 10. Even those who have stood at th

I tried to organize the evaluation indexes used in machine learning (regression model)

* Articles sent by data scientists from the manufacturing industry * This time, the evaluation indexes used in the regression model are organized. ## Introduction This time, I tried to organize t

Introduction to Artificial Intelligence with Python 2 "Genetic Algorithm-Practice-"

# Preface Since we will start from practice here, please refer to ["Genetic Algorithm-Theory-"](https://qiita.com/nima_h/items/0b47cab7e7600f3aa5f5) first. # let's try it Now, let's actually ru

Implement PyTorch's DataLoader that returns a mini-batch featured in DeepChem's ConvMol Featurizer

# Introduction I decided to switch from Keras, Tensorflow to PyTorch. Then, we decided to implement Graph Convolutional Network (GCN) by compounds using PyTorch. First, it is necessary to convert t

python try ~ except ~ else

## code ```python def func(a, b): try: print(a / b) except ZeroDivisionError as e: print('

Aiming to become a machine learning engineer from sales positions using MOOCs

## Introduction -Age: 35 years old (as of 2020) -Career: Software sales position for about 11 years from new graduate, engaged in foreign-affiliated sales for the last 7 years (no opportunity to pro

I created a Go library nzargv that arranges command line arguments nicely.

[zakuro9715/nzargv](https://github.com/zakuro9715/nzargv) [![PkgGoDev](https://pkg.go.dev/badge/github.com/zakuro9715/nzargv)](https://pkg.go.dev/github.com/zakuro9715/nzargv)![GitHubRepostars](https

How to get the notebook name you are currently using in Google Colab

There was an answer on Stackoverflow. ``` from requests import get filename = get('http://172.28.0.2:9000/api/sessions').json()[0]['name'] ``` https://stackoverflow.com/questions/61901628/it-is-pos

Set up a Samba server with Docker

Let's set up a Samba server with Docker. # environment - Chromebox Series 3 --Remove the Wi-Fi adapter and replace it with [USB3.0 adapter](https://ja.aliexpress.com/item/33046262512.html?spm=a2g0s

Introduction

Nice to meet you. It is an office worker in that area. I'm missing a lot, Because I have to do various things in my work I decided to leave it instead of a memo. For those who already know, I

A program that removes specific characters from the entered text

Hi, this is Nagamasa Yamada. I tried to see if I could remove a certain character from the text. Editor used googleColaboratory https://colab.research.google.com/notebooks/welcome.ipynb?hl=ja#scro

Dealing with key not found error in pacstrap when installing Arch Linux

When I try to deploy Arch with an old ISO image, the keyring is too old and pacstrap doesn't work. Here, I leave a memo of the work I did. If you google the workaround, you will find the following.

GPy kernel function comparison

**Purpose** We often see cases of using GPy's Radial Basis Function (RBF) in optimization on the net, but there are several other kernel functions. Even though there was a mathematical explanation