Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
19031c2
feat(geomltoolkits): integration with geomltoolkits for modularization
kshitijrajsharma Mar 25, 2025
e22e411
fix(tile): fixes tile overlap issue
kshitijrajsharma Mar 25, 2025
c7573cb
ci(fix): uses ci and establish poetry
kshitijrajsharma Mar 25, 2025
dbdacee
chore(poetry): bump geomltoolkits version to 0.1.4
kshitijrajsharma Mar 25, 2025
11c87aa
fix(predictor): rename output variable for clarity in TFLite prediction
kshitijrajsharma Mar 25, 2025
a3a5087
fix(predictor): enable georeferencing and update CRS to 3857 in predi…
kshitijrajsharma Mar 26, 2025
d7e9cf4
chore(docker): update Dockerfile for improved dependency management a…
kshitijrajsharma Mar 26, 2025
546a884
fix(fix-tests): fixes
kshitijrajsharma Mar 26, 2025
3a59b01
chore(workflows): update CI configuration to use Poetry for dependenc…
kshitijrajsharma Mar 26, 2025
fc41e27
refactor(doc): adds documentation and builds
kshitijrajsharma Mar 26, 2025
49dd774
fix(prediction): update source URL for tile retrieval in PredictionRe…
kshitijrajsharma Mar 26, 2025
7bdc70b
fix(prediction): update source URL format and improve error handling …
kshitijrajsharma Mar 26, 2025
61fd634
chore(dependencies): update geomltoolkits version to 0.1.6 and improv…
kshitijrajsharma Mar 26, 2025
fbe1a13
fix(prediction): update default vectorization algorithm to use enviro…
kshitijrajsharma Mar 26, 2025
8ed0682
fix(prediction): update checkpoint URL in PredictionRequest and set d…
kshitijrajsharma Mar 26, 2025
77dd6a4
feat(api): add root endpoint to return API information and documentat…
kshitijrajsharma Mar 26, 2025
7fd07bc
fix(default): adds default value for model checkpoitns and image url
kshitijrajsharma Mar 26, 2025
457550f
feat(predictor): add default model URLs for YOLO and RAMP in predicto…
kshitijrajsharma Mar 26, 2025
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
7 changes: 4 additions & 3 deletions .github/workflows/build-and-push-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,16 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install poetry
poetry install --without api --without dev

- name: Build package
run: python setup.py sdist bdist_wheel
run: poetry build
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: twine upload dist/*
run: poetry publish

build-and-push-image:
runs-on: ubuntu-latest
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tensorflow==2.12.0 efficientnet==1.1.1 torch==2.4.1 ultralytics==8.3.26 onnx==1.17.0 onnxruntime==1.19.2
pip install -e .

pip install poetry
poetry install --without api --without dev
- name: Run tests
run: python -m unittest discover -s tests -p 'test_*.py'
run: poetry run python -m unittest discover -s tests -p 'test_*.py'
Loading