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