Metadata-Version: 2.4
Name: qadence-model
Version: 1.0.1
Summary: Python package that provides quantum models for quantum machine learning features in Qadence.
Author-email: Mario Dagrada <mario.dagrada@pasqal.com>, Roland Guichard <roland.guichard@pasqal.com>, João Moutinho <joao.moutinho@pasqal.com>, Vincent Elfving <vincent.elfving@pasqal.com>, Dominik Seitz <dominik.seitz@pasqal.com>, Niklas Heim <niklas.heim@pasqal.com>, Ignacio Fernández Graña <ignacio.fernandez-grana@pasqal.com>, Manu Lahariya <manu.lahariya@pasqal.com>, Daniele Cucurachi <daniele.cucurachi@pasqal.com>, Sungwoo Ahn <sungwoo.ahn@pasqal.com>
License: Apache 2.0
License-File: LICENSE
Keywords: quantum
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: <3.14,>=3.9
Requires-Dist: perceptrain[mlflow]
Requires-Dist: qadence[horqrux,pulser]
Requires-Dist: torch
Description-Content-Type: text/markdown

# Qadence-Model

**Qadence-Model** is a Python package that provides quantum models for quantum machine learning features in Qadence. **Model** documentation about QNN and optimizer is [here](https://pasqal-io.github.io/qadence-hub/qadence-model/latest/)

[![Linting](https://github.com/pasqal-io/qadence-hub/actions/workflows/lint.yml/badge.svg)](https://github.com/pasqal-io/qadence-hub/actions/workflows/lint.yml)
[![Tests](https://github.com/pasqal-io/qadence-hub/actions/workflows/test.yml/badge.svg)](https://github.com/pasqal-io/qadence-hub/actions/workflows/test.yml)
[![Documentation](https://github.com/pasqal-io/qadence-hub/actions/workflows/build_docs.yml/badge.svg)](https://pasqal-io.github.io/qadence-hub/latest)
[![Pypi](https://badge.fury.io/py/qadence-model.svg)](https://pypi.org/project/qadence-model/)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)


## Installation guide

[qadence-model](https://pypi.org/project/qadence-model/) and can be installed using `pip` as follows:

```bash
pip install qadence-model
```

## Contributing

Before making a contribution, please review our [code of conduct](docs/CODE_OF_CONDUCT.md).

- **Submitting Issues:** To submit bug reports or feature requests, please use our [issue tracker](https://github.com/pasqal-io/qadence-hub/issues).
- **Developing in qadence:** To learn more about how to develop within `qadence-model`, please refer to [contributing guidelines](docs/CONTRIBUTING.md).

### Setting up qadence in development mode

We recommend to use the [`hatch`](https://hatch.pypa.io/latest/) environment manager to install `qadence_model` from source:

```bash
python -m pip install hatch

# get into a shell with all the dependencies
python -m hatch shell

# run a command within the virtual environment with all the dependencies
python -m hatch run python my_script.py
```

**WARNING**
`hatch` will not combine nicely with other environment managers such as Conda. If you still want to use Conda,
install it from source using `pip`:

```bash
# within the Conda environment
python -m pip install -e .
```


## License
Qadence-Model is a free and open source software package, released under the Apache License, Version 2.0.
