numpy.ravel(a, order='C') Return a flattened array numpy.chararray.flatten(order='C') Return a copy of the array collapsed into one dimension numpy.sq Read More
tf.constant Creates a constant tensor. The resulting tensor is populated with values of type dtype, as specified by arguments value and (optionally) s Read More
Class Variable A variable maintains state in the graph across calls to run(). You add a variable to the graph by constructing an instance of the class Read More
tf.placeholder Inserts a placeholder for a tensor that will be always fed. Important: This tensor will produce an error if evaluated. Its value must b Read More
list comprehension Using a list comprehension: [x for x in iterable] to create list instance [expresion for x in iterabel ] 列表推导式的核心在expression. 列表推推导 Read More
The sqlite3 module supports two kinds of placeholders: question marks (qmark style) and named placeholders (named style). execute(sql[, parameters]) s Read More