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

Dev #141

Merged
merged 20 commits into from
Feb 12, 2025
Merged

Dev #141

Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
colab step by step
  • Loading branch information
luiztauffer committed Feb 12, 2025
commit 69c615793bf6838de153b9664ac7dcf05311327c
2 changes: 2 additions & 0 deletions docs/vame-docs-app/docs/getting_started/step_by_step.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ title: VAME step-by-step
sidebar_position: 2
---

[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/EthoML/VAME/blob/dev/examples/demo.ipynb)

The VAME workflow consists of four main steps, plus optional steps to analyse your data:
1. Initialize project: This is step is responsible by starting the project, getting your pose estimation data into the right format
2. Preprocess: This step is responsible for cleaning, filtering and aligning the pose estimation data
Expand Down
23 changes: 17 additions & 6 deletions examples/demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,29 @@
"- clustering the motifs into communities\n",
"- visualizing the results\n",
"\n",
"Let's start by importing the necessary libraries:"
"If you haven't yet, please install VAME by running `pip`:"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "2a9c4951-4ff1-4604-be12-0a7851aef6d3",
"metadata": {},
"metadata": {
"vscode": {
"languageId": "bat"
}
},
"outputs": [],
"source": [
"%load_ext autoreload\n",
"%autoreload 2"
"pip install vame"
]
},
{
"cell_type": "markdown",
"id": "ade5d437",
"metadata": {},
"source": [
"Let's start by importing the necessary libraries:"
]
},
{
Expand Down Expand Up @@ -424,9 +435,9 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python [conda env:vame] *",
"display_name": "vame",
"language": "python",
"name": "conda-env-vame-py"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
Expand Down
Loading