pd.read_csvでUnicodeDecodeErrorがでるときの対処法[Python][Pandas]
Windowsでpd.read_csvを使うと頻繁にエラーがでる.
エラーがでにくいcsvの読み込み方を見つけたので,メモ.
df = pd.read_csv("./hoge.csv", engine="python ...置換する文字を複数指定[Python]
import repatterns = "dog|cat|fox"repl = "animal"sentence = "dog, cat, fox, pen."re.sub(patterns, repl, sentence)>> ...
f'{hoge}’はフォーマット文字列リテラル(f-strings)[Python]
Kaggleを眺めていると見慣れない記法を発見。
x = str(x)for punct in puncts:x = x.replace(punct, f' {punct} ')return xん? f’ {p ...
MeCabをWindowsにインストールするのは意外と厄介[MeCab][Windows]
pip install MeCabだけで済むと思ってたのに意外と厄介な手順を踏んだので忘れないようにメモ
有志の方のリポジトリからexeをダウンロードどうやらまともにMeCabをインストールするにはソースのビルドなど面倒な ...
MeCabで日本語の分かち書き[MeCab][Python]
import MeCabmecab = MeCab.Tagger ("-Owakati")print(mecab.parse("平成最後の初売りセールが開催中"))平成 最後 の 初 売り セール が 開催 中
OR
import ...TensorDatasetで生画像をTensor化して読み込む[PyTorch]
from glob import globfrom PIL import Imageimport numpy as npimport torchimport torch.utils.data as data_utilsfrom torchv ...
Windows版 AWS CLIで(‘Connection aborted.’, error(10060,…がでたときの対処法[AWS]
エラー発生
Windows PowerShellでaws s3 lsを打つと以下のエラーが出た.
> aws s3 ls('Connection aborted.', error(10060, ...#長いので省略対処法# ...Linux起動時にunexpected inconsistency run fsck manuallyが出た時の対処法[Linux]
fsck -t ext3/dev/sda1
上のコマンドを打って,y(yes)を連打し,再起動すると意外とシンプルに解決した.
/dev/sda1の部分は,修復の必要があるディレクトリを示している.各自の環境に合わせて替えて ...
Pythonでhtmlのファイルを読み込む方法[Python][Beautifulsoup]
from bs4 import BeautifulSoupimport relinks = []html_path = "./hoge.html"with open(html_path) as f:html = f.read()soup = ...
Pythonでテキストファイルから1行づつ読み込んで処理を行う[Python]
fname = "url.txt"with open(fname) as f:for line in f:contents = requests.get(line)time.sleep(1.5)