美文网首页
2020-12-12安装

2020-12-12安装

作者: 不学无数YD | 来源:发表于2020-12-13 12:57 被阅读0次

    安装
    windows下 pip install tensorflow
    运行如下代码

    import tensorflow as tf 
    print(tf._version_)
    
    import tensorflow as tf 
    h = tf.constant("hello")
    w = tf.constant("world")
    hw = h + w 
    print(hw)
    

    a problem:
    jupyter notebook运行出现服务似乎挂掉了,但是会立刻重启的.
    可能原因很多:
    主要电脑配置不够:1、不支持intel AVX指令集2、显存不足
    2、CPU不行


    image.png

    换电脑吧,孩子!

    相关文章

      网友评论

          本文标题:2020-12-12安装

          本文链接:https://www.haomeiwen.com/subject/ytuegktx.html