Bindings to Chu-Liu-Edmonds algorithm from TurboParser
Project description
Chu-Liu-Edmonds Algorithm from TurpoParser.
This package wraps the Chu-Liu-Edmonds maximum spanning algorithm from TurboParser for use within Python.
The original package was made by https://github.com/andersjo/dependency_decoding .
Documentation
The package provides a function chu_liu_edmonds
which accepts a N×N score
matrix as argument, where N is the sentence length, including the artificial
root node. The (i,j)-th cell is the score for the edge j→i.
In other words, a row gives the scores for the different heads of a dependent.
A np.nan
cell value informs the algorithm to skip the edge.
Example usage:
import numpy as np
from ufal.chu_liu_edmonds import chu_liu_edmonds
np.random.seed(42)
score_matrix = np.random.rand(3, 4)
heads, tree_score = chu_liu_edmonds(score_matrix)
print(heads, tree_score)
Install
Binary wheels of the package are provided, just run
pip install ufal.chu_liu_edmonds
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
Built Distributions
File details
Details for the file ufal.chu_liu_edmonds-1.0.1.tar.gz
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1.tar.gz
- Upload date:
- Size: 118.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 492c50ccd2593461fe0b8055a10921792a24963c36889f3fab6da1f9d6e03e6f |
|
MD5 | d6ab6698901ba678359123e1e6d5c908 |
|
BLAKE2b-256 | a5dae17a3932801e243c7fb08279d33fac375d9851e41eb286bc7edba33d32b0 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 287.3 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6a7bfd278993a4cd3a92c55ffa7603b45636137716f25d2e6d4df9acf2b412e |
|
MD5 | bdc6d28cfe51dcfa6d773ea1b6c46ee3 |
|
BLAKE2b-256 | 925eba529d5eb490eee98c38977c707ac33f547e2ad8787710993083d23163bd |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp38-cp38-win32.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp38-cp38-win32.whl
- Upload date:
- Size: 227.0 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f71ad10613e32cc3d19b66fac85d8acdd1986dbb40ba229e0098e64d0903f388 |
|
MD5 | b0d37c7e2e74d932b76aafe2a46b4634 |
|
BLAKE2b-256 | c452a2daf7dbccbbe907d4d48b0d7daa5feb7d881646a62f51b2c1f7933c32fd |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
- Upload date:
- Size: 100.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd425d2ffd2a46e05bbef0d8715ebb0ed71510693136473dc2d79964e8486cd0 |
|
MD5 | 760498354afd3644653919353184d264 |
|
BLAKE2b-256 | 5d621b55d877b84baf448e1d7f1133b0fb0219c224b7d781f400f0ac4f029059 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp38-cp38-manylinux2010_i686.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp38-cp38-manylinux2010_i686.whl
- Upload date:
- Size: 100.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e05f6f8d251bc85c6833dfb595eda5e2791bd073b1fc0398568640490f94559a |
|
MD5 | 5c7fd26fd25815c77e8a394d4ab55618 |
|
BLAKE2b-256 | c3ab7a06d0452e19463feb7f75d1dbe3a47196a7c7c521dc72dc3aa0a70aa272 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp38-cp38-manylinux1_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp38-cp38-manylinux1_x86_64.whl
- Upload date:
- Size: 100.4 kB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f64f71efd84b0dc54870538dab3c6a46b2e28614f60d3ce0c1740c6e3a1b7cc |
|
MD5 | 2f56341f13b4112195c2126b7746ed7c |
|
BLAKE2b-256 | 8784531ddab3b2231360c87e56a40b4b1df781d6813eac110104fd291479fb99 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp38-cp38-manylinux1_i686.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp38-cp38-manylinux1_i686.whl
- Upload date:
- Size: 100.1 kB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fd75ae88b0d02b260480f5bb380fd619bf02b1e9d096533db7bf3780e924354 |
|
MD5 | e726692f4fdb48662235e1f8fed645fc |
|
BLAKE2b-256 | 45cfb18b839a6670d7a21607dee5cf80b16286ce742d7ba8aeecaa620a832ea2 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 83.8 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9daf657784ac8e55a1e39e2727d596661ebd1059812abfab2b657b840aa6bd7f |
|
MD5 | d2a3cb342b503fad5af1e3877e1a5178 |
|
BLAKE2b-256 | 0a8de69e884e95f3807d1396969f8f89f6de0c28df81a112313ef16c1a1c9f60 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 285.9 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38826ba0a18f8b8d3a0c4bc6b1e012a20c05550b49902e3ce2621f39e27a343c |
|
MD5 | dcf3e6752ed54e40cc9e0276d3ddc1ba |
|
BLAKE2b-256 | 7d4062567944e16bc6bad9c29235430ac765b5cc4745ceea073a8db39dc55637 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-win32.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-win32.whl
- Upload date:
- Size: 225.7 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa0d630bf38909521629eeb422759b577ead0e853c5bfc7210999ed95479df1e |
|
MD5 | 0c054b3acc4398feae8bb3c7b9768459 |
|
BLAKE2b-256 | 40bbd80d8de66d5d56790da159c2116d20dc615a437324eeb27153bf28264e79 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
- Upload date:
- Size: 99.2 kB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08ef6d2e0917626f64daf83fe6f48e6f8e4dc45724b8d49316dee0045eecbf7e |
|
MD5 | bfce66c3e012b67d76ba9ad7aea05376 |
|
BLAKE2b-256 | 2d7bd8ec4717d8190dd70a63048bb24da28e85fd42c3dcaf2209747fab8ba28e |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-manylinux2010_i686.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-manylinux2010_i686.whl
- Upload date:
- Size: 99.6 kB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0b7c33394f81c48deebd3df03f6ec8f270fd56aa36f9e8e3cb5eebe86aeee7c |
|
MD5 | c7b8e4e2ee20cce2e65ee053cd93b3c0 |
|
BLAKE2b-256 | c471658187ee131485317d79dbdfe73eb0f229f7cc52427a627ebafe39419375 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
- Upload date:
- Size: 99.2 kB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9bee2344f82471f96d75bff766f34a1952eb069990a832b70684302b0259d981 |
|
MD5 | 755ea3b31c24fc42a6bbac50e5fb92de |
|
BLAKE2b-256 | 169e40978c17f63171b85572ca17356b5fbef30cb2b07d9f41142d715182e705 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-manylinux1_i686.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-manylinux1_i686.whl
- Upload date:
- Size: 99.6 kB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d597a1ce09d064a9dd92270c0ea94778939aae813a4e4bfb9b12b8427fcda0bc |
|
MD5 | 709f622d23ed427a108d7c1fa8f9f4fe |
|
BLAKE2b-256 | e2c732dedba47b3835442c2bfa4f24e50ead5b449fcc58a155209bc3c2109111 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 83.7 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aef2c5f957f645698871d3a58521dcc13fd9ff62de5147a51eb4467a7dd6beb0 |
|
MD5 | 9e399422abee0555f4a45787c8315fe1 |
|
BLAKE2b-256 | 8df01ecaa463ebd7f79deb972b469eecd562b7388ec5ebf4d4db61fb8c55ec00 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 285.8 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 845e8cc8f4c74c79c4cc61b748c650a2ba1a0a54149eb6e9c36a7d2d7425d527 |
|
MD5 | 6c1966e1412f7b99728004dc1b1bb8bd |
|
BLAKE2b-256 | 88267cc3c241cbd232fc1bc7ebab2b797979bfa346884a436e4a160594d99801 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-win32.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-win32.whl
- Upload date:
- Size: 225.7 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d571f562096d5b8e5bfe76ab36901426cff2ded071d417b8884159afade49d7 |
|
MD5 | cf86662213a496d6fadc9cd32341ad4c |
|
BLAKE2b-256 | 9605f67ac8fa9318549da67da760f9f6b532f5848395733a782cbd0c4bc566a2 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
- Upload date:
- Size: 99.4 kB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5892b8e9a70a06334c65a7c159822be816a76a7613f0f2c8d1b496bf4f2e2c37 |
|
MD5 | 385f38a09e3bdb44c0f0b95fe9e9113c |
|
BLAKE2b-256 | ff020c8ecfa47fed486dd72ad5df02c0c1509e9a911c2f44bcd508d0477e4943 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-manylinux2010_i686.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-manylinux2010_i686.whl
- Upload date:
- Size: 99.8 kB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9515cc40ae766bf85dba69c048e2e1f40cc0931f8ca5847a0790ec049fb96d5b |
|
MD5 | c61a2cdce93a97b5195edaf985bcb287 |
|
BLAKE2b-256 | 68f6a9b54f899893bbcc6f91da6955bb239f6f3e06b23ddd2fb43ef282271dfb |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
- Upload date:
- Size: 99.4 kB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 415fc87f0914d95b89fac6e7a6c952177db415917b1331cc0c5d6f327c6955d9 |
|
MD5 | 18115b3c37de2c54b0f582f1f9c3f555 |
|
BLAKE2b-256 | 4c452d8cd95a92e61fb0a46514d65f33034831ed0b3f5e733b85a252c646b3be |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-manylinux1_i686.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-manylinux1_i686.whl
- Upload date:
- Size: 99.8 kB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 014829d598e0bb67b858c87c7313908eac441a902124fa4df3893558a885f77d |
|
MD5 | 33fe34a0509dd9c1c4e358f39e9834f4 |
|
BLAKE2b-256 | f3732a97dbd8b54b52ee187c41a47e75e47b8b3c4022fe25be92de641833a2c8 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 83.4 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47079b6aa6d1f5fce8c2153860941356af8acc25eefa1cee4f60e361e8945a80 |
|
MD5 | fd03553deedd812925a5956896a9cd2d |
|
BLAKE2b-256 | 04c1b6a9ba7f44cea9fff12e7a52a2a923a63935cefb04e48a07f781239d046b |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-win_amd64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-win_amd64.whl
- Upload date:
- Size: 285.2 kB
- Tags: CPython 3.5m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd6a4fec1e55ab67aedab7fd4d73345e24ef5e5b1cc9f322572fe931a2658c54 |
|
MD5 | 78924a0ee9dcd5a30f2659492e99fd9f |
|
BLAKE2b-256 | 014c3efe352b869e5e03f81925e6f4d20f02d82462ebb18cb9c94fbfe9903550 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-win32.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-win32.whl
- Upload date:
- Size: 225.3 kB
- Tags: CPython 3.5m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c85142f2c880bc711f8be253457511f9e48fc81f0a02313852d6d6286f9b387 |
|
MD5 | aa454c36e1a7a3f8d0e42946f04e87d2 |
|
BLAKE2b-256 | f7697778a46ac69eb3af4827306fe7dce5191d31efccd262f3d11778bd13e314 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
- Upload date:
- Size: 98.9 kB
- Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f83ad0a09f38598c2366663db319eaa8637efcd5ea356063a3829488f35150e7 |
|
MD5 | 1f4dfa36f65d607db9b00b1475430543 |
|
BLAKE2b-256 | 27c4b2586e3019b00b3f032726f7434a2c9e128f11be64ad788b0d729563ce6e |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-manylinux2010_i686.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-manylinux2010_i686.whl
- Upload date:
- Size: 99.2 kB
- Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95f01d430a1b945f6a5bd367b2aba419af0d059da1fa37385a5c384077c92eba |
|
MD5 | bbab9d5fd8f545afd6da90477c392322 |
|
BLAKE2b-256 | ce116b2c2003340349838c6f89fe2915bac4c6b8c8bcd2763115917b83ba186c |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
- Upload date:
- Size: 98.9 kB
- Tags: CPython 3.5m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12f71a3b2fd1d62dc91fd4e94d8266a00b3ddfc6065df5a1fa90dc5f9f87434c |
|
MD5 | 085ec42087eecfa025e543771bd1af1f |
|
BLAKE2b-256 | 316ddf6286c2fc936ae8d0f8def7e57c165e8b4f9251cf4aca333a127ef752d3 |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-manylinux1_i686.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-manylinux1_i686.whl
- Upload date:
- Size: 99.2 kB
- Tags: CPython 3.5m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0b5480bff2ed230a86c10400ec25de1ceabbf9bf9fdc7310e0706813a88919f |
|
MD5 | 0047134bf1663ec95f8401ecd850706f |
|
BLAKE2b-256 | 511d6460a495eaed54ce81647ce3c9189f7cec274a9a918bf7252a4f56c0da0f |
Provenance
File details
Details for the file ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: ufal.chu_liu_edmonds-1.0.1-cp35-cp35m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 82.4 kB
- Tags: CPython 3.5m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51b44795e2760018cdbcd89336e7b7a01633aac018dc9b7de295a3eac725eb1b |
|
MD5 | 45958355822ff17d72165b446097cee1 |
|
BLAKE2b-256 | 83283d0b34bbd4bde740af52912462efe1f4d2c3180ced321898222640d664dd |