Registry / serialization / conllx

conllx

JSON →
library0.12.1rscratesunverified

Readers and writers for the CoNLL-X dependency format used in natural language processing.

# Cargo.toml [dependencies] conllx = "0.12.1"
INSTALL
IMPORT
SIG · CONLLX
C
conllx
serializationrustv0.12.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Reader
use conllx::Reader;

Reads CoNLL-X formatted data from a byte source.

use conllx::Reader; fn main() -> Result<(), Box<dyn std::error::Error>> { let data = "1 The _ DT _ _ 2 det".as_bytes(); let reader = Reader::new(data); for sentence in reader { println!("{:?}", sentence?); } Ok(()) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.12.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
21 hits · last 30 days
node
18
Meta
1
OpenAI (training)
1
Resources
conllx — cargo add conllx · libregistry