23 lines
434 B
Bash
23 lines
434 B
Bash
### Dataset settings ###
|
|
|
|
#Place to download dataset from
|
|
CAPTCHA_AGGREGATOR_API=https://captcha.foxarmy.org/api
|
|
|
|
#Percentage of all downloaded to be sent to test dataset
|
|
TESTING_PERCENT=10
|
|
|
|
#Place to download dataset to
|
|
DATASET_PATH=datasets/
|
|
|
|
# Captcha image properties
|
|
|
|
IMAGE_HEIGHT=70
|
|
IMAGE_WIDTH=200
|
|
|
|
#List of characters used in captcha
|
|
ALPHABET=ABCDEFGHIJKLMNPQRSTUVWXYZ123456789
|
|
|
|
### Model settings ###
|
|
BATCH_SIZE=16
|
|
EPOCHS=25
|