keras-team / autokeras

AutoML library for deep learning
http://autokeras.com/
Apache License 2.0
9.13k stars 1.4k forks source link

Custom Search Space for ImageClassification #1857

Open omkale221 opened 1 year ago

omkale221 commented 1 year ago

inputnode = ak.ImageInput() output_node = ak.ConvBlock(separable=True)(inputnode)

output_node = ak.DenseBlock()(output_node)

output_node = ak.ClassificationHead()(output_node)

I am using the above template as a basic search space, but this creates a sequential conv model.

  1. How to enable non-sequential search as a strategy
  2. How to make automodel search for skip connections without explicitely providing them by ak.merge at a location