論文サマリ

Thumbnail of post image 063

Tracking Multiple Objects Outside the Line of Sight using Speckle Imaging (CVPR2018)

ieeexplore.ieee.org

目的

障害物によ ...

NLP

Thumbnail of post image 126

品詞が日本語でまとめられているので分かりやすい.

www.ibm.com

Pandas,Python

Thumbnail of post image 137

Windowsでpd.read_csvを使うと頻繁にエラーがでる.

エラーがでにくいcsvの読み込み方を見つけたので,メモ.

df = pd.read_csv("./hoge.csv", engine="python ...

Python

Thumbnail of post image 107

import repatterns = "dog|cat|fox"repl = "animal"sentence = "dog, cat, fox, pen."re.sub(patterns, repl, sentence)>> ...

Python

Thumbnail of post image 200

Kaggleを眺めていると見慣れない記法を発見。

x = str(x)for punct in puncts:x = x.replace(punct, f' {punct} ')return x

ん? f’ {p ...

MeCab,Windows

Thumbnail of post image 071

pip install MeCabだけで済むと思ってたのに意外と厄介な手順を踏んだので忘れないようにメモ

有志の方のリポジトリからexeをダウンロード

どうやらまともにMeCabをインストールするにはソースのビルドなど面倒な ...

MeCab,Python

Thumbnail of post image 174

import MeCabmecab = MeCab.Tagger ("-Owakati")print(mecab.parse("平成最後の初売りセールが開催中"))平成 最後 の 初 売り セール が 開催 中

OR

import ...

PyTorch

Thumbnail of post image 179

from glob import globfrom PIL import Imageimport numpy as npimport torchimport torch.utils.data as data_utilsfrom torchv ...

AWS

Thumbnail of post image 081

エラー発生

Windows PowerShellでaws s3 lsを打つと以下のエラーが出た.

> aws s3 ls('Connection aborted.', error(10060, ...#長いので省略対処法# ...

Linux

Thumbnail of post image 108

fsck -t ext3/dev/sda1

上のコマンドを打って,y(yes)を連打し,再起動すると意外とシンプルに解決した.

/dev/sda1の部分は,修復の必要があるディレクトリを示している.各自の環境に合わせて替えて ...