Category: Notes

28 Posts

Experiment Control
Prepare the environment of the experiment control Tutorial from https://shenxiaohai.me/2019/01/17/sacred-tool/ Installation To install Sacred at client (t.g. conda environment) pip install sacred pip install numpy pymongo Server: database # 1. Import the public key used by the package management system. wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add - #…
Useful tools
Auto notification of modification of a web page Select an area and relax: It will send an email alert when something changes. Just from: https://visualping.io/
Sentences in Paper Writing
Feature Vocabulary: boost the representation power A Feature aggregation strategy is proposed to propagate information from early stags to the later ones. -- (Li, et al. 2019) “Retinking on Multi-Stage Networks for Huma Pose Estimation” A multi-stage network is vulnerable by the information losing during repeated up and down sampling.…
Article Writing
Phrasebank http://www.phrasebank.manchester.ac.uk/ Proof Reading https://www.grammarly.com/ https://www.polishmywriting.com/ https://hemingwayapp.com/ https://readable.com Paraphrasing http://paraphrase.generalconnection.com/ https://paraphrasing-tool.com/ http://bestfreespinner.com/ https://free-article-spinner.com/ https://spinbot.com/
Tricks for Office Tools
Quick Paste of the Frequently Used Symbol A symbol bank [link] Name Symbol Belongs to ∈ Alpha α Beta β Gamma γ Omega Ω Delta δ Lambda λ X-Hat X̂ Y-Hat Ŷ X-Tilde X̃ '{alt + 0771}' dot · Powerpoint, Word Hotkey for current date: {Alt} + {Shift} + {T}…
Windows Related Command
Cannot find default photo viewer in windows 10: # create a txt file, and paste following content to it. # Then, change the file extension to "*.reg" # Finally, run it. Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Classes\.jpg] @="PhotoViewer.FileAssoc.Tiff" [HKEY_CURRENT_USER\Software\Classes\.jpeg] @="PhotoViewer.FileAssoc.Tiff" [HKEY_CURRENT_USER\Software\Classes\.gif] @="PhotoViewer.FileAssoc.Tiff" [HKEY_CURRENT_USER\Software\Classes\.png] @="PhotoViewer.FileAssoc.Tiff" [HKEY_CURRENT_USER\Software\Classes\.bmp] @="PhotoViewer.FileAssoc.Tiff" [HKEY_CURRENT_USER\Software\Classes\.tiff] @="PhotoViewer.FileAssoc.Tiff" [HKEY_CURRENT_USER\Software\Classes\.ico] @="PhotoViewer.FileAssoc.Tiff"
Command for Ubuntu 18
Enable ‘New Document’ of right-click action in Ubuntu 18 # open a terminal by Ctrl+Alt+T and run the following command touch ~/Templates/Untitled Document Folder Permission: allow all users to read/write the files sudo chmod -R 777 <folder name> Mount remote hard disk # install sshfs package sudo apt install -y…
Python Environment and Basics
System Preparation Install NVIDIA 2080Ti (driver + cuda) # if need remove old driver sudo apt-get purge nvidia* sudo apt autoremove #add ppa sudo add-apt-repository ppa:graphics-drivers sudo apt-get update #install driver version 440 sudo apt install nvidia-driver-440 sudo reboot #if the system is ubuntu 18. Cuda10.1 cd ~/Downloads wget https://developer.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.168_418.67_linux.run…