Skip to content

Commit 23060cd

Browse files
committed
create dataintegration reference docs from endpoint
1 parent 7b14669 commit 23060cd

384 files changed

Lines changed: 21547 additions & 2 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/build/.pages

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ nav:
33
- Introduction to the User Interface: introduction-to-the-user-interface
44
- Rule Operators: rule-operators
55
- Define Prefixes / Namespaces: define-prefixes-namespaces
6+
- Task and Operator Reference: reference
67
- Cool IRIs: cool-iris
78
- Lift Tabular Data: lift-data-from-tabular-data-such-as-csv-xslx-or-database-tables
89
- Lift Hierarchical Data: lift-data-from-json-and-xml-sources
@@ -14,4 +15,4 @@ nav:
1415
- Link Intrusion Detection Systems to Open-Source INTelligence: tutorial-how-to-link-ids-to-osint
1516
- Project and Global Variables: variables
1617
- Evaluate Template Operator: evaluate-template
17-
- Build Knowledge Graphs from Kafka Topics: kafka-consumer
18+
- Build Knowledge Graphs from Kafka Topics: kafka-consumer

docs/build/reference/.pages

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
nav:
2+
- "Task and Operator Reference": index.md
3+
- "Aggregators": aggregator
4+
- "Custom Workflow Tasks": customtask
5+
- "Datasets": dataset
6+
- "Distance Measures": distancemeasure
7+
- "Transformers": transformer
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
nav:
2+
- index.md
3+
- "And": min.md
4+
- "Average": average.md
5+
- "Euclidian distance": quadraticMean.md
6+
- "First non-empty score": firstNonEmpty.md
7+
- "Geometric mean": geometricMean.md
8+
- "Handle missing values": handleMissingValues.md
9+
- "Negate": negate.md
10+
- "Or": max.md
11+
- "Scale": scale.md
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: "Average"
3+
description: "Computes the weighted average."
4+
icon: octicons/cross-reference-24
5+
tags:
6+
---
7+
# Average
8+
<!-- This file was generated - DO NOT CHANGE IT MANUALLY -->
9+
10+
11+
12+
13+
### Examples
14+
15+
**Notation:** List of values are represented via square brackets. Example: `[first, second]` represents a list of two values "first" and "second".
16+
17+
---
18+
#### Computes the arithmetic mean of all similarity scores:
19+
20+
* Input values: [0.4, 0.5, 0.9]
21+
* Returns: `0.6`
22+
23+
24+
---
25+
#### Multiplies individual similarity scores with their weight before averaging:
26+
27+
* Weights: [1, 1, 2]
28+
* Input values: [0.3, 0.5, 0.6]
29+
* Returns: `0.5`
30+
31+
32+
---
33+
#### Missing scores always lead to an output of none:
34+
35+
* Input values: [-1.0, (none), 1.0]
36+
* Returns: `(none)`
37+
38+
39+
40+
41+
## Parameter
42+
43+
`None`
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: "First non-empty score"
3+
description: "Forwards the first input that provides a non-empty similarity score."
4+
icon: octicons/cross-reference-24
5+
tags:
6+
---
7+
# First non-empty score
8+
<!-- This file was generated - DO NOT CHANGE IT MANUALLY -->
9+
10+
11+
12+
13+
### Examples
14+
15+
**Notation:** List of values are represented via square brackets. Example: `[first, second]` represents a list of two values "first" and "second".
16+
17+
---
18+
#### The first defined score is returned, even if it's not the highest score:
19+
20+
* Input values: [(none), 0.2, 0.5]
21+
* Returns: `0.2`
22+
23+
24+
25+
26+
## Parameter
27+
28+
`None`
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
---
2+
title: "Geometric mean"
3+
description: "Compute the (weighted) geometric mean."
4+
icon: octicons/cross-reference-24
5+
tags:
6+
---
7+
# Geometric mean
8+
<!-- This file was generated - DO NOT CHANGE IT MANUALLY -->
9+
10+
11+
12+
13+
### Examples
14+
15+
**Notation:** List of values are represented via square brackets. Example: `[first, second]` represents a list of two values "first" and "second".
16+
17+
---
18+
#### Example 1:
19+
20+
* Weights: [1, 2, 1]
21+
* Input values: [0.0, 0.0, 0.0]
22+
* Returns: `0.0`
23+
24+
25+
---
26+
#### Example 2:
27+
28+
* Weights: [1, 2, 1]
29+
* Input values: [1.0, 1.0, 1.0]
30+
* Returns: `1.0`
31+
32+
33+
---
34+
#### Example 3:
35+
36+
* Weights: [2, 1]
37+
* Input values: [0.5, 1.0]
38+
* Returns: `0.629961`
39+
40+
41+
---
42+
#### Example 4:
43+
44+
* Weights: [2, 1, 5]
45+
* Input values: [0.5, 1.0, 0.7]
46+
* Returns: `0.672866`
47+
48+
49+
---
50+
#### Example 5:
51+
52+
* Weights: [10, 2, 3]
53+
* Input values: [0.1, 0.9, 0.2]
54+
* Returns: `0.153971`
55+
56+
57+
---
58+
#### Missing scores always lead to an output of none:
59+
60+
* Input values: [-1.0, (none), 1.0]
61+
* Returns: `(none)`
62+
63+
64+
65+
66+
## Parameter
67+
68+
`None`
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: "Handle missing values"
3+
description: "Generates a default similarity score, if no similarity score is provided (e.g., due to missing values). Using this operator can have a performance impact, since it lowers the efficiency of the underlying computation."
4+
icon: octicons/cross-reference-24
5+
tags:
6+
---
7+
# Handle missing values
8+
<!-- This file was generated - DO NOT CHANGE IT MANUALLY -->
9+
10+
11+
12+
13+
### Examples
14+
15+
**Notation:** List of values are represented via square brackets. Example: `[first, second]` represents a list of two values "first" and "second".
16+
17+
---
18+
#### Forwards input similarity scores:
19+
20+
* Input values: [0.1]
21+
* Returns: `0.1`
22+
23+
24+
---
25+
#### Outputs the default score, if no input score is provided:
26+
27+
* Parameters
28+
* *defaultValue*: `1.0`
29+
30+
* Input values: [(none)]
31+
* Returns: `1.0`
32+
33+
34+
35+
36+
## Parameter
37+
38+
### Default value
39+
40+
The default value to be generated, if no similarity score is provided. Must be a value between -1 (inclusive) and 1 (inclusive). '1' represents boolean true and '-1' represents boolean false.
41+
42+
- Datatype: `double`
43+
- Default Value: `-1.0`
44+
45+
46+
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: "Aggregators"
3+
icon: octicons/cross-reference-24
4+
tags:
5+
- Build
6+
- Reference
7+
---
8+
# Aggregators
9+
<!-- This file was generated - DO NOT CHANGE IT MANUALLY -->
10+
11+
This kind of task aggregates multiple similarity scores.
12+
13+
**:octicons-people-24: Intended audience:** Linked Data Experts and Domain Experts
14+
15+
| Name | Description |
16+
|------------------------:| :--------- |
17+
|[And](min.md) | All input scores must be within the threshold. Selects the minimum score. |
18+
|[Average](average.md) | Computes the weighted average. |
19+
|[Euclidian distance](quadraticMean.md) | Calculates the Euclidian distance. |
20+
|[First non-empty score](firstNonEmpty.md) | Forwards the first input that provides a non-empty similarity score. |
21+
|[Geometric mean](geometricMean.md) | Compute the (weighted) geometric mean. |
22+
|[Handle missing values](handleMissingValues.md) | Generates a default similarity score, if no similarity score is provided (e.g., due to missing values). Using this operator can have a performance impact, since it lowers the efficiency of the underlying computation. |
23+
|[Negate](negate.md) | Negates the result of the input comparison. A single input is expected. Using this operator can have a performance impact, since it lowers the efficiency of the underlying computation. |
24+
|[Or](max.md) | At least one input score must be within the threshold. Selects the maximum score. |
25+
|[Scale](scale.md) | Scales a similarity score by a factor. |
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
title: "Or"
3+
description: "At least one input score must be within the threshold. Selects the maximum score."
4+
icon: octicons/cross-reference-24
5+
tags:
6+
---
7+
# Or
8+
<!-- This file was generated - DO NOT CHANGE IT MANUALLY -->
9+
10+
11+
12+
13+
### Examples
14+
15+
**Notation:** List of values are represented via square brackets. Example: `[first, second]` represents a list of two values "first" and "second".
16+
17+
---
18+
#### Selects the maximum similarity score:
19+
20+
* Input values: [0.5, 0.0]
21+
* Returns: `0.5`
22+
23+
24+
---
25+
#### Selects the maximum similarity score:
26+
27+
* Input values: [-1.0, -0.5, -0.3]
28+
* Returns: `-0.3`
29+
30+
31+
---
32+
#### Missing scores default to a similarity score of -1:
33+
34+
* Input values: [(none)]
35+
* Returns: `-1.0`
36+
37+
38+
---
39+
#### Weights are ignored:
40+
41+
* Weights: [1000, 0]
42+
* Input values: [1.0, 0.0]
43+
* Returns: `1.0`
44+
45+
46+
47+
48+
## Parameter
49+
50+
`None`
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
title: "And"
3+
description: "All input scores must be within the threshold. Selects the minimum score."
4+
icon: octicons/cross-reference-24
5+
tags:
6+
---
7+
# And
8+
<!-- This file was generated - DO NOT CHANGE IT MANUALLY -->
9+
10+
11+
12+
13+
### Examples
14+
15+
**Notation:** List of values are represented via square brackets. Example: `[first, second]` represents a list of two values "first" and "second".
16+
17+
---
18+
#### Selects the minimum similarity score:
19+
20+
* Input values: [1.0, 0.0]
21+
* Returns: `0.0`
22+
23+
24+
---
25+
#### Selects the minimum similarity score:
26+
27+
* Input values: [-1.0, 0.0, 0.5, 1.0]
28+
* Returns: `-1.0`
29+
30+
31+
---
32+
#### Missing scores default to a similarity score of -1:
33+
34+
* Input values: [1.0, (none), -0.5]
35+
* Returns: `-1.0`
36+
37+
38+
---
39+
#### Weights are ignored:
40+
41+
* Weights: [1000, 0]
42+
* Input values: [1.0, 0.0]
43+
* Returns: `0.0`
44+
45+
46+
47+
48+
## Parameter
49+
50+
`None`

0 commit comments

Comments
 (0)