mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-09 11:28:14 +08:00
Update README and add ogp for optuna-dashboard-wasm
This commit is contained in:
@@ -39,11 +39,7 @@ jobs:
|
||||
mkdir gh-publish
|
||||
cp -r standalone_app/public gh-publish/public
|
||||
cp standalone_app/favicon.ico gh-publish/favicon.ico
|
||||
- name: Create index.html
|
||||
run: |
|
||||
cp standalone_app/index.html gh-publish/index.html
|
||||
sed -i "s|/public/bundle.js|/optuna-dashboard/public/bundle.js|g" ./gh-publish/index.html
|
||||
sed -i "s|/favicon.ico|/optuna-dashboard/favicon.ico|g" ./gh-publish/index.html
|
||||
cp standalone_app/github-pages.html gh-publish/index.html
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v2
|
||||
with:
|
||||
|
||||
@@ -75,27 +75,26 @@ $ docker run -it --rm -p 8080:8080 ghcr.io/optuna/optuna-dashboard postgresql+ps
|
||||
|
||||
</details>
|
||||
|
||||
## Browser-only version (Experimental)
|
||||
|
||||
<img src="./docs/_static/browser-app.gif" style="width:600" alt="Browser-only version">
|
||||
|
||||
We’ve developed the version that operates solely within your web browser, which internally uses SQLite3 Wasm and Rust.
|
||||
There’s no need to install Python or any other dependencies.
|
||||
Simply open the following URL in your browser, drag and drop your SQLite3 file onto the page, and you’re ready to view your Optuna studies!
|
||||
|
||||
https://optuna.github.io/optuna-dashboard/
|
||||
|
||||
*Please note that only a subset of features is available. However, you can still check the optimization history, hyperparameter importances, and etc. in graphs and tables.*
|
||||
|
||||
## VS Code Extension (Experimental)
|
||||
|
||||
You can install the VS Code extension via [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=Optuna.optuna-dashboard#overview).
|
||||
|
||||

|
||||
<img src="./docs/_static/vscode-extension.png" style="width:600" alt="VSCode Extension">
|
||||
|
||||
Please right-click the SQLite3 files (`*.db` or `*.sqlite3`) in the VS Code file explorer and select the "Open in Optuna Dashboard" command from the dropdown menu.
|
||||
|
||||
## Features
|
||||
|
||||
### Manage Studies
|
||||
|
||||
You can create and delete studies from Dashboard.
|
||||
|
||||

|
||||
|
||||
### Visualize with Interactive Graphs & Rich Trials Data Grid
|
||||
|
||||
You can check the optimization history, hyperparameter importances, etc. in graphs and tables.
|
||||
|
||||

|
||||
This extension leverages the browser-only version of Optuna Dashboard, so the same limitations apply.
|
||||
|
||||
## Submitting patches
|
||||
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Optuna Dashboard (Wasm ver.)</title>
|
||||
<script defer type="module" src="/optuna-dashboard/public/bundle.js"></script>
|
||||
<link rel="icon" href="/optuna-dashboard/favicon.ico" />
|
||||
|
||||
<!-- ogp -->
|
||||
<meta property="og:title" content="Optuna Dashboard (Wasm ver.)" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://optuna.github.io/optuna-dashboard/" />
|
||||
<meta property="og:image" content="/img/ogp_image.png" />
|
||||
<meta property="og:description" content="Web Dashboard for Optuna, Python library for hyperparameter optimization" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user