Skip to content

Commit

Permalink
rename pacakge
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas-UI committed Apr 6, 2024
1 parent 8288de3 commit ad297f6
Show file tree
Hide file tree
Showing 17 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# How to use
```python
from x3d_m import Model, save_video_stream_predictions
from vcab import Model, save_video_stream_predictions

video_path = "example.mp4"

Expand Down
2 changes: 1 addition & 1 deletion index.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from x3d_m import Model, save_video_stream_predictions
from vcab import Model, save_video_stream_predictions

video_path = r"v_ArmFlapping_01.mp4"
predictions = Model().predict_stream(video_path=video_path)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
description="""A tool to classify autism behaviour in children using deep learning model""",
long_description_content_type="text/markdown",
author="Andreas Susanto",
packages=find_packages(include=["x3d_m"]),
packages=find_packages(include=["vcab"]),
install_requires=required,
license="MIT",
url="https://github.com/Andreas-UI/VCAB",
Expand Down
4 changes: 2 additions & 2 deletions test_predict_stream.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from x3d_m import Model, save_video_stream_predictions
from vcab import Model, save_video_stream_predictions


def test_predict_stream():
Expand All @@ -8,4 +8,4 @@ def test_predict_stream():
save_video_stream_predictions(
video_path=video_path, predictions=predictions, output_path="output/v_ArmFlapping_01.mp4")
except Exception as e:
assert False, f"Exception occured: {e}"
assert False, f"Exception occured: {e}"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ad297f6

Please sign in to comment.