flopsearch 0.1.0__cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl → 0.1.1__cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of flopsearch might be problematic. Click here for more details.

@@ -0,0 +1,50 @@
1
+ Metadata-Version: 2.4
2
+ Name: flopsearch
3
+ Version: 0.1.1
4
+ Classifier: Programming Language :: Rust
5
+ Classifier: Programming Language :: Python :: Implementation :: CPython
6
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
7
+ Summary: Python package providing an implementation of the FLOP causal discovery algorithm for linear additive noise models
8
+ Keywords: causal discovery,DAGs,Bayesian networks,structure learning
9
+ Author: Sebastian Weichwald, Leonard Henckel
10
+ Author-email: Marcel Wienöbst <marcel.wienoebst@gmx.de>
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
13
+
14
+ # flopsearch
15
+
16
+ Python package providing an implementation of the FLOP causal discovery algorithm for linear additive noise models.
17
+
18
+ ## Installation
19
+ flopsearch can be installed via pip:
20
+
21
+ ```bash
22
+ pip install flopsearch
23
+ ```
24
+
25
+ ## Citing FLOP
26
+ If you use FLOP in your scientific work, please cite this paper:
27
+ ```bibtex
28
+ @article{cifly2025,
29
+ author = {Marcel Wien{"{o}}bst and Leonard Henckel and Sebastian Weichwald},
30
+ title = {{Embracing Discrete Search: A Reasonable Approach to Causal Structure Learning}},
31
+ journal = {{arXiv preprint arXiv:2510.04970}},
32
+ year = {2025}
33
+ }
34
+ ```
35
+
36
+ ## Example
37
+ A simple example run of the FLOP algorithm provided by flopsearch.
38
+
39
+ ``` py
40
+ import flopsearch
41
+ import numpy as np
42
+ from scipy import linalg
43
+
44
+ p = 10
45
+ W = np.diag(np.ones(p - 1), 1)
46
+ X = np.random.randn(10000, p).dot(linalg.inv(np.eye(p) - W))
47
+ X_std = (X - np.mean(X, axis=0)) / np.std(X, axis=0)
48
+ flopsearch.flop(X_std, 2.0, restarts=20)
49
+ ```
50
+
@@ -0,0 +1,7 @@
1
+ flopsearch-0.1.1.dist-info/METADATA,sha256=dPi3uS6mdZBkzrtRncMmOmqHL4c59PsVA8kJ_6x1DZ0,1551
2
+ flopsearch-0.1.1.dist-info/WHEEL,sha256=8hBjUwKGF4bY7LQHzcEgJEM26_tTYV52-opLdkQja6k,127
3
+ flopsearch/__init__.py,sha256=UqRJYN7saLZWFc0psFyiG39C208VD3OUvagoo2sxfq0,123
4
+ flopsearch/__init__.pyi,sha256=yQdOZROGWM0k0sdNj-KiielkkQcxiAcEgxaunbqJw9E,1122
5
+ flopsearch/flopsearch.cpython-38-arm-linux-gnueabihf.so,sha256=jTWEL9_PpUaVOHXllProTPt2iygYdHnRb8D6eV-ntCU,790432
6
+ flopsearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ flopsearch-0.1.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (1.9.5)
2
+ Generator: maturin (1.9.6)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l
@@ -1,11 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: flopsearch
3
- Version: 0.1.0
4
- Classifier: Programming Language :: Rust
5
- Classifier: Programming Language :: Python :: Implementation :: CPython
6
- Classifier: Programming Language :: Python :: Implementation :: PyPy
7
- Summary: Python package providing an implementation of the FLOP causal discovery algorithm for linear additive noise models
8
- Keywords: causal discovery,DAGs,Bayesian networks,structure learning
9
- Author: Sebastian Weichwald, Leonard Henckel
10
- Author-email: Marcel Wienöbst <marcel.wienoebst@gmx.de>
11
- Requires-Python: >=3.8
@@ -1,7 +0,0 @@
1
- flopsearch-0.1.0.dist-info/METADATA,sha256=-nIYtonP7up1jDYHd-9D_WPZlImCVaNez6ZoueLkKPk,554
2
- flopsearch-0.1.0.dist-info/WHEEL,sha256=On5itNMtZ6fNbzsuhnHIsk5CTNhNQFZ0YFvrfCU7qJ4,127
3
- flopsearch/__init__.py,sha256=UqRJYN7saLZWFc0psFyiG39C208VD3OUvagoo2sxfq0,123
4
- flopsearch/__init__.pyi,sha256=yQdOZROGWM0k0sdNj-KiielkkQcxiAcEgxaunbqJw9E,1122
5
- flopsearch/flopsearch.cpython-38-arm-linux-gnueabihf.so,sha256=LIxGjI-6HtghSTJh9cEDZWBqoJCA1YoRRgmGs4kIRE4,790404
6
- flopsearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- flopsearch-0.1.0.dist-info/RECORD,,