How do I create non fully connected layers in skflow?

43 views Asked by At

I want to create a more complex architecture than requires layers connected in a custom way.Can I achive this in skflow ? And if not which framework is best ? Thanks

1

There are 1 answers

0
Yuan Tang On

You can define your own custom model function or even build your own estimator. For example, you can find a ResNet example under tensorflow/examples/learn implemented using TF.Learn (originally skflow).