Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,25 @@ The GMF standard can be used to store statistical metadata on tabular datasets,
to generate synthetic versions of the original dataset. By storing the statistical metadata information in
this intermediate standard, privacy can be ensured by careful manual disclosure control.

A Python reference implementation for generating GMF files and creating synthetic dataset is available on [GitHub](https://github.com/sodascience/metasynth).
A Python reference implementation for generating GMF files and creating synthetic dataset is available on [GitHub](https://github.com/sodascience/metasyn).

The GMF standard is designed to be modular and extensible with more distributions and privacy enhancing mechanisms. Additional distributions might be available at a later date in this repository outside of the core directory.

# GMF format versions and metasyn versions

| GMF version | metasyn version compatibility |
| ----------- | ----------------------------- |
| 0.1 | metasyn < 0.4.0 |
| 0.2 | metasyn == 0.4.0 |
| 0.3 | metasyn == 0.5.0, 0.6.0 |
| 1.0 | metasyn >= 0.7.0, <= 1.0.3 |
| 1.1 | metasyn >= 1.1.0 |
| GMF version | metasyn version compatibility | Notes |
| ----------- | ----------------------------- | |
| 0.1 | metasyn < 0.4.0 | |
| 0.2 | metasyn == 0.4.0 | |
| 0.3 | metasyn == 0.5.0, 0.6.0 | |
| 1.0 | metasyn >= 0.7.0, <= 1.0.3 | |
| 1.1 | metasyn == 1.1.0 | |
| 2.0 | metasyn >= 2.1.0 | Support for multitable |
| 2.1 | metasyn >= 3.0.0 | Add operators |

<!-- CONTACT -->
## Contact
**Metasyn** (and the GMF schema attached to it) is a project by the [ODISSEI Social Data Science (SoDa)](https://odissei-data.nl/nl/soda/) team.
Do you have questions, suggestions, or remarks on the technical implementation? File an issue in the issue tracker or feel free to contact [Erik-Jan van Kesteren](https://github.com/vankesteren) or [Raoul Schram](https://github.com/qubixes).
Do you have questions, suggestions, or remarks on the technical implementation? File an issue in the issue tracker or feel free to contact [Raoul Schram](https://github.com/qubixes).

<img src="soda.png" alt="SoDa logo" width="250px"/>
2 changes: 1 addition & 1 deletion core/1.1/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generative metadata format - v1.1

Compatibility: metasyn == 1.1.0 and higher
Compatibility: metasyn == 1.1.0
5 changes: 5 additions & 0 deletions core/2.0/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Generative metadata format - v2.0

Compatibility: metasyn == 2.1 or higher

New features: Multi table support
Loading