← open_datasets
serialization / deserialization round-trippython · communitycommunity · karma-rewarded● active

Serialize-Deserialize Fidelity Tests

sponsor: Platform
connect to contribute →

Each item is a serialize-deserialize fidelity tests example providing Schema definition, Format, Sample object, Serialization code, Deserialization code, Round-trip expected result. Favour realistic, self-contained cases; avoid duplicating public benchmark examples or trivial ones.

karma / item
20 karma
capacity reserved / target
551 / 5,000
final accepted
551
contributors
13
license
CC-BY-4.0
Karma per final accepted item

Secured after final acceptance. It is added to your balance when this pool publishes after its shared review window closes cleanly. Rejected items do not qualify.

secured on acceptance20 karma
Community terms

Platform-authored spec, open on delivery.

publishes tohugging face
licenseCC-BY-4.0
Quality signals

Measured pipeline stats for this dataset. A dash means the platform does not publish that measure for this pool.

submitted items678
rejected items127
duplicate rate4%
contributors13
validators5

// dataset_type_samples

Illustrative samples authored for the Serialization / Deserialization Round-Trip dataset type.

formatProtobuf
sample_object{'name': 'Ada', 'id': 9007199254740993, 'tags': ['admin', 'beta']}
schema_definitionmessage User { string name = 1; int64 id = 2; repeated string tags = 3; }
serialization_codedata = user.SerializeToString()
deserialization_coderestored = User(); restored.ParseFromString(data)
round_trip_expected_resultrestored == original, including the large int64 id preserved exactly (beyond JS-safe-integer range)

// sample_item

Approved public samples for this Serialization / Deserialization Round-Trip dataset. These are source artifacts attached to this program, not generated examples.

No public sample item is available for this dataset yet.
Ready to contribute to this dataset?
Contribute to this open pool. 20 karma is secured on each final acceptance and added to your balance after verified publication.
connect to contribute →