Instructions to use mubaraknumann/genera-cloud-image-classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use mubaraknumann/genera-cloud-image-classification with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://mubaraknumann/genera-cloud-image-classification") - Notebooks
- Google Colab
- Kaggle
File size: 686 Bytes
afa63d4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | {
"label_to_int": {
"Altocumulus": 0,
"Altostratus": 1,
"Cirrocumulus": 2,
"Cirrostratus": 3,
"Cirrus": 4,
"Clear Sky": 5,
"Contrail": 6,
"Cumulonimbus": 7,
"Cumulus": 8,
"Nimbostratus": 9,
"Stratocumulus": 10,
"Stratus": 11
},
"int_to_label": {
"0": "Altocumulus",
"1": "Altostratus",
"2": "Cirrocumulus",
"3": "Cirrostratus",
"4": "Cirrus",
"5": "Clear Sky",
"6": "Contrail",
"7": "Cumulonimbus",
"8": "Cumulus",
"9": "Nimbostratus",
"10": "Stratocumulus",
"11": "Stratus"
}
} |