-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* serialization.legacy * migrate conf_value and float32 * make dtype optional * fix mapping issue * fix serialization for FeatureType * finish db migration
- Loading branch information
Showing
6 changed files
with
15 additions
and
35 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
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ openapi: "3.0.0" | |
info: | ||
title: "ExplainaBoard" | ||
description: "Backend APIs for ExplainaBoard" | ||
version: "0.2.5" | ||
version: "0.2.6" | ||
contact: | ||
email: "[email protected]" | ||
license: | ||
|
@@ -628,15 +628,20 @@ components: | |
properties: | ||
dtype: | ||
type: string | ||
nullable: true | ||
cls_name: | ||
type: string | ||
description: | ||
type: string | ||
nullable: true | ||
func: | ||
type: string | ||
nullable: true | ||
require_training_set: | ||
type: boolean | ||
required: [dtype, cls_name] | ||
nullable: true | ||
additionalProperties: true | ||
required: [cls_name] | ||
|
||
SystemInfo: | ||
description: | | ||
|
@@ -666,7 +671,7 @@ components: | |
example: en | ||
reload_stat: | ||
type: boolean | ||
conf_value: | ||
confidence_alpha: | ||
type: number | ||
system_details: | ||
type: object | ||
|
@@ -703,7 +708,7 @@ components: | |
source_language, | ||
target_language, | ||
reload_stat, | ||
conf_value, | ||
confidence_alpha, | ||
source_tokenizer, | ||
target_tokenizer, | ||
analysis_levels, | ||
|