Spaces:
Sleeping
Sleeping
Emil Ernerfeldt
commited on
Commit
·
5245583
1
Parent(s):
f44e37f
Rename example to rerun_example_huggingface
Browse files- .vscode/launch.json +2 -2
- main.py +1 -1
- pixi.toml +2 -2
- scripts/generate_changelog.py +1 -1
.vscode/launch.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
| 14 |
},
|
| 15 |
// Rust:
|
| 16 |
{
|
| 17 |
-
"name": "Debug '
|
| 18 |
"type": "lldb",
|
| 19 |
"request": "launch",
|
| 20 |
"cargo": {
|
|
@@ -22,7 +22,7 @@
|
|
| 22 |
"build"
|
| 23 |
],
|
| 24 |
"filter": {
|
| 25 |
-
"name": "
|
| 26 |
"kind": "bin"
|
| 27 |
}
|
| 28 |
},
|
|
|
|
| 14 |
},
|
| 15 |
// Rust:
|
| 16 |
{
|
| 17 |
+
"name": "Debug 'rerun_example_huggingface'",
|
| 18 |
"type": "lldb",
|
| 19 |
"request": "launch",
|
| 20 |
"cargo": {
|
|
|
|
| 22 |
"build"
|
| 23 |
],
|
| 24 |
"filter": {
|
| 25 |
+
"name": "rerun_example_huggingface",
|
| 26 |
"kind": "bin"
|
| 27 |
}
|
| 28 |
},
|
main.py
CHANGED
|
@@ -79,7 +79,7 @@ def main():
|
|
| 79 |
ds_subset = dataset.filter(lambda frame: "episode_id" not in frame or frame["episode_id"] == args.episode_id)
|
| 80 |
|
| 81 |
print("Starting Rerun…")
|
| 82 |
-
rr.init(f"
|
| 83 |
|
| 84 |
print("Logging to Rerun…")
|
| 85 |
log_dataset_to_rerun(ds_subset)
|
|
|
|
| 79 |
ds_subset = dataset.filter(lambda frame: "episode_id" not in frame or frame["episode_id"] == args.episode_id)
|
| 80 |
|
| 81 |
print("Starting Rerun…")
|
| 82 |
+
rr.init(f"rerun_example_huggingface {args.dataset}", spawn=True)
|
| 83 |
|
| 84 |
print("Logging to Rerun…")
|
| 85 |
log_dataset_to_rerun(ds_subset)
|
pixi.toml
CHANGED
|
@@ -10,10 +10,10 @@
|
|
| 10 |
# and `pixi run TASK` to run it (e.g. `pixi run example`).
|
| 11 |
|
| 12 |
[project]
|
| 13 |
-
name = "
|
| 14 |
authors = ["rerun.io <[email protected]>"]
|
| 15 |
channels = ["conda-forge"]
|
| 16 |
-
description = "
|
| 17 |
homepage = "https://rerun.io"
|
| 18 |
license = "MIT OR Apache-2.0"
|
| 19 |
|
|
|
|
| 10 |
# and `pixi run TASK` to run it (e.g. `pixi run example`).
|
| 11 |
|
| 12 |
[project]
|
| 13 |
+
name = "rerun_example_huggingface"
|
| 14 |
authors = ["rerun.io <[email protected]>"]
|
| 15 |
channels = ["conda-forge"]
|
| 16 |
+
description = "rerun_example_huggingface"
|
| 17 |
homepage = "https://rerun.io"
|
| 18 |
license = "MIT OR Apache-2.0"
|
| 19 |
|
scripts/generate_changelog.py
CHANGED
|
@@ -23,7 +23,7 @@ from git import Repo # pip install GitPython
|
|
| 23 |
from tqdm import tqdm
|
| 24 |
|
| 25 |
OWNER = "rerun-io"
|
| 26 |
-
REPO = "
|
| 27 |
INCLUDE_LABELS = False # It adds quite a bit of visual noise
|
| 28 |
OFFICIAL_RERUN_DEVS = [
|
| 29 |
"abey79",
|
|
|
|
| 23 |
from tqdm import tqdm
|
| 24 |
|
| 25 |
OWNER = "rerun-io"
|
| 26 |
+
REPO = "rerun_example_huggingface"
|
| 27 |
INCLUDE_LABELS = False # It adds quite a bit of visual noise
|
| 28 |
OFFICIAL_RERUN_DEVS = [
|
| 29 |
"abey79",
|