Kirk

Results 5 comments of Kirk

Wrote some Keras style callbacks before. Seemed to work for me. Probably not written well. Not sure if there's any bug. Leave it here in case someone wants to save...

Hi, I encountered same issue. I made a workaround without modifying code of autokeras because I'm using Google Colab. ``` ak_model = StructuredDataClassifier( column_names=features, project_name=project_name, directory="model", seed=0, ) history =...

The functions sort the list in place, no copy is made, so there's no need to return it. Just like `a.sort()` & `random.shuffle(a)`. And the example code never uses return...

Because I wanted to call adapt(), so I made a dataset, and batch_size seems to be a required argument. I haven't used AutoKeras for quite a while, things can change,...

雖然隔很久了,但還是註記一下。 個人認為 (cons 1 (cons 2 (cons 3 4))) 會成為 ``` **-**-** 1 2 34 ``` 而 (list 1 (list 2 (list 3 4))) 會成為 ``` **-*/ 1 | **-*/...