Skip to content

Instantly share code, notes, and snippets.

View sailfish009's full-sized avatar

sailfish009

  • freelancer
  • South Korea
View GitHub Profile
http://joschu.net/blog/opinionated-guide-ml-research.html
An Opinionated Guide to ML Research
Posted on 2020/01/24
← back to blog index
# mmv - move/copy/append/link multiple files by wildcard patterns
# sudo apt-get install mmv
ex)
mmv hpa_v18/\* train/\#1
pip install --ignore-installed ${PACKAGE_NAME}
ex)
$ pip3 uninstall httplib2
Found existing installation: httplib2 0.9.2
ERROR: Cannot uninstall 'httplib2'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
$ pip3 install --ignore-installed httplib2
https://www.proteinatlas.org/
alias vim='nvim'
alias rg='rg --no-ignore-vcs'
alias find='find . -name'
메타 러닝과 뉴로 볼 루션
발렌티나 알토
2019 년 7 월 9 일
머신 러닝은 입력 데이터에 대한 통계 모델을 훈련하여 스스로 최적화하고 보이지 않는 새로운 데이터를 예측할 수 있도록하는 연구 분야입니다.
기본적으로 알고리즘은 데이터를 통해 배우도록 요청합니다.
그러나 알고리즘에 배우라고 요청하면 어떻게 배우는가? 이것은 메타 학습이 해결을 목표로하는 종류의 작업입니다.
$ pip3 install torchvision
$ pip3 uninstall -y pillow
$ sudo apt-get install libjpeg-turbo8-dev zlib1g-dev
$ CC="cc -mavx2" pip3 install -U --force-reinstall pillow-simd
# PILLOW_VERSION has been removed. Use __version__ instead. (7.0.0)
sudo vim /usr/local/lib/python3.6/dist-packages/torchvision/transforms/functional.py +5
from PIL import Image, ImageOps, ImageEnhance, __version__
sudo vim /usr/local/lib/python3.6/dist-packages/torchvision/transforms/functional.py +789
kwargs = {"fillcolor": fillcolor} if __version__[0] >= '5' else {}
grep -rl 'detectron2' ./ | xargs sed -i 's/detectron2/mydl/g'
# grep -rl 'maskrcnn_benchmark' ./ | xargs sed -i 's/maskrcnn_benchmark/mydl/g'
#
# Hadoop:: KafkaSpark
# Recipe:: Kafka and Spark
#
# Copyright (C) 2015 Cloudwick labs
# Contact :: [email protected]
# All rights reserved - Do Not Redistribute
#
#One machine is required as below mentioned steps are for POC purpose only.