Kirk

Results 4 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,...