mindsdb的目标是使开发人员在项目中使用人工神经网络的能力变得非常简单。

MindsDB的Python项目详细描述


MindsDB

Build StatusPyPI version

mindsdb的目标是让开发人员很容易获得他们项目的人工神经网络的能力。

试试看

安装

您可以在一分钟内在自己的计算机上使用mindsdb,只需按照installation instructions操作,或者,如果您已经安装了python环境,只需运行:

 pip3 install mindsdb --user

您可以在Google Colab上尝试mindsdb

您也可以使用docker运行mindsdb:sh -c "$(curl -sSL https://raw.githubusercontent.com/mindsdb/mindsdb/master/distributions/docker/build-docker.sh)"

如果你喜欢看视频教程,你可以找到它here。(注意:请手动将其设置为720p或更高,以使文本清晰显示)

有问题吗?请用an issue on github

使用量

一旦安装了mindsdb,您可以按如下方式使用它:

train a模型

frommindsdbimportPredictor# We tell mindsDB what we want to learn and from what dataPredictor(name='home_rentals_price').learn(to_predict='rental_price',# the column we want to learn to predict given all the data in the filefrom_data="https://s3.eu-west-2.amazonaws.com/mindsdb-example-data/home_rentals.csv"# the path to the file where we can learn from, (note: can be url))

若要,请使用模型

frommindsdbimportPredictor# use the model to make predictionsresult=Predictor(name='home_rentals_price').predict(when={'number_of_rooms':2,'number_of_bathrooms':1,'sqft':1190})# you can now print the resultsprint('The predicted price is ${price} with {conf} confidence'.format(price=result[0]['rental_price'],conf=result[0]['rental_price_confidence']))

访问文档learn more

贡献

为了对mindsdb进行更改,理想的方法是分叉存储库,而不是在本地克隆分叉。

例如:export PYTHONPATH=$PYTHONPATH:/home/my_username/mindsdb

要测试更改是否有效,可以尝试在本地运行CI测试:cd tests/ci_tests && python3 full_test.py

一旦您有了要合并到master中的特定更改,请随时制作一个pr。

报告问题

请通过报告您在使用mindsdb时可能遇到的任何问题来帮助我们。

https://github.com/mindsdb/mindsdb/issues/new/choose

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java应用程序不是在Eclipse中运行,而是在命令行中运行   swing Java图形组件问题。似乎找不到错误   我需要键盘。close();让代码正常工作?   Springboot中的java HttpSession   抽象语法树我想添加一个语句。我试图解析它,java解析器异常被抛出。如何克服它?   java Hibernate:清理会话   具有不连续子集的java划分问题   java正则表达式查找最后一个冒号后的字符串   java从SpringShell执行OS命令   Java扫描器字符串输入   java字符串索引越界异常(charAt)   java执行器服务终止被卡住   Springockito没有继承java@ContextConfiguration   java如何为一个servlet映射多个url   java安卓获取命令的stderr   java生成类型。表:数据库中的大数字   安卓 Getter Setter返回NothingJava