Update README.md
Browse files
README.md
CHANGED
|
@@ -10,8 +10,17 @@ More information needed
|
|
| 10 |
|
| 11 |
More information needed
|
| 12 |
|
| 13 |
-
##
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
from huggingface_hub import notebook_login
|
| 17 |
notebook_login()
|
|
|
|
| 10 |
|
| 11 |
More information needed
|
| 12 |
|
| 13 |
+
## How to Get Started with the Model
|
| 14 |
|
| 15 |
+
Use the code below to get started with the model.
|
| 16 |
+
|
| 17 |
+
{{ from huggingface_hub import notebook_login
|
| 18 |
+
notebook_login()
|
| 19 |
+
|
| 20 |
+
from huggingface_hub import from_pretrained_keras
|
| 21 |
+
|
| 22 |
+
model = from_pretrained_keras("MIDSCapstoneTeam/ContrailSentinel", custom_objects={'dice_loss_plus_5focal_loss': total_loss, 'jaccard_coef': jaccard_coef, 'IOU score' : sm.metrics.IOUScore(threshold=0.9, name="IOU score"), 'Dice Coeficient' : sm.metrics.FScore(threshold=0.6, name="Dice Coeficient")}, compile=False)
|
| 23 |
+
}}
|
| 24 |
|
| 25 |
from huggingface_hub import notebook_login
|
| 26 |
notebook_login()
|