Dataset Viewer
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
title: Gradio Contract Analysis App emoji: π colorFrom: indigo colorTo: blue sdk: gradio sdk_version: "4.44.1" app_file: Gradio_Contract_Analysis_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
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"
}
- Downloads last month
- 12