Metadata-Version: 2.1
Name: pyrkm
Version: 0.0.7
Summary: Machines learning to do machine-learning
Author-email: Simone Ciarella <simoneciarella@gmail.com>, Marcelo Guzmánn <guzmanjmarcelo@gmail.com>
License: Apache 2.0 License
Project-URL: homepage, https://github.com/Kirchhoff-Machines/pyrkm
Project-URL: issues, https://github.com/Kirchhoff-Machines/pyrkm/issues
Project-URL: documentation, https://pyrkm.readthedocs.io
Project-URL: changelog, https://github.com/Kirchhoff-Machines/pyrkm/releases
Keywords: python,machine learning,boltzmann machine,physical learning,equilibrium propagation
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Provides-Extra: develop
Provides-Extra: docs
Provides-Extra: publishing
License-File: LICENSE

[![Python application test](https://github.com/Kirchhoff-Machines/pyrkm/actions/workflows/test.yaml/badge.svg)](https://github.com/Kirchhoff-Machines/pyrkm/actions/workflows/test.yaml)
![Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/SCiarella/07cc3e145e56231a59fde8156485519b/raw/coverage_pyrkm.json)
[![Documentation Status](https://github.com/Kirchhoff-Machines/pyrkm/actions/workflows/docs.yaml/badge.svg)](https://kirchhoff-machines.github.io/pyrkm/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyrkm)](https://pypi.org/project/pyrkm/)
[![PyPI](https://img.shields.io/pypi/v/pyrkm)](https://pypi.org/project/pyrkm/)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.11447920.svg)](https://doi.org/10.5281/zenodo.11447920)

![pyrkm banner](https://raw.githubusercontent.com/Kirchhoff-Machines/pyrkm/main/src/pyrkm/assets/logo-black.png#gh-light-mode-only)
![pyrkm banner](https://raw.githubusercontent.com/Kirchhoff-Machines/pyrkm/main/src/pyrkm/assets/logo-white.png#gh-dark-mode-only)

<!---
![pyrkm banner](https://github.com/Kirchhoff-Machines/pyrkm/blob/main/pyrkm/assets/logo-black.png#gh-light-mode-only)
![pyrkm banner](https://github.com/Kirchhoff-Machines/pyrkm/blob/main/pyrkm/assets/logo-white.png#gh-dark-mode-only)
-->

# pyrkm:
### Emergent unsupervised learning with adaptive resistor networks: The Restricted Kirchhoff Machine

TODO:
- [ ] Create a proper README
- [ ] Make a logo
- [ ] Build the documentation
- [ ] fix CONTRIBUTING.md
- [ ] fix CODE_OF_CONDUCT.md
- [ ] set up pypi publishing
- [ ] track on Zenodo
- [ ] improve example.ipynb

## What is a Restricted Kirchhoff Machine?
You may be familiar with Restricted Boltzmann Machines (RBMs) [[1](https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.35.1792)]-[[2](https://www.science.org/doi/10.1126/science.1127647)], which are a type of generative neural network that can learn a probability distribution over its input data. The Restricted Kirchhoff Machine (RKM) is a realization of a RBM using resistor networks, and Kirchhoff's laws of electrical circuits.

For more information about the capabilities of the RKM, see the original paper by [Link to paper](https://google.com).

## Overview

## Repository Contents


## Getting Started

To get started with the project, follow these steps:

- **Prerequisites:**
  In order to correctly install `pyrkm` you need `python3.9` or higher. If you don't have it installed, you can download it from the [official website](https://www.python.org/downloads/). You will also need the header files that are required to compile Python extensions and are contained in `python3-dev`. On Ubuntu, you can install them with:
  ```bash
  apt-get install python3-dev
  ```

- **Install the package:**
   ```bash
   python -m pip install pyrkm
   ```

- **Or: Clone the repository:**
  ```bash
  git clone https://github.com/MALES-project/SpeckleCn2Profiler.git
  cd SpeckleCn2Profiler
  git submodule init
  git submodule update
  pip install .
  ```

## Usage

To use the package, you run the commands such as:

```console
python <mycode.py> <path_to_config.yml>
```

where `<mycode.py>` is the name of the script that trains/uses the `pyrkm` model and `<path_to_config.yml>` is the path to the configuration file.

[Here](https://males-project.github.io/SpeckleCn2Profiler/examples/run) you can find a typical example run and an explanation of all the main configuration parameter. In the [example submodule](https://github.com/MALES-project/examples_pyrkm/) you can find multiple examples and multiple configuration to take inspiration from.

## What can we predict?


## Contribution Guidelines

We welcome contributions to improve and expand the capabilities of this project. If you have ideas, bug fixes, or enhancements, please submit a pull request.
Check out our [Contributing Guidelines](CONTRIBUTING.md#Getting-started-with-development) to get started with development.

## Generative-AI Disclaimer

Parts of the code have been generated and/or refined using GitHub Copilot. All AI-output has been verified for correctness, accuracy and completeness, revised where needed, and approved by the author(s).

## How to cite

Please consider citing this software that is published in Zenodo under the DOI [10.5281/zenodo.11447920](https://zenodo.org/records/11447920).

## License

This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details.
