Robust linear regression with scikit-learn

# Overview Introducing how to draw robust linear regression using Python's machine learning library [sckit-learn](https://scikit-learn.org/stable/index.html). In this article, I created a chart objec

I tried to vectorize the lyrics of Hinatazaka46!

# 0: What you want to do Using ** word2vec ** based on the lyrics data of all songs of Hinatazaka46, ** Natural language ⇒ Numerical value ** I would like to convert it to and play with it. ## Wha

Twitter slander repulsion machine (strongest version)

I was wondering because the article "Twitter slander repelling machine" I wrote on Qiita earlier was good, but LGTM was sluggish. I borrowed the power of Deep Learning because I thought it would be a

Implement stacking learning in Python [Kaggle]

TL;DR Stacking learning is a commonly used method when the accuracy of a single prediction model in machine learning reaches a plateau. In this article, we will use Python to create a stacking mode

Why you should consider adopting Go CDK even if you are a single cloud vendor

## What is Go CDK? Go CDK is an abbreviation of The Go Cloud Development Kit, which is a project to handle services with almost the same functions provided by major cloud vendors with a unified API

Operate Db2 container with Go

Hello. This time, I will introduce how to operate a Db2 container set up with Docker with Go. Please refer to the following articles for information on how to set up a Db2 container and how to inse

Convert PDF of product list containing effective surfactants for new coronavirus to CSV

CSV of PDF of [Product list containing surfactants effective for new coronavirus](https://www.nite.go.jp/information/osirasedetergentlist.html) of National Institute of Technology and Evaluation Conv

yolov5 visualization program table of contents

## Introduction This individual program is called sign detection, but since the preparation and various things of equipment that can be taken outside and experimented have not been realized yet, this

Use your Raspberry Pi to read your student ID number from your student ID card

# Introduction In the laboratory of the university I belong to, the system was built by throwing the fact that the door of the room was unlocked and closed by the ancestor to Slack by pressing the A

memorandum of vi command

For the time being, if you know this much, you can use it. (I mean, I can only master this |command|operation| |:-----------|:------------:| | i |Insert mode| | :w|write| | :q|End| | :w

Understand the process of merge sort. Finely disassemble following the flow.

## What is merge sort? A type of sort. Stable sort. It uses the divide-and-conquer method. --Divide the array to be sorted into two ――Repeat the division into two until there is one element (divi

Create a game to control puzzle & dragons drops using pygame

This time, after learning python and pygame to some extent, I decided to make something. I decided to make a simple but simple game, Puzzle & Dragons, which is my favorite game. I want to update th

[Python] Create a program to delete line breaks in the clipboard + Register as a shortcut with windows

## Background * When you want to copy and paste from a PDF file paper and pass it through google translate, it is annoying to insert extra line breaks. * As a simple way to delete line breaks when

[Personal development] Released "Zerorie", a calorie management app that makes all foods 0kcal.

## Introduction Hello. I think the real thrill of personal development is ** "waste of technology" **. I also created a ~~ shit ~~ app by personal development, so I will record various things bel

How to achieve time wait processing with wxpython

# Introduction When I first tried to write a time wait process in wxpython 1. Try waiting for time with time.sleep () 2. The screen becomes unresponsive and the cause is investigated. 3. Support

Quicksort details and code examples

## What is Quicksort? Pivot (reference) the elements and place the remaining elements back and forth depending on whether they are larger or smaller than the pivot. The work of deciding the pivot a

Automatic brute force machine learning (regression analysis) -This greatly reduces the time for parameter tuning-

RegressionAutomaticSearch I created a program that performs regression analysis with a model whose parameters have been changed by arbitrary machine learning. Now let's find the best model and par

Python learning memo for machine learning by Chainer Chapter 8 Introduction to Numpy

What This is an article that summarizes what I noticed and researched when learning machine learning using Chainer. This time, I will study Numpy. It is written based on my understanding, so it may

Try implementing XOR with Keras Functional API

# Introduction I decided to start Keras in earnest, so I wrote the code to build the prediction model of XOR. I'd like to create a complex model such as Graph Convolutional Networks in the future, so

Drawing a silverstone curve using python

### 1. Silverstone Curve Visualization This is the code to visualize the Maxy Silverstone curve with python. It has been confirmed to work with JupyterNotebook. The parameters currently included a

Build a Go development environment with VS Code's Remote Containers

# Introduction It was comfortable to build a Go development environment using Remote Containers, which is an extension of VS Code, so I will introduce it. I will omit the installation method of VS

Clogged with python update of GCP console ② (Solution)

# Last synopsis Made apt work I put pip I put pyenv I can't install python! ← here # The error that appeared last time (review) ``` $ pyenv install 3.7.4 Downloading Python-3.7.4.tar.xz... ->

Change the movement by changing the combo box with tkinter

The source code is as follows. ```python import tkinter from tkinter import ttk colors = ['Red', 'Green', 'Blue'] subcolors = ["Black", "White"] def add_combobox_subcolors(): def inner(self)

Deep Learning with Shogi AI on Mac and Google Colab Chapter 12 3

[TOP PAGE](https://qiita.com/kazunoriri/items/d7875d7f1121edcc807a) select_max_ucb_child() A method that selects the child node that maximizes the value of the following formula that appears in Cha

Review by reading "Self-study Programmer"

# Introduction I have been working as a system engineer for nearly 9 years. I haven't actually coded for 3 or 4 years, and recently I've been exclusively engaged in the SE business (PJ management, r

yukicoder contest 270 (mathematics contest) Participation record

# yukicoder contest 270 (mathematics contest) Participation record Why is it that just looking at the string mathematics makes me lose motivation? ## [A 1256 continuous integer sequence](https://yu

Your URL didn't respond with the value of the challenge parameter.

When using the slack API, I got an error saying that the flask endpoint cannot be used. This means that ok will not be issued unless it is an api that returns a challenge parameter. So, if you make

Make a copy of the list in Python

# Introduction The result of execution with Python 3.8.3. # Copy of list Sometimes I want to make a copy of the list, change the values and compare it to the original. In that case, you need to wri

[AWS lambda] Deploy including various libraries with lambda (generate a zip with a password and upload it to s3) @ Python

# Thing you want to do As it is, deploy it including the library such as lbxxx.so, generate a zip with a password on AWS lambda, and store it in the S3 bucket. # The wall that stands up The wall st

Survivor prediction using kaggle's titanic xg boost [80.1%]

# Introduction Last time, I looked at Titanic's train data to see what features are related to survival rate. Last time: [Data analysis before kaggle's titanic feature generation](https://qiita.com/