Graham Eisele

Results 20 comments of Graham Eisele

I was able to fix the problem after following this: [https://github.com/tensorflow/tensorflow/issues/38589#issuecomment-735540130](url) but now I get his error: ``` Traceback (most recent call last): File "cartoon.py", line 8, in model.train( File...

I solved this by creating a tmp folder, and successfully trained the model, but when I try to test I get ``` File "/home/graham/.local/lib/python3.8/site-packages/keras_segmentation/predict.py", line 24, in model_from_checkpoint_path assert (os.path.isfile(checkpoints_path+"_config.json")...

I do that but I get a different error `C:\Users\User>captcha22 server engine Class start Checking if there is any new files ['./Unsorted\\username_captcha_1.zip'] Start running Copy files Starting the copy of...

Also when using the client api, how do you get the CaptchaID?

It is not returning the list of all face images. I traced it back to get_image_list in hparams.py, and that this part `filelist.extend(list(glob(os.path.join(data_root, 'preprocessed', vid_id, '*/*.jpg'))))` is causing the issue,...

Even when using any of the datasets use for the paper, I still get this error after following all instructions on the reademe.

> > Even when using any of the datasets use for the paper, I still get this error after following all instructions on the reademe. > > Yes, I got...

Changing ` def get_image_list(split, data_root): filelist = [] with open(os.path.join(data_root, '{}.txt'.format(split))) as vidlist: for vid_id in vidlist: vid_id = vid_id.strip() filelist.extend(list(glob(os.path.join(data_root, 'preprocessed', vid_id, '*/*.jpg')))) return filelist` to `def get_image_list(split, data_root):...