フォルダ内のファイルを特定の割合に分ける[Python]
なんでこんなことするの?
CNNで学習するために、画像ファイルをTrainingとValidationに分けたかったから。
画像ファイルを7:3に分けるスクリプトfrom glob import globfrom os.path ...PILで透過PNGのαチャンネルを消す方法[Python][PIL][RGBA]
In: from PIL import ImageIn: img_pil = Image.open("hoge.png")In: img_pil.mode Out: 'RGBA'In: img_pil = img_pil.convert(" ...
find_allの後にfind_allしたいとき[Python] [Beautiful soup]
Beautiful soupでパースしたオブジェクトにfind_allの後にfind_allをするとエラーが出る.# エラーがでる例soup = BeautifulSoup(html, "html.parser")obj = soup.fi ...
Win版AnacondaでPermission deniedがでたときの対処法
Anaconda Prompt上で以下のコマンドを打つだけでOK
(標準のCommand PromptやWindows Power Shellではない)
anaconda-navigator --resetGraphvizで描いたノードに画像を貼り付ける(Pythonで)
ノードの引数に貼り付けたい画像のバスを書くだけ。
from graphviz import Digraph# Ready to parent graph.g = Digraph(comment = 'Graph')g.node( ...Pythonの実行環境を構築したDockerコンテナに入ってコマンド実行
Pythonの実行環境を構築したDockerコンテナに入ってコマンド実行
$ docker exec hoge-container python hoge.py arg1 arg2hoge-container: Pytho ...
Jupyter Notebook の初回起動時のワーキングディレクトリを変更
# configファイルの作成$ jupyter notebook --generate-config# geditでconfigファイルを開き、c.NotebookApp.notebook_dirの変数に好きな場所に書き換える$ gedi ...
Python 正規表現 $で囲われた文字を置換
やりたいこと:
$\beta$($circ$C) を (C) にしたい
正規表現:
\$.+?\$
詳細:
\$: $をエスケープ
+: 1回以上の繰り返し
...
Python pandas 列の範囲を指定して欠損値判定
# Make DataframeIn:df = pd.DataFrame({"A" : ,"B" : ,"C" : ,"D" : np.random.randn(8)})Out:A B C D0 foo one hoge -0.650722 ...
ある要素が初めて現れるのは何番目か?[Python]
num_list = num_list.index(1)>>2num_list.index(0)>>0num_list.index(2)>>Traceback (most recent call last):>>File "<ipyt ...