JackonYang / captcha-tensorflow

Image Captcha Solving Using TensorFlow and CNN Model. Accuracy 90%+
MIT License
996 stars 272 forks source link

fix densely-connected size #17

Closed takeru closed 3 years ago

takeru commented 6 years ago

When I try with height=50, I met this error:

InvalidArgumentError (see above for traceback): Incompatible shapes: [52,4] vs. [50,4]
diff --git a/datasets/gen_captcha.py b/datasets/gen_captcha.py
index 0e0bf46..492bca8 100644
--- a/datasets/gen_captcha.py
+++ b/datasets/gen_captcha.py
@@ -49,8 +49,8 @@ def gen_dataset():

     choices = get_choices()

-    width = 40 + 20 * num_per_image
-    height = 100
+    width = 100 # 40 + 20 * num_per_image
+    height = 50 # 100

     # meta info
     meta = {
Apidwalin commented 3 years ago

เมื่อฉันลองด้วย height=50 ฉันพบข้อผิดพลาดนี้:

InvalidArgumentError (see above for traceback): Incompatible shapes: [52,4] vs. [50,4]
diff --git a/datasets/gen_captcha.py b/datasets/gen_captcha.py
ดัชนี 0e0bf46..492bca8 100644
--- a/datasets/gen_captcha.py 
+++ b/datasets/gen_captcha.py 
@@ -49,8 +49,8 @@ def gen_dataset():

     ตัวเลือก = get_choices()

-     ความกว้าง = 40 + 20 * num_per_image 
-     ความสูง = 100 
+     ความกว้าง = 100 # 40 + 20 * num_per_image 
+     ความสูง = 50 # 100

     #ข้อมูลเมตา
     เมตา = {
Apidwalin commented 3 years ago

diff --git a/datasets/gen_captcha.py b/datasets/gen_captcha.py ดัชนี 0e0bf46..492bca8 100644 --- a/datasets/gen_captcha.py +++ b/datasets/gen_captcha.py @@ -49,8 +49,8 @@ def gen_dataset():

 ตัวเลือก = get_choices()