Commit
·
e89cf65
1
Parent(s):
4fb51a1
Update README.md
Browse files
README.md
CHANGED
@@ -35,7 +35,14 @@ This model card describes the model associated with the manuscript "Uncertainty-
|
|
35 |
# Uses
|
36 |
|
37 |
## Examples
|
38 |
-
For direct use, the model can be loaded using
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
```
|
41 |
import slideflow as sf
|
|
|
35 |
# Uses
|
36 |
|
37 |
## Examples
|
38 |
+
For direct use, the model can be loaded using Tensorflow/Keras:
|
39 |
+
|
40 |
+
```
|
41 |
+
import tensorflow as tf
|
42 |
+
model = tf.keras.models.load_model('/path/')
|
43 |
+
```
|
44 |
+
|
45 |
+
or loaded with [Slideflow](https://github.com/jamesdolezal/slideflow) version 1.1+ with the following syntax:
|
46 |
|
47 |
```
|
48 |
import slideflow as sf
|