Skip to main content

The Infer adapter plugin for dbt

Project description

Infer logo dbt logo

Unit Tests Badge

dbt-infer

The dbt adapter for Infer. dbt-infer allows you to connect your dbt instance to Infer and use SQL-inf syntax in your dbt models.

dbt-infer acts as a layer between your existing data warehouse and your dbt instance, enabling you to perform ML analytics within your dbt models.

dbt-infer packages are hosted on PyPi.

SQL-inf

SQL-inf is an extension of SQL that introduces machine learning primitives to SQL. These primitives can be used within any part of your SQL queries, or DBT models, and allow you to build ML analytics use cases.

Read more about SQL-inf here.

Examples

Illustrative example based on an idealised table users with some simple demographic data, whether the user has churned or not, their lifetime value(LTV) and a text field with customer feedback.

Predict column has_churn from the other columns in the table users.

SELECT * FROM users PREDICT(has_churned)

Understand what columns drive values of has_churned

SELECT * FROM users EXPLAIN(PREDICT(has_churned))

Predict and understand the LTV in column ltv from table users.

SELECT * FROM users PREDICT(ltv)
SELECT * FROM users EXPLAIN(PREDICT(ltv))

Perform text analysis, sentiment and topic analysis, on user feedback

SELECT * FROM users SENTIMENT(feedback)
SELECT * FROM users TOPICS(feedback)

Create user segmentations on demographics

SELECT age, location, gender, job, education FROM users CLUSTER()

Find the sizes of the user segmentations

SELECT cluster_id, COUNT(*) as size FROM (
    SELECT age, location, gender, job, education FROM users CLUSTER()
) GROUP BY cluster_id

Find users similar to the user with user_id=123

SELECT * FROM users SIMILAR_TO(user_id=123)

Analyse what, if any, demographic features drive feedback sentiment

SELECT age, location, gender, job, education, prediction FROM (
    SELECT * FROM users SENTIMENT(feedback)
) EXPLAIN(PREDICT(prediction))

Installation

Detailed installation and setup guide here.

Requirements

You should be using dbt 1.2 or later.

Setup Infer account

First you need to setup your Infer account and generate your api key.

Read about how to do that here.

Install dbt-infer

pip install dbt-infer

Setting up dbt-infer

Setup a target in your profile for dbt-infer with the following shape

<target_name>:
  url: <infer-api-endpoint>
  username: <infer-api-username>
  apikey: <infer-apikey>
  type: infer
  data_config:
    <here goes your normal data warehouse config>

where data_config contains the profile settings for your underlying data warehouse.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dbt-infer-1.6.0.tar.gz (14.8 kB view details)

Uploaded Source

Built Distribution

dbt_infer-1.6.0-py3-none-any.whl (14.8 kB view details)

Uploaded Python 3

File details

Details for the file dbt-infer-1.6.0.tar.gz.

File metadata

  • Download URL: dbt-infer-1.6.0.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.11

File hashes

Hashes for dbt-infer-1.6.0.tar.gz
Algorithm Hash digest
SHA256 48816217301400565dc1bc701da0e9326aa8f0dadc041f20ffec67e3e8f7de85
MD5 459c133bfed69103a2b40e80d5693476
BLAKE2b-256 1d22cbb8c758777a33ad3a9f96a9ec22d55692efd096d42de8627281a274af94

See more details on using hashes here.

File details

Details for the file dbt_infer-1.6.0-py3-none-any.whl.

File metadata

  • Download URL: dbt_infer-1.6.0-py3-none-any.whl
  • Upload date:
  • Size: 14.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.11

File hashes

Hashes for dbt_infer-1.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3598b1fecdfee7cba42af22855dbe6a708cab711f25ca70749ec2f0964855478
MD5 43cd7fb3bc5864f14f09148397a73afa
BLAKE2b-256 c9eff26699b17a7b20cda1f1750212f967eb0305cb3cbe902ed256238e8456b1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page