Metadata-Version: 2.1
Name: grounder
Version: 0.0.1
Summary: Estimate the quality and factual correctness of natural language text to help ground language models such as BERT, GPT-J, GPT-Neo, ChatGPT, and Bard.
Home-page: https://gitlab.com/tangibleai/community/workon-poetry
License: AGPL-3.0-or-later
Author: Hobson Lane
Author-email: gitlab@totalgood.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: editdistance
Requires-Dist: gradio (>=3.14.0,<3.15.0)
Requires-Dist: httpx (>=0.23.0,<0.24.0)
Requires-Dist: jupyter
Requires-Dist: matplotlib (>=3.5.0,<3.6.0)
Requires-Dist: pandas (>=1.3,<2.0)
Requires-Dist: pandas-gbq (>=0.19,<0.20)
Requires-Dist: pip (>=23,<24)
Requires-Dist: poetry (>=1,<2)
Requires-Dist: python-dotenv (>=0.21,<0.22)
Requires-Dist: scikit-image
Requires-Dist: scikit-learn (>=1.0,<2.0)
Requires-Dist: spacy (>=3.4,<4.0)
Requires-Dist: torch (>=1.12,<2.0)
Requires-Dist: transformers (>=4.24,<5.0)
Requires-Dist: virtualenv (>=20,<21)
Project-URL: Repository, https://gitlab.com/tangibleai/community/workon-poetry
Description-Content-Type: text/markdown

# Grounder

[![PyPI version](https://img.shields.io/pypi/pyversions/grounder.svg)](https://pypi.or
g/project/grounder/)
[![License](https://img.shields.io/pypi/l/grounder.svg)](https://pypi.python.org/pypi/
grounder/)
<!-- 
[![codecov](https://codecov.io/gl/tangibleai/qary/branch/master/graph/badge.svg)](
https://codecov.io/gl/tangibleai/qary)
[![Buy Us Tea](https://github.com/nlpia/nlpia-bot/raw/develop/docs/media/small-lea
f-and-name-screenshot-31x80.png)](https://buymeacoffee.com/hobs)
[![DigitalOcean Referral Badge](https://web-platforms.sfo2.digitaloceanspaces.com/
WWW/Badge%202.svg)](https://www.digitalocean.com/?refcode=5bc34fba1bee&utm_campaig
n=Referral_Invite&utm_medium=Referral_Program&utm_source=badge)
 -->

Estimate the quality and factual correctness of natural language text to help ground language models such as BERT, GPT-J, GPT-Neo, ChatGPT, and Bard.

## Quickstart

If you have install python packages from source before, you will probably be able to follow these steps to get going quickly:

```bash
pip install --upgrade pip virtualenv poetry
mkdir -p ~/code/tangibleai
cd ~/code/tangibleai
git clone git@gitlab.com:tangbileai/community/grounder
cd grounder
python -m virtualenv .venv
source .venv/bin/activate || source .venv/Scripts/activate
pip install --editable .
```


