Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
ocr4all-pixel-classifier
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ocr4all-page-segmentation
ocr4all-pixel-classifier
Compare revisions
933f7bfcbec919400327ee2ba35b35677aed2b0b to af4b7f6832447a0ab6f6af9efe85adee9fddb157
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ocr4all-page-segmentation/ocr4all-pixel-classifier
Select target project
No results found
af4b7f6832447a0ab6f6af9efe85adee9fddb157
Select Git revision
Swap
Target
ocr4all-page-segmentation/ocr4all-pixel-classifier
Select target project
ocr4all-page-segmentation/ocr4all-pixel-classifier
1 result
933f7bfcbec919400327ee2ba35b35677aed2b0b
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Bump version: 0.6.5 → 0.6.6
· 95820f71
Alexander Gehrke
authored
3 years ago
95820f71
Don't try upgrading non-existent models
· af4b7f68
Alexander Gehrke
authored
2 years ago
af4b7f68
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.bumpversion.cfg
+1
-1
1 addition, 1 deletion
.bumpversion.cfg
ocr4all_pixel_classifier/lib/network.py
+1
-1
1 addition, 1 deletion
ocr4all_pixel_classifier/lib/network.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
3 additions
and
3 deletions
.bumpversion.cfg
View file @
af4b7f68
[bumpversion]
current_version
=
0.6.
5
current_version
=
0.6.
6
commit
=
True
tag
=
True
...
...
This diff is collapsed.
Click to expand it.
ocr4all_pixel_classifier/lib/network.py
View file @
af4b7f68
...
...
@@ -57,7 +57,7 @@ class Network:
self
.
binary
=
tf
.
keras
.
layers
.
Input
((
None
,
None
,
1
))
model
=
model
if
not
model
or
'
.
'
in
model
else
model
+
'
.h5
'
if
model
and
not
os
.
path
.
exists
(
model
)
and
model
.
endswith
(
'
.h5
'
):
if
model
and
not
os
.
path
.
exists
(
model
)
and
model
.
endswith
(
'
.h5
'
)
and
os
.
path
.
exists
(
model
[:
-
3
]
+
'
.meta
'
)
:
from
subprocess
import
check_call
import
sys
from
pathlib
import
Path
...
...
This diff is collapsed.
Click to expand it.
setup.py
View file @
af4b7f68
...
...
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setup
(
name
=
'
ocr4all_pixel_classifier
'
,
version
=
'
0.6.
5
'
,
version
=
'
0.6.
6
'
,
packages
=
find_packages
(),
long_description
=
long_description
,
...
...
This diff is collapsed.
Click to expand it.