Update README.md
Browse files
README.md
CHANGED
@@ -52,7 +52,7 @@ image = np.array(image)
|
|
52 |
image = tf.convert_to_tensor(image)
|
53 |
image = tf.image.resize(image, (256, 256))
|
54 |
|
55 |
-
model = from_pretrained_keras(google/maxim-s3-denoising-sidd)
|
56 |
predictions = model.predict(tf.expand_dims(image, 0))
|
57 |
```
|
58 |
|
|
|
52 |
image = tf.convert_to_tensor(image)
|
53 |
image = tf.image.resize(image, (256, 256))
|
54 |
|
55 |
+
model = from_pretrained_keras("google/maxim-s3-denoising-sidd")
|
56 |
predictions = model.predict(tf.expand_dims(image, 0))
|
57 |
```
|
58 |
|