Update README.md
Browse files
README.md
CHANGED
@@ -32,7 +32,7 @@ import tensorflow as tf
|
|
32 |
from huggingface_hub import from_pretrained_keras
|
33 |
model = from_pretrained_keras("jkang/drawing-artistic-trend-classifier")
|
34 |
|
35 |
-
image_file = '
|
36 |
img = tf.io.read_file(image_file)
|
37 |
img = tf.io.decode_jpeg(img, channels=3)
|
38 |
|
@@ -41,7 +41,7 @@ last_layer_activation, predictions = model(img[tf.newaxis,...])
|
|
41 |
|
42 |
# Intended uses & limitations
|
43 |
You can use this model freely for predicting artists or trends of a given image.
|
44 |
-
Please keep in mind that this model is not intended for
|
45 |
-
Web-crawled image data might not have balanced amount of drawings that sufficiently represent the artists.
|
46 |
---
|
47 |
- 2022-01-18 first created by jaekoo kang
|
|
|
32 |
from huggingface_hub import from_pretrained_keras
|
33 |
model = from_pretrained_keras("jkang/drawing-artistic-trend-classifier")
|
34 |
|
35 |
+
image_file = 'monet.jpg'
|
36 |
img = tf.io.read_file(image_file)
|
37 |
img = tf.io.decode_jpeg(img, channels=3)
|
38 |
|
|
|
41 |
|
42 |
# Intended uses & limitations
|
43 |
You can use this model freely for predicting artists or trends of a given image.
|
44 |
+
Please keep in mind that this model is not intended for production, but for research and quick prototyping.
|
45 |
+
Web-crawled image data might not have a balanced amount of drawings that sufficiently represent the artists.
|
46 |
---
|
47 |
- 2022-01-18 first created by jaekoo kang
|