I tried the super-resolution algorithm "PULSE" in a Windows environment
Try the high-performance super-resolution algorithm "[PULSE: Self-Supervised Photo Upsampling via Latent Space Exploration of Generative Models](https://arxiv.org/abs/2003.03808)" announced at this y
[Memo] How to use BeautifulSoup4 (1) Display html
Scraping with Beautiful Soup on jupyter notebook. In [1] Import Beautiful Soup #### **`In[1]`** ```python from bs4 import BeautifulSoup ``` In [2] Store the html of the article you want to scr
Deep Learning with Shogi AI on Mac and Google Colab Chapters 1-6
[TOP PAGE](https://qiita.com/kazunoriri/items/d7875d7f1121edcc807a) # Chapters 1-5 No special notes. # Chapter 6 Deep Learning Framework ## Warning of chainer and numpy Importing Chainer and Numpy
[Super rudimentary] I installed GDAL on Anaconda
# What is GDAL? I wanted to read a mosaic image (Geotiff image) created with Metashape (formerly Photoscan) and process the image with Python. I tried to install a library called ** GDAL ** that ca
How to check which is / dev / video ?? when multiple webcams are inserted
# problem If you only want to insert one webcam, you should usually connect it to `/ dev / video0` ```shell $ fswebcam -d /dev/video0 a.jpg #Or by default/dev/Because it is video0 $ fswebcam a.jpg
Delete PowerDNS Cache
# Current DNS Cache dump ```bash rec_control dump-cache /tmp/the-cache ``` # Delete command ```bash rec_control wipe-cache [Deleted domain name] ``` --There seems to be a wipe-cache-typed command
Memorandum (acquisition / conversion of "user-defined" time, cross tabulation)
# Introduction Since the first step of the concept design, "process the raw data by" integrating the work time if the values other than the employee name and the work time are the same "" has been im
Farmer economy simulation ① (net-seller, self-sufficient farmer, net-buyer utility maximization action) _Explanation
Hello. I am a graduate student studying agricultural economics. Suddenly, among those who are studying economics and are also interested in programming, Has anyone used CGE (computable general equ
ABC129 A, B, C commentary
## A problem https://atcoder.jp/contests/abc129/tasks/abc129_a ``` python p,q,r = map(int,input().split()) print(min(p+q,q+r,p+r)) ``` Select two of p, q, r (three ways) and select the one with the
Until you use the Kaggle API with Colab
# Introduction There were various articles, but This method worked so I hope it helps someone if I have a memorandum. ## Who is it for? Someone (I) who has touched Colab but isn't familiar with
Set up a web server with CentOS7 + Anaconda + Django + Apache
I wanted to run an image processing program made with Anaconda with Apache + Django, so a simple memo for myself. I don't do anything like SSL or security. # Installation of CentOS 7 From the offici
[MNIST] Convert data to PNG for keras
# Introduction I think it is necessary to understand training data and test data. I created a tool (for Google Colab) to convert mnist data to PNG. mnist_data2img The mnist_data2img tool is publis
Program for studying statistics
# 1. The greater the linear relationship between the two variables, the greater the correlation coefficient. ```python lst = [-1, -0.7, -0.3, 0, 0.3, 0.7, 1] fig, ax = plt.subplots(1, len(lst), figs
[Python] Create a Batch environment using AWS-CDK
# 1.First of all This time, we will implement the AWS Batch environment using CDK. There are many implementation examples in TypeScript, but there weren't many in Python, so I wrote an article. #
Create a partition and then install the Raspberry Pi OS
In "[USB boot with Raspberry Pi 4 Model B](https://qiita.com//nowlinuxing/items/3c7f61bca6e5ef0d1c47)", write the image for microSD to USB mass storage as it is, and then resize the partition. The pr
[Python] Make the function a lambda function
# Premise Returns "hoge" when 0 comes in as an argument A function that just returns the input value when anything else comes. I also wrote the detailed procedure below. As I often get lost, it i
WEB application development using Django [Template addition]
[Continued from Request Processing](https://qiita.com/tesla1017/items/7da9dca7528797b98b68) template - Currently, urls.py is called when / posts / is accessed, and the process of directly returnin
Added a function to register desired shifts in the Django shift table
At first, when the administrator receives a notification of the desired shift, register it, and when executing shift creation once a month, first create a schedule from the desired shift, and if ther
Treasure hunt on Google Maps! Tanken My Kasomachi Game
I had been warming it up for a long time, but I couldn't think of a mounting method, but I was finally able to proto! # Maesetsu I was wondering if I could easily use the town I live in as a maze
Farmer economy simulation ② (net-seller, self-sufficient farmer, net-buyer utility maximization action) _
* I modified the code a little. I forgot to adjust the module in the second code. sorry This article is a continuation of ["Farmer Economy Simulation ①"](https://qiita.com/kuru_kirino/items/489b357
Try to create a new command on linux
--This is a volume to try to create a new command on linux. What does the new command mean? You can create a `" newfile.txt "` file by typing the `newfile` command. ――How does it work? Use the
Julia Quick Note [01] How to use variables and constants
### How to use variables and constants (example of how to write) #### **`note01`** ```ruby ◆ Variable declaration integer x = 1 y = -100 Real number a = 2.0 b = 3.14 c = -5.0 ◆ Declara
[Python3] Code that can be used when you want to resize images in folder units
Accumulation in the sense of memorandum and OUTPUT (this is the end of the system created at once) # Purpose of creation There were times when I wanted to convert all the working sizes, so I create
Multi-input / multi-output model with Functional API
# Introduction Learn how to implement a basic model and a multi-input / multi-output model using Keras' Functional API. ## environment This time I'm using Keras integrated with Tensorflow. ```sh
Machine Learning: Supervised --Support Vector Machine
# Target Understand support vector machines with mathematical formulas and try with scikit-learn. It is assumed that you have already learned calculus and linear algebra. # theory The support ve
Qiita Job I tried to analyze the job offer
## table of contents --Background --Data acquisition --I looked at the data --Impressions and future plans ## background While I was changing jobs, I was caught up in the phrase "Congratulatio
How to deploy a web application on Alibaba Cloud as a freelancer
Throughout this article, I would like to share the best practices I use when deploying web applications in the cloud. ** This blog is a translation from the English version. You can check the origi
[Python3] Code that can be used when you want to change the extension of an image at once
Accumulation in the sense of memorandum and OUTPUT # Purpose of creation I regularly wanted to convert all the work extensions, so I created it to simplify my work. # Creation environment ・ Windo
Updated messages in discord.py
When outputting text with bot, if you delete the previous post and post a new one, It is convenient because it is displayed as the latest posted message. However, if the post is made in a short t
I tried morphological analysis and vectorization of words
# Try using Word2vec * Install gensim to use word2vec. * Install janome for character processing. ``` pip install gensim pip install janome ``` * Code for reading Aozora Bunko with word2vec ``