From 919d89af4b1e44d30e04a883274f92604b7c70a5 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 5 Jun 2019 00:13:32 +0800 Subject: [PATCH] data ready --- .DS_Store | Bin 0 -> 6148 bytes ._.DS_Store | Bin 0 -> 4096 bytes .gitignore | 1 + .idea/misc.xml | 4 + .idea/modules.xml | 8 + .idea/ocrcn_tf2.iml | 11 + .idea/vcs.xml | 6 + .idea/workspace.xml | 251 ++++++++++++++++++ dataset/.DS_Store | Bin 0 -> 6148 bytes dataset/._.DS_Store | Bin 0 -> 4096 bytes dataset/.gitignore | 3 +- dataset/casia_hwdb.py | 102 +++---- dataset/charactors.txt | 0 dataset/convert_to_tfrecord.py | 40 +-- ..._hwdb_1.0_1.1.tfrecord => dataset_hwdb.py} | 0 dataset/get_hwdb_1.0_1.1.sh | 0 readme.md | 6 + sample.png | Bin samples/.gitignore | 0 samples/001-f.gnt | Bin samples/sample.png | Bin tests.py | 0 train.py | 0 23 files changed, 364 insertions(+), 68 deletions(-) create mode 100755 .DS_Store create mode 100755 ._.DS_Store create mode 100755 .gitignore create mode 100755 .idea/misc.xml create mode 100755 .idea/modules.xml create mode 100755 .idea/ocrcn_tf2.iml create mode 100755 .idea/vcs.xml create mode 100755 .idea/workspace.xml create mode 100755 dataset/.DS_Store create mode 100755 dataset/._.DS_Store mode change 100644 => 100755 dataset/.gitignore mode change 100644 => 100755 dataset/casia_hwdb.py mode change 100644 => 100755 dataset/charactors.txt mode change 100644 => 100755 dataset/convert_to_tfrecord.py rename dataset/{casia_hwdb_1.0_1.1.tfrecord => dataset_hwdb.py} (100%) mode change 100644 => 100755 mode change 100644 => 100755 dataset/get_hwdb_1.0_1.1.sh mode change 100644 => 100755 readme.md mode change 100644 => 100755 sample.png mode change 100644 => 100755 samples/.gitignore mode change 100644 => 100755 samples/001-f.gnt mode change 100644 => 100755 samples/sample.png mode change 100644 => 100755 tests.py create mode 100755 train.py diff --git a/.DS_Store b/.DS_Store new file mode 100755 index 0000000000000000000000000000000000000000..bb3993eefd5c6c0d458bed205a89a8d8b05241a0 GIT binary patch literal 6148 zcmeHK%Wl&^6upxgVizH@Kx&uXu(P71K?y97tWXx+AsN8}P-|l=wdC57?GP1{%F8ZU z0$&7Qz?LO{0cRed*ln|f3eA!3oO#?k)|_k4c!-Ei7vYeoM?@x!v$2ih67X?u7tm2X zx4?|gagbzhf+P#j<`ZgY1+)U!TLJ#<8q}v5#Z)%GU-koI&QAfch%SZXQwb|5YJ1aQ zvv;s8=4x;F8qAZpC6L!DD5ie?lDD4v<#C|u&$2A} zQ}=`CakM<_-F=*;r5~qJE`sAQg3GHHaT;dJX|_niLd@gI0r8;2-fmS5$79Fd8||$e zyP8Y}j(vYLUac&1=iczq!O_X-yXyVw?2}kFF>G!EcNG7oISdF$nAlBF|@@F3r4*g&@c>f+ZQZ1WDVtGJeo9)QVE zuncADiow*)fyr=;yUM?oEW?S3Cu1JH@l69#S&6TVNEAU?_z>Ixwe~Klkv-QH__*rYij$jGU!4p@K+W11$B7wRsaA1 literal 0 HcmV?d00001 diff --git a/._.DS_Store b/._.DS_Store new file mode 100755 index 0000000000000000000000000000000000000000..9ad849cdb9e467065f3aa98e6e57ed2552be42dd GIT binary patch literal 4096 zcmZQz6=P>$Vqox1Ojhs@R)|o50+1L3ClDJkFz{^v(m+1nBL)UWIhYCu0iY;W;207T zWIgNTe~1o-3apAo1xG_*Gz3ONU^E0qLtr!nMnhmU1V%$(Gz3ONU^E0qLx9R5zz8%C zguy^ABqOs}p(wRDzqBYhRUs|EC|e;juOv0EBr`uRF(;=|AtyDhL?J0BF)tg~)rIOB Q(iE!y;a-tpko*510KSwTa{vGU literal 0 HcmV?d00001 diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..1d74e21 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vscode/ diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100755 index 0000000..65531ca --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100755 index 0000000..d875ec3 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/ocrcn_tf2.iml b/.idea/ocrcn_tf2.iml new file mode 100755 index 0000000..6711606 --- /dev/null +++ b/.idea/ocrcn_tf2.iml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100755 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100755 index 0000000..bdd3ca6 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,251 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +