Python
「已注销」
这个作者很懒,什么都没留下…
展开
-
Python 3.7.x Notes-8 Standard Library 2
Python 3.7.x Notes-8 Standard Library 2Output FormattingThe reprlib module provides a version of repr() customized for abbreviated displays of large or deeply nested containers:>>> import ...原创 2019-01-24 09:03:35 · 234 阅读 · 0 评论 -
Python 3.7.x Notes-7 Standard Library
Brief Tour of the Standard LibraryOperating System Interface>>> import os>>> os.getcwd() # Return the current working directory'C:\\Python37'>>&g原创 2019-01-23 07:47:47 · 287 阅读 · 0 评论 -
使用Anaconda设置TensorFlow开发环境(windows)
TensorFlow是一个开源软件库,用于跨越一系列任务进行数据流编程。 它是一个符号数学库,也用于机器学习应用程序,如神经网络。 它用于Google的AI研究和开发。它被世界级企业广泛使用,是个人开发者探索这一领域的最佳开源库。开源Anaconda Distribution是在Linux,Windows和Mac OS X上进行Python和R数据科学和机器学习的最快和最简单的方法。它是在单个...原创 2019-01-22 00:20:35 · 631 阅读 · 0 评论 -
TensorFlow development environment setup with Anaconda (windows)
TensorFlow is an open-source software library for dataflow programming across a range of tasks. It is a symbolic math library, and is also used for machine learning applications such as neural network...原创 2019-01-22 00:21:18 · 184 阅读 · 0 评论 -
Keras:Python深度学习库简介
Keras:Python深度学习库简介Keras是一个高级神经网络API,用Python编写,能够在TensorFlow,CNTK或Theano之上运行。 它的开发重点是实现快速开发。 能够以最小的时间成本从理论到结果,这也进行快速研究验证的关键。如果您需要深度学习库,请使用Keras:允许简单快速的原型设计(通过用户友好接口,模块化和可扩展性)。支持卷积网络和循环网络,以及两者的组合...原创 2019-01-26 16:24:01 · 1120 阅读 · 0 评论 -
Keras: The Python Deep Learning library Introduction
Keras: The Python Deep Learning library IntroductionKeras is a high-level neural networks API, written in Python and capable of running on top of TensorFlow, CNTK, or Theano. It was developed with a...原创 2019-01-26 15:32:59 · 794 阅读 · 0 评论 -
使用TensorFlow进行股票价格预测的简单深度学习模型
使用TensorFlow进行股票价格预测的简单深度学习模型(翻译)原文链接:https://medium.com/mlreview/a-simple-deep-learning-model-for-stock-price-prediction-using-tensorflow-30505541d877深度学习在金融市场的应用越来越广泛,这篇来自作者 Sebastian Heinz 的好文起到了...翻译 2019-01-20 19:00:56 · 9408 阅读 · 0 评论 -
Python 3.7.x 介绍-6类
类类提供了将数据和功能捆绑在一起的方法。 创建新类会创建一种新类型的对象,从而允许创建该类型的新实例。 每个类实例都可以附加属性以保持其状态。 类实例还可以具有用于修改其状态的方法(由其类定义)。 与其他编程语言相比,Python的类机制添加了具有最少新语法和语义的类。 它是C ++和Modula-3中的类机制的混合体。 Python类提供面向对象编程的所有标准功能与C ++和Modula-3不...原创 2019-01-20 00:06:07 · 378 阅读 · 0 评论 -
Python 3.7.x Notes-6 Classes
ClassesClasses provide a means of bundling data and functionality together. Creating a new class creates a new type of object, allowing new instances of that type to be made. Each class instance can ...原创 2019-01-19 22:28:43 · 407 阅读 · 0 评论 -
Python 3.7.x 介绍-5 错误和异常处理
错误和异常处理语法错误语法错误(也称为解析错误)可能是您在学习Python时最常见的问题:>>> while True print('Hello world') File "<stdin>", line 1 while True print('Hello world') ^SyntaxErro原创 2019-01-19 15:54:44 · 2095 阅读 · 0 评论 -
Python 3.7.x Notes-5 Errors and Exceptions
Errors and ExceptionsSyntax ErrorsSyntax errors, also known as parsing errors, are perhaps the most common kind of complaint you get while you are still learning Python:>>> while True prin...原创 2019-01-19 15:24:02 · 283 阅读 · 0 评论 -
Python 3.7.x 介绍-1概述
1 容易学习高效的高级数据结构面向对象编程的简单方法简洁的语法和动态类型Python解释器通过C / C ++轻松扩展来自主要Python平台的大量源代码或二进制文件库使用Python解释器通常安装在c:\ python37 Python命令行示例:。python -c命令[arg] …python -m module [arg] …参数传递。通过import sys访问参数...原创 2019-01-19 12:00:35 · 592 阅读 · 0 评论 -
Python 3.7.x 介绍 -4 输入和输出
输入和输出等好的输出格式控制到目前为止,我们遇到了两种写入值的方法:表达式语句和print()函数。 要使用格式化的字符串文字,请在开始引号或三引号之前键入一个带有f或F的字符串。>>> year = 2016>>> event = 'Referendum'>>> f'Results of the {year} {event}''R...原创 2019-01-19 11:46:03 · 729 阅读 · 0 评论 -
Python 3.7.x Notes -4 Input & Output
Input and OutputFancier Output FormattingSo far we’ve encountered two ways of writing values: expression statements and the print() function.To use formatted string literals, begin a string with f ...原创 2019-01-19 11:12:46 · 472 阅读 · 0 评论 -
Python 3.7.x 介绍-8 标准库 2
Python 3.7.x 介绍-8 标准库 2输出格式化reprlib模块提供了一个版本的repr(),用于大型或深层嵌套容器的缩写显示:>>> import reprlib>>> reprlib.repr(set('supercalifragilisticexpialidocious'))"{'a', 'c', 'd', 'e', 'f', 'g',...原创 2019-01-24 09:44:09 · 307 阅读 · 0 评论 -
Python 3.7.x 介绍-7 标准库
标准库介绍操作系统接口>>> import os>>> os.getcwd() # Return the current working directory'C:\\Python37'>>> os.chdir('/server/accesslogs') # Change curr原创 2019-01-23 08:02:37 · 630 阅读 · 0 评论