-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore
: Update Benchmark to current version (#316)
This PR updates the Benchmark to the current version
- Loading branch information
Showing
49 changed files
with
320,851 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
157 changes: 157 additions & 0 deletions
157
tests/tests-base/src/main/resources/benchmark/DiagramSchema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"diagrams": { | ||
"type": "array", | ||
"minItems": 1, | ||
"items": { | ||
"$ref": "#/definitions/Diagram" | ||
} | ||
} | ||
}, | ||
"definitions": { | ||
"Diagram": { | ||
"type": "object", | ||
"properties": { | ||
"path": { | ||
"type": "string" | ||
}, | ||
"boxes": { | ||
"type": "array", | ||
"minItems": 1, | ||
"items": { | ||
"$ref": "#/definitions/Box" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"path", | ||
"boxes" | ||
] | ||
}, | ||
"Box": { | ||
"type": "object", | ||
"properties": { | ||
"boundingBox": { | ||
"$ref": "#/definitions/BoundingBox" | ||
}, | ||
"textBoxes": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/TextBox" | ||
} | ||
}, | ||
"subBoxes": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/Box" | ||
} | ||
}, | ||
"tracelinks": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/TraceLinkSet" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"boundingBox", | ||
"textBoxes", | ||
"subBoxes", | ||
"tracelinks" | ||
] | ||
}, | ||
"TextBox": { | ||
"type": "object", | ||
"properties": { | ||
"text": { | ||
"type": "string" | ||
}, | ||
"boundingBox": { | ||
"$ref": "#/definitions/BoundingBox" | ||
} | ||
}, | ||
"required": [ | ||
"text", | ||
"boundingBox" | ||
] | ||
}, | ||
"TraceLinkSet": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"sentences": { | ||
"type": "array", | ||
"items": { | ||
"type": "integer" | ||
} | ||
}, | ||
"typedTracelinks": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/TypedTraceLink" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"name", | ||
"sentences" | ||
] | ||
}, | ||
"BoundingBox": { | ||
"type": "object", | ||
"properties": { | ||
"x": { | ||
"type": "integer" | ||
}, | ||
"y": { | ||
"type": "integer" | ||
}, | ||
"w": { | ||
"type": "integer" | ||
}, | ||
"h": { | ||
"type": "integer" | ||
} | ||
}, | ||
"required": [ | ||
"x", | ||
"y", | ||
"w", | ||
"h" | ||
] | ||
}, | ||
"TypedTraceLink": { | ||
"type": "object", | ||
"properties": { | ||
"sentences": { | ||
"type": "array" | ||
}, | ||
"traceType": { | ||
"$ref": "#/definitions/TraceType" | ||
} | ||
}, | ||
"required": [ | ||
"sentences", | ||
"traceType" | ||
] | ||
}, | ||
"TraceType": { | ||
"type": "string", | ||
"enum": [ | ||
"ENTITY", | ||
"ENTITY_COREFERENCE", | ||
"OTHER_ENTITY", | ||
"COMMON_NOUN", | ||
"SHARED_STEM", | ||
"UNCERTAIN" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"diagrams" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...s/tests-base/src/main/resources/benchmark/bigbluebutton/diagrams_2015/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[Source](https://github.com/bigbluebutton/bigbluebutton.github.io/blob/25582d381a27557d5e308f30a6e94a603b7438ba/_posts/2015-04-04-09architecture.md) |
Binary file added
BIN
+32.1 KB
.../src/main/resources/benchmark/bigbluebutton/diagrams_2015/bbb-arch-overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
...s/tests-base/src/main/resources/benchmark/bigbluebutton/diagrams_2021/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[Source](http://web.archive.org/web/20230315102607/https://docs.bigbluebutton.org/2.4/architecture.html) |
Binary file added
BIN
+18.1 KB
.../src/main/resources/benchmark/bigbluebutton/diagrams_2021/bbb-arch-overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...in/resources/benchmark/bigbluebutton/goldstandards/goldstandard_sad_2021-sam_2021_UME.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
missingModelElementID | ||
_kvWs4FkHEeyewPSmlgszyA | ||
_kvWs4FkHEeyewPSmlgszyA |
Oops, something went wrong.