bplusplus 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of bplusplus might be problematic. Click here for more details.
- {bplusplus-0.1.0 → bplusplus-0.1.1}/PKG-INFO +7 -1
- {bplusplus-0.1.0 → bplusplus-0.1.1}/README.md +6 -0
- {bplusplus-0.1.0 → bplusplus-0.1.1}/pyproject.toml +2 -3
- {bplusplus-0.1.0 → bplusplus-0.1.1}/LICENSE +0 -0
- {bplusplus-0.1.0 → bplusplus-0.1.1}/src/bplusplus/__init__.py +0 -0
- {bplusplus-0.1.0 → bplusplus-0.1.1}/src/bplusplus/build_model.py +0 -0
- {bplusplus-0.1.0 → bplusplus-0.1.1}/src/bplusplus/collect_images.py +0 -0
- {bplusplus-0.1.0 → bplusplus-0.1.1}/src/bplusplus/train_validate.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: bplusplus
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A simple method to create AI models for biodiversity
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Titus Venverloo
|
|
@@ -20,10 +20,16 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
|
|
21
21
|
# B++ repository
|
|
22
22
|
|
|
23
|
+
[](https://zenodo.org/badge/latestdoi/)
|
|
24
|
+
[](https://badge.fury.io/py/bplusplus)
|
|
25
|
+
|
|
23
26
|
This repo can be used to quickly generate YOLOv8 models for biodiversity monitoring, relying on Ultralytics and a GBIF dataset.
|
|
24
27
|
|
|
25
28
|
All code is tested on macOS and Python 3.12, without GPU. GPU would obviously accelerate the below steps, Ultralytics should automatically select the available GPU if there is any.
|
|
26
29
|
|
|
30
|
+
## GitHub
|
|
31
|
+
https://github.com/Tvenver/Bplusplus
|
|
32
|
+
|
|
27
33
|
|
|
28
34
|
# How does it work?
|
|
29
35
|
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
# B++ repository
|
|
2
2
|
|
|
3
|
+
[](https://zenodo.org/badge/latestdoi/)
|
|
4
|
+
[](https://badge.fury.io/py/bplusplus)
|
|
5
|
+
|
|
3
6
|
This repo can be used to quickly generate YOLOv8 models for biodiversity monitoring, relying on Ultralytics and a GBIF dataset.
|
|
4
7
|
|
|
5
8
|
All code is tested on macOS and Python 3.12, without GPU. GPU would obviously accelerate the below steps, Ultralytics should automatically select the available GPU if there is any.
|
|
6
9
|
|
|
10
|
+
## GitHub
|
|
11
|
+
https://github.com/Tvenver/Bplusplus
|
|
12
|
+
|
|
7
13
|
|
|
8
14
|
# How does it work?
|
|
9
15
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "bplusplus"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "A simple method to create AI models for biodiversity"
|
|
5
5
|
authors = ["Titus Venverloo <tvenver@mit.edu>", "Deniz Aydemir <deniz@aydemir.us>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -13,11 +13,10 @@ ultralytics = "8.0.195"
|
|
|
13
13
|
pygbif = "^0.6.4"
|
|
14
14
|
validators = "^0.33.0"
|
|
15
15
|
|
|
16
|
-
|
|
17
16
|
[tool.poetry.group.dev.dependencies]
|
|
18
17
|
jupyter = "^1.0.0"
|
|
19
18
|
ipykernel = "^6.29.5"
|
|
20
19
|
|
|
21
20
|
[build-system]
|
|
22
|
-
requires = ["poetry-core"]
|
|
21
|
+
requires = ["poetry-core>=1.0.0"]
|
|
23
22
|
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|