NLP

Thumbnail of post image 067

BIO Tagは Entity Recognition や Semantic Role Labeling のタスクなどで単語につけるタグとして用いられ, それぞれの文字に以下の意味がある.

B: ‘beginn ...

Linux,Ubuntu

Thumbnail of post image 138

Ubuntu GNOME 16.04 LTS のインストール
日本語のフォルダ名を英語に変換
Linux kernel header のインストールを行う
CUDA9.1 のインストール
NVIDIA drivers ...

Docker,Python

Thumbnail of post image 049

Pythonの実行環境を構築したDockerコンテナに入ってコマンド実行

$ docker exec hoge-container python hoge.py arg1 arg2

hoge-container: Pytho ...

Python

Thumbnail of post image 115

# configファイルの作成$ jupyter notebook --generate-config# geditでconfigファイルを開き、c.NotebookApp.notebook_dirの変数に好きな場所に書き換える$ gedi ...

Python

Thumbnail of post image 000

やりたいこと:
$\beta$($circ$C) を (C) にしたい

正規表現:
\$.+?\$

詳細:

\$: $をエスケープ

+: 1回以上の繰り返し

...

Imagemagick

Thumbnail of post image 021

>> magick convert input.png -crop 100×100+10+20 output.png

ver7からmagickコマンドを付けて実行しなければならなくなったのです ...

Pandas,Python

Thumbnail of post image 176

# Make DataframeIn:df = pd.DataFrame({"A" : ,"B" : ,"C" : ,"D" : np.random.randn(8)})Out:A B C D0 foo one hoge -0.650722 ...

Python

Thumbnail of post image 034

num_list = num_list.index(1)>>2num_list.index(0)>>0num_list.index(2)>>Traceback (most recent call last):>>File "<ipyt ...

RaspberryPi

Thumbnail of post image 022

Raspberry Pi 3 model BにWi-fiでXRDPしようとしたとき,
ifconfigで確認したwlan0のipアドレスを打つと,エラーがでて接続できない.

何度も設定を見直すが,間違えている個所は ...

Ubuntu

Thumbnail of post image 156

必要パッケージのインストール

sudo apt-get install language-pack-ja-base language-pack-ja

内部パラメータの設定

# bash_profileに1行加えて更新v ...