generated from adrienaury/go-template
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PROPOSAL] Pre-processing step #20
Comments
Another possible configurationConfiguration for Stream AA/config.yaml version: "1"
metrics:
- name: "name"
coherentWith: ["id"]
- name: "surname"
coherentWith: ["id"] Configuration for Stream BB/config.yaml version: "1"
preprocess:
- name: "name"
value: '{{index (.idutil | split " ") "_2"}}'
- name: "surname"
value: '{{index (.idutil | split " ") "_3"}}'
metrics:
- name: "name"
coherentWith: ["id"]
- name: "surname"
coherentWith: ["id"] Resultreport.html
|
For deep nested objects/arrays, the configuration should provide a way to tell MIMO where to insert the preprocessed field. Example version: "1"
preprocess:
- name: "batchs.[].accounts.[].clean_id" # new field inserted at each account object
value: '{{$account := Stack -1}}{{$account.id | trimSpaces}}' # access to the stack via Stack(index) function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem
Difficult to compute inter-stream coherence/identifiable rates when columns are built differently (by format or composition)
Example :
Stream A
A/real.jsonl
A/masked.jsonl
Stream B
B/real.jsonl
B/masked.jsonl
Solution
MIMO should be able to compute pre-values in the stream.
Configuration for Stream A
A/config.yaml
Configuration for Stream B
B/config.yaml
Command line
computation matrix (stored in localdb)
report.html
The text was updated successfully, but these errors were encountered: