Skip to content

Commit 0e78824

Browse files
Merge pull request #38 from ROBOTIS-GIT/feature-add-evaluation
Added functionality for evaluating trained models
2 parents dcaeb30 + 139dd5e commit 0e78824

File tree

13 files changed

+650
-7
lines changed

13 files changed

+650
-7
lines changed

physical_ai_interfaces/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog for package physical_ai_interfaces
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.5.11 (2025-07-16)
6+
------------------
7+
* None
8+
59
0.5.10 (2025-07-15)
610
------------------
711
* Added multi-tasking-related service types and message types

physical_ai_interfaces/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>physical_ai_interfaces</name>
5-
<version>0.5.10</version>
5+
<version>0.5.11</version>
66
<description>
77
ROS 2 interfaces for Physical AI tools
88
</description>

physical_ai_manager/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog for package physical_ai_manager
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.5.11 (2025-07-16)
6+
------------------
7+
* None
8+
59
0.5.10 (2025-07-15)
610
------------------
711
* Added multi-tasking data recording support in record page

physical_ai_manager/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

physical_ai_manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "physical_ai_manager",
3-
"version": "0.5.10",
3+
"version": "0.5.11",
44
"description": "Web UI for Physical AI Platform",
55
"author": "Kiwoong Park <[email protected]>",
66
"contributors": [

physical_ai_server/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package physical_ai_server
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.5.11 (2025-07-16)
6+
------------------
7+
* Added functionality for evaluating trained models
8+
* Contributors: Dongyun Kim
9+
510
0.5.10 (2025-07-15)
611
------------------
712
* Added multi-tasking data recording support to the Physical AI Server

physical_ai_server/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>physical_ai_server</name>
5-
<version>0.5.10</version>
5+
<version>0.5.11</version>
66
<description>
77
ROS 2 package for Open Platform AI Kit integration
88
</description>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env python3
2+
#
3+
# Copyright 2025 ROBOTIS CO., LTD.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
# Author: Dongyun Kim
18+
19+
20+
# This file makes the directory a Python package

0 commit comments

Comments
 (0)