Skip to content

Commit

Permalink
Update Sentis 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
UnaNancyOwen committed Nov 15, 2024
1 parent c1556c0 commit fe8b78d
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 22 deletions.
3 changes: 2 additions & 1 deletion packages/jp.co.hololab.dnn.base/Documentation/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# CHANGES

## [X.X.X] - XXXX-XX-XX
## [1.0.5] - 2024-11-15

- Update Unity Sentis to 2.1.1 from 2.1.0.
- Fix GetOutputShapes() to support models with Int, Short, and Byte as data type of input layers.
- Change access modifiers for some variables and functions for more extensibility and flexibility.

Expand Down
4 changes: 2 additions & 2 deletions packages/jp.co.hololab.dnn.base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jp.co.hololab.dnn.base",
"version": "1.0.4",
"version": "1.0.5",
"displayName": "DNN Base Model",
"description": "DNN base model with Unity Sentis.",
"keywords": [ "unity", "sentis" ],
Expand All @@ -11,6 +11,6 @@
},
"license": "MIT",
"dependencies": {
"com.unity.sentis": "2.1.0"
"com.unity.sentis": "2.1.1"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# CHANGES

## [X.X.X] - XXXX-XX-XX
## [1.0.5] - 2024-11-15

- Update Unity Sentis to 2.1.1 from 2.1.0.

## [1.0.4] - 2024-09-13

Expand Down
6 changes: 3 additions & 3 deletions packages/jp.co.hololab.dnn.classification/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jp.co.hololab.dnn.classification",
"version": "1.0.4",
"version": "1.0.5",
"displayName": "Classification",
"description": "Classification model with Unity Sentis.",
"keywords": [ "unity", "sentis", "classification" ],
Expand All @@ -11,8 +11,8 @@
},
"license": "MIT",
"dependencies": {
"com.unity.sentis": "2.1.0",
"jp.co.hololab.dnn.base": "1.0.4"
"com.unity.sentis": "2.1.1",
"jp.co.hololab.dnn.base": "1.0.5"
},
"samples": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# CHANGES

## [X.X.X] - XXXX-XX-XX
## [1.0.5] - 2024-11-15

- Update Unity Sentis to 2.1.1 from 2.1.0.

## [1.0.4] - 2024-09-13

Expand Down
6 changes: 3 additions & 3 deletions packages/jp.co.hololab.dnn.depthestimation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jp.co.hololab.dnn.depthestimation",
"version": "1.0.4",
"version": "1.0.5",
"displayName": "Depth Estimation",
"description": "Depth Estimation model with Unity Sentis.",
"keywords": [ "unity", "sentis", "depth estimation" ],
Expand All @@ -11,8 +11,8 @@
},
"license": "MIT",
"dependencies": {
"com.unity.sentis": "2.1.0",
"jp.co.hololab.dnn.base": "1.0.4"
"com.unity.sentis": "2.1.1",
"jp.co.hololab.dnn.base": "1.0.5"
},
"samples": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# CHANGES

## [X.X.X] - XXXX-XX-XX
## [1.0.5] - 2024-11-15

- Update Unity Sentis to 2.1.1 from 2.1.0.
- Add object detection using DETR based models with "images"(1x3xHxW) , "orig_target_sizes"(1x2) at input layers, and "labels"(1xNUM_DETECT), "boxes"(1xNUM_DETECTx4), "scores"(1xNUM_DETECT) at output layers. (e.g. RT-DETR, D-FINE)
- Rename structure for detection results to BoundingBox from Object to avoid conflicts with System.Object and Unity.Object. This breaking changes will be little impact on user code, because generally used type inference.

Expand Down
8 changes: 4 additions & 4 deletions packages/jp.co.hololab.dnn.objectdetection/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "jp.co.hololab.dnn.objectdetection",
"version": "1.0.4",
"version": "1.0.5",
"displayName": "Object Detection",
"description": "Object detection model with Unity Sentis.",
"keywords": [ "unity", "sentis", "object detection", "yolox" ],
"keywords": [ "unity", "sentis", "object detection", "yolox", "yolov9 mit", "detr" ],
"unity": "2023.2",
"author": {
"name": "HoloLab Inc.",
"url": "https://hololab.co.jp"
},
"license": "MIT",
"dependencies": {
"com.unity.sentis": "2.1.0",
"jp.co.hololab.dnn.base": "1.0.4"
"com.unity.sentis": "2.1.1",
"jp.co.hololab.dnn.base": "1.0.5"
},
"samples": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# CHANGES

## [X.X.X] - XXXX-XX-XX
## [1.0.5] - 2024-11-15

- Update Unity Sentis to 2.1.1 from 2.1.0.

## [1.0.4] - 2024-09-13

Expand Down
6 changes: 3 additions & 3 deletions packages/jp.co.hololab.dnn.segmentation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jp.co.hololab.dnn.segmentation",
"version": "1.0.4",
"version": "1.0.5",
"displayName": "Segmentation",
"description": "Segmentation model with Unity Sentis.",
"keywords": [ "unity", "sentis", "segmentation" ],
Expand All @@ -11,8 +11,8 @@
},
"license": "MIT",
"dependencies": {
"com.unity.sentis": "2.1.0",
"jp.co.hololab.dnn.base": "1.0.4"
"com.unity.sentis": "2.1.1",
"jp.co.hololab.dnn.base": "1.0.5"
},
"samples": [
{
Expand Down
2 changes: 1 addition & 1 deletion project/Packages/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"com.unity.collab-proxy": "2.3.1",
"com.unity.feature.development": "1.0.2",
"com.unity.mathematics": "1.3.2",
"com.unity.sentis": "2.1.0",
"com.unity.sentis": "2.1.1",
"com.unity.timeline": "1.8.7",
"com.unity.ugui": "2.0.0",
"com.unity.visualscripting": "1.9.4",
Expand Down
2 changes: 1 addition & 1 deletion project/Packages/packages-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"url": "https://packages.unity.com"
},
"com.unity.sentis": {
"version": "2.1.0",
"version": "2.1.1",
"depth": 0,
"source": "registry",
"dependencies": {
Expand Down

0 comments on commit fe8b78d

Please sign in to comment.