簡體   English   中英

Tensorflow 和 Keras 有什么區別?

[英]What is the difference between Tensorflow and Keras?

I am currently working with neural networks in keras and I know that it works with tensorflow in the back-end, I have it installed on the GPU, but I don't know if keras uses the GPU or if it is something completely different from tensorflow。

TensorFlow 是一個對張量執行操作的中級框架。 Keras 是一個高級 API,它簡化了神經網絡的創建和訓練。 Keras 本身不執行任何張量操作; 它將這些委托給后端,這是您選擇的中級框架:TensorFlow、CNTK 或 Theano。 這些框架中的每一個都可以配置為以任何方式執行張量操作(據我所知,它們中的每一個都可以使用 CPU 或 GPU)。 然而,Keras 並不真正關心操作是如何完成的。 它只是告訴后端去做它們,然后它們就完成了。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM