kba
9367f86483
remove setup.py stub completely
2024-08-29 17:06:39 +02:00
kba
62314c453c
fully transition to pyproject
2024-08-27 15:04:57 +02:00
kba
a5c7f223d1
📦 v0.3.1
2024-08-27 14:59:13 +02:00
kba
9ae0575436
📝 changelog
2024-08-27 14:52:01 +02:00
Clemens Neudecker
78bfa97c06
Merge pull request #129 from qurator-spk/resolving_issue_106
...
fix OCR-D regression
2024-08-23 14:10:26 +02:00
kba
84d05bd0ae
s,url,local_filename,
2024-08-23 14:01:20 +02:00
cneud
7f99526b9d
update Makefile model location
2024-08-15 23:59:18 +02:00
cneud
8f76966394
update pyproject.toml for v0.3.1
2024-08-14 19:51:48 +02:00
cneud
28ee1e527e
update pyproject.toml for v0.3.1
2024-08-14 19:50:57 +02:00
Clemens Neudecker
23ac58405c
update pyproject.toml
2024-08-13 21:47:32 +02:00
vahidrezanezhad
e3edb0ec30
update
2024-08-09 02:23:17 +02:00
cneud
f0e7f75499
Update README.md
2024-08-01 00:30:25 +02:00
cneud
7ded54a8d2
rename GH action
2024-08-01 00:25:31 +02:00
cneud
c9f63826c0
create draft pyproject.toml
2024-08-01 00:13:42 +02:00
cneud
8862df9156
format options table
2024-07-31 22:53:36 +02:00
cneud
38698c6609
Update README.md
2024-07-31 21:16:02 +02:00
cneud
40f5408b1e
improve huggingface url
2024-07-31 20:02:56 +02:00
cneud
3cfa447e84
remove CircleCI
2024-07-31 20:01:36 +02:00
cneud
ad133e3425
Update model download url
2024-07-31 19:49:43 +02:00
vahidrezanezhad
721d3f70a0
Merge pull request #127 from bertsky/new-namespace-pkg
...
non-legacy namespace package
2024-05-24 16:47:48 +02:00
Robert Sachunsky
45bd76f5e8
fix namespace pkg setup
2024-05-24 14:27:56 +00:00
Robert Sachunsky
f88ee99f3c
non-legacy namespace package
2024-05-23 21:17:38 +02:00
Clemens Neudecker
899bb9f00c
update GitHub actions
2024-04-10 15:27:29 +02:00
Clemens Neudecker
ba64282118
Update README.md
2024-04-03 19:58:24 +02:00
Clemens Neudecker
533736a3e3
update supported Python+Tensorflow version combinations
2024-03-20 00:28:22 +01:00
cneud
b3fa684395
pin tf2 version to 2.12.1
...
until we fix keras compatibility
2024-03-19 20:30:40 +01:00
cneud
f09b7c1bef
use tf1 compatibility for keras backend
2024-03-19 20:29:10 +01:00
vahidrezanezhad
6018b354aa
comment unnecessary print commands
2023-11-27 17:23:34 +01:00
Clemens Neudecker
f2811ee469
add supported OS to readme
2023-10-24 17:32:06 +02:00
vahidrezanezhad
7983a65006
filtering separators in a correct way without missing them
2023-10-14 13:31:56 +02:00
vahidrezanezhad
fc9e9cc29f
Merge pull request #117 from qurator-spk/tf-2.12-or-greater
...
Update tensorflow
2023-09-29 05:30:19 -04:00
cneud
4254ce3bdb
Update README.md
2023-09-26 18:54:14 +02:00
cneud
56934c876a
remove duplicate test for Python 3.8
2023-09-26 18:53:10 +02:00
Clemens Neudecker
6c65fc4dfe
Update config.yml
2023-09-26 18:33:05 +02:00
Clemens Neudecker
9d3a1a5b76
Update test-eynollah.yml
2023-09-26 18:32:20 +02:00
Clemens Neudecker
03bfd7a390
Update requirements.txt
...
Update to `tensorflow>=2.12` (drops Python 3.7 support)
* fix #114
* fix #115
Tested by @vahidrezanezhad @cneud
2023-09-26 18:16:20 +02:00
vahidrezanezhad
7a70b20c77
apply missed commit # a56988a
back
2023-09-05 13:43:11 +02:00
vahidrezanezhad
0ea90b7509
Merge pull request #116 from qurator-spk/fix-typos
...
fix some typos
2023-08-18 08:23:23 -04:00
vahidrezanezhad
830b0fc8fa
Merge pull request #113 from qurator-spk/tf_<2.12.0
...
introduce (temporary) upper bounds for tensorflow and numpy version
2023-08-18 08:03:04 -04:00
cneud
d3b06baa84
fix some typos
2023-08-18 02:52:49 +02:00
Clemens Neudecker
3e62657570
added the TF upper bound in the README
2023-08-17 23:02:10 +02:00
Clemens Neudecker
b58a327c5d
cap numpy to <1.24.0
...
OK so now numpy is the culprit (shipped unbound via ocrd) which had several deprecations expire with release of v1.24.0 that require changes to our codebase, e.g.
* The deprecation for the aliases np.object, np.bool, np.float, np.complex, np.str, and np.int is expired
* Ragged array creation will now always raise a ValueError unless dtype=object is passed.
See also here: https://numpy.org/devdocs/release/1.24.0-notes.html#expired-deprecations
2023-08-17 22:07:45 +02:00
Clemens Neudecker
935332e863
test fix for keras.backend import error with Python 3.8
2023-08-17 21:45:48 +02:00
Clemens Neudecker
e5acee09ab
cap tensorflow version to <2.12.0
...
Cap tensorflow version to <2.12.0 until we have time to adapt to the API changes such as e.g.
* Support for Python 3.11 has been added.
* Support for Python 3.7 has been removed.
See also https://github.com/tensorflow/tensorflow/releases/tag/v2.12.0 .
2023-08-17 21:05:51 +02:00
Clemens Neudecker
6ba5cdcc11
Update citation
2023-08-14 22:16:51 +02:00
Clemens Neudecker
2db588a146
Update bibtex entry
2023-08-09 18:39:49 +02:00
Clemens Neudecker
aad80696e6
format citation info as bibtex
2023-06-23 14:04:24 +02:00
Clemens Neudecker
a0949fd74a
add HIP'23 paper reference
2023-06-23 13:54:04 +02:00
vahidrezanezhad
5f7d9a475c
Merge pull request #109 from bertsky/patch-3
...
pil_cv2.check_dpi: fix class membership test
2023-06-21 16:37:16 +02:00
Clemens Neudecker
bafad0c511
Merge pull request #105 from bertsky/fix-model-archive-path
...
update tool json resource path_in_archive
2023-06-19 12:54:47 +02:00