Metadata-Version: 2.4
Name: aimodelshare
Version: 0.2.50
Summary: Deploy locally saved machine learning models to a live REST API and integrated dashboard.
Author-email: Michael Parrott <mikedparrott@modelshare.ai>
License: 
        Proprietary License
        
        Copyright (c) 2025 Model Share Labs,Inc. (And all affiliated organizations and individuals)
        
        
Keywords: machine-learning,deployment,api,onnx,tensorflow,pytorch
Classifier: Programming Language :: Python :: 3
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.23.0
Requires-Dist: pandas>=1.5.0
Requires-Dist: requests
Requires-Dist: urllib3
Requires-Dist: boto3
Requires-Dist: onnx
Requires-Dist: onnxmltools
Requires-Dist: onnxruntime
Requires-Dist: skl2onnx
Requires-Dist: tf2onnx
Requires-Dist: scikit-learn>=1.2.0
Requires-Dist: scikeras
Requires-Dist: shortuuid
Requires-Dist: Pympler
Requires-Dist: wget
Requires-Dist: PyJWT[crypto]<3,>=2.8
Requires-Dist: pydot
Requires-Dist: regex
Requires-Dist: psutil
Requires-Dist: dill
Requires-Dist: IPython
Provides-Extra: visual
Requires-Dist: graphviz; extra == "visual"
Provides-Extra: tensorflow
Requires-Dist: tensorflow==2.19.0; extra == "tensorflow"
Requires-Dist: keras2onnx; extra == "tensorflow"
Provides-Extra: pytorch
Requires-Dist: torch; extra == "pytorch"
Provides-Extra: ui
Requires-Dist: gradio>=4.0.0; extra == "ui"
Provides-Extra: full
Requires-Dist: tensorflow==2.19.0; extra == "full"
Requires-Dist: keras2onnx; extra == "full"
Requires-Dist: torch; extra == "full"
Requires-Dist: graphviz; extra == "full"
Requires-Dist: gradio>=4.0.0; extra == "full"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Dynamic: license-file

<p align="center"><img width="40%" src="docs/aimodshare_banner.jpg" /></p> 

### The mission of the AI Model Share Platform is to provide a trusted non profit repository for machine learning model prediction APIs (python library + integrated website at modelshare.org).  A beta version of the platform is currently being used by Columbia University students, faculty, and staff to test and improve platform functionality.

### In a matter of seconds, data scientists can launch a model into this infrastructure and end-users the world over will be able to engage their machine learning models.

* ***Launch machine learning models into scalable production ready prediction REST APIs using a single Python function.*** 

* ***Details about each model, how to use the model's API, and the model's author(s) are deployed simultaneously into a searchable website at modelshare.org.*** 

* ***Deployed models receive an individual Model Playground listing information about all deployed models. Each of these pages includes a fully functional prediction dashboard that allows end-users to input text, tabular, or image data and receive live predictions.*** 

* ***Moreover, users can build on model playgrounds by 1) creating ML model competitions, 2) uploading Jupyter notebooks to share code, 3) sharing model architectures and 4) sharing data... with all shared artifacts automatically creating a data science user portfolio.*** 

# Use aimodelshare Python library to deploy your model, create a new ML competition, and more.
* [Tutorials for deploying models](https://www.modelshare.org/search/deploy?search=ALL&problemdomain=ALL&gettingstartedguide=TRUE&pythonlibrariesused=ALL&tags=ALL&pageNum=1).

# Find model playground web-dashboards to generate predictions now.
* [View deployed models and generate predictions at modelshare.org](https://www.modelshare.org)

# Installation

## Install using PyPi 

```
pip install aimodelshare
```

## Install on Anaconda


#### Conda/Mamba Install ( For Mac and Linux Users Only , Windows Users should use pip method ) : 

Make sure you have conda version >=4.9 

You can check your conda version with:

```
conda --version
```

To update conda use: 

```
conda update conda 
```

Installing `aimodelshare` from the `conda-forge` channel can be achieved by adding `conda-forge` to your channels with:

```
conda config --add channels conda-forge
conda config --set channel_priority strict
```

Once the `conda-forge` channel has been enabled, `aimodelshare` can be installed with `conda`:

```
conda install aimodelshare
```

or with `mamba`:

```
mamba install aimodelshare
```

# Moral Compass: Dynamic Metric Support for AI Ethics Challenges

The Moral Compass system now supports tracking multiple performance metrics for fairness-focused AI challenges. Track accuracy, demographic parity, equal opportunity, and other fairness metrics simultaneously.

## Quick Start with Multi-Metric Tracking

```python
from aimodelshare.moral_compass import ChallengeManager

# Create a challenge manager
manager = ChallengeManager(
    table_id="fairness-challenge-2024",
    username="your_username"
)

# Track multiple metrics
manager.set_metric("accuracy", 0.85, primary=True)
manager.set_metric("demographic_parity", 0.92)
manager.set_metric("equal_opportunity", 0.88)

# Track progress
manager.set_progress(tasks_completed=3, total_tasks=5)

# Sync to leaderboard
result = manager.sync()
print(f"Moral compass score: {result['moralCompassScore']:.4f}")
```

## Moral Compass Score Formula

```
moralCompassScore = primaryMetricValue × ((tasksCompleted + questionsCorrect) / (totalTasks + totalQuestions))
```

This combines:
- **Performance**: Your primary metric value (e.g., fairness score)
- **Progress**: Your completion rate across tasks and questions

## Features

- **Multiple Metrics**: Track accuracy, fairness, robustness, and custom metrics
- **Primary Metric Selection**: Choose which metric drives leaderboard ranking
- **Progress Tracking**: Monitor task and question completion
- **Automatic Scoring**: Server-side computation of moral compass scores
- **Leaderboard Sorting**: Automatic ranking by moral compass score
- **Backward Compatible**: Existing users without metrics continue to work

## Example: Justice & Equity Challenge

See [Justice & Equity Challenge Example](docs/justice_equity_challenge_example.md) for detailed examples including:
- Multi-metric fairness tracking
- Progressive challenge completion
- Leaderboard queries
- Custom fairness criteria

## API Methods

### ChallengeManager

```python
from aimodelshare.moral_compass import ChallengeManager

manager = ChallengeManager(table_id="my-table", username="user1")

# Set metrics
manager.set_metric("accuracy", 0.90, primary=True)
manager.set_metric("fairness", 0.95)

# Set progress
manager.set_progress(tasks_completed=4, total_tasks=5)

# Preview score locally
score = manager.get_local_score()

# Sync to server
result = manager.sync()
```

### API Client

```python
from aimodelshare.moral_compass import MoralcompassApiClient

client = MoralcompassApiClient()

# Update moral compass with metrics
result = client.update_moral_compass(
    table_id="my-table",
    username="user1",
    metrics={"accuracy": 0.90, "fairness": 0.95},
    primary_metric="fairness",
    tasks_completed=4,
    total_tasks=5
)
```

## Documentation

- [Full API Documentation](aimodelshare/moral_compass/README.md)
- [Justice & Equity Challenge Examples](docs/justice_equity_challenge_example.md)
- [Integration Tests](tests/test_moral_compass_client_minimal.py)

## Moral Compass API URL Configuration

The Moral Compass API client requires a base URL to connect to the REST API. The URL is resolved in the following order:

### For CI/CD Environments

In GitHub Actions workflows, the `MORAL_COMPASS_API_BASE_URL` environment variable is automatically exported from Terraform outputs:

```yaml
- name: Initialize Terraform and get API URL
  working-directory: infra
  run: |
    terraform init
    terraform workspace select dev || terraform workspace new dev
    API_URL=$(terraform output -raw api_base_url)
    echo "MORAL_COMPASS_API_BASE_URL=$API_URL" >> $GITHUB_ENV
```

### For Local Development

When developing locally, the API client attempts to resolve the URL in this order:

1. **Environment variable** - Set `MORAL_COMPASS_API_BASE_URL` or `AIMODELSHARE_API_BASE_URL`:
   ```bash
   export MORAL_COMPASS_API_BASE_URL="https://api.example.com/v1"
   ```

2. **Cached Terraform outputs** - The client looks for `infra/terraform_outputs.json`

3. **Terraform command** - As a fallback, executes `terraform output -raw api_base_url` in the `infra/` directory

### Graceful Test Skipping

Integration tests that require the Moral Compass API will skip gracefully if the URL cannot be resolved, rather than failing. This allows the test suite to run in environments where the infrastructure is not available (e.g., forks without access to AWS resources).

# Resource Cleanup

During testing, aimodelshare creates AWS resources including API Gateway REST APIs (playgrounds) and IAM users. To manage and clean up these resources:

## Cleanup Script

Use the interactive cleanup script to identify and delete test resources:

```bash
# Preview resources without deleting (safe)
python scripts/cleanup_test_resources.py --dry-run

# Interactive cleanup
python scripts/cleanup_test_resources.py

# Cleanup in a specific region
python scripts/cleanup_test_resources.py --region us-west-2
```

The script will:
- List all API Gateway REST APIs (playgrounds) in the region
- List IAM users created by the test framework (prefix: `temporaryaccessAImodelshare`)
- Show associated resources (policies, access keys)
- Allow you to select which resources to delete
- Safely delete selected resources with proper cleanup order

## GitHub Action

You can also trigger the cleanup workflow from the GitHub Actions tab:

1. Go to **Actions** → **Cleanup Test Resources**
2. Click **Run workflow**
3. Select **dry-run** mode to preview resources
4. Review the output and run locally to delete resources

For complete documentation, see [CLEANUP_RESOURCES.md](CLEANUP_RESOURCES.md).
