We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a03c62 commit 7bc01b4Copy full SHA for 7bc01b4
README.md
@@ -24,13 +24,13 @@ LR = 0.003
24
mixed_precision = False
25
```
26
27
-Next, build the **DOLG** model with **EfficientNetB5**.
+Next, build the **DOLG** model with **EfficientNetB5**. By default, EfficientNet will be used to build up the DOLGNet.
28
29
```python
30
from config import IMG_SIZE, CHANNELS
31
from model.DOLG import DOLGNet
32
33
-model = DOLGNet ...
+model = DOLGNet(Classifier=NUM_CLASSES)
34
35
print(model(tf.ones((1, IMG_SIZE, IMG_SIZE, CHANNELS)))[0].shape)
36
display(tf.keras.utils.plot_model(model.build_graph(),
0 commit comments