Skip to main content

Python interface for DualPerspective.jl - A Julia package for obtaining maximum-entropy solutions to underdetermined linear systems.

Project description

DualPerspective Python Package

Python interface for DualPerspective.jl, a Julia package for solving large-scale KL divergence problems.

Installation

pip install DualPerspective

The package will automatically:

  1. Install Julia if not already installed (via juliacall)
  2. Install the DualPerspective.jl Julia package from the official Julia registry
  3. Perform precompilation to ensure fast performance from the first run

Usage

import numpy as np
from DualPerspective import DPModel, solve, regularize

# Generate sample data
np.random.seed(42)
n = 200  # dimension of solution
m = 100  # number of measurements
x0 = np.pi * (tmp := np.random.rand(n)) / np.sum(tmp)
A = np.random.rand(m, n)
b = A @ x0  # measurements

# Create and solve the problem
model = DPModel(A, b)
regularize(model, 1e-4)  # Optional: set regularization parameter
solution = solve(model)

print(f"Sum of solution: {np.sum(solution):.6f} (should be ≈ {np.pi:.6f})")
print(f"Optimal solution shape: {solution.shape}")

Reinstalling the DualPerspective.jl package

To reinstall or update the DualPerspective.jl package, you can use the following command:

pip install --force-reinstall DualPerspective

Performance Considerations

This Python interface uses Julia's precompilation features to ensure good performance from the first run. The first import of the package may take slightly longer as it sets up the Julia environment, but subsequent operations should be fast.

Features

  • Easy-to-use Python interface for DualPerspective.jl
  • Automatic installation of Julia dependencies
  • Support for large-scale KL divergence problems
  • Integration with NumPy arrays
  • Precompilation for consistent performance

Requirements

  • Python 3.7+
  • NumPy
  • juliacall

License

This project is licensed under the MIT License.

Advanced Usage

Reinstalling the Julia Package

If you need to reinstall the Julia package, you can simply reinstall the Python package:

pip install --force-reinstall DualPerspective

This will ensure you have the latest version from the Julia registry.

Development

Building and Publishing the Package

Follow these steps to build and publish new versions of the package to PyPI:

Prerequisites

Make sure you have the necessary tools:

pip install --upgrade build twine

Building the Package

Build both wheel and source distributions:

python -m build

This creates distribution files in the dist/ directory.

Testing Locally

Before publishing, test the package locally:

# Install in development mode
pip install -e .

# Or install the built wheel
pip install dist/DualPerspective-0.1.1-py3-none-any.whl

Publishing to TestPyPI (Optional)

To test the publishing process:

twine upload --repository-url https://test.pypi.org/legacy/ dist/*

# Install from TestPyPI
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ DualPerspective

Publishing to PyPI

Once tested and ready:

twine upload dist/*

Updating for New Releases

  1. Update the version number in pyproject.toml
  2. Make code changes
  3. Rebuild: python -m build
  4. Upload: twine upload dist/*

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dualperspective-0.1.3.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dualperspective-0.1.3-py3-none-any.whl (4.7 kB view details)

Uploaded Python 3

File details

Details for the file dualperspective-0.1.3.tar.gz.

File metadata

  • Download URL: dualperspective-0.1.3.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for dualperspective-0.1.3.tar.gz
Algorithm Hash digest
SHA256 e169618e232caa8078fb7b5ff7b7a0d1577e661fd0ecdeab2d20ce4ad02f2d8f
MD5 f7edabb54a4b704300b6024bccfab066
BLAKE2b-256 2eeec95d2cf9905287acb202b0b54059e3f5857fa0436b88abbdd33f7f80eff1

See more details on using hashes here.

File details

Details for the file dualperspective-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for dualperspective-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 0c981e86b72f8229604748727d1c09ad49d1d74a24f569d5e8c1f8ae5fc0957f
MD5 7f897fb2ef044fe6790374864cd432dc
BLAKE2b-256 10708e424529e7a76f9e6f12cd115fb1dea03208dcb13e521aca3a685f4dd2d1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page