Skip to content
Closed
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,20 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install compatible virtualenv and pip
run: |
pip install --upgrade pip
pip install virtualenv==20.30.0
- name: Remove Poetry cache to avoid stale virtualenv
run: |
rm -rf ~/.cache/pypoetry
- name: install poetry
uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
- name: Configure Poetry to disable virtualenv creation
run: |
poetry config virtualenvs.create false
- name: show python version ${{ env.PYTHON_VERSION }}
run: |
poetry run python --version
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ install-extras: install ## Install the package from source with extra dependenc
poetry run pip install numpy framegrab[youtube]

install-lint: ## Only install the linter dependencies
poetry install --only lint
poetry install -vvv --only lint

install-dev: ## Only install the dev dependencies
poetry install --only dev
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ print(f"The answer is {image_query.result}")

Your images are first analyzed by machine learning (ML) models which are automatically trained on your data. If those models have high enough confidence, that's your answer. But if the models are unsure, then the images are progressively escalated to more resource-intensive analysis methods up to real-time human review. So what you get is a computer vision system that starts working right away without even needing to first gather and label a dataset. At first it will operate with high latency, because people need to review the image queries. But over time, the ML systems will learn and improve so queries come back faster with higher confidence.

### Extra session

Hello, please trigger a github action.

## Learn more

Some more resources you might like:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ python-dateutil = "^2.9.0"
requests = "^2.28.2"
typer = "^0.12.3"
urllib3 = "^1.26.9"
virtualenv = ">=20.30,<20.31" # TODO: unpin when fixed?

[tool.poetry.group.dev.dependencies]
datamodel-code-generator = "^0.22.1"
Expand Down
Loading