Config value:'pages'. Warning: The'pages' configuration option has been deprecated and will be removed in a future release of MkDocs. Use'nav' instead.
--Environment --Windows10 Pro version 1909 - Python 3.8.5 - mkdocs, version 1.1.2 # Event: I was warned when I built MkDocs ```bash > mkdocs build WARNING - Config value: 'pages'. Warning
[Python] Evaluate the facial expressions that appear on the face
You want to be kind to others at work. Enduring the anger of why I have to do it, I'm dealing with annoying projects without complaining. Let's eat after lunch, huh ~ I'm sick for the time being! A j
Scraping PDF of the national list of minimum wages by region of the Ministry of Health, Labor and Welfare
# Preparation ```shell !apt install python3-tk ghostscript !pip install camelot-py[cv] #Download PDF !wget https://www.mhlw.go.jp/content/11200000/000541154.pdf -O data.pdf !pip install japanmap !p
Search algorithm using word2vec [python]
# Overview I made a search algorithm using word2vec with the expectation that not only exact word matches but also synonyms will be hit. As a result, the accuracy of word2vec information alone was no
I get an error ~ is zero, singular U when passing the covariance matrix from the Linear layer to MultivariateNormal
# What i did pytorch uses v1.5.1. Let the output of Linear be (x, y, vxx, vyy, vxy), create a variance-covariance matrix, and pass it to MultivariateNormal. ```python fc = nn.Linear(n, 5) output =
neo4j sandbox part 13
# Overview I tried sandbox with neo4j. movielens, I tried it. I made a recommendation. # Movies are recommended with cosine similarity. ``` MATCH (p1:User {id:21})-[x:RATING]->(m:Movie)<-[y:RAT
Character code
## Introduction I would like to summarize what I learned a little from studying atcoder. ASCII Do you know about character codes? According to Wikipedia > A character code is provided for each cha
About rails routes command
# rails routes command description When you run the rails routes command in your application's directory, You can see the routing configured in that application. In short, I want to know when I ent
sandbox with neo4j part 10
# Overview I tried sandbox with neo4j. movielens, I tried it. I made a recommendation. # For the time being, I recommend a movie with a good evaluation. ``` MATCH (u:User {id:21}) MATCH (u)-[r:R
Created Ubuntu, Python, OpenCV environment on Docker
Create a Docker container based on Ubuntu and go inside I'm mounting a volume because I want to share files locally I want to use Jupyter, so I have a port connected ``` docker run -it -v $(pwd):
Points that stumbled on GORM
I started GORM the other day and stumbled a lot, so I will leave that point. Overall, -** GORM urges Naming Convention, so you need to know in advance ** I felt that. # Recognize the plural fo
Codeforces Round # 618 (Div. 2) Bacha Review (9/26)
# This time's results  # Impressions of this
Deep Learning with Shogi AI on Mac and Google Colab Chapter 12 1-2
[TOP PAGE](https://qiita.com/kazunoriri/items/d7875d7f1121edcc807a) # hash A hash is a number that replaces a phase. There is a hash in node_hash. It is used for the purpose of linking the situation
Image the pdf file and stamp all pages with confidential stamps (images).
# This was happening at the company ... ――I want this pdf to be an image → Print it out and scan it (!?) --pdf I want to stamp all pages with confidential stamps → Print and stamp all pages with c
Error with pip: There was a problem confirming the ssl certificate
environment OS Name Microsoft Windows 10 Enterprise Python 3.8.3 pip 20.1.1 Today's date 2020-10-8 After installing the Python package with pip on my company computer, ```pip install analytics-m
[Python] Created a method to convert radix in 1 second
I will say it first. It took 1 second. But it can be done in about 4 seconds. # How to use Easy to use! `` radix_conversion (number you want to convert, what base the number is, what base you w
[Django] Use VS Code + Remote Containers to quickly build a Django container (Docker) development environment.
# Introduction RemoteContainers are very convenient, aren't they? Thanks to that, PyCharm seems to be cheating on VS Code. I didn't have an article about Django + Remote Containers, so I'll post the
Install pyproj on Jetson / RasPi
I'm addicted to installing a new pyproj (ver2.1 or higher) with Docker with Jetson Nano's docker build, so make a note of it. pyproj is a very useful tool that can be used to transform datums. (cf.
When "No changes detected" is displayed in python3 manage.py makemigrations
Although the following command is used when migrating ``` python3 manage.py makemigrations ``` Using this command fails ``` hoge@:huga/project$ python3 manage.py makemigrations No changes detected
Speech Recognition: Genre Classification Part2-Music Genre Classification CNN
# Target This is a continuation of music genre classification using the Microsoft Cognitive Toolkit (CNTK). In Part2, music genre classification is performed using the logarithmic mel spectrogram i
[Kenchon book to Python]-Chapter 2- "Train your problem-solving skills! Algorithms and data structures" I rewrote the posted code to Python!
# Introduction This article is Kencho-san's book, which contains many explanations of competitive programming, ** [Train your problem-solving skills! Algorithms and data structures]( https://www.ama
Compare strings in Python
# Why you need it When I was studying for the Python engineer certification exam, I understood what I could not understand by comparing character strings by comparison operation, so I will summarize
Quicksort without using sort
Good evening! (^^)! Yesterday I was trying to put my child to sleep I fell asleep as it was (laughs). Now, let's sort in ascending order with Quicksort. This was another interesting idea. This
[Machine learning] I tried to do something like passing an image
Hello. This is Yuki Ando ([@ holiday1173](https://twitter.com/holiholiday1173)). In this article, using a type of clustering method called the K-means method introduced in the previous article, [p
Differences between Ruby and Python (basic syntax)
Currently, I am attending TECH CAMP and learning Python by myself while learning Ruby. Regarding the difference between Ruby and Python, I will output the basic syntax as a memorandum. * Hereafter
neo4j sandbox part 11
# Overview I tried sandbox with neo4j. movielens, I tried it. I made a recommendation. # We recommend movies of the genre that users are evaluating. ``` MATCH (u:User {id:21})-[r:RATING]->(m:Mov
[Introduction to PID] I tried to control and play ♬
PID control seems to be a technology that has been around for a long time. So, I carefully formulated it and played with it, so I will summarize it. 【reference】 ①[PID controller](https://en.wikipe
Deploy Flask servers on virtual machines such as Azure and AWS
# To you like this --I want to build a web server with Python and publish it. --I want to create an API server that uses deep learning I did a lot of research to build an API server using Flask in
Expand a Python nested dictionary to do something like Pandas' MultiIndex
# Thing you want to do ――I want to expand a nested dictionary by connecting it with an underscore. --Input: `d1 = {'A': {'i': 0,'j': 1},'B': {'i': 2,'j': 3}}` Data that contains a dictionary --Ou
Python does not output errors or output just because the indent is misaligned
I'm currently studying Python at a new company, but unlike other languages, Python can cause errors or not be processed correctly just by shifting the indentation. In the sample.py below, the outpu