色哟哟视频在线观看-色哟哟视频在线-色哟哟欧美15最新在线-色哟哟免费在线观看-国产l精品国产亚洲区在线观看-国产l精品国产亚洲区久久

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

在樹莓派64位上安裝TensorFlow

jf_70714899 ? 來源:jf_70714899 ? 作者:jf_70714899 ? 2023-05-15 13:46 ? 次閱讀
「樹莓派」「上海晶珩」「EDATEC」在 Raspberry Pi 64 位 OS 上安裝 TensorFlow

介紹

本頁將指導(dǎo)您在Raspberry Pi 4 64位操作系統(tǒng)Bullseye 上安裝 TensorFlow 2.10.0 或更早版本。

TensorFlow是一個專門為深度學(xué)習(xí)開發(fā)的大型軟件庫。它消耗大量資源。你可以在Raspberry Pi 4上執(zhí)行TensorFlow,但不要指望奇跡。它可以運(yùn)行您的模型,如果不是太復(fù)雜,但它將無法訓(xùn)練新模型。它也不能執(zhí)行所謂的遷移學(xué)習(xí)。除了運(yùn)行預(yù)先構(gòu)建的深度學(xué)習(xí)模型外,您還可以使用該庫將所謂的凍結(jié) TensorFlow 模型轉(zhuǎn)換為 TensorFlow Lite 平面緩沖區(qū)模型。

如果你只是想對深度學(xué)習(xí)有一些印象,請考慮安裝TensorFlow Lite。它的速度要快得多,使用的資源要少得多,因?yàn)樗菫镽aspberry Pi等小型計(jì)算機(jī)設(shè)計(jì)的。您可以使用許多現(xiàn)成的生成模型。在此處查看我們的 64 位 Raspberry 安裝指南。

路線圖

TensorFlow繼續(xù)增長。每個新版本都需要更多的資源、支持軟件和庫。它越來越多地給你的樹莓派帶來了沉重的負(fù)擔(dān)。它解釋了為什么最新版本在具有“過時”操作系統(tǒng)的“舊”Raspberry Pis上不能很好地運(yùn)行。

另一方面,不建議在最新的Bullseye上安裝非常舊的TensorFlow版本。您將被迫降級某些系統(tǒng)庫,這將阻止其他軟件運(yùn)行。這里最好遵循:“順其自然”。

以下是概述。綠色復(fù)選標(biāo)記表示有版本可用。空的綠色盒子意味著沒有版本,但仍然可以安裝。灰色框指定不允許“正常”安裝的硬件或軟件限制。

wKgaomRhxyOAamx6AABzg3JnLsA27.webp

提示

wKgZomRhxyOAFqkwAAB_0SFVLJ401.webp

通常,我們會收到一個問題,如果我們有一個帶有預(yù)裝框架和深度學(xué)習(xí)示例的 Raspberry Pi 4 的 SD 圖像。
我們很樂意遵守這一要求。請?jiān)谖覀兊腉itHub頁面上找到一個完整的Raspberry Pi 4,專門用于深度學(xué)習(xí)。 從我們的GDrive網(wǎng)站下載zip文件,解壓縮并在16 GB SD卡上刷新圖像,然后開始吧!

我們討論了兩個安裝,一個用于 Python 3,一個用于 API 庫C++。 不幸的是,沒有官方的 aarch64 pip3 輪可用于 2.7、2.6 或 2.5 版本。但是,為了您的方便,我們使用 Bazel 創(chuàng)建了我們的輪子并將它們放在 GitHub 上。
本指南的最后一部分討論了Keras的安裝。

準(zhǔn)備

Numpy

Tensorflow在最新版本的numpy中遇到了問題。將 TensorFlow 移植到 numpy 1.20 變得非常困難。現(xiàn)在,隨著TensorFlow版本2.8.0的出現(xiàn),它終于成功了。最后,安裝TensorFlow時不再有numpy版本沖突。
但是,TensorFlow 2.7.0仍然報(bào)告了一些問題。為了安全起見,請使用 numpy 版本 1.19.5為了TF 2.7.0 以確保一切正常。

libclang 9.0.1

TensorFlow 2.7.0 依賴于 libclang 9.0.1。沒有適用于 Debian 10 的發(fā)行版。這就是為什么只有TensorFlow 2.7安裝在Debian11Bullseye上,。你可以從頭開始在Buster RPi上安裝libclang 9.0.1,這樣你就可以安裝TensorFlow了。請注意,clang構(gòu)建需要大量資源,超過5 GB。最好切換到Bullseye,并在半小時內(nèi)啟動并運(yùn)行TensorFlow

Protobuffer 4.21

最新版本的Protobuffer 4.21.0與以前的版本3.20.1相比有一些重大改進(jìn)。但是,TensorFlow尚不支持這些更改。為了使 TensorFlow 正常工作,如果您安裝了4.21 ,則需要將 Protobuf 降級到 3.20版本。

wKgaomRhxySAb05RAAKAu3XZWo857.webp

有關(guān)如何降級的更多信息,請?jiān)L問我們的 GitHub 頁面。

Tensorflow-io-gcs-filesystem

所有依賴項(xiàng)都可以只用一個命令安裝,除了 tensorflow-io-gcs 文件系統(tǒng)。由于沒有 aarch64 機(jī)器的發(fā)行版,我們必須從頭開始構(gòu)建 tensorflow-io-gcs 文件系統(tǒng)。整個過程可以在下面找到,應(yīng)該在安裝TensorFlow本身之前完成。如果讓TensorFlow安裝io-gcs,它將選擇錯誤的版本并且不起作用。

# get a fresh start
$ sudo apt-get update
$ sudo apt-get upgrade
# install pip3
$ sudo apt-get install git python3-pip
# install correct version protobuf
$ sudo -H pip3 install --upgrade protobuf==3.20.0
Method 1
# download tensorflow io
$ git clone -b v0.23.1 --depth=1 --recursive https://github.com/tensorflow/io.git
$ cd io
$ python3 setup.py -q bdist_wheel --project tensorflow_io_gcs_filesystem
$ cd dist
$ sudo -H pip3 install tensorflow_io_gcs_filesystem-0.23.1-cp39-cp39-linux_aarch64.whl
$ cd ~
Method 2
# or download wheel
$ git clone https://github.com/Qengineering/Tensorflow-io.git
$ cd Tensorflow-io
$ sudo -H pip3 install tensorflow_io_gcs_filesystem-0.23.1-cp39-cp39-linux_aarch64.whl
$ cd ~

Python 3.9 的 TensorFlow wheels

TensorFlow由一個名為Bazel的Google軟件安裝程序安裝。最后,Bazel生成一個輪子來安裝TensorFlow Python版本,或者在安裝C++版本時生成一個壓縮包。這兩種方法都是樹莓派用戶所熟知的。我們已經(jīng)在GitHub頁面上發(fā)布了Bazel的結(jié)果。隨意使用這些輪子。整個 TensorFlow 安裝過程從頭到尾需要很多小時(Python ±64,C++庫±1)。完成所有繁瑣的工作后,只需幾分鐘即可在Raspberry 64位Bullseye上安裝TensorFlow。對于很難完成的部分,本手冊稍后將介紹完整的程序。
整個快捷方式過程如下。wheels太大,無法存儲在GitHub上,因此使用Google驅(qū)動器代替。

TensorFlow 2.10.0

# install gdown to download from Google drive
$ sudo -H pip3 install gdown
# download the wheel
$ gdown https://drive.google.com/uc?id=1G2P-FaHAXJ-UuQAQn_0SYjNwBu0aShpd
# install TensorFlow 2.10.0
$ sudo -H pip3 install tensorflow-2.10.0-cp39-cp39-linux_aarch64.whl

TensorFlow 2.9.1

# install gdown to download from Google drive
$ sudo -H pip3 install gdown
# download the wheel
$ gdown https://drive.google.com/uc?id=1xP6ErBK85SMFnQamUh4ro3jRmdCV_qDU
# install TensorFlow 2.9.1
$ sudo -H pip3 install tensorflow-2.9.1-cp39-cp39-linux_aarch64.whl

TensorFlow 2.8.0

# install gdown to download from Google drive
$ sudo -H pip3 install gdown
# download the wheel
$ gdown https://drive.google.com/uc?id=1YpxNubmEL_4EgTrVMu-kYyzAbtyLis29
# install TensorFlow 2.8.0
$ sudo -H pip3 install tensorflow-2.8.0-cp39-cp39-linux_aarch64.whl

TensorFlow 2.7.0

# utmost important: use only numpy version 1.19.5
# check the version first
$ pip3 list | grep numpy
# if not version 1.19.5, update!
$ sudo -H pip3 install numpy==1.19.5
# (re)install termcolor at the correct location
$ python3 -m pip install termcolor
# install gdown to download from Google drive
$ sudo -H pip3 install gdown
# download the wheel
$ gdown https://drive.google.com/uc?id=1FdVZ1kX5QZgWk2SSgq31C2-CF95QhT58
# install TensorFlow 2.7.0
$ sudo -H pip3 install tensorflow-2.7.0-cp39-cp39-linux_aarch64.whl

安裝成功后,應(yīng)獲得以下屏幕輸出。

wKgZomRhxySAeFn5AAPbDd9aQm034.webp

TensorFlow 2.8.0 C++ API

如果你打算用C++編程,你將需要TensorFlow的C++API版本,而不是Python版本。使用我們 GitHub 頁面中的預(yù)構(gòu)建壓縮包安裝 C++ 庫可以為您節(jié)省大量時間。 請按照以下步驟操作。

TensorFlow 2.10.0

# get a fresh start
$ sudo apt-get update
$ sudo apt-get upgrade
# remove old versions (if found)
$ sudo rm -r /usr/local/lib/libtensorflow*
$ sudo rm -r /usr/local/include/tensorflow
# the dependencies
$ sudo apt-get install wget curl libhdf5-dev libc-ares-dev libeigen3-dev
$ sudo apt-get install libatomic1 libatlas-base-dev zip unzip
# install gdown to download from Google drive (if not already done)
$ sudo -H pip3 install gdown
# download the tarball
$ gdown https://drive.google.com/uc?id=1GOC5CiT5Ws2NpiBem4K3g3FRqmGDRcL7
# unpack the ball
$ sudo tar -C /usr/local -xzf libtensorflow_cp39_64OS_2_10_0.tar.gz

TensorFlow 2.9.1

# get a fresh start
$ sudo apt-get update
$ sudo apt-get upgrade
# remove old versions (if found)
$ sudo rm -r /usr/local/lib/libtensorflow*
$ sudo rm -r /usr/local/include/tensorflow
# the dependencies
$ sudo apt-get install wget curl libhdf5-dev libc-ares-dev libeigen3-dev
$ sudo apt-get install libatomic1 libatlas-base-dev zip unzip
# install gdown to download from Google drive (if not already done)
$ sudo -H pip3 install gdown
# download the tarball
$ gdown https://drive.google.com/uc?id=1Z83_RQTvCb2jL2BO1Zdez3x4Qx-XheRk
# unpack the ball
$ sudo tar -C /usr/local -xzf libtensorflow_cp39_64OS_2_9_1.tar.gz

TensorFlow 2.8.0

# get a fresh start
$ sudo apt-get update
$ sudo apt-get upgrade
# remove old versions (if found)
$ sudo rm -r /usr/local/lib/libtensorflow*
$ sudo rm -r /usr/local/include/tensorflow
# the dependencies
$ sudo apt-get install wget curl libhdf5-dev libc-ares-dev libeigen3-dev
$ sudo apt-get install libatomic1 libatlas-base-dev zip unzip
# install gdown to download from Google drive (if not already done)
$ sudo -H pip3 install gdown
# download the tarball
$ gdown https://drive.google.com/uc?id=1dmJKIk8lUi_XCzlVnRgL-UvfVFriRmCG
# unpack the ball
$ sudo tar -C /usr/local -xzf libtensorflow_cp39_64OS_2_8_0.tar.gz

TensorFlow 2.7.0

# get a fresh start
$ sudo apt-get update
$ sudo apt-get upgrade
# remove old versions (if found)
$ sudo rm -r /usr/local/lib/libtensorflow*
$ sudo rm -r /usr/local/include/tensorflow
# the dependencies
$ sudo apt-get install wget curl libhdf5-dev libc-ares-dev libeigen3-dev
$ sudo apt-get install libatomic1 libatlas-base-dev zip unzip
# install gdown to download from Google drive (if not already done)
$ sudo -H pip3 install gdown
# download the tarball
$ gdown https://drive.google.com/uc?id=1kScCKyj0pr265XbCgYmXqXs77xJFe6p1
# unpack the ball
$ sudo tar -C /usr/local -xzf libtensorflow_cp39_64OS_2_7_0.tar.gz

你最終應(yīng)該將 TensorFlow 庫安裝在 /usr/local/lib 位置,并將頭文件安裝在文件夾 usr/local/include/tensorflow/c 中。

wKgaomRhxySACiSIAAIHvsW07Vs86.webpwKgZomRhxyWAEZqXAAJH43Vh91s34.webp

從頭開始安裝

內(nèi)存交換大小

構(gòu)建完整的 TensorFlow 2.8 包需要超過 6 GB 的 RAM。如果您有具有8 GB RAM的Raspberry Pi 4,那么您就很清楚了。否則,請確保增加交換大小以滿足此需求。板載 4 GB RAM,zram 可以提供額外的 2 GB。有了 2 GB 的 RAM,您就不能再依靠 zram 來壓縮超過 2 倍。在這種情況下,他們必須重新安裝dphys-swapfile才能從SD卡中獲取額外的空間。如果您必須安裝 dphys-swapfile,請按照以下命令操作。在 Bullseye 操作系統(tǒng)上設(shè)置交換空間時,完成重啟需要相當(dāng)長的時間。

# install dphys-swapfile
$ sudo apt-get install dphys-swapfile
# give the required memory size
$ sudo nano /etc/dphys-swapfile
# reboot afterwards
$ sudo reboot
wKgaomRhxyWAG8tIAACVPn_EDok87.webpwKgZomRhxyWAf4pEAAB0CCbky4Q03.webpwKgaomRhxyWAC8QUAACKZorUu3k28.webp

如果一切順利,你應(yīng)該有這樣的東西。

wKgZomRhxyaAMY_mAAA7WiFRFe471.webp

作為記錄,顯示的數(shù)字是dphys-swapfile和zram分配的交換空間總量。請不要忘記在完成后刪除dphys-swapfile。

注意:如果在同時啟用 zram 和 dphys-swapfile 的情況下重新啟動 Raspberry Pi,zram 將在啟動期間禁用 dphys-swapfile。您必須手動重新激活此服務(wù)。

# reactivate dphys-swapfile after a reboot
# (when zram and dphys-swapfile are both enabled)
$ sudo /etc/init.d/dphys-swapfile stop
$ sudo /etc/init.d/dphys-swapfile start

Bazel

Bazel是Google的免費(fèi)軟件工具,用于自動構(gòu)建和測試軟件包。你可以將它與OpenCV使用的CMake進(jìn)行比較,但后者只構(gòu)建軟件,沒有測試工具。Bazel是用Java編寫的,Java是一種獨(dú)立于平臺的語言,在語法方面主要基于C++。要編譯 Bazel,我們必須首先使用以下命令安裝 Java 和其他一些依賴項(xiàng)。

# get a fresh start
$ sudo apt-get update
$ sudo apt-get upgrade
# install pip and pip3
$ sudo apt-get install python3-pip
# install some tools
$ sudo apt-get install zip unzip curl
# install Java
$ sudo apt-get install openjdk-11-jdk

接下來,我們可以下載并解壓縮 Bazel 軟件。我們需要 TensorFlow 2.1.0 的 Bazel 版本 5.1.1,因此請確保安裝正確的版本。

$ wget https://github.com/bazelbuild/bazel/releases/download/5.1.1/bazel-5.1.1-dist.zip
$ unzip -d bazel bazel-5.1.1-dist.zip
$ cd bazel

在安裝過程中,Bazel 使用預(yù)定義的可用工作內(nèi)存比率。由于樹莓派的 RAM 大小有限,這個比例太小了。為防止崩潰,我們必須將此內(nèi)存的大小定義為最大板載 RAM 的 40%。例如,800 MB用于2 GByte RAM Raspberry Pi。這是通過在腳本文件 compile.sh 中添加一些額外信息來完成的。您可以將文本 -J-Xmx800M 添加到以 run 開頭的行中。 (第 144 行左右)。請參閱下面的屏幕。使用眾所周知的、、保存更改(請參閱上面的幻燈片放映)。

$ nano scripts/bootstrap/compile.sh -c
wKgaomRhxyaAfCcfAAQZEyO8A9s82.webp

一旦 Bazel 的 Java 環(huán)境最大化,您就可以使用下一個命令開始構(gòu)建 Bazel 軟件。完成后,將二進(jìn)制文件復(fù)制到 /usr/local/bin 位置,以便 bash 可以在任何地方找到可執(zhí)行文件。最后一個操作是刪除 zip 文件。整個構(gòu)建大約需要 33 分鐘。

# start the build
$ env EXTRA_BAZEL_ARGS="--host_javabase=@local_jdk//:jdk" bash ./compile.sh
# copy the binary
$ sudo cp output/bazel /usr/local/bin/bazel
# clean up
$ cd ~
$ rm bazel-5.1.1-dist.zip
# if you have a copied bazel to /usr/local/bin you may also
# delete the whole bazel directory, freeing another 500 MByte
$ sudo rm -rf bazel
wKgZomRhxyaAIFsIAAQws0nroK013.webp

安裝 TensorFlow for Python 3

隨著Bazel的啟動和運(yùn)行,我們可以開始在64位Raspberry Pi for Python 3上構(gòu)建TensorFlow 2.10.0。這幾乎正在成為標(biāo)準(zhǔn)做法。首先,安裝一些依賴項(xiàng),然后從 GitHub 下載 zip,最后解壓縮軟件。您還必須安裝 tensorflow_io_gcs 文件系統(tǒng)。它是通過使用我們的 GitHub 存儲庫中的預(yù)編譯輪來完成的。

TensorFlow 2.10.0

# get a fresh start
$ sudo apt-get update
$ sudo apt-get upgrade
# the dependencies
$ sudo apt-get install zip unzip
$ sudo -H pip3 install keras_applications --no-deps
$ sudo -H pip3 install keras_preprocessing --no-deps
# install correct version protobuf
$ sudo -H pip3 install --upgrade protobuf==3.20.0
# download tensorflow io
$ git clone https://github.com/Qengineering/Tensorflow-io.git
$ cd Tensorflow-io
$ sudo -H pip3 install tensorflow_io_gcs_filesystem-0.23.1-cp39-cp39-linux_aarch64.whl
$ cd ~
# download TensorFlow 2.10.0
$ wget -O tensorflow.zip https://github.com/tensorflow/tensorflow/archive/v2.10.0.zip
$ unzip tensorflow.zip
$ cd tensorflow-2.10.0
$ ./configure

TensorFlow 2.9.1

# get a fresh start
$ sudo apt-get update
$ sudo apt-get upgrade
# the dependencies
$ sudo apt-get install zip unzip
$ sudo -H pip3 install keras_applications --no-deps
$ sudo -H pip3 install keras_preprocessing --no-deps
# install correct version protobuf
$ sudo -H pip3 install --upgrade protobuf==3.20.0
# download tensorflow io
$ git clone https://github.com/Qengineering/Tensorflow-io.git
$ cd Tensorflow-io
$ sudo -H pip3 install tensorflow_io_gcs_filesystem-0.23.1-cp39-cp39-linux_aarch64.whl
$ cd ~
# download TensorFlow 2.9.1
$ wget -O tensorflow.zip https://github.com/tensorflow/tensorflow/archive/v2.9.1.zip
$ unzip tensorflow.zip
$ cd tensorflow-2.9.1
$ ./configure

TensorFlow 2.8.0

# get a fresh start
$ sudo apt-get update
$ sudo apt-get upgrade
# the dependencies
$ sudo apt-get install zip unzip
$ sudo -H pip3 install keras_applications --no-deps
$ sudo -H pip3 install keras_preprocessing --no-deps
# install correct version protobuf
$ sudo -H pip3 install --upgrade protobuf==3.20.0
$ cd ~
# download TensorFlow 2.8.0
$ wget -O tensorflow.zip https://github.com/tensorflow/tensorflow/archive/v2.8.0.zip
$ unzip tensorflow.zip
$ cd tensorflow-2.8.0
$ ./configure

TensorFlow 2.7.0

# get a fresh start
$ sudo apt-get update
$ sudo apt-get upgrade
# the dependencies
$ sudo apt-get install zip unzip
$ sudo -H pip3 install keras_applications --no-deps
$ sudo -H pip3 install keras_preprocessing --no-deps
# download TensorFlow 2.7.0
$ wget -O tensorflow.zip https://github.com/tensorflow/tensorflow/archive/v2.7.0.zip
$ unzip tensorflow.zip
$ cd tensorflow-2.7.0
$ ./configure

構(gòu)建 Python 3 安裝輪之前的最后一步是使用一些環(huán)境變量配置構(gòu)建。這是由 ./configure 腳本文件完成的。將 Python 3 定義為默認(rèn)的 Python 版本,對所有其他問題定義為“否”。

pi@raspberrypi:~/tensorflow-2.10.0 $ ./configure
You have bazel 5.1.1- (@non-git) installed.
Please specify the location of python. [Default is /usr/bin/python3]: 

Found possible Python library paths:
 /usr/lib/python3/dist-packages
 /usr/local/lib/python3.9/dist-packages
Please input the desired Python library path to use.  Default is [/usr/lib/python3/dist-packages] 

Do you wish to build TensorFlow with ROCm support? [y/N]: n
No ROCm support will be enabled for TensorFlow.

Do you wish to build TensorFlow with CUDA support? [y/N]: n
No CUDA support will be enabled for TensorFlow.

Do you wish to download a fresh release of clang? (Experimental) [y/N]: n
Clang will not be downloaded.

Please specify optimization flags to use during compilation when bazel option "--config=opt" is specified [Default is -Wno-sign-compare]: 

Would you like to interactively configure ./WORKSPACE for Android builds? [y/N]: n
Not configuring the WORKSPACE for Android builds.

Preconfigured Bazel build configs. You can use any of the below by adding "--config=<>" to your build command. See .bazelrc for more details.
--config=mkl          # Build with MKL support.
--config=mkl_aarch64 # Build with oneDNN and Compute Library for the Arm Architecture (ACL).
--config=monolithic   # Config for mostly static monolithic build.
--config=numa         # Build with NUMA support.
--config=dynamic_kernels # (Experimental) Build kernels into separate shared objects.
--config=v2           # Build TensorFlow 2.x instead of 1.x.
Preconfigured Bazel build configs to DISABLE default on features:
--config=noaws        # Disable AWS S3 filesystem support.
--config=nogcp        # Disable GCP support.
--config=nohdfs       # Disable HDFS support.
--config=nonccl       # Disable NVIDIA NCCL support.
Configuration finished

腳本文件現(xiàn)已全部設(shè)置完畢,可以使用以下命令開始大規(guī)模構(gòu)建。-Xmx1624m 設(shè)置運(yùn)行 Bazel 的 Java 環(huán)境的內(nèi)存大小。給它盡可能多的空間。我們建議 80% 的樹莓派內(nèi)存大小。在我們的例子中,我們有 2 GB 板載,所以 1624 MB 為除 Bazel 之外的其他線程留下了足夠的空間。
另一點(diǎn)是Basel 使用的內(nèi)核數(shù)量。最好使用一個內(nèi)核。運(yùn)行慢一點(diǎn)比崩潰好一點(diǎn)(總是在最后)并重新開始。
在生成過程中關(guān)閉所有其他應(yīng)用程序。運(yùn)行的其他進(jìn)程越少,編譯速度就越快。

$ sudo bazel clean
$ sudo bazel --host_jvm_args=-Xmx1624m build 
             --config=opt 
             --config=noaws 
             --config=nogcp 
             --config=nohdfs 
             --config=nonccl 
             --config=monolithic 
             --config=v2 
             --local_cpu_resources=1 
             --define=tflite_pip_with_flex=true 
             --copt=-ftree-vectorize 
             --copt=-funsafe-math-optimizations 
             --copt=-ftree-loop-vectorize 
             --copt=-fomit-frame-pointer 
             //tensorflow/tools/pip_package:build_pip_package

經(jīng)過 41 小時(或更長時間!)編譯后,您將看到以下屏幕。

wKgaomRhxyaAfvP5AASrilmupNg70.webp


現(xiàn)在我們必須生成wheel并安裝它。這是通過以下命令完成的。安裝大約只需幾分鐘。

TensorFlow 2.10.0

# synthesize the wheel
$ sudo bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
$ cd ~
# go to the folder where the wheel is located and install tensorflow
$ cd /tmp/tensorflow_pkg
$ sudo -H pip3 install tensorflow-2.10.0-cp39-cp39-linux_aarch64.whl

TensorFlow 2.9.1

# synthesize the wheel
$ sudo bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
$ cd ~
# go to the folder where the wheel is located and install tensorflow
$ cd /tmp/tensorflow_pkg
$ sudo -H pip3 install tensorflow-2.9.1-cp39-cp39-linux_aarch64.whl

TensorFlow 2.8.0

# synthesize the wheel
$ sudo bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
$ cd ~
# go to the folder where the wheel is located and install tensorflow
$ cd /tmp/tensorflow_pkg
$ sudo -H pip3 install tensorflow-2.8.0-cp39-cp39-linux_aarch64.whl

TensorFlow 2.7.0

# synthesize the wheel
$ sudo bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
$ cd ~
# go to the folder where the wheel is located and install tensorflow
$ cd /tmp/tensorflow_pkg
$ sudo -H pip3 install tensorflow-2.7.0-cp39-cp39-linux_aarch64.whl

安裝 TensorFlow C++ API

如前所述,您可以使用 GitHub 頁面上的壓縮包非常快速地安裝 TensorFlow C++ API;不需要經(jīng)過漫長的安裝過程。 對于那些想要自己構(gòu)建 API 的人,現(xiàn)在遵循安裝指南。
首先,如果尚未安裝 Bazel。該過程也在上面描述。一旦 Bazel 開始工作,你可以安裝依賴項(xiàng)并下載 TensorFlow,如果之前還沒有為 Python 3 安裝完成的話。

TensorFlow 2.10.0

# the dependencies
$ sudo apt-get install build-essential make cmake wget zip unzip
$ sudo apt-get install libhdf5-dev libc-ares-dev libeigen3-dev
$ sudo apt-get install libatlas-base-dev
# download TensorFlow 2.10.0
$ wget -O tensorflow.zip https://github.com/tensorflow/tensorflow/archive/v2.10.0.zip
# unpack the folder
$ unzip tensorflow.zip
$ cd tensorflow-2.10.0
$ ./configure

TensorFlow 2.9.1

# the dependencies
$ sudo apt-get install build-essential make cmake wget zip unzip
$ sudo apt-get install libhdf5-dev libc-ares-dev libeigen3-dev
$ sudo apt-get install libatlas-base-dev
# download TensorFlow 2.10.0
$ wget -O tensorflow.zip https://github.com/tensorflow/tensorflow/archive/v2.10.0.zip
# unpack the folder
$ unzip tensorflow.zip
$ cd tensorflow-2.10.0
$ ./configure

TensorFlow 2.8.0

# the dependencies
$ sudo apt-get install build-essential make cmake wget zip unzip
$ sudo apt-get install libhdf5-dev libc-ares-dev libeigen3-dev
$ sudo apt-get install libatlas-base-dev
# download TensorFlow 2.8.0
$ wget -O tensorflow.zip https://github.com/tensorflow/tensorflow/archive/v2.8.0.zip
# unpack the folder
$ unzip tensorflow.zip
$ cd tensorflow-2.8.0
$ ./configure

TensorFlow 2.7.0

# the dependencies
$ sudo apt-get install build-essential make cmake wget zip unzip
$ sudo apt-get install libhdf5-dev libc-ares-dev libeigen3-dev
$ sudo apt-get install libatlas-base-dev
# download TensorFlow 2.7.0
$ wget -O tensorflow.zip https://github.com/tensorflow/tensorflow/archive/v2.7.0.zip
# unpack the folder
$ unzip tensorflow.zip
$ cd tensorflow-2.7.0
$ ./configure

同樣,我們需要在實(shí)際構(gòu)建開始之前配置 Bazel。盡管我們要構(gòu)建一個C++ API,但Bazel腳本文件需要設(shè)置為Python 3作為默認(rèn)Python版本,而所有其他問題則需要設(shè)置為“否”。 回答腳本文件的所有問題后,您最終會得到與上所示相同的輸出屏幕。

最后一步是命令行及其選項(xiàng)。同樣,與之前使用的幾乎相同。這里最重要的是 --config=monolithic 標(biāo)志。沒有這個方向,TensorFlow將無法與OpenCV一起使用,反之亦然。就像pip編譯一樣,Java環(huán)境(-Xmx1624m)的內(nèi)存必須最大化到Raspberry Pi板載內(nèi)存的80%。 最后一行表示壓縮包庫構(gòu)建,而不是pip wheel。

$ sudo bazel --host_jvm_args=-Xmx1624m build 
             --config=opt 
             --config=noaws 
             --config=nogcp 
             --config=nohdfs 
             --config=nonccl 
             --config=monolithic 
             --config=v2 
             --local_cpu_resources=1 
             --copt=-ftree-vectorize 
             --copt=-funsafe-math-optimizations 
             --copt=-ftree-loop-vectorize 
             --copt=-fomit-frame-pointer 
             //tensorflow/tools/lib_package:libtensorflow

經(jīng)過漫長的 12 個小時等待,您將看到以下屏幕。

wKgZomRhxyeAQDwnAAQ7lLnz7z843.webp

最后一步是安裝壓縮包。這是通過以下命令完成的。

$ sudo tar -C /usr/local -xzf bazel-bin/tensorflow/tools/lib_package/libtensorflow.tar.gz

安裝后,您必須具有相同的文件夾(/usr/local/lib 和 usr/local/include/tensorflow/c),如本頁開頭所示。

清除

成功安裝后,不再需要許多文件。bazel 生成的中間對象文件占用大約 6 GB 的磁盤。刪除不會造成任何傷害。

# clean up the whole bazel cache
$ sudo rm -rf ~/.cache/bazel

如果您必須重新安裝 dphys-swapfile,是時候再次卸載它了。這樣,您將延長SD卡的使用壽命。

# remove the dphys-swapfile (if installed)
$ sudo /etc/init.d/dphys-swapfile stop
$ sudo apt-get remove --purge dphys-swapfile

審核編輯:湯梓紅

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報(bào)投訴
  • 工控機(jī)
    +關(guān)注

    關(guān)注

    10

    文章

    1726

    瀏覽量

    50503
  • 樹莓派
    +關(guān)注

    關(guān)注

    116

    文章

    1706

    瀏覽量

    105608
  • tensorflow
    +關(guān)注

    關(guān)注

    13

    文章

    329

    瀏覽量

    60527
收藏 人收藏

    評論

    相關(guān)推薦

    「EDATEC」如何在樹莓4安裝64操作系統(tǒng)

    本文將幫助您在樹莓 4 安裝樹莓 64
    的頭像 發(fā)表于 03-31 17:11 ?2871次閱讀
    「EDATEC」如何在<b class='flag-5'>樹莓</b><b class='flag-5'>派</b>4<b class='flag-5'>上</b><b class='flag-5'>安裝</b><b class='flag-5'>64</b><b class='flag-5'>位</b>操作系統(tǒng)

    樹莓如何安裝和啟動

    `樹莓如何安裝和啟動呢。安裝樹莓必須的裝備:1.2G以上
    發(fā)表于 06-30 23:18

    樹莓基礎(chǔ)功能設(shè)置

    樹莓基礎(chǔ)功能設(shè)置 目錄1、重置root密碼,樹莓開啟root2、樹莓配置‘ll’命令3、
    發(fā)表于 03-02 09:10

    RK3399開發(fā)板香橙4Ubuntu系統(tǒng)下如何安裝TensorFlow

    `主要的區(qū)別是香橙4B內(nèi)置了NPU(人工智能處理器),可以協(xié)助CPU做神經(jīng)網(wǎng)絡(luò)加速計(jì)算。下文將介紹下香橙4/4B安裝TensorFlow的一種方式:步驟:從以下下載
    發(fā)表于 10-19 15:55

    arm的云服務(wù)器外樹莓4安裝kata-container

    kata-container是目前比較熱門的安全容器項(xiàng)目,目前kata-container已經(jīng)支持arm64平臺運(yùn)行。如果你想在arm64平臺
    發(fā)表于 07-12 16:02

    樹莓設(shè)置基本流程(

    第一步,win系統(tǒng)下安裝樹莓的系統(tǒng)到SD卡 第二步,安裝和啟動樹莓
    發(fā)表于 11-30 11:03 ?17次下載

    樹莓_庫函數(shù)安裝教程

    樹莓_庫函數(shù)安裝教程,樹莓嵌入式拔高篇,非常適合新手學(xué)習(xí)
    發(fā)表于 01-14 15:12 ?32次下載

    樹莓的種類_樹莓安裝教程

    樹莓(Raspberry Pi)是尺寸僅有信用卡大小的一個小型電腦,您可以將樹莓連接電視、顯示器、鍵盤鼠標(biāo)等設(shè)備使用。目前,樹莓
    發(fā)表于 11-27 22:01 ?5386次閱讀

    樹莓3硬件配置_樹莓3都能裝什么系統(tǒng)_樹莓3系統(tǒng)安裝教程

    樹莓3一直頗受電子發(fā)燒友的青睞,這篇文章主要討論的就是樹莓3的硬件配置、樹莓3都能裝什么系
    發(fā)表于 12-08 14:36 ?2.6w次閱讀

    樹莓3系統(tǒng)安裝介紹_Noobs進(jìn)行樹莓3系統(tǒng)安裝_Noobs進(jìn)行樹莓3系統(tǒng)恢復(fù)

    這篇文章主要和大家一起來討論一下關(guān)于樹莓3的系統(tǒng)安裝是什么,基于Noobs的樹莓3的系統(tǒng)安裝
    發(fā)表于 12-08 15:02 ?5958次閱讀
    <b class='flag-5'>樹莓</b><b class='flag-5'>派</b>3系統(tǒng)<b class='flag-5'>安裝</b>介紹_Noobs進(jìn)行<b class='flag-5'>樹莓</b><b class='flag-5'>派</b>3系統(tǒng)<b class='flag-5'>安裝</b>_Noobs進(jìn)行<b class='flag-5'>樹莓</b><b class='flag-5'>派</b>3系統(tǒng)恢復(fù)

    使用樹莓設(shè)計(jì)智能小車教程之如何進(jìn)行樹莓模塊安裝資料免費(fèi)下載

      本文檔的主要內(nèi)容詳細(xì)介紹的是使用樹莓設(shè)計(jì)智能小車教程之如何進(jìn)行樹莓模塊安裝資料免費(fèi)下載。
    發(fā)表于 06-24 08:00 ?21次下載

    樹莓3B運(yùn)行64系統(tǒng)的測評詳細(xì)說明

    今天,我們團(tuán)隊(duì)感受了一下樹莓3B 的主板運(yùn)行64bit 系統(tǒng)的感覺!那種感覺您如果有幸感受的話,您一定會說:這才是我要的
    發(fā)表于 11-21 16:17 ?12次下載

    樹莓樹莓4B新手篇:安裝官網(wǎng)Raspbian Buster系統(tǒng)及基礎(chǔ)配置

    目錄1、前言2、樹莓4B有什么特色?3、樹莓新手準(zhǔn)備4、燒錄Raspbian Buster系統(tǒng)到Micro SD卡開啟SSH及配置無線連接5、啟動
    發(fā)表于 11-06 18:21 ?26次下載
    【<b class='flag-5'>樹莓</b><b class='flag-5'>派</b>】<b class='flag-5'>樹莓</b><b class='flag-5'>派</b>4B新手篇:<b class='flag-5'>安裝</b>官網(wǎng)Raspbian Buster系統(tǒng)及基礎(chǔ)配置

    樹莓32 64 位在實(shí)際測試中表現(xiàn)如何

    上周,樹莓派發(fā)布了用戶期待已久的 64 Raspberry Pi OS,從理論上來說 64 的操作系統(tǒng)能夠更好地利用
    的頭像 發(fā)表于 03-17 14:28 ?2966次閱讀

    TensorFlow手勢識別樹莓開源

    電子發(fā)燒友網(wǎng)站提供《TensorFlow手勢識別樹莓開源.zip》資料免費(fèi)下載
    發(fā)表于 11-09 09:27 ?1次下載
    <b class='flag-5'>TensorFlow</b>手勢識別<b class='flag-5'>樹莓</b><b class='flag-5'>派</b>開源
    主站蜘蛛池模板: 久久人人玩人妻潮喷内射人人| 亚洲色无码播放| 川师 最美老师| 欧美xxxxb| 999国产高清在线精品| 久久久久夜| 一级毛片美国| 精品精品国产yyy5857香蕉| 亚洲AV无码国产精品午夜久久| 国产成人免费高清在线观看| 日本G奶乳液汁| SM高H黄暴NP辣H调教性奴| 美女医生深夜在家裸睡惨死| 伊人网久久网| 久久精品中文字幕免费| 一级淫片bbbxxx| 精品一二三区久久AAA片| 亚洲人成77777| 交换邻居波多野结衣中文字幕| 亚洲国产五月综合网| 国产色综合久久无码有码| 晓雪老师我要进你里面好爽| 国产精品久久久久久熟妇吹潮软件| 视频网站入口在线看| 国产传媒精品1区2区3区| 他揉捏她两乳不停呻吟口述| 国产精品…在线观看| 午理论理影片被窝| 国产人妻久久久精品麻豆| 亚洲国产cao| 极品 女神校花 露脸91| 一本之道高清在线3线观看| 久久国产免费观看精品1| 中国国产不卡视频在线观看| 理论937| 99久久精品免费国产一区二区三区 | 正在播放国产尾随丝袜美女| 久久青草热热在线精品| 2012中文字幕手机在线| 嫩草www视频在线观看高清| 啊轻点啊再深点视频免费|