12/25/2020
12/23/2020
delete over than specific megabyte in git history using bfg
firstly, install bfg
on mac
> brew install bfg
delete object if over than 50m in git commit history
> bfg --strip-blobs-bigger-than 50M
make sure & apply .gitignore
First, to check what files are you actually tracking
> git ls-tree --name-only --full-tree -r HEAD
Let say that you found unwanted files in a directory like cache/ so, it's safer to target that directory instead of all of your files.
So instead of:
> git rm -r --cached .
It's safer to target the unwanted file or directory:
> git rm -r --cached cache/
Then proceed to add all changes:
> git add .
and commit
> git commit -m ".gitignore is now working"
list up and sorting file(object) size in git / command
use following cmd:
> git rev-list --objects --all | git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' | sed -n 's/^blob //p' | sort --numeric-sort --key=2 | cut -c 1-12,41- | $(command -v gnumfmt || echo numfmt) --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest
12/22/2020
get YouTube video url from channel name, python youtube-dl library
install youtube-dl package first.
pip install YouTube-dl
<code>
</code>
Thank you.
Download or streaming YouTube video through cv2, python sample code
firstly, install pafy python package
> pip install pafyok then everything will be work using following code:
Thank you.
12/21/2020
python notebook clear output
from IPython.display import clear_output
for i in range(10):
clear_output(wait=True)
print("Hello World!")
12/17/2020
generate .spec file with onefile option for pyinstaller
Use
pyi-makespec --onefile yourprogram.py
to generate a sample spec file for onefile mode.
reference :
https://stackoverflow.com/questions/47143315/using-onefile-with-a-spec-in-pyinstaller
12/14/2020
rsync exclude file and folder
command is like that:
rsync -avz --progress ./source ./destination --exclude-from './exclude-list.txt'
you can make ignore file and folder like this:
exclude-list.txt
*.txt
*.jpg
*.jpeg
*.zip
*.ipynb
.git
*.json
*.done
*.png
*.xml
*.pyc
*/build
*/dist
*/experiment
*/grapher_outputs
*.pkl
*/system_evaluation
12/10/2020
linux screen command list in summary
screen -S name
*leave with alive
Ctrl a, d
*enter screen
*kill specific screen
screen -S name -X quit
*show screen list
screen -ls
*detach specific screen
screen -d name
killall screen
12/07/2020
shuffle dict in python
code
result
{'b': [2, 4], 'd': [2, 4], 'a': [1, 2], 'c': [3, 5]}
12/01/2020
torch.nan_to_num not found error
torch.nan_to_num
This is for 1.8 version.
so use it instead of this.
temp[torch.isnan(temp)] = 0
temp is tensor
-
Logistic Classifier The logistic classifier is similar to equation of the plane. W is weight vector, X is input vector and y is output...
-
Created Date : 2011.10 Language : C/C++ Tool : Microsoft Visual C++ 2008 Library & Utilized : OpenCV 2.3 Reference : SIFT referenc...
-
This is data acquisition source code of LMS511(SICK co.) Source code is made by MFC(vs 2008). The sensor is communicated by TCP/IP. ...
-
fig 1. Left: set 4 points (Left Top, Right Top, Right Bottom, Left Bottom), right:warped image to (0,0) (300,0), (300,300), (0,300) Fi...
-
How many GPUs do I need to train a LLM? This is a complicated question in general, but if we assume that you are usin...
-
Let's use a simplified example with just 2 data points and walk through the process with actual numbers. This will help illustrate how ...
-
In past, I wrote an articel about YUV 444, 422, 411 introduction and yuv <-> rgb converting example code. refer to this page -> ht...
-
IREE-Turbine is a package or toolset that combines PyTorch, Torch-MLIR, IREE, and additional tools to provide a comprehensive solution for...
-
To build and run your toy1.cpp code with MLIR, you need to follow these steps. This assumes you are using the Toy language tutorial from...
-
Image size of origin is 320*240. Processing time is 30.96 second took. The result of stitching The resul...