安裝TensorFlow Profiler UI

來源:互聯網
上載者:User

TensorFlow Profiler UI

  1. Install Python dependencies.

    pip install --user -r requirements.txt

  2. Install pprof.

註:安裝需要首先安裝Go以及Google自家的pprof工具。

  1. Create a profile context.

  2. Start the UI.

    python ui.py --profile_context_path=/your path/

  1. 通過瀏覽器開啟網址查看UI介面

error

OSError: [Errno 2] No such file or directory

安裝了pprof之後

 OSError: [Errno 13] Permission denied

Ubuntu系統安裝Go

  1. 由於本機使用xshell遠端連線linux系統,而本機並沒有翻牆,因此不能使用如下命令:

    wget -c https://storage.googleapis.com/golang/go1.7.1.linux-amd64.tar.gz

但是直接開啟上述URL卻能在本機下載該tar包,因此先將tar包下載在本地再上傳到遠程。

  1. 通過xshell上傳檔案到Ubuntu

安裝lrzsz: apt-get install lrzsz

然後將本機上下載的tar拖拽今xshell即可。

  1. 解壓之後設定環境變數:

    tar -C /usr/local -xzf go1.7.1.linux-amd64.tar.gz
    cd ~
    vim .profile

在.profile檔案末未添加:

export PATH=$PATH:/usr/local/go/bin

儲存退出,使語句生效,可測試查看是否安裝成功:

. .profile

安裝pprof工具

go get -u github.com/google/pprof

上述命令會出錯

package github.com/google/pprof: cannot download, $GOPATH not set. For more details see: go help gopath

解決方案如下:

env GOPATH=/usr/local/go/bin/pprof go get -u github.com/google/pprof

在安裝之前手動制定GOPATH 即可,這個路徑也是pprof的安裝路徑!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.