Installation and use of exa, fzf and bat software
this article only deals with the simple use of the above software, which is strongly personal. For more comprehensive and detailed use, please refer to the official website.
1, What's good about the new software
1. cat,less =>bat
the commonly used cat command is used to connect multiple files and print to ...
Added by Cherry on Sat, 05 Mar 2022 18:49:07 +0200
Configuring python virtual environment on remote server through Anaconda under Mac os
1, SSH management software
Here I recommend a software I am using, termius. Termius is a very easy to use and beautiful SSH client, which can quickly control the server remotely and customize your favorite themes Termius not only covers Windows, Linux and OSX, but also supports Android and iOS (in the future, you can take out your mobile phone ...
Added by the_NEWBIE_ON_THE_BLOCK on Wed, 02 Feb 2022 02:31:04 +0200
Pytorch torchserve production environment model deployment
We trained a target detection model, wanted to deploy it in the production environment, checked a lot of data, and finally chose TorchServe to deploy it. TorchServe was jointly developed by AWS and Facebook, so I didn't think much about it. There should be nothing wrong with choosing big factories. I stepped on a lot of holes in the process of ...
Added by TobyRT on Fri, 31 Dec 2021 13:02:39 +0200
PyInstaller tutorial and using PyInstaller to package PySide6 program
1. Installation and use
Use the following command to install
pip install pyinstaller
Basic commands:
# Syntax: pyinstaller option source file
pyinstaller -F main.py
Common options:
optioneffect-F,-onefileGenerate a single executable-D,--onedirGenerate a directory (containing multiple files) as an executable program-a,--asciiDoes not ...
Added by shibbi3 on Fri, 19 Nov 2021 14:54:46 +0200
Docker image migration
Docker image migration
Experimental environment
Operating system: CentOS Linux release 7.3.1611 (Core)
docker version: 17.11.0-ce
image copies
To view an existing docker image:
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
eg_postgre ...
Added by mrdeadman on Tue, 05 May 2020 10:58:03 +0300
Python visual decision tree [Matplotlib/Graphviz]
Decision tree is a popular supervised learning method. The advantage of decision tree is that it can be used not only for regression, but also for classification. It does not need feature scaling, and it has better interpretability and is easy to visualize decision tree. Visual decision tree is not only a good way to understand your model, but ...
Added by marvelade on Mon, 06 Apr 2020 09:53:49 +0300
Linux compression and decompression
Compression and decompression
Earliest: compress / uncompress filename suffix:. Z
Then: gzip/gunzip filename suffix:. gz
For a long time, gzip was the standard compression and decompression algorithm of linux
Then: bzip2 / bunizp2 filename suffix:. bz2
The compression ratio of large files is a little larger than that of gzip, but the compre ...
Added by numan82 on Wed, 12 Feb 2020 10:31:23 +0200
Install the Deep Learning Framework Pytorch with Conda
1. Preface
Pytorch is currently a hot framework for in-depth learning.The learning curve is smoother than TensorFlow, so you can train and use the network without writing a lot of template code.Java support has started in the latest version of Pytorch.But installing Pytorch is not easy.Today, let's talk about how to install Pytorch using Conda. ...
Added by abax on Wed, 12 Feb 2020 06:21:53 +0200
Manage Python virtual environments created by Conda
Manage Python virtual environments created by Conda
Download Installation
Download Anaconda
Install Anaconda
New Virtual Environment
Change the location of the new virtual environment.
Switching virtual environments
Adding packages to a virtual environment
Download pygame installation package
`c ...
Added by baccarak on Tue, 04 Feb 2020 04:54:03 +0200
Advanced operation of Linux directory and file
Bowen catalogue
1, Linux directory structure
2, Linux view file content basic command
3, Compress and decompress files
4, vi text editor
1, Linux directory structure
Linux directory structure adopts tree structure, including root directory and subdirectory.
1. Root directory
The location starting point of all partitions, directories, files, ...
Added by JeremyMorgan on Tue, 14 Jan 2020 09:13:29 +0200