-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathveld.yaml
24 lines (22 loc) · 868 Bytes
/
veld.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
x-veld:
chain:
description: "Conversion of apis ner model data to harmonized custom json format."
topic:
- "ETL"
- "Data Cleaning"
services:
veld:
build: ./code/
command: python /veld/code/extract_and_clean.py
volumes:
- ./code/src/:/veld/code/
- ./data/veld_data__apis_spacy_ner_legacy/:/veld/input/
- ./data/veld_data__apis_oebl__ner_gold/data_uncleaned:/veld/output/uncleaned/
- ./data/veld_data__apis_oebl__ner_gold/data_cleaned:/veld/output/cleaned/
- ./data/veld_data__apis_oebl__ner_gold/data_cleaned_simplified:/veld/output/cleaned_simplified/
- ./:/veld/output/log/
environment:
out_json_uncleaned_file: "uncleaned.json"
out_json_cleaned_file: "cleaned.json"
out_json_cleaned_simplified_file: "cleaned_simplified.json"
out_log_file: "extract_and_clean.log"