I tried to easily create a fully automatic attendance system with Selenium + Python

I think that there are many people who work by telework or remote work due to the turmoil of the new virus. Telework was started at the company I work for with the declaration of emergency, but sinc

Codeforces Round # 613 (Div. 2) Bacha Review (10/1)

# This time's results ![スクリーンショット 2020-10-01 17.09.14.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/331393/342b9453-9c5c-21c1-cb45-fdb3c6789f08.png) # Impressions of this

How to turn a .py file into an .exe file

I posted it for the first time after recording it because I needed it for business and tried to find out and try it. I'm using py2exe and pyinstaller, and finally pyinstaller. All descriptions assu

Deep Learning 2 Made from Zero Natural Language Processing 1.3 Summary

# What is this This is the material used when presenting at an in-house study session. --- # 1.3 Neural network learning --- ## 1.3.1 Loss function In order to make "good inference" in a neural

How to specify command line arguments when debugging in PyCharm

--Environment --Windows10 Pro version 1909 - PyCharm 2020.2.2 (Community Edition) 1. Open the Run / Debug Configurations dialog with Run> Edit Configurations 1. Select [Python]> Target Source

LINE BOT if ~ stumbled

For the time being, write it as a memo for yourself. # Specific explanation First, I will explain in detail what I stumbled upon. The sample code of LINE BOT is mostly the sample code of Echolal

How to loop and play gif video with openCV

Background Currently, I am creating a web page that introduces minor OpenCV by myself. https://featurepoints.jp/opencv_doc/ So, I am doing image processing by converting GIF from [GIFMAGAZIN](http

Search numpy.array for consecutive True

It's a common thing, but I wrote it so much so I'll write down the code ## Thing you want to do Leave only True for numpy.array N times in a row ![image.png](https://qiita-image-store.s3.ap-north

Python assert statement

```assert conditional expression, "The error statement you want to display"``` ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/513365/e7d69253-92b6-2d99-5e45-b99d19febc37.pn

I made a subtitle file (SRT) from JSON data of AmiVoice

## Introduction I will post for the first time. My name is Denki Sheep from Golden Bridge. My main business is Chinese translation, but my hobby is programming. I've been experimenting with lang

Visualize the appreciation status of art works with OpenCV

## Overview * There was a request from an artist in Fukuoka to create a system that visualizes the value of art works. * We examined how many people and how long the art work could be viewed with th

Full understanding of Python debugging

# debug Debugging is one of the most important skills for developers. Debugging can help you pinpoint errors and find bugs in your program. Python provides a variety of debugging tools and packages

How to install Cascade detector and how to use it

This time, I would like to introduce how to install the Cascade detector used for face detection. # Execution environment MacOS, Python3.6(anaconda), VSCode # Cascade detector installation procedur

A story about an error when loading a TensorFlow model created with Google Colab locally

# environment ### Google Colab environment Python3.6.9 TensorFlow2.3.0 ### Local environment Python3.6.7 TensorFlow2.1.0 # what's happened? Download the model created by Google Colab and When I tr

To automatically send an email with an attachment using the Gmail API in Python

This time, I will write about how to automatically send an email with an attachment using Python and the Gmail API. # Send Gmail with Python code I will write the code to send an email with an atta

Convenient goods memo around natural language processing

# Machine learning information Collect information It seems that we need to implement machine learning that handles natural language processing, so I decided to take a look at peripheral services tha

The fastest way to get camera images regularly with python opencv

# background I will introduce how to easily acquire a camera image using opencv and how to execute it regularly. The cameras here are limited to cameras that can be controlled by opencv, such as USB

jupyter notebook does not start on mac fish

\![Mac OS X-10.15.7](<https://img.shields.io/badge/MacOSX-10.15.7-brightgreen>)\![ruby-2.7.1p83](<https://img.shields.io/badge/ruby-2.7.1p83-brightgreen>) # Symptoms When I put anaconda3 in osx (

100 language processing knocks (2020): 40

`ans40.py` ```py """ 40.Reading the dependency analysis result (morpheme) Implement the class Morph that represents morphemes. This class has surface and findall (pos1) as member variables. Furtherm

Kernel regression with Numpy only

![20190426185334.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/295228/7b7d0469-3ead-455b-af39-57d0647f37b2.png) The kernel method is a powerful weapon for nonlinear data analysis

100 language processing knocks (2020): 32

```py """ 32.The original form of the verb Extract all the original forms of the verb [[{'surface': '', 'base': '*', 'pos': 'BOS/EOS', 'pos1': '*'}, {'surface': 'one', 'base': 'one', 'pos': 'noun',

[Go language] Be careful when creating a server with mux + cors + alice. Especially about what I was addicted to around CORS.

## Introduction [gorilla / mux](https://github.com/gorilla/mux), [rs / cors](https://github.com/rs/cors), [justinas / alice](https://github. I will show you how to make a server by combining com / j

Try adding fisheye lens distortion to the image

Commonplace http://www.sanko-shoko.net/note.php?id=wvb7 ```python import numpy as np import open3d as o3d import cv2 import math #Lattice length per grid CONST_IMG_PER_WIDTH = 10 CONST_IMG_PER_HEI

100 language processing knocks (2020): 35

```py """ 35.Frequency of word occurrence Find the words that appear in the sentence and their frequency of appearance, and arrange them in descending order of frequency of appearance. [[{'surface':

[Python] GUI for inserting TeX format into PowerPoint with 2 clicks [PowerPoint]

# Introduction Can you type in the button menu to create slide materials that make heavy use of mathematical formulas? is what I think. However, trying to use TeX with PowerPoint takes a lot of was

Use Mock with pytest

# Introduction When I wrote the test code using pytest, I had a hard time using Mock, so I summarized it. # What is Mock Mock is a module that facilitates unit testing on behalf of specific objects

100 language processing knocks (2020): 47

```py """ ## 47.Functional verb syntax mining[Permalink](https://nlp100.github.io/ja/ch05.html#47-Functionalverbsyntaxmining) I would like to pay attention only when the verb wo case contains a s-irr

100 language processing knocks (2020): 39

```py """ 37.Top 10 words that frequently co-occur with "cat" Display 10 words that often co-occur with "cat" (high frequency of co-occurrence) and their frequency of appearance in a graph (for exampl

Create an API to convert PDF files to TIF images with FastAPI and Docker

# Introduction I heard from my boss that the Fast API seems to be good, so I touched it. It's boring to simply make a GET request and return characters, so I created an API to convert a PDF file to

I want to scroll the Django shift table, but ...

The shift table for the current month looks like this. ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/701342/89e76d5f-ad9a-4d18-d5b1-c4fe500520ea.png) When I go down, I d