https://zhuanlan.zhihu.com/p/24275551?utm_medium=social&utm_source=wechat_session
转载 2017-03-02 14:06:00
88阅读
2评论
http://deeplearning.net/software/theano/tutorial/index.html#tutorial
转载 2015-04-16 20:31:00
148阅读
2评论
0. MinGW MinGW:Windows 下的 g++等linux 下的编译工具; Anaconda 下 MinGW 的安装(进行 windows cmd 界面):​​conda install mingw​会将 mingw 安装在 anaconda 的目录下; 1. cuda https://developer.nvidia.com/cuda-downloads:选择合适的平台,环境以及
转载 2016-11-23 21:40:00
90阅读
参考:http://deeplearning.net/software/theano/install_ubuntu.html 编译安装python3.4:http://blog.aboutc.net/linux/61/install-python-on-linux 系统:14.04 安装python
转载 2016-06-18 16:44:00
75阅读
在Linux系统上安装Theano是一项非常重要的任务,特别是对于那些希望进行深度学习和神经网络研究的人来说。Theano是一个开源的Python库,用于高效的多维数组数学运算。它可以很容易地在GPU上运行,提供了快速的数值计算能力。在这篇文章中,我们将介绍如何在Linux操作系统上安装Theano。 首先,确保你的Linux系统已经安装了Python。大多数Linux系统都预装了Python,
原创 2024-05-20 11:19:23
20阅读
import theanoimport numpy as npones = theano.shared(np.float32([[1
原创 2022-07-19 11:39:36
51阅读
import theanoimport numpy as npimport theano.tensor as Tones = theano.shared(np.float32([[1,2
原创 2022-07-19 11:42:20
64阅读
1. 求偏导、更新以及模型的训练以 LogisticRegression 为例: 求损失函数关于参数的偏导:import theano.tensor as Tg_W = T.gradient(cost=cost, wrt=clf.W) g_b = T.gradient(cost=cost, wrt=clf.b) 参数的更新updates = [(clf.W, clf.W - learning_ra
转载 2016-11-01 17:49:00
106阅读
2评论
原理 逻辑回归的推理过程能够參考这篇文章:http://blog..net/zouxy09/article/details/20319673,当中包括了关于逻辑回归的推理,梯度下降以及python源代码,讲的有点多。能够直接看核心部分 对于这篇文章补充一个就是其缺少的正则化内容: 能够查看知
转载 2017-08-13 20:22:00
134阅读
2评论
NumPy, Theano, and Linux are three powerful tools commonly used in the field of data science and machine learning. In this article, we will explore how these tools work together to enhance the perform
原创 2024-05-17 11:27:51
40阅读
Linux 16.04 is a popular operating system that is widely used by many developers and data scientists. One of the key features of Linux 16.04 is its compatibility with deep learning frameworks such as
原创 2024-05-20 11:06:26
33阅读
Linux是一种非常常见的操作系统,而Theano和Conda则是Linux上常用的两种工具。在Linux系统中,我们经常会遇到需要使用到Theano和Conda的情况。下面我们来介绍一下它们的基本信息以及在Linux系统中的使用方法。 首先,让我们来了解一下TheanoTheano是一个用于定义、优化和计算数学表达式的Python库。它允许您编写高效的数学表达式,并将它们编译成优化的计算图。
原创 2024-05-08 10:38:07
57阅读
在当今世界中,随着信息技术的不断发展,开源软件在各个领域中发挥着重要作用。其中,Linux操作系统作为世界上最受欢迎的开源操作系统之一,在计算机科学领域具有广泛的应用。而在人工智能领域,深度学习框架也是必不可少的工具。在众多深度学习框架中,Keras和Theano也是备受青睐的两大框架。本文将介绍如何在Linux操作系统上搭建Keras和Theano环境,以及它们在深度学习中的应用。 首先,让我
原创 2024-05-08 10:58:09
62阅读
import theanoimport numpy as npones1 = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]]))ones2 = theano.shared(np.float32([[9,8,7],[6,5,4],[3,2,1]]))print(ones1.eval())outputs, updates = theano.sca
原创 2022-07-19 11:42:08
98阅读
import theanoimport numpy as npimport theano.tensor as Tones = theano.shared(np.fl
原创 2022-07-19 11:42:13
77阅读
import theanoimport numpy as npones = theano.shared(np.float32([[1,2,3],[4,5,6],[7,8,9]]))temp = ones.dimshuffle([0,1,'x'])print(temp.eval())temp = ones.dimshuffle([0,1])print(temp.eval())temp =
原创 2022-07-19 11:45:13
38阅读
5. 安装Theano 译者:Python 文档协作翻译小组,原文:Installing Theano。 本文以
翻译 2023-05-02 14:09:53
83阅读
6. 更新Theano 译者:Python 文档协作翻译小组,原文:Updating Theano。 本文以 CC BY-NC-SA 4.0 协议发布,转载请保留作者署名和文章出处。 Python 文档协作翻译小组人手紧缺,有兴趣的朋友可以加入我们,完全公益性质。交流群:467338606。根据你如何安装Theano,选择下面三个部分中的一个。你应该经常更新,bug会定期修
翻译 2023-05-02 14:32:03
95阅读
7.2.3 Theano中的导数 译者:Python 文档协作翻译小组,原文:Derivatives
翻译 2023-05-02 14:31:22
110阅读
1. theano 的设计理念与性能分析 Theano: a CPU and GPU Math Expression Compiler 2. thenao 深度学习 Deep Learning Tutorials
转载 2016-11-22 12:51:00
71阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5