CoolFace
Datasetpublic

Proooof/Gradio-Contract-Analysis-App

๐Ÿ  Contract Analysis with Gradio This tutorial shows how to build a contract metadata extraction demo using Gradio.It uses simple heuristics and dateparser to detect parties and start dates from lease text. ๐Ÿ““ Notebook included: Gradio_Contract_Analysis_App.ipynb ๐Ÿš€ What Youโ€™ll Learn Write regex & date heuristics to extract contract metadata. Build a Gradio app with textbox input and JSON output. Deploy to Hugging Face Spaces for a live demo.โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/Proooof/Gradio-Contract-Analysis-App.

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes6downloads
Dataset Card

title: Gradio Contract Analysis App emoji: ๐Ÿ  colorFrom: indigo colorTo: blue sdk: gradio sdkversion: "4.44.1" appfile: GradioContractAnalysis_App.ipynb pinned: true license: apache-2.0 ---

๐Ÿ  Contract Analysis with Gradio

This tutorial shows how to build a contract metadata extraction demo using Gradio. It uses simple heuristics and dateparser to detect parties and start dates from lease text.

๐Ÿ““ Notebook included:

  • โ€”Gradio_Contract_Analysis_App.ipynb

๐Ÿš€ What Youโ€™ll Learn

  • โ€”Write regex & date heuristics to extract contract metadata.
  • โ€”Build a Gradio app with textbox input and JSON output.
  • โ€”Deploy to Hugging Face Spaces for a live demo.

๐Ÿ”ง Requirements

bash
pip install gradio dateparser
๐Ÿ“Š Example
Input:

pgsql
Copy code
This Lease Agreement is made between Landlord X and Tenant Y for the premises at 123 Main St. Commencing on June 1, 2025.
Output:

json
Copy code
{
  "parties": ["Landlord X", "Tenant Y"],
  "start_date": "2025-06-01"
}