Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ocr4all-page-segmentation/ocr4all-pixel-classifier
1 result
Show changes
Commits on Source (2)
[bumpversion]
current_version = 0.6.5
current_version = 0.6.6
commit = True
tag = True
......
......@@ -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
......
......@@ -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,
......