TensorFlow, why was python the chosen language?

前端 未结 4 1219
南旧
南旧 2020-12-04 05:10

I recently started studying deep learning and other ML techniques, and I started searching for frameworks that simplify the process of build a net and training it, then I fo

4条回答
  •  自闭症患者
    2020-12-04 05:31

    Python allows you to create extension modules using C and C++, interfacing with native code, and still getting the advantages that Python gives you.

    TensorFlow uses Python, yes, but it also contains large amounts of C++.

    This allows a simpler interface for experimentation with less human-thought overhead with Python, and add performance by programming the most important parts in C++.

提交回复
热议问题