-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix/ml-svc-model] fix the rpk example
- fix ml-svc-model/mobilenetv3-rpk - the name and format of json file are modified. (model_description.json -> rpk_config.json) - add metadata mlops key in tizen-manifest.xml Signed-off-by: Suyeon Kim <suyeon5.kim@samsung.com>
- Loading branch information
1 parent
a5a1e14
commit d8ab9cc
Showing
4 changed files
with
12 additions
and
10 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
9 changes: 0 additions & 9 deletions
9
Tizen.native/ml-svc-model/mobilenetv3-rpk/res/global/tizen.ai.model/model_description.json
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
Tizen.native/ml-svc-model/mobilenetv3-rpk/res/global/tizen.ai.model/rpk_config.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,10 @@ | ||
{ | ||
"models": [ | ||
{ | ||
"name" : "imgcls-mobilenet-224-224-fp", | ||
"model" : "lite-model_mobilenet_v3_large_100_224_fp32_1.tflite", | ||
"description" : "Image classification model v1.0.0", | ||
"activate" : "true" | ||
} | ||
] | ||
} |
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,4 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns="http://tizen.org/ns/packages" api-version="6.5" package="org.resource.mobilenetv3" version="1.0.0" res-type="tizen.ai.model" res-version="1.5.0"> | ||
<allowed-package id="*"/> | ||
<metadata key="http://tizen.org/metadata/mlops" value="SAMPLE"/> | ||
</manifest> |