TensorFlow, why was python the chosen language?

前端 未结 4 1230
南旧
南旧 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:25

    The latest ratio you can check from here shows inside TensorFlow C++ takes ~50% of code, and Python takes ~40% of code.

    Both C++ and Python are the official languages at Google so there is no wonder why this is so. If I would have to provide fast regression where C++ and Python are present...

    C++ is inside the computational algebra, and Python is used for everything else including for the testing. Knowing how ubiquitous the testing is today it is no wonder why Python code contributes that much to TF.

提交回复
热议问题