forked from CrayLabs/SmartDashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request CrayLabs#44 from CrayLabs/develop
This PR brings master up to date with develop for v0.0.3 release.
- Loading branch information
Showing
84 changed files
with
2,496 additions
and
1,592 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
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 |
---|---|---|
@@ -1,28 +1,27 @@ | ||
Changelog | ||
========= | ||
|
||
Development branch | ||
------------------ | ||
0.0.3 | ||
----- | ||
|
||
Work in progress | ||
Released on 15 February 2024 | ||
|
||
Description | ||
|
||
- n / a | ||
|
||
|
||
Detailed Notes | ||
- Added defined schemas for entity objects. (SmartDashboard-PR31_) | ||
- Added experiment level logs to the dashboard. (SmartDashboard-PR37_) | ||
|
||
- n / a | ||
.. _SmartDashboard-PR31: https://github.com/CrayLabs/SmartDashboard/pull/31 | ||
.. _SmartDashboard-PR37: https://github.com/CrayLabs/SmartDashboard/pull/37 | ||
|
||
.. _PRXXX: https://github.com/CrayLabs/SmartDashboard/pull/XXX | ||
|
||
|
||
0.0.2 | ||
----- | ||
|
||
Released on *TBD*, 2023 | ||
Released on 14 December 2023 | ||
|
||
Description | ||
|
||
- Initial release of SmartDashboard | ||
- The initial release of SmartDashboard includes capabilities for viewing | ||
experiment entity properties and statuses. |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# BSD 2-Clause License | ||
# | ||
# Copyright (c) 2021-2023, Hewlett Packard Enterprise | ||
# Copyright (c) 2021-2024, Hewlett Packard Enterprise | ||
# All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
|
@@ -32,7 +32,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "smartdashboard" | ||
version = "0.0.2" | ||
version = "0.0.3" | ||
requires-python = ">=3.8,<3.11" | ||
authors = [ | ||
{name = "CrayLabs: a Hewlett Packard Enterprise OSS Organization", email = "[email protected]"}, | ||
|
@@ -51,7 +51,8 @@ classifiers = [ | |
readme = "README.md" | ||
dependencies = [ | ||
"pandas>=2.0.0", | ||
"streamlit>=1.27.1", | ||
"pydantic>=2.5.2", | ||
"streamlit>=1.28.0", | ||
"watchdog>=3.0.0", | ||
] | ||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# BSD 2-Clause License | ||
# | ||
# Copyright (c) 2021-2023, Hewlett Packard Enterprise | ||
# Copyright (c) 2021-2024, Hewlett Packard Enterprise | ||
# All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
|
@@ -38,44 +38,34 @@ | |
|
||
st.header("Welcome to the SmartSim Dashboard Help Page") | ||
st.write("") | ||
st.markdown( | ||
"""We're here to guide you through the features and functionalities | ||
st.markdown("""We're here to guide you through the features and functionalities | ||
of the SmartSim Dashboard, | ||
designed to enhance your experience with simulation | ||
experiments. This guide will help | ||
you navigate through the dashboard, understand its capabilities, | ||
and make the most of its powerful features.""" | ||
) | ||
and make the most of its powerful features.""") | ||
st.write("") | ||
|
||
with st.expander(label="Experiment Overview"): | ||
st.markdown( | ||
"""Discover comprehensive insights about your experiment's | ||
st.markdown("""Discover comprehensive insights about your experiment's | ||
entities within the Experiment Overview section. | ||
Get access to configuration details, comprehensive logs, | ||
real-time statuses, and relevant information regarding any | ||
colocated databases, if applicable. | ||
""" | ||
) | ||
st.markdown( | ||
""" | ||
""") | ||
st.markdown(""" | ||
To access detailed information about experiments, models, orchestrators, | ||
and ensembles, please refer to their respective documentation pages below: | ||
- [Experiments](https://www.craylabs.org/docs/experiment.html#) | ||
- [Models](https://www.craylabs.org/docs/experiment.html#model) | ||
- [Orchestrators](https://www.craylabs.org/docs/orchestrator.html) | ||
- [Ensembles](https://www.craylabs.org/docs/experiment.html#ensemble)""" | ||
) | ||
- [Ensembles](https://www.craylabs.org/docs/experiment.html#ensemble)""") | ||
|
||
st.write("") | ||
|
||
with st.expander(label="Support"): | ||
st.markdown( | ||
"""Should you encounter any issues or require assistance while | ||
using the SmartSim Dashboard, we're here to help!""" | ||
) | ||
st.markdown( | ||
"""The complete SmartSim documentation can be found | ||
st.markdown("""Should you encounter any issues or require assistance while | ||
using the SmartSim Dashboard, we're here to help!""") | ||
st.markdown("""The complete SmartSim documentation can be found | ||
[here](https://www.craylabs.org/docs/overview.html). | ||
You can also contact us at [email protected].""" | ||
) | ||
You can also contact us at [email protected].""") |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# BSD 2-Clause License | ||
# | ||
# Copyright (c) 2021-2024, Hewlett Packard Enterprise | ||
# All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Oops, something went wrong.