Anaconda, site summary that was helpful for learning Python
## Execution environment ・ Windows10 Laptop & Desktop ・ Anaconda 4.8.4 ・ VScode 1.49.0 -Python 3.8.5 ## reference #### Basic, environment construction ・ [[Super Introductory Course] Python | Cou
Try scraping with Python + Beautiful Soup
# Purpose Learn scraping with Python + Beautiful Soup. # background I want to download only images from the website, I easily thought that it would be easy if I could scrape it, but it was unexpec
Receive websocket of kabu station ® API in Python
# Overview Continuing from [previous](https://qiita.com/shirasublue/items/914e1d62d8308623b56b), kabu station API provided by kabu.com Securities to individuals will be used from Python. This time,
I tried to move Faster R-CNN quickly with pytorch
## Introduction A memorandum because there were few articles running Faster R-CNN with a proper data set and I had a lot of trouble. Since this is my first post, I think there are some things that
How to switch the configuration file to be read by Python
# Introduction It is a method to change the configuration file to be read by adding an option when executing a program in Python. # file organization ``` bash . ├── config │ ├── config_dev.ini │
ABC127 A, B, C Explanation (python)
## A problem https://atcoder.jp/contests/abc127/tasks/abc127_a ``` python a,b = map(int,input().split()) if 13 <= a: print(b) elif 6 <= a <= 12: print(b//2) else: print(0) ``` Determine
List type, tuple type 2
List type, tuple type 2 Unpack assignment Unpacked assignment is a function similar to assignment using slices. It is a function to enter multiple elements on the left and right of the equal and
Create a web surveillance camera with Raspberry Pi and OpenCV
# Create a web surveillance camera with Raspberry Pi and OpenCV ## Introduction `Although it is an article on Mac environment, the procedure is the same for Windows environment. Please read and try
Aiming to acquire E qualification-Introduction-
# What is E qualification? To certify that you have the ability and knowledge to understand the theory of deep learning and to select and implement appropriate methods. (From [Official Site](https:
Install an older version of Tensorflow
# Preface This time, I would like to install TensorFlow 1.14.0 in order to use Keras-RL, a framework for reinforcement learning. # environment - OS: Mac OS Mojave 10.14.6 --Language: Python 3.7, 3.8
AtCoder Library Practice Contest Participation Report (Python)
# AtCoder Library Practice Contest Participation Report (Python) ACL Contest is rated from 1200, so try to solve AtCoder Library Practice Contest while wondering if you can participate in rated. [
Renumber PDF pages
# Need to renumber PDF pages For page numbers of reports and books, it is common to use Roman numerals (i, ii, iii ...) in the table of contents and Arabic numerals (1, 2, 3 ...) starting from 1 in
Create a comfortable Python 3 (Anaconda) development environment on windows
# Introduction [If you need the C / C ++ version I wrote, please refer to it](https://qiita.com/pengincoalition/items/2bc1e0a80b114d6c49a6) I think there are many people who want to build a developm
Simple VPN construction of IPsec gateway with CentOS 8 and openSUSE (Raspberry Pi) ―― 1. StrongSwan introduced
# Assumptions and preparations ## Linux server building article -[Building a file server with Samba (CentOS 8.1 / openSUSE 15.1 / Ubuntu 20.04)](https://qiita.com/kazumi75kitty/items/4298795029ba9f6
A collection of tips for speeding up learning and reasoning with PyTorch
In this article, I will introduce a collection of tips for accelerating deep learning with PyTorch announced by NVIDIA. ### About this article This article was announced by Arun Mallya of NVIDIA.
GCP: Repeat from Pub / Sub to Cloud Functions, Cloud Functions to Pub / Sub
Below is the architecture image of this time.  # Things to prepare ・ Two T
TypeError: mul (): argument'other' (position 1) must be Tensor, not list Solution for error
## When I ran the following program, I got the following error. #### **`Execution statement`** ``` seqlen = torch.tensor(10) mask = [[1] * seqlen] ``` #### **`Error statement`** ``` TypeError:mu
Linux server command
Linux server command Execution environment: Centos7 on Virtualbox, username vagrant ##### top command: Show CPU, memory, process ```$top top - 09:48:52 up 2 min, 1 user, load average: 0.18, 0.14
Signate_ Review of the 1st Beginner Limited Competition
# Introduction I participated in the 1st Beginner Limited Competition (https://signate.jp/competitions/292) held at SIGNATE in August. This was the first time I had a solid competition, but the fin
At Coder (2020/09/08)
AtCoder Beginner Contest 006 So let's start with 006 of AtCoder Beginner Contest! (Please keep in mind the feeling that you shouldn't start with 001 ...) ## [Problem-A](https://atcoder.jp/contests/
Web crawling, web scraping, character acquisition and image saving with python
# Preparation ```python import re import requests from pathlib import Path import requests from bs4 import BeautifulSoup ``` # Create a working folder ```python output_folder = Path('Working
I came up with a way to make a 3D model from a photo. 0 Projection to 3D space
Domo is Ksuke. In 03, which came up with a method for creating a 3D model from a photograph, we will project it into a three-dimensional space. Click here for Part 2 https://qiita.com/Ksuke/items/8
[Python] Automatically translate PDF with DeepL while keeping the original format. [Windows / Word required]
### 9/9 postscript Abolished the input to DeepL via the clipboard and changed to the method using Javascript. Along with that, it corresponds to the use of Selenium in headless mode. ### 9/14 posts
Mastering OpenWRT (LEDE): Until sharing samba as NAS
# Introduction OpenWRT / LEDE is a Linux distribution for wireless routers, As a tip when operating as a NAS, Leave some information about the samba settings. The tips for installing OpenWRT / LE
How to switch between Linux and Mac shells
## First check the current shell Command to check the current shell ```zsh % echo $SHELL /bin/bash ``` Then check which shell is currently installed ```zsh % cat /etc/shells /bin/bash /bin/csh
Create a home music server with Centos8 + Universal Media Server
# Constitution * [Server] Centos8 + Universal Media Server (UMS) * [Client] * Old Android phone + foobar2000 mobile + Old mini component (listening to music) * iPhone + foobar2000 mobile (listen t
Used in machine learning EDA
* This is a personal note It is a memo of the code used so far intersection #### **`intersection`** ```python a=['A','B','c'] b=['B'] c=a.intersection(b) ``` A function that outputs the inters
Parrot return LINE BOT creation
# Introduction Create a line chatbot that returns parrots. There are many other articles that can be helpful, but this time I will write including the ones I stumbled upon. * It is written on the a
Resolve No module named tkinter
<h2> Background </ h2> When using yolo, when using BBox-Label-Tool for labeling, the error message No module named _tkinter was displayed (when main.py was executed). <h2> Environment </ h2> ・ Ma
How to run a Django application on a Docker container (development and production environment)
## Article summary There are several ways to run a WEB application created with ** Django ** in a ** development / production environment **. Recently, ** Kubernetes ** has become popular and there