2
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

.ipynbを.pyに変換する方法

Posted at

概要

機械学習のコードを.ipynbファイルで実装していたが、実行に非常に時間がかかるので、GPUサーバー(Ubuntu Server)でバックグラウンド実行したくなった。.ipynbだと扱いにくいので、.pyに変換し、nohupで実行したい。

前提

  • Python環境があること
  • Jupyter環境があること

手順

  1. nbconvertのインストール
    変換にはjupyter nbconvertを使うので、nbconvertをインストールする必要がある。
pip install nbconvert

↓詳しくは
https://github.com/jupyter/nbconvert
https://nbconvert.readthedocs.io/en/latest/

  1. 変換
    以下を実行するとpythonファイル(<ファイル名>.py)が生成される。
jupyter nbconvert --to python <ファイル名>.ipynb

まとめ

その他の形式への変換も可能です。知りたい方は以下を参照してください。

2
6
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?