compiled-knowledge 4.0.0a9__cp312-cp312-win_amd64.whl → 4.0.0a11__cp312-cp312-win_amd64.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 compiled-knowledge might be problematic. Click here for more details.
- ck/circuit/circuit.cp312-win_amd64.pyd +0 -0
- ck/circuit/circuit.pyx +20 -8
- ck/circuit/circuit_py.py +40 -19
- ck/circuit_compiler/cython_vm_compiler/_compiler.cp312-win_amd64.pyd +0 -0
- ck/pgm.py +111 -130
- ck/pgm_circuit/pgm_circuit.py +13 -9
- ck/pgm_circuit/program_with_slotmap.py +6 -4
- ck/pgm_compiler/ace/ace.py +48 -4
- ck/pgm_compiler/factor_elimination.py +6 -4
- ck/pgm_compiler/recursive_conditioning.py +8 -3
- ck/pgm_compiler/support/circuit_table/circuit_table.cp312-win_amd64.pyd +0 -0
- ck/pgm_compiler/support/clusters.py +1 -1
- ck/pgm_compiler/variable_elimination.py +3 -3
- ck/probability/empirical_probability_space.py +3 -0
- ck/probability/pgm_probability_space.py +32 -0
- ck/probability/probability_space.py +66 -12
- ck/program/program.py +9 -1
- ck/program/raw_program.py +9 -3
- ck/sampling/sampler_support.py +1 -1
- ck/sampling/uniform_sampler.py +10 -4
- ck/sampling/wmc_direct_sampler.py +4 -2
- ck/sampling/wmc_gibbs_sampler.py +6 -0
- ck/sampling/wmc_metropolis_sampler.py +7 -1
- ck/sampling/wmc_rejection_sampler.py +2 -0
- ck/utils/iter_extras.py +9 -6
- {compiled_knowledge-4.0.0a9.dist-info → compiled_knowledge-4.0.0a11.dist-info}/METADATA +16 -12
- {compiled_knowledge-4.0.0a9.dist-info → compiled_knowledge-4.0.0a11.dist-info}/RECORD +30 -29
- {compiled_knowledge-4.0.0a9.dist-info → compiled_knowledge-4.0.0a11.dist-info}/WHEEL +0 -0
- {compiled_knowledge-4.0.0a9.dist-info → compiled_knowledge-4.0.0a11.dist-info}/licenses/LICENSE.txt +0 -0
- {compiled_knowledge-4.0.0a9.dist-info → compiled_knowledge-4.0.0a11.dist-info}/top_level.txt +0 -0
ck/utils/iter_extras.py
CHANGED
|
@@ -4,19 +4,19 @@ A module with extra iteration functions.
|
|
|
4
4
|
from functools import reduce as _reduce
|
|
5
5
|
from itertools import combinations, chain
|
|
6
6
|
from operator import mul as _mul
|
|
7
|
-
from typing import Iterable, Tuple,
|
|
7
|
+
from typing import Iterable, Tuple, Sequence, TypeVar
|
|
8
8
|
|
|
9
9
|
_T = TypeVar('_T')
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
def flatten(iterables: Iterable[Iterable[_T]]) ->
|
|
12
|
+
def flatten(iterables: Iterable[Iterable[_T]]) -> Iterable[_T]:
|
|
13
13
|
"""
|
|
14
14
|
Iterate over the elements of an iterable of iterables.
|
|
15
15
|
"""
|
|
16
16
|
return (elem for iterable in iterables for elem in iterable)
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
def deep_flatten(iterables: Iterable) ->
|
|
19
|
+
def deep_flatten(iterables: Iterable) -> Iterable:
|
|
20
20
|
"""
|
|
21
21
|
Iterate over the flattening of nested iterables.
|
|
22
22
|
"""
|
|
@@ -28,7 +28,7 @@ def deep_flatten(iterables: Iterable) -> Iterator:
|
|
|
28
28
|
yield el
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
def combos(list_of_lists: Sequence[Sequence[_T]], flip=False) ->
|
|
31
|
+
def combos(list_of_lists: Sequence[Sequence[_T]], flip=False) -> Iterable[Tuple[_T, ...]]:
|
|
32
32
|
"""
|
|
33
33
|
Iterate over all combinations of taking one element from each of the lists.
|
|
34
34
|
|
|
@@ -66,7 +66,7 @@ def combos(list_of_lists: Sequence[Sequence[_T]], flip=False) -> Iterator[Tuple[
|
|
|
66
66
|
return
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
def combos_ranges(list_of_lens: Sequence[int], flip=False) ->
|
|
69
|
+
def combos_ranges(list_of_lens: Sequence[int], flip=False) -> Iterable[Tuple[int, ...]]:
|
|
70
70
|
"""
|
|
71
71
|
Equivalent to combos([range(l) for l in list_of_lens], flip).
|
|
72
72
|
|
|
@@ -106,7 +106,7 @@ def pairs(elements: Iterable[_T]) -> Iterable[Tuple[_T, _T]]:
|
|
|
106
106
|
return combinations(elements, 2)
|
|
107
107
|
|
|
108
108
|
|
|
109
|
-
def sequential_pairs(elements: Sequence[_T]) ->
|
|
109
|
+
def sequential_pairs(elements: Sequence[_T]) -> Iterable[Tuple[_T, _T]]:
|
|
110
110
|
"""
|
|
111
111
|
Iterate over sequential pairs in the given list of elements.
|
|
112
112
|
"""
|
|
@@ -135,6 +135,9 @@ def unzip(xs: Iterable[Tuple[_T]]) -> Tuple[Iterable[_T]]:
|
|
|
135
135
|
Inverse function of zip.
|
|
136
136
|
|
|
137
137
|
E.g., a, b, c = unzip(zip(a, b, c))
|
|
138
|
+
|
|
139
|
+
Note that the Python type of `a`, `b`, and `c` may not be preserved, only
|
|
140
|
+
the contents, order and length are guaranteed.
|
|
138
141
|
"""
|
|
139
142
|
return zip(*xs)
|
|
140
143
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: compiled-knowledge
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.0a11
|
|
4
4
|
Summary: A Python package for compiling and querying discrete probabilistic graphical models.
|
|
5
5
|
Author-email: Barry Drake <barry@compiledknowledge.org>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -15,17 +15,17 @@ Requires-Dist: llvmlite
|
|
|
15
15
|
Requires-Dist: numpy
|
|
16
16
|
Dynamic: license-file
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
Compiled Knowledge
|
|
19
|
+
==================
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
The aim of this repository is:
|
|
21
|
+
Compiled Knowledge is a Python package for compiling and querying discrete probabilistic graphical models.
|
|
22
|
+
The aim of the project is:
|
|
24
23
|
- to provide a Python library for compiling and querying
|
|
25
|
-
probabilistic graphical models, specifically discrete factor graphs
|
|
24
|
+
probabilistic graphical models, specifically discrete factor graphs,
|
|
25
|
+
which includes Bayesian networks
|
|
26
26
|
- to be extremely efficient, flexible, and easy to use
|
|
27
27
|
- to exhibit excellent design, code, and documentation
|
|
28
|
-
- support researchers and businesses wanting to explore and use
|
|
28
|
+
- to support researchers and businesses wanting to explore and use
|
|
29
29
|
probabilistic artificial intelligence.
|
|
30
30
|
|
|
31
31
|
License
|
|
@@ -37,10 +37,14 @@ MIT license (see the file `LICENSE.txt`).
|
|
|
37
37
|
More Information
|
|
38
38
|
================
|
|
39
39
|
|
|
40
|
-
Refer to the project
|
|
40
|
+
Refer to the project online documentation at
|
|
41
|
+
[compiled-knowledge.readthedocs.io](https://compiled-knowledge.readthedocs.io/).
|
|
41
42
|
|
|
42
|
-
The primary
|
|
43
|
+
The primary repository for the project is
|
|
44
|
+
[github.com/ropeless/compiled_knowledge](https://github.com/ropeless/compiled_knowledge).
|
|
43
45
|
|
|
44
|
-
The Python package is available on
|
|
46
|
+
The Python package is available on PyPi, see
|
|
47
|
+
[pypi.org/project/compiled-knowledge](https://pypi.org/project/compiled-knowledge/).
|
|
45
48
|
|
|
46
|
-
For more information email
|
|
49
|
+
For more information email
|
|
50
|
+
[info@compiledknowledge.org](mailto:info@compiledknowledge.org).
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
ck/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
ck/pgm.py,sha256=
|
|
2
|
+
ck/pgm.py,sha256=rbqgP-clfSvgpzUXxVjk_6SdM9neHmpChku6qpyeidk,120700
|
|
3
3
|
ck/circuit/__init__.py,sha256=tozFNNVzsgQDwFrtGzrgcFS4XTszhgyFmbMGfV5pimc,212
|
|
4
|
-
ck/circuit/circuit.cp312-win_amd64.pyd,sha256=
|
|
5
|
-
ck/circuit/circuit.pyx,sha256=
|
|
4
|
+
ck/circuit/circuit.cp312-win_amd64.pyd,sha256=InSRSXXMYNc_7RyWOZx_EeRDwboCCyMPLhd8O1vslJ4,252416
|
|
5
|
+
ck/circuit/circuit.pyx,sha256=Y35CZMalySX8_uhNH6wIaZzS6ACn3rh3L99bog1lQx8,28060
|
|
6
6
|
ck/circuit/circuit_node.pyx,sha256=8RuEC1ngYxnsGryzQ1lOEPc4ewTxvKwc56sOxWLB9zs,4103
|
|
7
|
-
ck/circuit/circuit_py.py,sha256=
|
|
7
|
+
ck/circuit/circuit_py.py,sha256=_k8H1yZsfp2vERkX_CIo8VxxOf1ICw2zL8i2ckoaSlE,28127
|
|
8
8
|
ck/circuit/tmp_const.py,sha256=dG9FuGfoAG5qjYG1rNwekqKiea_KmVfxHMTOgCPbBiQ,2372
|
|
9
9
|
ck/circuit_compiler/__init__.py,sha256=T0Igyp5jPgnIXv4oRcIYhmsOdcNOb3L4Za6dK6eYk7g,132
|
|
10
10
|
ck/circuit_compiler/circuit_compiler.py,sha256=8BLB8DUnPbpl5PXZsIopydPbItytdn2rzRfM2U1EC84,1018
|
|
@@ -13,7 +13,7 @@ ck/circuit_compiler/llvm_compiler.py,sha256=ejeNPkO5Og2FyjjyA5JAexxUl1f8IJ6mwU5N
|
|
|
13
13
|
ck/circuit_compiler/llvm_vm_compiler.py,sha256=I46_XV5FrClDKO06zIjn8T3ME5XQ9RYJ_1aAE8e_YzM,21873
|
|
14
14
|
ck/circuit_compiler/named_circuit_compilers.py,sha256=Fsk2HANYhw25uxAdOo5-7aSnVZxlPgsaPz9wO_1YdRg,2400
|
|
15
15
|
ck/circuit_compiler/cython_vm_compiler/__init__.py,sha256=pEAwTleuZgdYhTAQMea2f9YsFK54eoNbZSbrWkW8aeE,49
|
|
16
|
-
ck/circuit_compiler/cython_vm_compiler/_compiler.cp312-win_amd64.pyd,sha256=
|
|
16
|
+
ck/circuit_compiler/cython_vm_compiler/_compiler.cp312-win_amd64.pyd,sha256=nsx6Nz3p2P83RAvHORCxvdGHC8RaSRGbQhzg1bb6Dug,92160
|
|
17
17
|
ck/circuit_compiler/cython_vm_compiler/_compiler.pyx,sha256=hHuNo99TbodNpWgQwQ8qzW1cTwGXZj5SW0tKAo9u6cw,7718
|
|
18
18
|
ck/circuit_compiler/cython_vm_compiler/cython_vm_compiler.py,sha256=yUkBNr5HnoVXyWjJdXHp8lyAXFiIDYapvMvHtzKuhI8,3140
|
|
19
19
|
ck/circuit_compiler/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -64,49 +64,50 @@ ck/in_out/render_pomegranate.py,sha256=gGvXyX9vOoilGIIL3rsMB07gERMU-12XPsttfSb4x
|
|
|
64
64
|
ck/pgm_circuit/__init__.py,sha256=B0CCjNMnPzrd0YiOEFdK4JzmRCvFIGJi3RJQ5Vg6fqA,37
|
|
65
65
|
ck/pgm_circuit/marginals_program.py,sha256=DUvSND3ozQuBCZcmIsgwZ4w_IWCVV7O31Pm4PJ7ZDok,14786
|
|
66
66
|
ck/pgm_circuit/mpe_program.py,sha256=IjHPZv2xKXZGp_FR1QFJgJpMhLKdajLgV33R4DEbn4o,10231
|
|
67
|
-
ck/pgm_circuit/pgm_circuit.py,sha256=
|
|
68
|
-
ck/pgm_circuit/program_with_slotmap.py,sha256=
|
|
67
|
+
ck/pgm_circuit/pgm_circuit.py,sha256=3vKOh2gFGyB_PhfQgviCQGXv1t4dbawBL89sjm4-SPA,3287
|
|
68
|
+
ck/pgm_circuit/program_with_slotmap.py,sha256=boS8Y1X60F-_pTM3wFyC4oP9jc-5zDc8Iv4vn7JUJWM,8959
|
|
69
69
|
ck/pgm_circuit/slot_map.py,sha256=T4nBweoiivEdBDhYZ6GWpOXqSusRbp3vrSbCTyP1qpI,857
|
|
70
70
|
ck/pgm_circuit/target_marginals_program.py,sha256=x4YQM-hUQRo2OLxodKJVOAKxqNlxmiDl9nGbbknypkY,3768
|
|
71
71
|
ck/pgm_circuit/wmc_program.py,sha256=WtABU74FOCCJuKRCoDL4CyZ4CJXFmt9RSxiNNHsOhRY,12699
|
|
72
72
|
ck/pgm_circuit/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
73
|
ck/pgm_circuit/support/compile_circuit.py,sha256=RuYzDCRpfXZcY96sSW8v7x6ev9ScQ4IZkVqMdJUoMp8,3484
|
|
74
74
|
ck/pgm_compiler/__init__.py,sha256=XCK1AWBBB9UYi6kbFnxMFzBL9a25EWfHnz_yn3ZKYuM,112
|
|
75
|
-
ck/pgm_compiler/factor_elimination.py,sha256=
|
|
75
|
+
ck/pgm_compiler/factor_elimination.py,sha256=iZe7Y-YIm0P9I-h4jLomUS49QiEedAbWQ1btU5JRBLg,13244
|
|
76
76
|
ck/pgm_compiler/named_pgm_compilers.py,sha256=zqRR8gER4zhl_RjXPHy8U0j5G-bQhYQZuG9hWptAHms,3720
|
|
77
77
|
ck/pgm_compiler/pgm_compiler.py,sha256=F44PtlwqMG0FS6KzOYKZuyZT6olWAVtBH-QXZPzz4O8,616
|
|
78
|
-
ck/pgm_compiler/recursive_conditioning.py,sha256=
|
|
79
|
-
ck/pgm_compiler/variable_elimination.py,sha256=
|
|
78
|
+
ck/pgm_compiler/recursive_conditioning.py,sha256=dlLAKdV7KUf7hHRVIndBsMC1bGUvrOCXeOY0vGs6yHE,7935
|
|
79
|
+
ck/pgm_compiler/variable_elimination.py,sha256=wNNntrng2OGSsnGHWr8cLHsMHDQgJodQxhu6h7RMung,3459
|
|
80
80
|
ck/pgm_compiler/ace/__init__.py,sha256=BkZXAF32Pk8QU7jhkuKvHqtsFasPjf8gxiZbyrGDDbQ,82
|
|
81
|
-
ck/pgm_compiler/ace/ace.py,sha256=
|
|
81
|
+
ck/pgm_compiler/ace/ace.py,sha256=SpOX8s0PsNP0I9X5_TagHo5Gh4kZYxciKuEQbuvpyE4,10131
|
|
82
82
|
ck/pgm_compiler/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
-
ck/pgm_compiler/support/clusters.py,sha256=
|
|
83
|
+
ck/pgm_compiler/support/clusters.py,sha256=96Up5XUgERh-t6KzSIOF2gtP5T4Ul83JK_aPtIR72Ic,20821
|
|
84
84
|
ck/pgm_compiler/support/factor_tables.py,sha256=LAZbWtDVyTpxps7C4d3q38uUVkNnzRBO8JpYl9Qly-c,15081
|
|
85
85
|
ck/pgm_compiler/support/join_tree.py,sha256=tRHev655cwRsOSyLK9HYwfX8EEkubmlg1fw748Kztb4,10418
|
|
86
86
|
ck/pgm_compiler/support/named_compiler_maker.py,sha256=tQ79JOI8MknAziUiFhFGV9n4y6PPKrnbq3-quMmnrwY,974
|
|
87
87
|
ck/pgm_compiler/support/circuit_table/__init__.py,sha256=eWMP5ywgd51RJexKkhcpKJb_8iEluL0C4_hyOpzlAvQ,167
|
|
88
|
-
ck/pgm_compiler/support/circuit_table/circuit_table.cp312-win_amd64.pyd,sha256=
|
|
88
|
+
ck/pgm_compiler/support/circuit_table/circuit_table.cp312-win_amd64.pyd,sha256=7Yc_Iqes51f7Q6lPyc2M1ysXeES0T8TkZaOf2ZbQoEc,94720
|
|
89
89
|
ck/pgm_compiler/support/circuit_table/circuit_table.pyx,sha256=jhzstay-3EUgu0CIbWKd0eNDNToX1tmm9IQxk0ZgpYM,11904
|
|
90
90
|
ck/pgm_compiler/support/circuit_table/circuit_table_py.py,sha256=1WFCxgBFu4oaYRCdk_1uXeufFQu6PqMOsYIQ_SkXDS4,10156
|
|
91
91
|
ck/probability/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
|
-
ck/probability/empirical_probability_space.py,sha256=
|
|
93
|
-
ck/probability/
|
|
92
|
+
ck/probability/empirical_probability_space.py,sha256=HoLxmigzlWFWQlcZQwDOYk-mjgf6RW1IPE-l0t8vMPw,1950
|
|
93
|
+
ck/probability/pgm_probability_space.py,sha256=vK-drx145PWW2aYB8HttQcvhvqPfxVl72bPcFO8jw8M,1034
|
|
94
|
+
ck/probability/probability_space.py,sha256=itv3dNEpSTLhKg6JCNhe7Iy6n9MKWqeKO4RxKR9kKF0,25882
|
|
94
95
|
ck/program/__init__.py,sha256=Ss9-0eqsGxCGloD6liH-0iqBG5Q3vPRF4XCw2hkDJ0M,110
|
|
95
|
-
ck/program/program.py,sha256=
|
|
96
|
+
ck/program/program.py,sha256=gDJ5Q2kXZuaoHboa9yNTg0tQH9S-Gmw0BRx6PPV28pU,4184
|
|
96
97
|
ck/program/program_buffer.py,sha256=1fiUcT7sqyr4vu8jXzK3ZsrgURFhWMdm6hr2BeS9ONA,5665
|
|
97
|
-
ck/program/raw_program.py,sha256=
|
|
98
|
+
ck/program/raw_program.py,sha256=1HA7k4V34LQg_KgYWs6XewHrtNiTRuL-ejNnki7oTho,2626
|
|
98
99
|
ck/sampling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
100
|
ck/sampling/forward_sampler.py,sha256=pTtpaH_ONH67G4P-aJ1p8YZSaXr4TTD6pj3ZEI2y7KM,8348
|
|
100
101
|
ck/sampling/marginals_direct_sampler.py,sha256=p1jDr1stG2Hjay3D8hILezW-5YZTX1p3odUcJDAI-OQ,4466
|
|
101
102
|
ck/sampling/sampler.py,sha256=qhfguy8rnVQBVVXhJylvh-8Kq7rfHW62a3DEtv9v7Xc,2306
|
|
102
|
-
ck/sampling/sampler_support.py,sha256=
|
|
103
|
-
ck/sampling/uniform_sampler.py,sha256=
|
|
104
|
-
ck/sampling/wmc_direct_sampler.py,sha256=
|
|
105
|
-
ck/sampling/wmc_gibbs_sampler.py,sha256=
|
|
106
|
-
ck/sampling/wmc_metropolis_sampler.py,sha256=
|
|
107
|
-
ck/sampling/wmc_rejection_sampler.py,sha256=
|
|
103
|
+
ck/sampling/sampler_support.py,sha256=beFJ993yXyvy5y2T7tJmK638ESp3qvErFWoM3BEwD5E,9742
|
|
104
|
+
ck/sampling/uniform_sampler.py,sha256=NCN1T77v4g4hsdNgIsZDxHBndfj4AghLSk8WKQt_2a0,2586
|
|
105
|
+
ck/sampling/wmc_direct_sampler.py,sha256=7qiz-bRlQ59ZBJmg0bEG0y63pXTVXNVx4d410BGhnJg,7265
|
|
106
|
+
ck/sampling/wmc_gibbs_sampler.py,sha256=GMKVW2AVtsWtP6vxE3Y2dy-dKr7GoO_vLEA9eC304fo,6567
|
|
107
|
+
ck/sampling/wmc_metropolis_sampler.py,sha256=PRv7wtPZz7BcwN8iArsykVwqgY77v5km7rXcawFAUPQ,6470
|
|
108
|
+
ck/sampling/wmc_rejection_sampler.py,sha256=cd0VONZf-oa491RRKfwT2LakQs0o_slgPCes8AOvSNc,4897
|
|
108
109
|
ck/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
|
-
ck/utils/iter_extras.py,sha256=
|
|
110
|
+
ck/utils/iter_extras.py,sha256=DDml5Jprmun2RovJxkwXx1uJkWacYhZEnX1ARSX2TB4,4310
|
|
110
111
|
ck/utils/map_list.py,sha256=T2OpjI7eDgC4geCtW_FsEr6ryiePOnKZwfDahB63zfA,3847
|
|
111
112
|
ck/utils/map_set.py,sha256=BLu9BO3FCtzZlZ9MfP9STtIdQ4Me8-QKdwB7o15y7f8,3809
|
|
112
113
|
ck/utils/np_extras.py,sha256=J5KIQJX3C79ltAfKKYc0B0HI43iyuUQxLI9HZ9FiORI,1734
|
|
@@ -161,8 +162,8 @@ ck_demos/utils/compare.py,sha256=eC1rJXuWQhEfq4yQlXggn2O_sk-xAVEn6PpVuIaZJoo,344
|
|
|
161
162
|
ck_demos/utils/convert_network.py,sha256=TSKj8q7L7J5rhrvwjaDkdYZ0Sg8vV5FRL_vCanX1CQw,1363
|
|
162
163
|
ck_demos/utils/sample_model.py,sha256=in-Nlv-iuNIu6y9fDuMyo7nzgimBuTAnCWcpnVqvqDQ,8839
|
|
163
164
|
ck_demos/utils/stop_watch.py,sha256=VzXHRWx0V8vPSD-bLgLlEYkCkR2FA0-KmM_pfKx-Pxo,13205
|
|
164
|
-
compiled_knowledge-4.0.
|
|
165
|
-
compiled_knowledge-4.0.
|
|
166
|
-
compiled_knowledge-4.0.
|
|
167
|
-
compiled_knowledge-4.0.
|
|
168
|
-
compiled_knowledge-4.0.
|
|
165
|
+
compiled_knowledge-4.0.0a11.dist-info/licenses/LICENSE.txt,sha256=uMYx7tmroEKNASizbCOwPveMQsD5UErLDC1_SANmNn8,1089
|
|
166
|
+
compiled_knowledge-4.0.0a11.dist-info/METADATA,sha256=BwJQwg7IB8iA7mXWDo2aPDyWXz7jbfyZoUNJ2vNaXUM,1838
|
|
167
|
+
compiled_knowledge-4.0.0a11.dist-info/WHEEL,sha256=b7PoVIxzH_MOHKjftqMzQiGKfdHRlRFepVBVPg0y3vc,101
|
|
168
|
+
compiled_knowledge-4.0.0a11.dist-info/top_level.txt,sha256=Cf8DAfd2vcnLiA7HlxoduOzV0Q-8surE3kzX8P9qdks,12
|
|
169
|
+
compiled_knowledge-4.0.0a11.dist-info/RECORD,,
|
|
File without changes
|
{compiled_knowledge-4.0.0a9.dist-info → compiled_knowledge-4.0.0a11.dist-info}/licenses/LICENSE.txt
RENAMED
|
File without changes
|
{compiled_knowledge-4.0.0a9.dist-info → compiled_knowledge-4.0.0a11.dist-info}/top_level.txt
RENAMED
|
File without changes
|