61 lines
1.3 KiB
TOML
61 lines
1.3 KiB
TOML
# d-opt -- lang_main: config file
|
|
|
|
[paths]
|
|
inputs = './lang-main/data/tests/in/'
|
|
results = './lang-main/data/tests/out/'
|
|
models = './lang-models'
|
|
graph_export_filename = 'EXPORT-TokenGraph'
|
|
|
|
[models]
|
|
use_large_model = true
|
|
|
|
[logging]
|
|
enabled = true
|
|
stderr = true
|
|
file = true
|
|
|
|
# control which pipelines are executed
|
|
[control]
|
|
preprocessing_skip = false
|
|
token_analysis_skip = false
|
|
graph_postprocessing_skip = false
|
|
graph_rescaling_skip = false
|
|
graph_static_rendering_skip = true
|
|
time_analysis_skip = true
|
|
|
|
[preprocess]
|
|
date_cols = [
|
|
"VorgangsDatum",
|
|
"ErledigungsDatum",
|
|
"Arbeitsbeginn",
|
|
"ErstellungsDatum",
|
|
]
|
|
target_feature = "VorgangsBeschreibung"
|
|
threshold_amount_characters = 5
|
|
threshold_similarity = 0.92
|
|
|
|
[graph_postprocessing]
|
|
enable_edge_rescaling = true
|
|
max_edge_number = -1
|
|
|
|
[time_analysis.uniqueness]
|
|
threshold_unique_texts = 5
|
|
criterion_feature = 'HObjektText'
|
|
feature_name_obj_id = 'ObjektID'
|
|
feature_name_obj_text = 'HObjektText'
|
|
|
|
[time_analysis.preparation]
|
|
name_delta_feat_to_repair = 'Zeitspanne bis zur Behebung [Tage]'
|
|
name_delta_feat_to_next_failure = 'Zeitspanne bis zum nächsten Ereignis [Tage]'
|
|
|
|
[time_analysis.model_input]
|
|
input_features = [
|
|
'VorgangsBeschreibung',
|
|
]
|
|
activity_feature = 'VorgangsTypName'
|
|
activity_types = [
|
|
'Reparaturauftrag (Portal)',
|
|
'Störungsmeldung',
|
|
]
|
|
threshold_num_activities = 1
|
|
threshold_similarity = 0.8 |