-
Opening up this issue to coordinate work on a new keras/tensorflow template – @jaymody and @EteimZ have shown interest in this. Guys, please feel free to share here if/how you want to work on this and…
-
Hi,
I'm trying to convert my .h5 model to .json file on Ubuntu16.04 with keras==2.2.4
tensorflow-gpu==1.12.0.
My .h5 model file can be download here: https://drive.google.com/open?id=1QVQiS4rsCuHFo…
-
Hello,
In the notebook corresponding to chapter 13, there is the following code at cell 156:
```python
model = keras.models.Sequential([
text_vectorization,
keras.layers.Embedding(inp…
-
Is there a way to diagnose Overfitting and Underfitting of Tesseract Models?
@stweil had suggested in a different thread that one should evaluate all models to find the best fit for the eval data. …
-
Executing code loading deep learning model has the following error
`from auto_ml.utils_models import load_ml_model
`trained_ml_pipeline = load_ml_model("auto_ml_saved_pipeline.dill")
`trained_ml_…
-
FYI I'm planning on working on converting this to work with dense predictions based on the [resnet v2 in tensorflow models](https://github.com/tensorflow/models/blob/master/slim/nets/resnet_v2.py) via…
-
Tensorflow originally saved models as HDF5 files, but now uses a new "SavedModel" format. If we load a model from the HDF5 format, `DeepExplainer()/shap_values()` works fine; if we use the new format…
-
How this part should look using tensorflow backend?
https://github.com/divamgupta/image-segmentation-keras/blob/master/Models/FCN32.py#L82
```
o = (Reshape(( -1 , outputHeight*outputWidth )))(…
-
Has this work been subsumed by other projects? It seems that AutoKeras is actively maintained and I'm curious why AdaNet was never supported there: https://github.com/keras-team/autokeras/issues/415. …
-
When constructing my model in `tf.keras`, I have a repeated sequence of layers that goes:
```
tf.keras.layers.Conv2D(...)
tf.keras.layers.BatchNormalization(...)
tf.keras.layers.ReLU(...)
```
…