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

mindsdb-native的Python项目详细描述


MindsDB

MindsDB Native WorkflowPython supportedPyPi VersionPyPi DownloadsMindsDB CommunityMindsDB Website

MindsDB是一个可解释的AutoML框架,面向构建在Pytorch之上的开发人员。它使您能够用一行代码来构建、训练和测试最先进的ML模型。Tweet

MindsDB

试试看

安装

  • Desktop:您可以在一分钟内在自己的计算机上使用MindsDB,如果您已经设置了python环境,只需运行以下命令:
 pip install mindsdb_native --user

Note: Python 64 bit version is required. Depending on your environment, you might have to use pip3 instead of pip in the above command.*

如果由于某种原因失败了,不用担心,只需按照complete installation instructions进行操作,这将引导您完成一个更彻底的过程,该过程可以解决大多数问题。在

  • Docker:如果您想在一个容器中运行它,只需:
^{pr2}$

用法

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

导入MindsDB

frommindsdb_nativeimportPredictor

一行代码train a model

# 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))

一行代码使用模型

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

请访问文档learn more

  • googlecolab:你也可以在这里直接试用MindsDBGoogle Colab

贡献

为了向MindsDB提供帮助,请检查Contribution guide。在

当前贡献者

contributors-img制成。在

报告问题

{a19请您在使用SDB时提供帮助。在

许可证

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

推荐PyPI第三方库


热门话题
java如何通过标记名检索多个标记中的元素以进行selenium自动化测试   java iText如何查找最后一行被拆分到下一页   java如何在hudson中的特定jdk上运行Findbugs和PMD?   如何确保java程序与java Environment 6兼容?   对形状进行分组,这样我就可以通过鼠标点击和java处理循环浏览它们   使用生成器映射对象时,java定义无效   maven Java:Struts2和IntelliJ供初学者使用   java子类不继承父类字段   java Android Grid View在Android版本kitkat上崩溃   java Hibernate从缓存返回错误的列表,即使预期的列表与缓存的列表不同   java SendGrid:模板和替换标记   用于普通生产者| Kafka流的java自定义分区器   安卓理解Java内部类中的作用域   无法从Android Studio中的非静态方法调用java非静态方法   比较两个XML响应的JavaXMLUnit   java使用keytool列出密钥   不使用Java客户端库将视频上传到YouTube数据API v3   java My While循环即使在满足条件时也不会结束   自动在外部存储字符串数据,以便以后在Java中使用