From 26b210b04df5a70820bcaa9f0d01a3e566671ef7 Mon Sep 17 00:00:00 2001 From: dario Date: Wed, 2 Jun 2021 11:53:31 +0200 Subject: [PATCH 1/4] option to set the integer name when saving to file --- etldr/etl_data_reader.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/etldr/etl_data_reader.py b/etldr/etl_data_reader.py index ba87885..4a1880b 100644 --- a/etldr/etl_data_reader.py +++ b/etldr/etl_data_reader.py @@ -527,7 +527,7 @@ def select_entries(self, label : str, include : List[ETLCharacterGroups] = [ETLC return should_include - def save_to_file(self, x : np.ndarray, y : np.ndarray, save_to : str): + def save_to_file(self, x : np.ndarray, y : np.ndarray, save_to : str, name : int = 1): """ Saves all images and labels to file. @@ -546,6 +546,7 @@ def save_to_file(self, x : np.ndarray, y : np.ndarray, save_to : str): x : a numpy array containing all images. y : a numpy array containing all labels. save_to : the path to the folder where the image and labels should be saved + name : an integer from which the names should start (Defaults to 1). """ if(save_to != ""): @@ -555,6 +556,7 @@ def save_to_file(self, x : np.ndarray, y : np.ndarray, save_to : str): unique_labels = np.unique(y) class_dict = {} for cnt, i in enumerate(unique_labels): + cnt += name if(not os.path.isdir(os.path.join(save_to, str(cnt)))): os.mkdir(os.path.join(save_to, str(cnt))) @@ -564,6 +566,7 @@ def save_to_file(self, x : np.ndarray, y : np.ndarray, save_to : str): # save all images to the matching folders with tqdm(total=len(x)) as pbar: for cnt, img in enumerate(x): + cnt += name # image was normalized between (range: [0, 1]) if(img.max() <= 1): p_img = ((img * 255).astype(np.uint8)).reshape(img.shape[0], img.shape[1]) From 167d0d8a1f92eb1c517166ed983b4f04e38351a8 Mon Sep 17 00:00:00 2001 From: dario Date: Wed, 2 Jun 2021 23:34:05 +0200 Subject: [PATCH 2/4] bumped version --- docs/source/conf.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 7922df6..d629bd0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -42,7 +42,7 @@ author = 'CaptainDario' # The full version, including alpha/beta/rc tags -release = '2.1.2' +release = '2.1.3' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index eb094bd..669df24 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="etl_data_reader-CaptainDario", - version="2.1.2", + version="2.1.3", author="CaptainDario", author_email="daapplab@gmail.com", description="A python package for conveniently handling the ETL data set", From 42eb41a9a530b5503cd75a2dcacca417a867db36 Mon Sep 17 00:00:00 2001 From: dario Date: Thu, 3 Jun 2021 10:09:20 +0200 Subject: [PATCH 3/4] updated download link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e94053e..36fa3d6 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ pip install .\path\to\etl_data_reader_CaptainDario-2.0-py3-none-any.whl ``` Or install it directly via https: ```bash -pip install https://github.com/CaptainDario/ETLCDB_data_reader/releases/download/v2.1.2/etl_data_reader_CaptainDario-2.1.2-py3-none-any.whl +pip install https://github.com/CaptainDario/ETLCDB_data_reader/releases/download/v2.1.3/etl_data_reader_CaptainDario-2.1.3-py3-none-any.whl ``` Assuming you already have [downloaded the ETLCDB](http://etlcdb.db.aist.go.jp/obtaining-etl-character-database). You have to do some renaming of the data set folders and files. From 6c90e70bcb68f590f11774dbb3f833fd3a7c589e Mon Sep 17 00:00:00 2001 From: dario Date: Thu, 3 Jun 2021 10:20:04 +0200 Subject: [PATCH 4/4] updated docs --- CHANGELOG.md | 6 ++++++ docs/build/.buildinfo | 2 +- docs/build/.doctrees/CHANGELOG.doctree | Bin 8710 -> 9625 bytes docs/build/.doctrees/README.doctree | Bin 63278 -> 63286 bytes docs/build/.doctrees/environment.pickle | Bin 46844 -> 47219 bytes docs/build/.doctrees/etl_data_reader.doctree | Bin 91000 -> 92329 bytes docs/build/.doctrees/getting_started.doctree | Bin 64038 -> 64046 bytes docs/build/API.html | 6 +++--- docs/build/CHANGELOG.html | 15 ++++++++++++--- docs/build/README.html | 8 ++++---- docs/build/_sources/CHANGELOG.rst.txt | 10 ++++++++++ docs/build/_sources/README.rst.txt | 2 +- docs/build/_static/documentation_options.js | 2 +- docs/build/etl_character_groups.html | 6 +++--- docs/build/etl_codes.html | 6 +++--- docs/build/etl_data_names.html | 6 +++--- docs/build/etl_data_reader.html | 9 +++++---- docs/build/etl_data_set_info.html | 6 +++--- docs/build/genindex.html | 6 +++--- docs/build/getting_started.html | 8 ++++---- docs/build/index.html | 7 ++++--- docs/build/indices_and_tables.html | 6 +++--- docs/build/py-modindex.html | 6 +++--- docs/build/search.html | 6 +++--- docs/build/searchindex.js | 2 +- docs/source/CHANGELOG.rst | 10 ++++++++++ 26 files changed, 86 insertions(+), 49 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c230528..6640e06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # ETL Data Reader : Changelog +## v 2.1.3 + +features: + - parameter to set the integer from which the folder names will start when saving to file + +------------------------------------------------------------ ## v 2.1.2 fixed: diff --git a/docs/build/.buildinfo b/docs/build/.buildinfo index 803bb2a..8a047da 100644 --- a/docs/build/.buildinfo +++ b/docs/build/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 736bcd7f38135bac932ee6dcc0de3dc9 +config: e9e905340ecac7d6908d98bcd879dafa tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/build/.doctrees/CHANGELOG.doctree b/docs/build/.doctrees/CHANGELOG.doctree index fe021a310181e9e7898754ba1070dff075c40906..e1aa71687f9075aa0049e7c4bf46fc155a8ac0ff 100644 GIT binary patch delta 1661 zcmbtUZD?Cn7|yxLO>VL@P1+<)m+Edm(xqvewM|z$MQx?7Y@J~^(QQ&Si%C!J(sbmb zTcur{u#vHL>fY?fPy|sahzx2%RT$X)5K$Sk6J{NV{`IGYihl;a=bW~Iw4mUhmz(!_ z-sgGGb5HK2p&KLeoAULmzD4;qafAxgG+LnUIn$)t6YLI#;AawtUmdM5Dn;S8R6l$C zOe7r{k7Z+NH9MhZVp%myV`?Imjg4U|o}L(2&(cJc@^*Y8`8sw}IFM1#CXz`tlZ~Xa z$cUxXOk^^V8e=N)L^5U(&QG;nD9jZ6RGxcjN2A&Q@3eWuoelm)KlC4tQn*;yI0QXO zz4SP&RQchg;W3!E?gqQD&lxI2XcNZVGFm7H{m}g=oHGuYr)dLir;m(O!JwrTz9!A` zJc?X_cP*VZnx};7HwbnJn}YIt2;P7TrXINlpYo9MxZy~Z6&^?@$Y;>2A0|cklc@3{ zqBr3~{X2%6xl=J1^!Q{Kwmt=7YnJE&gsVO9zTq!<6`S|@#>dQUWC3REerK9yax_4n z+c0Kxc?cR0%l6zUIsTN4=U1Z#%k)1k08Nc-f?yHJ9ku zV!sn!@hC8`%OFVvlAdPx#gr$X!>~T2*E$IN?rKtSXU&fja7!6i_|wMfaMWs$S_s(P zt)vlVtnHO6syHdZirWcK8%?lc?vcHlt8N9{gaJRRP_a>*ZEBCQALWF7@S~$wnG}rd z=FY~wC>~`yw}7^*Xucxw%WUU>F@WGjvDsTYZN~5@+_LUhJ`r;tZRvJw>U!`E4v;07 zuR35}609$U`aYzTg!&?kRC{62c9h(KYqk^SJA!yu5WA50Lz#FN0=2J_MR>!$Eh;7% z#i;7xp1n)uU z;{xi3-(2nT6A1M}wR^ABEx~zfz*TX}7+xd6_qF}X3u5khF8Sn^Bz2~ggn-7lJ&M_B~L&_c(t#EmUkDNyQHB@hNSK>?(x47p%B=>ELW{5{KTi2+3 zCH%hFil)RGgi~Q7W&m>6az)kyBcqv!I zg1uE9r+!*S1G`<&Bve4BLl@}_mJ){rN2!{@{w67*Ym$%(uN)O3oo4PS22=}K2tbwS z1=+8_9%YCefrPk)d_qMT8~qqDs29#VHv@Gx2zX3(ESHeCu;?uI+@tp+w3O~mYIu3c zru1Ec%2FS}54n#qHY--gK1-94f()riI>Ziks3hR_m8SNCmUx2@PWV`0`6fOz(VQf?)dqA$7jQaytTlMV?-oM#>U8co?ZBvqKt zDIzYWT=GvGTn6%A1+}U@y`4<@(1aYb(H`B diff --git a/docs/build/.doctrees/README.doctree b/docs/build/.doctrees/README.doctree index 74cf531bbb1c3358d784543258f2501f7c4b5e92..68fbc58d20274d8f8ceb23ba4866f9f960532d9c 100644 GIT binary patch delta 56 wcmZ4Yj(OWVW|julsoEP^J`^!_PySjI%A{vJ*{fI)L}eFCqKj?*U2NP80CTbxEC2ui delta 48 vcmdn?j(OcXW|julsmdE!J`^#wPwp%Zo&2C!adLjKBoc2`p~7b665(b523Hip diff --git a/docs/build/.doctrees/environment.pickle b/docs/build/.doctrees/environment.pickle index 7ffed4ba565966eb7b7553b25882d1c1b51733af..15da13ae5fdcd77970c83ababe4b01f4086d782b 100644 GIT binary patch delta 4359 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 delta 4254 zcmaJ^X;4(z73Mxcp;?rDPzOP51Z8WGEsEL*Hj7{*g1gwzE%1~EyFsNC#mHc=T3OD+ z6&G9(1!ZTPGKn!&Novg0M8`eOWK5aTvD8tAn5juQG3Vab%TrVNbM86cckbEVdHrDI zCHLkz=TPg=`f9k(p_7p4feYk2M-mPDWl3nU6<0R#&;cK&z?L6c}_Gt_dRB8&>>x_bF^rBQ{ zN>-}S6670aaJhf!BqP^w>BE{J6O z$4QntL|~R|MW-qt!ZJeDQv(^_3Ugg`ZmR8-ucUY~G(pGp7Gz@)HlHrDY0*p-A z1TWPqfy|Gi^pm4=z!|rNYXKIHu$^)X@l!iCqs4E3DVBA z+2LCtKP(8o4!`Y9YvJogp`dl}`>ED3@TZ7KPkTzi^;$nzGiwpv4u!qRxfn~C|0kT&)O%D0Ldnl-Bp39A7x8PKTK6bx^k06TV&)1>TFIVO)w2 zdK@*(Brhzfo>@|HPey~rc!2mo-(nT>l7oMq4>aZ0lP9c-9iQM1rEIhFfWI`mrb+&K1@(I3MQJ$+=n!RjvzzDOwA)dF@OH*3p5!SsM?B zb@g1NBdgz?9=7`Ta5pUhd`e@v>$U>EWCd`wV%u6<+Zyq4FK~ttWdQtc!y6DOD9LthHJm!`m!jcl#$cj7XGX;~GQE~Afo-22N7?wb=>=jWEkaPycCTZy?; zRdPuf(X!p#Mn-@1ehBe*!zku{vT_zzVGC1c4MX>NlFYgfy--n;Oj=MT(2ZxK^anZw z+;Q%r7_7Bm5;tTE*3W{Or;bYw)!W2L$Tf2KVVk()KZ{oz3In-++phj7*6~l;P9E$k zn#u(_vspQ6C&G6->Nzt*w>(v3YIPH!a3^ClpEQBCPR!+691QpB7))EbZEH!~6WYSQ zl6dZ*7-eed6mFlh^-Tk+DzOFHeWvZR}DF1>31V@H2a=py5q+rdUq8kf8>n6 zNZs@k^B6S{LU#x?LI|6CHvbf%Z2p-ud|`?S{GJ&vm=u4!UZUQ>ze2f6;76QK2J9ik z7XtShPzrmuqI7TEi1JsBTU~rz?Ceax&{vfe>I~4nHxA}E#Ur(?i8{P)+DSa2x>+|#lFK>;`1L-#5W2fJHJm{ZC ztAwg56UQ6b0=;&Iwo^eI9#>AK$*FS#^KD?R4ORRZgfi{$LPfRZLd59|;tkcOXFA`* zZQ-w>2k!@$PtTUv6X9By7yPCpw58F>g}3=lVtB!sP>*#QJzpwFsLAFlF_JKHhK)U= zkYFL^5K$6rI>RoUiI!jy410UVWgJU?ot7C*3;rui==@l8WMC}J>kO6H39zZtTm<81 z!rRVpc+}!au1xkXFDWPH(1c^5A{7B;=FFq zdF>VF)!7pw7Qnz}xZe{eu?5WJ1yQ{b5^O)iYI@}o>=47Q^d?ELBjD7hme|KZ+qY0+ zpM>A`@2R74{Yx@FD$FE8^}NsyzCz>@#{fsp2Y6QSSb>F2$#zT zVtdEKmjiAR{31Lam@Ba_LG++p9MVlXq|4%viU+4pV@t)r-`kc-*d^=`s`xJup&zK* z)cp?pdT{)9Z&XXtOVS%E(S!e)5|>=<>_T|9y!6equ~A5vS?em>Sfh=#J~$iOZ)2?$ zBMW&$e)M;)Vknp%2Zkn+YcMnvPOihlq4;sP=&jpS+@azwOdAe%zkzB9FQGs)>{}$U zsp|t2yM%h7a2NjXZPaNDMI{3N2*Hwc{(}Gro1Al*Q-E4itP|KU-i!Fy748qOBORdn zbY|W)nuCgx^m>8+8@0Z*STu_{6>`t1^}U6AMXkTkNA?41NWZ24{Q&U)a)mpeW)cp9 HE~@_v>f*5P diff --git a/docs/build/.doctrees/etl_data_reader.doctree b/docs/build/.doctrees/etl_data_reader.doctree index 823ce60a76317db69e2e86edacfdf4a096fb2e1c..5b8677a0db9cd803f282a5306f182058a2319998 100644 GIT binary patch delta 1903 zcmbVMZERCj7~XTn)>T^AWQ^Y4mR&YJ)&is55Mc^kfdMiZ;2iQ*w+k!WUB)_kTZt%P zBoI_?U~sNEhJ+;$6Xb`H#At(AMAU%chs!hujfvSvh>{rbBLPhO;W@W;Q21f=M|Jt<|e63$3r z5Fo;QbqGBYe6|kWV%9Mq38n58*lR*m*n;GngiKa0$9B5dz!6}iP>D;Ly?HCZoZ z(Pb#79TzKz%R}*g5L2@|pB%S$hAw(U;MT<@m@fjA^uml;wCAH5gz}I)Z<)(eP>|lH z6_{n6abtVC(Y3QZ(Hl>ysYKGE)>utg{7*srEx(#p!8vKFiG-zU(_@x4lmBXBR$2?{ z>p43wm>0vf7Ur~^W^q?fcUMn5Par%d5PnENvjrMWcV~Qun(j`uzod4jKc4zM>PnD+R9SV1e)d@Y*4CB035hkX%2GX@_@jx=Hs8Sv2P zzS;>s{j@;&n+tg}O!i?T3|wcyDAbbcS@Q1$x{CH&MXp@xc%J%=&B-EuINau#E+?aB zPI;;Bsbc+p%*F3^8ZC`FoVP`mPp_N8e)D4u`*A5Y5w}Fk&IZXF{6jx2Cr*i8KIr2Q zwxkI&*wtltO6*1Vg-EePr!5GOLW!x%@d|k|4_BYX)!VoZ!j}RP8iSw+RjhIaUL$HA zE|$f`B<5U+Q-m)CZgU=PX_K(LGIy?`_K0bU?~Esv9m&LQWv|w?T~kt8+#WSUF|rD6=d@-Ae3t>0xQ)?g*dnYt0P zX=S&}Dq9dhDI0CGC&)qjzbcvbAV6TnFvPW~;to?{mOjF39js+nS}@an*N!)Xf7cC( zo*A6Z{A=-W^%3k$Mi{ zUheeTUhed=t`XX>wlx8?x9-?YoTg^$T}`20-b zkcB_Uo%;gnXce=~!5f=1hx^6@CoR!~?@cb$eKPIqoJ@SO?HJM|pOpP9xEULywK5kw z%f-y1?cJ(jSo+(1p||pk^31!N(MQMuIWsSY(}lA(iQEnR&oG^0pi?jR@=JKXrHep| fp()%OJkI{;z-nA(OH}+)Ji?37Z)WPYVFmsMFLP9` delta 1231 zcmZ8gUu;uV80UAkZnth_%xrk?T`O!bwoA*>&J2P`bZpsNC#3<0j@s;Ywe04COzjqQ zv7sbBn22QTH2ET;$%v5<5}X=xqd{;(lo%h>2YfR&`anXW$b<7u&*`Q6Ox3$F3Ej!<#?O@q(a;_Yu^lRJ-rk~gxxf(J-h<|cLo$L@VfkZLAT~K_ zZzpdL23hof;Cv5uvXIKVr#ja9?Vw}@1}lW2PK!OrB11=dk@99-@iCRpuHE8$0ILzO zw94lf4WGVbCp7r%S)JQz3rz>Gjpc>oZNrlhnUTW{dFndqs_2;)TRh(_1 zfsv3p=@&mb@ibaV>Blaa>z)d;g6!I0XHCsUgH6d|3m@03nJ(cWK3!Kybum27 z9@8jNi}h@WHq*49$1hbnpT}?<;=GYKx-j63#jyyOR2;+x9v@RYXT%I&SPIv@Ey4k< zygEBU3;WTJ*Id9{Ya7K6z`#VAP|c@*Qkqv1BvOeOzyq?%pU+|^vts5^+g=%D&xF<{wr zP+xA^Pi6w&vL|((dNYhCT#%V`HG+CsgBLFhA-ODZXr%<7Gi%69B7#?4#9V7FzxVq# zxtS`umqcv?iKEzWK=_`Rw6{mM#99eC9XxTPZbZ?cI`-5BM>ysldJ!3ne z@sl4nR@ix+=U;4OdELEg7xkH@03}9nQ2R{uX`dIqr#$JSscg1je<%Xm5r_uoml5O{ z`%QPuQM_N#_NByrAwJnt-eakkG83=AoXHk)1zQ$kS!<)XJ)%yV4VqT?Qc}C8Z4EES5 P8TvhNC7aKbCba+nZy6h8 diff --git a/docs/build/API.html b/docs/build/API.html index f725912..8e36722 100644 --- a/docs/build/API.html +++ b/docs/build/API.html @@ -5,7 +5,7 @@ - API — ETL_data_reader 2.1.2 documentation + API — ETL_data_reader 2.1.3 documentation @@ -34,7 +34,7 @@

Navigation

  • previous |
  • - + @@ -107,7 +107,7 @@

    Navigation

  • previous |
  • - + diff --git a/docs/build/CHANGELOG.html b/docs/build/CHANGELOG.html index 1010877..32e491b 100644 --- a/docs/build/CHANGELOG.html +++ b/docs/build/CHANGELOG.html @@ -5,7 +5,7 @@ - ETL Data Reader : Changelog — ETL_data_reader 2.1.2 documentation + ETL Data Reader : Changelog — ETL_data_reader 2.1.3 documentation @@ -30,7 +30,7 @@

    Navigation

  • previous |
  • - + @@ -42,6 +42,14 @@

    Navigation

    ETL Data Reader : Changelog

    +
    +

    v 2.1.3

    +

    features:

    +
      +
    • parameter to set the integer from which the folder names will start when saving to file

    • +
    +
    +
    diff --git a/docs/build/README.html b/docs/build/README.html index ed7473e..70152a9 100644 --- a/docs/build/README.html +++ b/docs/build/README.html @@ -5,7 +5,7 @@ - ETLCDB_data_reader — ETL_data_reader 2.1.2 documentation + ETLCDB_data_reader — ETL_data_reader 2.1.3 documentation @@ -26,7 +26,7 @@

    Navigation

  • modules |
  • - +
    @@ -189,7 +189,7 @@

    Setup

    Or install it directly via https:

    -
    diff --git a/docs/build/_sources/CHANGELOG.rst.txt b/docs/build/_sources/CHANGELOG.rst.txt index 59e8aba..d6afcea 100644 --- a/docs/build/_sources/CHANGELOG.rst.txt +++ b/docs/build/_sources/CHANGELOG.rst.txt @@ -2,6 +2,16 @@ ETL Data Reader : Changelog =========================== +v 2.1.3 +------- + +features: + + +* parameter to set the integer from which the folder names will start when saving to file + +---- + v 2.1.2 ------- diff --git a/docs/build/_sources/README.rst.txt b/docs/build/_sources/README.rst.txt index e5ee1ca..75370b1 100644 --- a/docs/build/_sources/README.rst.txt +++ b/docs/build/_sources/README.rst.txt @@ -142,7 +142,7 @@ Or install it directly via https: .. code-block:: bash - pip install https://github.com/CaptainDario/ETLCDB_data_reader/releases/download/v2.1/etl_data_reader_CaptainDario-2.1-py3-none-any.whl + pip install https://github.com/CaptainDario/ETLCDB_data_reader/releases/download/v2.1.3/etl_data_reader_CaptainDario-2.1.3-py3-none-any.whl Assuming you already have `downloaded the ETLCDB `_. You have to do some renaming of the data set folders and files. diff --git a/docs/build/_static/documentation_options.js b/docs/build/_static/documentation_options.js index 278cfec..532ed0c 100644 --- a/docs/build/_static/documentation_options.js +++ b/docs/build/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '2.1.2', + VERSION: '2.1.3', LANGUAGE: 'None', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/build/etl_character_groups.html b/docs/build/etl_character_groups.html index bae4b31..e48baa8 100644 --- a/docs/build/etl_character_groups.html +++ b/docs/build/etl_character_groups.html @@ -5,7 +5,7 @@ - etl_character_groups.py — ETL_data_reader 2.1.2 documentation + etl_character_groups.py — ETL_data_reader 2.1.3 documentation @@ -34,7 +34,7 @@

    Navigation

  • previous |
  • - + @@ -146,7 +146,7 @@

    Navigation

  • previous |
  • - + diff --git a/docs/build/etl_codes.html b/docs/build/etl_codes.html index 1bab45d..2b5cb7d 100644 --- a/docs/build/etl_codes.html +++ b/docs/build/etl_codes.html @@ -5,7 +5,7 @@ - etl_codes.py — ETL_data_reader 2.1.2 documentation + etl_codes.py — ETL_data_reader 2.1.3 documentation @@ -34,7 +34,7 @@

    Navigation

  • previous |
  • - + @@ -249,7 +249,7 @@

    Navigation

  • previous |
  • - + diff --git a/docs/build/etl_data_names.html b/docs/build/etl_data_names.html index a71414d..027cb8a 100644 --- a/docs/build/etl_data_names.html +++ b/docs/build/etl_data_names.html @@ -5,7 +5,7 @@ - etl_data_names.py — ETL_data_reader 2.1.2 documentation + etl_data_names.py — ETL_data_reader 2.1.3 documentation @@ -34,7 +34,7 @@

    Navigation

  • previous |
  • - + @@ -187,7 +187,7 @@

    Navigation

  • previous |
  • - + diff --git a/docs/build/etl_data_reader.html b/docs/build/etl_data_reader.html index cd38a06..c6706fc 100644 --- a/docs/build/etl_data_reader.html +++ b/docs/build/etl_data_reader.html @@ -5,7 +5,7 @@ - etl_data_reader.py — ETL_data_reader 2.1.2 documentation + etl_data_reader.py — ETL_data_reader 2.1.3 documentation @@ -34,7 +34,7 @@

    Navigation

  • previous |
  • - + @@ -370,7 +370,7 @@

    Navigation

    -save_to_file(x: numpy.ndarray, y: numpy.ndarray, save_to: str)
    +save_to_file(x: numpy.ndarray, y: numpy.ndarray, save_to: str, name: int = 1)

    Saves all images and labels to file.

    Creates a folder structure in which all images for one label are stored in a folder. The names of these folders are the labels encoded @@ -389,6 +389,7 @@

    Navigation

  • x – a numpy array containing all images.

  • y – a numpy array containing all labels.

  • save_to – the path to the folder where the image and labels should be saved

  • +
  • name – an integer from which the names should start (Defaults to 1).

  • @@ -467,7 +468,7 @@

    Navigation

  • previous |
  • - + diff --git a/docs/build/etl_data_set_info.html b/docs/build/etl_data_set_info.html index 73ddf68..9ceb33a 100644 --- a/docs/build/etl_data_set_info.html +++ b/docs/build/etl_data_set_info.html @@ -5,7 +5,7 @@ - etl_data_set_info.py — ETL_data_reader 2.1.2 documentation + etl_data_set_info.py — ETL_data_reader 2.1.3 documentation @@ -34,7 +34,7 @@

    Navigation

  • previous |
  • - + @@ -141,7 +141,7 @@

    Navigation

  • previous |
  • - + diff --git a/docs/build/genindex.html b/docs/build/genindex.html index f42d53d..9ac2e3d 100644 --- a/docs/build/genindex.html +++ b/docs/build/genindex.html @@ -5,7 +5,7 @@ - Index — ETL_data_reader 2.1.2 documentation + Index — ETL_data_reader 2.1.3 documentation @@ -26,7 +26,7 @@

    Navigation

  • modules |
  • - +
    @@ -343,7 +343,7 @@

    Navigation

  • modules |
  • - + diff --git a/docs/build/getting_started.html b/docs/build/getting_started.html index 2596dfc..09dda39 100644 --- a/docs/build/getting_started.html +++ b/docs/build/getting_started.html @@ -5,7 +5,7 @@ - Getting started — ETL_data_reader 2.1.2 documentation + Getting started — ETL_data_reader 2.1.3 documentation @@ -34,7 +34,7 @@

    Navigation

  • previous |
  • - + @@ -200,7 +200,7 @@

    Setup

    Or install it directly via https:

    -
    diff --git a/docs/build/index.html b/docs/build/index.html index 5bba471..5025cdf 100644 --- a/docs/build/index.html +++ b/docs/build/index.html @@ -5,7 +5,7 @@ - Welcome to ETL_data_reader’s documentation! — ETL_data_reader 2.1.2 documentation + Welcome to ETL_data_reader’s documentation! — ETL_data_reader 2.1.3 documentation @@ -30,7 +30,7 @@

    Navigation

  • next |
  • - +
    @@ -68,6 +68,7 @@

    Welcome to ETL_data_reader’s documentation!Indices and tables
  • ETL Data Reader : Changelog diff --git a/docs/build/indices_and_tables.html b/docs/build/indices_and_tables.html index 5473f2e..b66af29 100644 --- a/docs/build/indices_and_tables.html +++ b/docs/build/indices_and_tables.html @@ -5,7 +5,7 @@ - Indices and tables — ETL_data_reader 2.1.2 documentation + Indices and tables — ETL_data_reader 2.1.3 documentation @@ -34,7 +34,7 @@

    Navigation

  • previous |
  • - + @@ -102,7 +102,7 @@

    Navigation

  • previous |
  • - + diff --git a/docs/build/py-modindex.html b/docs/build/py-modindex.html index 66a9479..3723712 100644 --- a/docs/build/py-modindex.html +++ b/docs/build/py-modindex.html @@ -5,7 +5,7 @@ - Python Module Index — ETL_data_reader 2.1.2 documentation + Python Module Index — ETL_data_reader 2.1.3 documentation @@ -33,7 +33,7 @@

    Navigation

  • modules |
  • - + @@ -111,7 +111,7 @@

    Navigation

  • modules |
  • - + diff --git a/docs/build/search.html b/docs/build/search.html index eedd1bc..d5ce0dd 100644 --- a/docs/build/search.html +++ b/docs/build/search.html @@ -5,7 +5,7 @@ - Search — ETL_data_reader 2.1.2 documentation + Search — ETL_data_reader 2.1.3 documentation @@ -32,7 +32,7 @@

    Navigation

  • modules |
  • - + @@ -83,7 +83,7 @@

    Navigation

  • modules |
  • - + diff --git a/docs/build/searchindex.js b/docs/build/searchindex.js index 773c926..4b26373 100644 --- a/docs/build/searchindex.js +++ b/docs/build/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["API","CHANGELOG","README","etl_character_groups","etl_codes","etl_data_names","etl_data_reader","etl_data_set_info","getting_started","index","indices_and_tables"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,sphinx:56},filenames:["API.rst","CHANGELOG.rst","README.rst","etl_character_groups.rst","etl_codes.rst","etl_data_names.rst","etl_data_reader.rst","etl_data_set_info.rst","getting_started.rst","index.rst","indices_and_tables.rst"],objects:{"":{etl_character_groups:[3,0,0,"-"],etl_codes:[4,0,0,"-"],etl_data_names:[5,0,0,"-"],etl_data_reader:[6,0,0,"-"],etl_data_set_info:[7,0,0,"-"]},"etl_character_groups.ETLCharacterGroups":{all:[3,2,1,""],hiragana:[3,2,1,""],kanji:[3,2,1,""],katakana:[3,2,1,""],number:[3,2,1,""],roman:[3,2,1,""],symbols:[3,2,1,""]},"etl_codes.ETLCodes":{T56:[4,3,1,""],co59_to_utf8:[4,3,1,""],decode_8B_type_character:[4,3,1,""],decode_8G_type_character:[4,3,1,""],decode_9B_type_character:[4,3,1,""],decode_9G_type_character:[4,3,1,""],decode_C_type_character:[4,3,1,""],decode_K_type_character:[4,3,1,""],decode_M_type_character:[4,3,1,""],init_co59:[4,3,1,""],init_codes:[4,3,1,""]},"etl_data_names.ETLDataNames":{ETL10:[5,2,1,""],ETL11:[5,2,1,""],ETL1:[5,2,1,""],ETL2:[5,2,1,""],ETL3:[5,2,1,""],ETL4:[5,2,1,""],ETL5:[5,2,1,""],ETL6:[5,2,1,""],ETL7:[5,2,1,""],ETL8:[5,2,1,""],ETL8B:[5,2,1,""],ETL8G:[5,2,1,""],ETL9:[5,2,1,""],ETL9B:[5,2,1,""],ETL9G:[5,2,1,""]},"etl_data_reader.ETLDataReader":{__read_dataset_part_parallel:[6,3,1,""],__read_dataset_part_sequential:[6,3,1,""],__read_dataset_whole_parallel:[6,3,1,""],__read_dataset_whole_sequential:[6,3,1,""],codes:[6,2,1,""],dataset_types:[6,2,1,""],init_dataset_types:[6,3,1,""],path:[6,2,1,""],process_image:[6,3,1,""],read_dataset_file:[6,3,1,""],read_dataset_part:[6,3,1,""],read_dataset_whole:[6,3,1,""],save_to_file:[6,3,1,""],select_entries:[6,3,1,""]},etl_character_groups:{ETLCharacterGroups:[3,1,1,""]},etl_codes:{ETLCodes:[4,1,1,""]},etl_data_names:{ETLDataNames:[5,1,1,""]},etl_data_reader:{ETLDataReader:[6,1,1,""]},etl_data_set_info:{ETLDataSetInfo:[7,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","attribute","Python attribute"],"3":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:class","2":"py:attribute","3":"py:method"},terms:{"000":[2,8],"0201":[2,8],"0208":[2,8],"10608":[2,8],"120":[2,8],"128x127":[2,8],"1383":[2,8],"1400":[2,8],"141319":[2,8],"152960":[2,8],"157662":[2,8],"160":[2,8],"16800":[2,8],"200":[2,8],"52796":[2,8],"600":[2,8],"607200":[2,8],"60x60":[2,8],"6120":[2,8],"64x63":[2,8],"72x76":[2,8],"9600":[2,8],"\u3041":3,"\u30a1":3,"\u30b1":1,"\u30f3":3,"\u4e00":3,"\u9faf":3,"\uff10":[2,3,8],"\uff11":3,"\uff12":3,"\uff13":3,"\uff14":3,"\uff15":3,"\uff16":3,"\uff17":3,"\uff18":3,"\uff19":3,"\uff41":[2,3,8],"\uff5a":3,"\uff79":[2,8],"break":1,"byte":[4,7],"case":[2,8],"class":[3,4,5,6,7],"default":6,"final":[2,8],"function":[6,7],"import":[2,8],"int":[2,4,6,7,8],"return":[1,4,6],"throw":6,"true":[2,6,8],And:[2,8],For:[2,8],JIS:[2,8],The:[2,4,6,7,8],There:[2,8],Will:6,__read_dataset_part_parallel:6,__read_dataset_part_sequenti:6,__read_dataset_whole_parallel:6,__read_dataset_whole_sequenti:6,_byte:4,about:[2,4,7,8],abov:[2,3,8],access:[2,5,8],actual:6,add:[2,8],added:1,addit:9,addition:6,all:[1,2,3,4,6,8],allow:[2,8],alreadi:[2,8],also:[2,6,8],alwai:1,ani:[2,6,8],anymor:1,api:[2,8,9],applic:[2,8],arrai:[1,6],assum:[2,8],ast:6,automat:[2,8],avail:6,basic:[2,8,9],bdist_wheel:[2,8],becaus:[2,8],befor:[2,8],begin:6,being:[2,8],below:[2,8],between:[2,6,8],bit:[2,8],black:1,bool:[2,6,8],call:[2,6,8],callabl:7,can:[2,6,7,8],capit:[2,3,8],captaindario:[2,8],caus:1,certain:[1,2,8],chang:1,changelog:9,channel:[6,7],char_cod:4,charact:[1,2,3,6,8],check:6,cnn:[2,8],co59:[2,4,8],co59_to_utf8:4,code:[2,4,6,7,8],codec:4,collect:[2,8],color:6,com:[2,8],command:[2,8],complet:[1,2,6,8],compon:6,contain:[4,6],content:[0,2,8,9],conveni:[2,4,7,8,9],convert:[1,2,6,8],copi:[2,8],core:6,correctli:1,cpu:6,crash:1,creat:6,current:[2,8],custom:[2,8],dakanji:[2,8],dat:[2,4,6,8],data:[4,5,6,7,9],data_set:6,data_set_parts_with_dummi:6,dataread:[2,8],dataset:6,dataset_typ:6,decod:[4,6,7],decode_8b_type_charact:4,decode_8g_type_charact:4,decode_9b_type_charact:4,decode_9g_type_charact:4,decode_c_type_charact:4,decode_k_type_charact:4,decode_m_type_charact:4,defin:[2,8],depth:[2,6,7,8],descript:4,develop:9,dict:[4,6],dictionari:6,dimens:7,directli:[2,8],directori:[4,6],disk:[1,6],doc:[2,8],doe:[2,8],done:[2,8],download:[2,8],dtype:6,dummi:6,easi:[2,5,8],easili:[2,8],either:[2,8],empti:1,encod:[1,4,6],entri:[4,6,7],enumer:[3,5],error:[2,6,8],etc:1,etl10:[2,5,8],etl10_1:[2,8],etl10_5:[2,8],etl11:[2,5,8],etl11_1:[2,8],etl11_50:[2,8],etl1:[2,5,6,8],etl1_13:[2,8],etl1_1:[2,8],etl2:[2,5,8],etl2_1:[2,8],etl2_5:[2,8],etl2etl2_1:[2,8],etl2etl2_5:[2,8],etl3:[2,5,8],etl4:[2,5,8],etl5:[2,5,8],etl6:[2,5,8],etl7:[2,5,8],etl8:[2,5,8],etl8b:[2,5,8],etl8g:[2,5,8],etl9:[2,5,8],etl9b:[2,5,8],etl9g:[2,5,6,8],etl:[4,5,6,9],etl_character_group:[0,2,6,8,9],etl_cod:[0,9],etl_data_nam:[0,2,6,8,9],etl_data_read:0,etl_data_reader_captaindario:[2,8],etl_data_set:[2,8],etl_data_set_fold:[2,8],etl_data_set_folderetl2:[2,8],etl_data_set_folderetl7etl7_2:[2,8],etl_data_set_info:[0,9],etl_data_setetlxetlx_i:[2,8],etlcdb:[2,8,9],etlcdb_data_read:9,etlcharactergroup:[2,3,6,8],etlcod:[4,6],etldatanam:[2,5,6,8],etldataread:[2,6,8],etldatasetinfo:[4,7],etldr:[2,6,8],euc_c059:6,euc_co59:[2,4,8],euc_co59_file_path:4,eval:6,everi:[2,6,8],everyth:3,exampl:[2,8],execut:[2,8],expect:1,extend:[2,8],fals:6,featur:1,file:[1,4,6,7],filenotfounderror:6,filter:6,first:[2,8,9],fix:1,float16:6,folder:[2,6,8],form:6,found:[2,6,8],from:[1,2,4,6,8],full:[2,8],gener:[2,8],get:[6,9],getting_start:9,github:[2,8],given:[2,6,8],grai:[6,7],grayscal:[2,8],group:[2,8],half:[2,8],hand:[2,8],handwritten:[2,8],happen:[2,8],hard:[2,8],has:[1,3,4],have:[2,6,8],head:9,helper:6,here:[2,8],hiragana:[2,3,6,8],howev:[2,8],http:[2,8],imag:[1,6,7],imagef:6,img:[2,8],img_depth:[6,7],img_siz:[6,7],implement:[2,6,8],includ:[1,2,3,6,8],index:[7,10],indic:9,info:4,inform:[2,7,8],init_co59:4,init_cod:4,init_dataset_typ:6,initi:[4,6],instal:[2,8],instanc:[2,4,6,8],integ:4,intro:9,invok:[2,8],issu:[2,8,9],its:6,japanes:[2,8],jpg:6,kanji:[2,3,6,8],katakana:[1,2,3,8],label:[1,2,4,6,7,8],label_index:7,lead:[2,8],learn:9,letter:[2,8],level:[2,8],like:[2,8],limit:9,list:[1,2,6,7,8],literal_ev:6,load:[1,6,7,9],look:[2,8,9],lot:[2,6,8],m2r:[2,8],made:[2,8],main:[2,6,8],make:[2,8],mani:6,map:6,match:6,memori:[2,6,8],method:[2,6,8],modul:10,more:6,multi:1,multipl:6,name:[2,5,6,8],ndarrai:6,necessari:4,need:[2,8],neg:[2,8],none:[2,3,8],normal:[2,6,8],notabl:[2,8],note:9,now:[1,2,8],number:[2,3,6,8],numer:[2,8],numpi:[1,6],object:4,obsolet:1,one:[6,7],onli:[2,6,8],open:[2,8,9],option:[2,8],origin:5,other:[2,8],otherwis:6,over:9,packag:9,page:[2,8,10],parallel:6,paramet:[1,2,4,6,8],part:[5,6,7],path:[2,6,8],path_to_data_set:[2,8],pathdata_set:6,per:[2,8],perform:[2,8],pil:6,pip:[2,8],possibl:1,process:[1,6],process_imag:6,processor:6,provid:[2,5,8],pull:[2,8],py3:[2,8],python:[2,8,9],read:[2,4,6,8],read_dataset_fil:[2,6,8],read_dataset_part:[2,6,8],read_dataset_whol:[2,6,8],reader:[2,8,9],readm:[2,8],recogn:[2,8],recommend:6,registr:[2,8],releas:[2,8],renam:[2,5,8],representaiton:6,request:[2,8],requir:[2,4,8],res:[2,8],resiz:[2,6,8],restor:6,restrict:[2,8],roman:[2,3,8],roughli:[2,8],rst:[2,8],run:[2,6,8],same:[2,6,8],sampl:[2,8],save:[1,6],save_to:[1,6],save_to_fil:6,scale:6,scheme:[2,8],sdist:[2,8],search:10,seen:[2,8],select_entri:6,self:6,separ:6,sequenti:6,set:[1,4,5,6,7],setup:[4,9],should:[1,2,4,6,8,9],show:[2,8],show_loading_bar:6,simpl:[2,8],size:[2,6,7,8],some:[1,2,8],someth:9,sourc:[2,8],special:1,specif:[2,8],sphinx:[2,8],start:9,stc:6,store:[2,6,7,8],str:[4,6,7],string:[4,6],struct:7,struct_siz:7,structur:[2,6,8],subprocess:6,support:[2,8],sure:[2,8],symbol:[2,3,6,8],t56:4,tabl:[2,8,9],take:9,test_etldr:[2,8],test_read_dataset_part_parallel:[2,8],than:6,therefor:6,thi:[2,6,7,8],those:[2,8],three:[2,8],through:6,top:[2,8],total:[2,8],train:[2,8],tupl:[2,6,7,8],txt:[2,6,8],type:[2,4,6,7,8],unclear:9,usag:9,use:[2,6,8],used:[2,4,6,7,8],using:4,utf:4,valid:6,valu:[2,3,5,6,8],variabl:[2,8],via:[2,8],virtual:6,wai:[2,8],warn:[2,8],websit:[2,8],welcom:[2,8],were:1,when:[1,2,6,8],where:[2,6,8],which:[1,2,4,5,6,7,8],whl:[2,8],whole:6,width:[2,8],window:[2,8],written:[2,8],you:[2,8,9],your:[2,8]},titles:["API","ETL Data Reader : Changelog","ETLCDB_data_reader","etl_character_groups.py","etl_codes.py","etl_data_names.py","etl_data_reader.py","etl_data_set_info.py","Getting started","Welcome to ETL_data_reader\u2019s documentation!","Indices and tables"],titleterms:{"while":[2,8],addit:[2,8],api:0,build:[2,8],changelog:1,data:[1,2,8],develop:[2,8],document:[2,8,9],entri:[2,8],etl:1,etl_character_group:3,etl_cod:4,etl_data_nam:5,etl_data_read:[6,9],etl_data_set_info:7,etlcdb_data_read:[2,8],file:[2,8],filter:[2,8],get:8,imag:[2,8],indic:10,intro:[2,8],limit:[2,8],load:[2,8],multipl:[2,8],note:[2,8],one:[2,8],packag:[2,8],part:[2,8],process:[2,8],reader:1,set:[2,8],setup:[2,8],start:8,tabl:10,test:[2,8],usag:[2,8],using:[2,8],welcom:9,wheel:[2,8],whole:[2,8]}}) \ No newline at end of file +Search.setIndex({docnames:["API","CHANGELOG","README","etl_character_groups","etl_codes","etl_data_names","etl_data_reader","etl_data_set_info","getting_started","index","indices_and_tables"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,sphinx:56},filenames:["API.rst","CHANGELOG.rst","README.rst","etl_character_groups.rst","etl_codes.rst","etl_data_names.rst","etl_data_reader.rst","etl_data_set_info.rst","getting_started.rst","index.rst","indices_and_tables.rst"],objects:{"":{etl_character_groups:[3,0,0,"-"],etl_codes:[4,0,0,"-"],etl_data_names:[5,0,0,"-"],etl_data_reader:[6,0,0,"-"],etl_data_set_info:[7,0,0,"-"]},"etl_character_groups.ETLCharacterGroups":{all:[3,2,1,""],hiragana:[3,2,1,""],kanji:[3,2,1,""],katakana:[3,2,1,""],number:[3,2,1,""],roman:[3,2,1,""],symbols:[3,2,1,""]},"etl_codes.ETLCodes":{T56:[4,3,1,""],co59_to_utf8:[4,3,1,""],decode_8B_type_character:[4,3,1,""],decode_8G_type_character:[4,3,1,""],decode_9B_type_character:[4,3,1,""],decode_9G_type_character:[4,3,1,""],decode_C_type_character:[4,3,1,""],decode_K_type_character:[4,3,1,""],decode_M_type_character:[4,3,1,""],init_co59:[4,3,1,""],init_codes:[4,3,1,""]},"etl_data_names.ETLDataNames":{ETL10:[5,2,1,""],ETL11:[5,2,1,""],ETL1:[5,2,1,""],ETL2:[5,2,1,""],ETL3:[5,2,1,""],ETL4:[5,2,1,""],ETL5:[5,2,1,""],ETL6:[5,2,1,""],ETL7:[5,2,1,""],ETL8:[5,2,1,""],ETL8B:[5,2,1,""],ETL8G:[5,2,1,""],ETL9:[5,2,1,""],ETL9B:[5,2,1,""],ETL9G:[5,2,1,""]},"etl_data_reader.ETLDataReader":{__read_dataset_part_parallel:[6,3,1,""],__read_dataset_part_sequential:[6,3,1,""],__read_dataset_whole_parallel:[6,3,1,""],__read_dataset_whole_sequential:[6,3,1,""],codes:[6,2,1,""],dataset_types:[6,2,1,""],init_dataset_types:[6,3,1,""],path:[6,2,1,""],process_image:[6,3,1,""],read_dataset_file:[6,3,1,""],read_dataset_part:[6,3,1,""],read_dataset_whole:[6,3,1,""],save_to_file:[6,3,1,""],select_entries:[6,3,1,""]},etl_character_groups:{ETLCharacterGroups:[3,1,1,""]},etl_codes:{ETLCodes:[4,1,1,""]},etl_data_names:{ETLDataNames:[5,1,1,""]},etl_data_reader:{ETLDataReader:[6,1,1,""]},etl_data_set_info:{ETLDataSetInfo:[7,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","attribute","Python attribute"],"3":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:class","2":"py:attribute","3":"py:method"},terms:{"000":[2,8],"0201":[2,8],"0208":[2,8],"10608":[2,8],"120":[2,8],"128x127":[2,8],"1383":[2,8],"1400":[2,8],"141319":[2,8],"152960":[2,8],"157662":[2,8],"160":[2,8],"16800":[2,8],"200":[2,8],"52796":[2,8],"600":[2,8],"607200":[2,8],"60x60":[2,8],"6120":[2,8],"64x63":[2,8],"72x76":[2,8],"9600":[2,8],"\u3041":3,"\u30a1":3,"\u30b1":1,"\u30f3":3,"\u4e00":3,"\u9faf":3,"\uff10":[2,3,8],"\uff11":3,"\uff12":3,"\uff13":3,"\uff14":3,"\uff15":3,"\uff16":3,"\uff17":3,"\uff18":3,"\uff19":3,"\uff41":[2,3,8],"\uff5a":3,"\uff79":[2,8],"break":1,"byte":[4,7],"case":[2,8],"class":[3,4,5,6,7],"default":6,"final":[2,8],"function":[6,7],"import":[2,8],"int":[2,4,6,7,8],"return":[1,4,6],"throw":6,"true":[2,6,8],And:[2,8],For:[2,8],JIS:[2,8],The:[2,4,6,7,8],There:[2,8],Will:6,__read_dataset_part_parallel:6,__read_dataset_part_sequenti:6,__read_dataset_whole_parallel:6,__read_dataset_whole_sequenti:6,_byte:4,about:[2,4,7,8],abov:[2,3,8],access:[2,5,8],actual:6,add:[2,8],added:1,addit:9,addition:6,all:[1,2,3,4,6,8],allow:[2,8],alreadi:[2,8],also:[2,6,8],alwai:1,ani:[2,6,8],anymor:1,api:[2,8,9],applic:[2,8],arrai:[1,6],assum:[2,8],ast:6,automat:[2,8],avail:6,basic:[2,8,9],bdist_wheel:[2,8],becaus:[2,8],befor:[2,8],begin:6,being:[2,8],below:[2,8],between:[2,6,8],bit:[2,8],black:1,bool:[2,6,8],call:[2,6,8],callabl:7,can:[2,6,7,8],capit:[2,3,8],captaindario:[2,8],caus:1,certain:[1,2,8],chang:1,changelog:9,channel:[6,7],char_cod:4,charact:[1,2,3,6,8],check:6,cnn:[2,8],co59:[2,4,8],co59_to_utf8:4,code:[2,4,6,7,8],codec:4,collect:[2,8],color:6,com:[2,8],command:[2,8],complet:[1,2,6,8],compon:6,contain:[4,6],content:[0,2,8,9],conveni:[2,4,7,8,9],convert:[1,2,6,8],copi:[2,8],core:6,correctli:1,cpu:6,crash:1,creat:6,current:[2,8],custom:[2,8],dakanji:[2,8],dat:[2,4,6,8],data:[4,5,6,7,9],data_set:6,data_set_parts_with_dummi:6,dataread:[2,8],dataset:6,dataset_typ:6,decod:[4,6,7],decode_8b_type_charact:4,decode_8g_type_charact:4,decode_9b_type_charact:4,decode_9g_type_charact:4,decode_c_type_charact:4,decode_k_type_charact:4,decode_m_type_charact:4,defin:[2,8],depth:[2,6,7,8],descript:4,develop:9,dict:[4,6],dictionari:6,dimens:7,directli:[2,8],directori:[4,6],disk:[1,6],doc:[2,8],doe:[2,8],done:[2,8],download:[2,8],dtype:6,dummi:6,easi:[2,5,8],easili:[2,8],either:[2,8],empti:1,encod:[1,4,6],entri:[4,6,7],enumer:[3,5],error:[2,6,8],etc:1,etl10:[2,5,8],etl10_1:[2,8],etl10_5:[2,8],etl11:[2,5,8],etl11_1:[2,8],etl11_50:[2,8],etl1:[2,5,6,8],etl1_13:[2,8],etl1_1:[2,8],etl2:[2,5,8],etl2_1:[2,8],etl2_5:[2,8],etl2etl2_1:[2,8],etl2etl2_5:[2,8],etl3:[2,5,8],etl4:[2,5,8],etl5:[2,5,8],etl6:[2,5,8],etl7:[2,5,8],etl8:[2,5,8],etl8b:[2,5,8],etl8g:[2,5,8],etl9:[2,5,8],etl9b:[2,5,8],etl9g:[2,5,6,8],etl:[4,5,6,9],etl_character_group:[0,2,6,8,9],etl_cod:[0,9],etl_data_nam:[0,2,6,8,9],etl_data_read:0,etl_data_reader_captaindario:[2,8],etl_data_set:[2,8],etl_data_set_fold:[2,8],etl_data_set_folderetl2:[2,8],etl_data_set_folderetl7etl7_2:[2,8],etl_data_set_info:[0,9],etl_data_setetlxetlx_i:[2,8],etlcdb:[2,8,9],etlcdb_data_read:9,etlcharactergroup:[2,3,6,8],etlcod:[4,6],etldatanam:[2,5,6,8],etldataread:[2,6,8],etldatasetinfo:[4,7],etldr:[2,6,8],euc_c059:6,euc_co59:[2,4,8],euc_co59_file_path:4,eval:6,everi:[2,6,8],everyth:3,exampl:[2,8],execut:[2,8],expect:1,extend:[2,8],fals:6,featur:1,file:[1,4,6,7],filenotfounderror:6,filter:6,first:[2,8,9],fix:1,float16:6,folder:[1,2,6,8],form:6,found:[2,6,8],from:[1,2,4,6,8],full:[2,8],gener:[2,8],get:[6,9],getting_start:9,github:[2,8],given:[2,6,8],grai:[6,7],grayscal:[2,8],group:[2,8],half:[2,8],hand:[2,8],handwritten:[2,8],happen:[2,8],hard:[2,8],has:[1,3,4],have:[2,6,8],head:9,helper:6,here:[2,8],hiragana:[2,3,6,8],howev:[2,8],http:[2,8],imag:[1,6,7],imagef:6,img:[2,8],img_depth:[6,7],img_siz:[6,7],implement:[2,6,8],includ:[1,2,3,6,8],index:[7,10],indic:9,info:4,inform:[2,7,8],init_co59:4,init_cod:4,init_dataset_typ:6,initi:[4,6],instal:[2,8],instanc:[2,4,6,8],integ:[1,4,6],intro:9,invok:[2,8],issu:[2,8,9],its:6,japanes:[2,8],jpg:6,kanji:[2,3,6,8],katakana:[1,2,3,8],label:[1,2,4,6,7,8],label_index:7,lead:[2,8],learn:9,letter:[2,8],level:[2,8],like:[2,8],limit:9,list:[1,2,6,7,8],literal_ev:6,load:[1,6,7,9],look:[2,8,9],lot:[2,6,8],m2r:[2,8],made:[2,8],main:[2,6,8],make:[2,8],mani:6,map:6,match:6,memori:[2,6,8],method:[2,6,8],modul:10,more:6,multi:1,multipl:6,name:[1,2,5,6,8],ndarrai:6,necessari:4,need:[2,8],neg:[2,8],none:[2,3,8],normal:[2,6,8],notabl:[2,8],note:9,now:[1,2,8],number:[2,3,6,8],numer:[2,8],numpi:[1,6],object:4,obsolet:1,one:[6,7],onli:[2,6,8],open:[2,8,9],option:[2,8],origin:5,other:[2,8],otherwis:6,over:9,packag:9,page:[2,8,10],parallel:6,paramet:[1,2,4,6,8],part:[5,6,7],path:[2,6,8],path_to_data_set:[2,8],pathdata_set:6,per:[2,8],perform:[2,8],pil:6,pip:[2,8],possibl:1,process:[1,6],process_imag:6,processor:6,provid:[2,5,8],pull:[2,8],py3:[2,8],python:[2,8,9],read:[2,4,6,8],read_dataset_fil:[2,6,8],read_dataset_part:[2,6,8],read_dataset_whol:[2,6,8],reader:[2,8,9],readm:[2,8],recogn:[2,8],recommend:6,registr:[2,8],releas:[2,8],renam:[2,5,8],representaiton:6,request:[2,8],requir:[2,4,8],res:[2,8],resiz:[2,6,8],restor:6,restrict:[2,8],roman:[2,3,8],roughli:[2,8],rst:[2,8],run:[2,6,8],same:[2,6,8],sampl:[2,8],save:[1,6],save_to:[1,6],save_to_fil:6,scale:6,scheme:[2,8],sdist:[2,8],search:10,seen:[2,8],select_entri:6,self:6,separ:6,sequenti:6,set:[1,4,5,6,7],setup:[4,9],should:[1,2,4,6,8,9],show:[2,8],show_loading_bar:6,simpl:[2,8],size:[2,6,7,8],some:[1,2,8],someth:9,sourc:[2,8],special:1,specif:[2,8],sphinx:[2,8],start:[1,6,9],stc:6,store:[2,6,7,8],str:[4,6,7],string:[4,6],struct:7,struct_siz:7,structur:[2,6,8],subprocess:6,support:[2,8],sure:[2,8],symbol:[2,3,6,8],t56:4,tabl:[2,8,9],take:9,test_etldr:[2,8],test_read_dataset_part_parallel:[2,8],than:6,therefor:6,thi:[2,6,7,8],those:[2,8],three:[2,8],through:6,top:[2,8],total:[2,8],train:[2,8],tupl:[2,6,7,8],txt:[2,6,8],type:[2,4,6,7,8],unclear:9,usag:9,use:[2,6,8],used:[2,4,6,7,8],using:4,utf:4,valid:6,valu:[2,3,5,6,8],variabl:[2,8],via:[2,8],virtual:6,wai:[2,8],warn:[2,8],websit:[2,8],welcom:[2,8],were:1,when:[1,2,6,8],where:[2,6,8],which:[1,2,4,5,6,7,8],whl:[2,8],whole:6,width:[2,8],window:[2,8],written:[2,8],you:[2,8,9],your:[2,8]},titles:["API","ETL Data Reader : Changelog","ETLCDB_data_reader","etl_character_groups.py","etl_codes.py","etl_data_names.py","etl_data_reader.py","etl_data_set_info.py","Getting started","Welcome to ETL_data_reader\u2019s documentation!","Indices and tables"],titleterms:{"while":[2,8],addit:[2,8],api:0,build:[2,8],changelog:1,data:[1,2,8],develop:[2,8],document:[2,8,9],entri:[2,8],etl:1,etl_character_group:3,etl_cod:4,etl_data_nam:5,etl_data_read:[6,9],etl_data_set_info:7,etlcdb_data_read:[2,8],file:[2,8],filter:[2,8],get:8,imag:[2,8],indic:10,intro:[2,8],limit:[2,8],load:[2,8],multipl:[2,8],note:[2,8],one:[2,8],packag:[2,8],part:[2,8],process:[2,8],reader:1,set:[2,8],setup:[2,8],start:8,tabl:10,test:[2,8],usag:[2,8],using:[2,8],welcom:9,wheel:[2,8],whole:[2,8]}}) \ No newline at end of file diff --git a/docs/source/CHANGELOG.rst b/docs/source/CHANGELOG.rst index 59e8aba..d6afcea 100644 --- a/docs/source/CHANGELOG.rst +++ b/docs/source/CHANGELOG.rst @@ -2,6 +2,16 @@ ETL Data Reader : Changelog =========================== +v 2.1.3 +------- + +features: + + +* parameter to set the integer from which the folder names will start when saving to file + +---- + v 2.1.2 -------