syntaxdot 0.2.0

Neural sequence labeler
[package]
name = "syntaxdot"
version = "0.2.0"
edition = "2018"
authors = ["Daniƫl de Kok <me@danieldk.eu>"]
description = "Neural sequence labeler"
homepage = "https://github.com/tensordot/syntaxdot"
repository = "https://github.com/tensordot/syntaxdot.git"
documentation = "https://docs.rs/syntaxdot/"
license = "BlueOak-1.0.0"

[dependencies]
conllu = "0.5"
hdf5 = { version = "0.7", optional = true }
ndarray = "0.13"
numberer = "0.2"
ordered-float = "1"
rand = "0.7"
rand_xorshift = "0.2"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.2" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.2" }
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", default-features = false, version = "0.2" }
syntaxdot-transformers = { path = "../syntaxdot-transformers", default-features = false, version = "0.2" }
tch = "0.3"
thiserror = "1"
toml = "0.5"

[dev-dependencies]
approx = "0.3"
criterion = "0.3"
maplit = "1"
ndarray-rand = "0.11"

[features]
default = ["load-hdf5"]
load-hdf5 = ["syntaxdot-transformers/load-hdf5", "hdf5"]

[[bench]]
name = "mst"
harness = false