摘要:
TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')] , 'APP_DIRS': True, 'OPTIONS': ... 阅读全文
摘要:
TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')] , 'APP_DIRS': True, 'OPTIONS': ... 阅读全文
摘要:
linux-外壳内核与shell的关系 内核处于外壳之中,通过外壳与shell(命令行)交互 外壳可以更换 ################################################################################################ 阅读全文
摘要:
简单的训练MNIST数据集 (0-9的数字图片) 详细地址(包括下载地址):http://www.tensorfly.cn/tfdoc/tutorials/mnist_beginners.html 阅读全文
摘要:
sudo vim /etc/ssh/sshd_config 将 # Authentication: LoginGraceTime 120 PermitRootLogin prohibit-password 改为 yes 重启SSH服务 service ssh restart 阅读全文
摘要:
docker 是将程序与机器隔开,使程序不受环境影响。 安装 sudo apt-get install docker.io ## 好用的一些命令 把当前用户添加到docker组 sudo usermod -aG docker $USER # $USER 指当前用户 reboot # 重启 ps: 重 阅读全文
摘要:
安装:貌似只支持64位 sudo apt-get install docker sudo apt-get install docker.io sudo apt-get install docker-registry 命令: 运行docker需要root权限,可以这么做 sudo groupadd d 阅读全文
摘要:
1.进入家目录的隐藏 .pip目录下 cd ~/.pip 2.创建并修改pip.conf [global]timeout = 10 # 超时 index-url = http://mirrors.aliyun.com/pypi/simple/ # 第一源index-index-url = http: 阅读全文
摘要:
只需要安装 sudo apt install lrzsz 阅读全文
摘要:
win10:docker下载地址 直接下载docker ,no docker toolbox https://get.daocloud.io/toolbox/ 下载完成,双击安装,next知道完成安装 在cmd中运行: 检测Docker的engine、compose、machine的版本,在终 端输 阅读全文
摘要:
调用该API可以不通过 tensorflow.Session.run()调用 定义的张量constant tensor,可以直接print 阅读全文
|