240 发简信
IP属地:广东
  • 通过tensorflow分类手写数字

    import tensorflow as tf from tensorflow.examples.tutorials.mnist import ...

  • 通过tensorflow 建立神经网络

    import tensorflow as tf import numpy as np #添加神经层 def add_layer(inputs,i...

  • 初识tensorflow placeholder

    import tensorflow as tf input1 = tf.placeholder(tf.float32)#创建传递参数 input...

  • 初识tensorflow Variable

    import tensorflow as tf state = tf.Variable(0,name='counter')#创建变量 #prin...

  • 初识session

    功能:拟合y=0.1x+0.3,python代码 #encoding=utf-8 import tensorflow as tf import ...

  • centos7安装tensorflow

    1.安装pip yum -y install epel-release yum install python-pip python-dev pi...

  • centos7安装pip

    1.yum -y install epel-release 2.yum install python-pip python-dev 3.pip ...

  • centos下将ens33改成eth0,完成上网配置

    1.编辑网卡的配置文件vi /etc/sysconfig/network-scripts/ifcfg-ens33 将里面的NAME和DEVICE...

  • django定时任务

    1.安装django-crontab pip install django-crontab 2.加入到settings.py的INSTALLED...