Python 机器学习框架 - 收藏集 - 掘金

智码漫游
• 阅读 1151

DEAP - 一个用于快速原型和测试思想的新颖的进化计算框架 - 后端 - 掘金

DEAP is a novel evolutionary computation framework for rapid prototyping and testing of ideas. It seeks to make algorithms explici...

Pattern - Python 的 Web 挖掘模块 - 后端 - 掘金

Pattern 2.6 Download pattern-2.6.zip Web mining module for Python, with tools for scraping, natural language processing, ma...

Fuel - 数据管道框架 - 后端 - 掘金

Fuel Fuel provides your machine learning models with the data they need to learn. Interfaces to common datasets such as MNIST, CI...

Annoy - Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk - 后端 - 掘金

Annoy ...

PyMVPA - 一个用于简化大型数据集的统计学习分析 Python 包 - 后端 - 掘金

For information how to install PyMVPA please see doc/source/installation.rst . Further information and...

PyBrain - Python 模块化机器学习库 - 后端 - 掘金

PyBrain -- the Python Machine Learning Library =============================================== INSTALLATION ------------ Quick a...

Pymc - 贝叶斯统计模型 - 后端 - 掘金

Introduction Version: 2.3.6 Authors: Chris Fonnesbeck Anand Patil David Huard John Salvatier Web site:https://github.com/pymc-...

Orange3 - 开源机器学习和数据可视化工具 - 后端 - 掘金

Orange is a component-based data mining software. It includes a range of data visualization, exploration, preprocessing and modeli...

Nilearn: 一个用于在 NeuroImaging 数据上快速轻松地进行统计学习的 Python 模块 - 后端 - 掘金

nilearn Nilearn is a Python module for fast and easy statistical learning on NeuroImaging data. It leverages the scikit-learn Pyth...

Neon - 一个基于 Python 的深度学习库 - 后端 - 掘金

neon is Nervana ’s Python-based deep learning library. It provides ease of use while delivering the highest performance. Features ...

NuPIC: Numenta Platform for Intelligent Computing - 后端 - 掘金

Numenta Platform for Intelligent Computing The Numenta Platform for Intelligent Computing (NuPIC) is a machine intelligence platf...

Chainer: A flexible framework of neural networks for deep learning - 后端 - 掘金

Requirements Chainer is tested on Ubuntu 14.04 and CentOS 7. We recommend them to use Chainer, though it may run on other systems...

The Shogun Machine Learning Toolbox - 后端 - 掘金

Unified and efficient Machine Learning since 1999. Latest release: Cite Shogun: Develop branch build status: Buildbot: ...

Statsmodels: statistical modeling and econometrics in Python - 后端 - 掘金

About Statsmodels Statsmodels is a Python package that provides a complement to scipy for statistical computations including descr...

Pylearn2: A machine learning research library - 后端 - 掘金

This project does not have any current developer. We will continue to review pull requests and merge them when appropriate, but do...

gensim: Topic modelling for humans - 后端 - 掘金

Gensim 是一个免费的 Python 库,它具有诸如可扩展的统计语义等特征,它可用于分析纯文本文档的语义结构和检索语义相似的文档。...

Caffe: 深度学习框架 - 后端 - 掘金

Caffe Caffe is a deep learning framework made with expression, speed, and modularity in mind. It is developed by the Berkeley Vis...

TensorFlow — an Open Source Software Library for Machine Intelligence - 后端 - 掘金

TensorFlow™ is an open source software library for numerical computation using data flow graphs....

Theano - Python 机器学习框架 - 后端 - 掘金

Theano is a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional ...

scikit-learn: Python 机器学习框架 - 后端 - 掘金

Scikit-learn 是一种基于 NumPy、SciPy 和 matplotlib 的用于数据挖掘和数据分析的工具,其不仅使用起来简单高效,而且还是开源的,可供所有人使用,并且拥有商业可用的 BSD 许可证,在不同的环境下都能很好的被使用。...

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
美凌格栋栋酱 美凌格栋栋酱
6个月前
Oracle 分组与拼接字符串同时使用
SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
1年前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
4年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Stella981 Stella981
3年前
Python之time模块的时间戳、时间字符串格式化与转换
Python处理时间和时间戳的内置模块就有time,和datetime两个,本文先说time模块。关于时间戳的几个概念时间戳,根据1970年1月1日00:00:00开始按秒计算的偏移量。时间元组(struct_time),包含9个元素。 time.struct_time(tm_y
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Android蓝牙连接汽车OBD设备
//设备连接public class BluetoothConnect implements Runnable {    private static final UUID CONNECT_UUID  UUID.fromString("0000110100001000800000805F9B34FB");
Stella981 Stella981
3年前
CPU推理性能提高数十倍,旷视天元计算图、MatMul优化深度解读
  机器之心发布  机器之心编辑部  !(http://dingyue.ws.126.net/2020/0806/6a6e4896j00qemtzy001ad000p000aop.jpg)本文针对旷视天元深度学习框架在推理优化过程中所涉及的计算图优化与MatMul优化进行深度解读。  背景及引言  在深度学
Python进阶者 Python进阶者
1年前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这
智码漫游
智码漫游
Lv1
今春看又过,何日是归年。
文章
2
粉丝
0
获赞
0