Skip to content

Commit 144473b

Browse files
cebra/umap improvement (#11)
* added self keyword into api docs for cebra and umap * Update README.md Some terminal requires quote around brackets * Update setup.cfg - redundant with [streamlit] * Update setup.cfg - extra space --------- Co-authored-by: Mackenzie Mathis <[email protected]>
1 parent ec944f1 commit 144473b

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
- AmadeusGPT is a Python package hosted on pypi. You can create a virtual env (conda, etc, see below*) or Docker and run:
1414
```python
15-
pip install amadeusgpt[streamlit]
15+
pip install 'amadeusgpt[streamlit]'
1616
```
1717
- If you want the demo, you will also need demo files that are supplied in our repo (see below**), so please git clone the repo. Then, to launch the Demo App execute:
1818
```python

amadeusgpt/modules/api/embedding/cebra.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
def compute_embedding_with_cebra_and_plot_embedding(
2+
self,
23
inputs,
34
n_dimension=3,
45
max_iterations=100,

amadeusgpt/modules/api/embedding/umap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
def compute_embedding_with_umap_and_plot_embedding(
2-
inputs, n_dimension=3, color_by_object=False, color_by_time=False, **kwargs
1+
def compute_embedding_with_umap_and_plot_embedding(
2+
self,inputs, n_dimension=3, color_by_object=False, color_by_time=False, **kwargs
33
):
44
"""
55
Parameters

amadeusgpt/modules/api/kinematics/gait.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
def run_gait_analysis(limb_keypoint_names):
1+
def run_gait_analysis(self,limb_keypoint_names):
22
"""
33
Compute an animal's gait parameters given a list of distal keypoints.
44
Examples
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)