Questions tagged [adanet]

4 questions
2
votes
0 answers

Adanet : ERROR:tensorflow:Model diverged with loss = NaN

I got an error of loss when training an Adanet network following the tutorial notebook ( Adanet_objective ) and just switching the dataset, this is the error : ERROR:tensorflow:Model diverged with loss = NaN. full detail here : …
Hadrien Berthier
  • 305
  • 1
  • 3
  • 17
1
vote
0 answers

Tensorflow 2.1 - make_csv_dataset - ValueError: Received a feature column from TensorFlow v1, but this is a TensorFlow v2 Estimator

I'm having a hard time figuring out what's going on here (as I see most people are with trying to figure out TF 2.1). Below is my problem and a few of the solutions I've already tried with code examples. I'm trying to use AdaNet to start a…
wildcat89
  • 1,159
  • 16
  • 47
1
vote
1 answer

Adanet running out of memory

I tried training an AutoEnsembleEstimator with two DNNEstimators (with hidden units of 1000,500, 100) on a dataset with around 1850 features (after feature engineering), and I kept running out of memory (even on larger 400G+ high-mem gcp vms). I'm…
Sridhar Iyer
  • 2,772
  • 1
  • 21
  • 28
0
votes
1 answer

How to improve the DNN model accuracy with AdaNet?

I'm setting up DNN model with TensorFlow 2.0 and using AdaNet(version 0.8) to do NAS. How do I improve the accuracy of DNN model with AdaNet? The metrics of the AdaNet-producing model, which is the combination of two different DNN subnets, is worse…