Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add group key to hierarchical label definition in notebook 001 #220

Merged
merged 1 commit into from
May 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions notebooks/001_create_project.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -261,13 +261,13 @@
" [\"vehicle\"],\n",
" [\n",
" \"car\",\n",
" {\"name\": \"taxi\", \"parent_id\": \"car\"},\n",
" {\"name\": \"pick-up\", \"parent_id\": \"car\"},\n",
" {\"name\": \"sports car\", \"parent_id\": \"car\"},\n",
" {\"name\": \"taxi\", \"parent_id\": \"car\", \"group\": \"car\"},\n",
" {\"name\": \"pick-up\", \"parent_id\": \"car\", \"group\": \"car\"},\n",
" {\"name\": \"sports car\", \"parent_id\": \"car\", \"group\": \"car\"},\n",
" \"truck\",\n",
" \"bus\",\n",
" {\"name\": \"van\", \"parent_id\": \"bus\"},\n",
" {\"name\": \"school bus\", \"parent_id\": \"bus\"},\n",
" {\"name\": \"van\", \"parent_id\": \"bus\", \"group\": \"bus\"},\n",
" {\"name\": \"school bus\", \"parent_id\": \"bus\", \"group\": \"bus\"},\n",
" ],\n",
"]"
]
Expand Down Expand Up @@ -395,7 +395,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.16"
"version": "3.9.16"
}
},
"nbformat": 4,
Expand Down
Loading