https://github.com/dataqa/dataqa-python
Python and Jupyter library for DataQA
https://github.com/dataqa/dataqa-python
Last synced: 3 months ago
JSON representation
Python and Jupyter library for DataQA
- Host: GitHub
- URL: https://github.com/dataqa/dataqa-python
- Owner: dataqa
- License: mit
- Created: 2022-09-15T13:41:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-16T12:11:13.000Z (over 3 years ago)
- Last Synced: 2026-01-08T10:52:06.193Z (5 months ago)
- Language: Python
- Size: 21.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DataQA

DataQA is a tool to perform AI model quality assessment (QA) using an interactive app that can be shared with technical and non-technical members of your team.
TODO: Add a gif.
The official documentation page is at: [docs.dataqa.ai]().
# Installation
`pip install dataqa`
# Quick start
## Step 1: create an account
Go to [https://app.dataqa.ai/](https://app.dataqa.ai/login) and follow the steps to create your first project. Once your account and your first project have been created, you will see a screen such as this one:
TODO: Add screenshot of the screen with the publish string
You will need this key later in order to be able to create your first QA app. You can always come back to this page to find it.
## Step 2: Publish your data
Creating your first shareable QA app is as simple as this:
```python
import pandas as pd
from dataqa.publish import DataQA
dataqa = DataQA()
dataqa.login()
# Prompt username and password
df = pd.DataFrame([[1, "Laptop", 1600], [2, "Mouse", 10]], columns=["id", "product", "price"])
dataqa.publish(PROJECT_ID, df)
```
The `PROJECT_ID` is the hash string on the dataqa project page.
## Step 3: Use the UI to explore your data
TODO: add screenshot or GIF