python シンボルによる数式の定义
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python シンボルによる数式の定义相关的知识,希望对你有一定的参考价值。
#coding: utf-8
import theano
import theano.tensor as T
# シンボルの生成
# xはdoubleのスカラー型
x = T.dscalar('x')
print type(x)
# シンボルを組み立てて数式を定義(これもまたシンボル)
y = x ** 2
print type(y)
# シンボルを使って関数を定義
# ここでコンパイルされる
f = theano.function(inputs=[x], outputs=y)
print type(f)
# 関数を使ってxに具体的な値を入れてyを計算
print f(1)
print f(2)
print f(3)
print f(4)
print f(5)
以上是关于python シンボルによる数式の定义的主要内容,如果未能解决你的问题,请参考以下文章
text 的WebPackインストールによるNPMエラーを回避
python KerasによるCNNの実装例
python Benchmarkeによるベンチマーク
python ビット演算による画像の合成
python Kerasによる多层ニューラルネット
python Theanoによる自己符号化器の実装