# 1. 通过TensorFlow-Slim定义卷机神经网络 import numpy as np import tensorflow as tf import tensorflow.contrib.slim as slim from tensorflow.examples.tutorials.mn... ...
分类:
Web程序 时间:
2019-12-19 21:05:40
阅读次数:
98
二进制基础回顾 以下操作相对正整数的二进制而言,对非整数不太适用。 二进制转十进制 在二进制中,位权是2的幂,所以每一位所代表的权值从右到左分别为2^\(1 1) 、2^\(2 1) 、... 、 2^\(n 1) ,第n位的权值为2的(n 1)次幂。 所以: 100101 = 2^5 + 2^2 ...
分类:
其他好文 时间:
2019-12-19 12:50:37
阅读次数:
115
import numpy as np import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data # 读取文件。 filename_queue = tf.train.string_input_p... ...
分类:
编程语言 时间:
2019-12-19 09:52:07
阅读次数:
90
链接: https://codeforces.com/contest/1263/problem/B 题意: A PIN code is a string that consists of exactly 4 digits. Examples of possible PIN codes: 7013, ...
分类:
其他好文 时间:
2019-12-17 13:32:20
阅读次数:
168
准备依赖 测试HelloWorld 打开server $env:GOPATH\src\github.com\grpc\grpc go\examples\helloworld\greeter_server go run main.go 打开client $env:GOPATH\src\github.c ...
//先跟新可用安装信息 apt-get update //查看可以安装的jdk版本 apt-cache search jdk //会显示如下内容: openjdk-8-dbg - Java runtime based on OpenJDK (debugging symbols) openjdk-8- ...
分类:
其他好文 时间:
2019-12-14 14:06:06
阅读次数:
95
Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1. Examples: Note: You may assume the ...
分类:
其他好文 时间:
2019-12-13 23:28:11
阅读次数:
78
常用基本命令 帮助命令 man 获得帮助信息 1. 基本语法 man [命令或配置文件] (功能描述:获得帮助信息) 2.显示说明 表1-6 信息 功能 NAME 命令的名称和单行描述 SYNOPSIS 怎样使用命令 DESCRIPTION 命令功能的深入讨论 EXAMPLES 怎样使用命令的例子 ...
分类:
其他好文 时间:
2019-12-12 19:39:29
阅读次数:
93
1. 微前端是什么 微前端主要借鉴后端微服务的概念。简单地说,就是将一个巨无霸(Monolith)的前端工程拆分成一个一个的小工程。它们完全具备独立的开发、运行能力。整个系统就将由这些小工程协同合作,实现所有页面的展示与交互。 可以跟微服务这么对比着去理解: 微服务微前端 一个微服务就是由一组接口构 ...
分类:
Web程序 时间:
2019-12-12 18:10:37
阅读次数:
1197
SWOT是一种决策分析方法,该方法要求决策者从四个角度进行思考分析: S (strengths) W (weaknesses) O (opportunities) T (threats) ![swot analysis examples 4.png 183.3kB][1] [1]: http://s ...
分类:
其他好文 时间:
2019-12-11 09:14:22
阅读次数:
418