Skip to content

Commit 43b238a

Browse files
committed
fixed suggested changes
1 parent c213bbb commit 43b238a

File tree

1 file changed

+27
-14
lines changed

1 file changed

+27
-14
lines changed

samples/04_gis_analysts_data_scientists/image_scene_classification_using_feature_classifier.ipynb

Lines changed: 27 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,7 @@
8080
"metadata": {},
8181
"source": [
8282
"Since the [RESISC45 Dataset](https://arxiv.org/abs/1703.00121) is publically available, we will download the data from the [Tensorflow website](https://www.tensorflow.org/datasets/catalog/resisc45).\n",
83-
"The name of the dataset we will be downloading is <b>NWPU-RESISC45.rar</b> <br>\n",
84-
"- Citation : `@article{cheng2017remote,\n",
85-
" title={Remote sensing image scene classification: Benchmark and state of the art},\n",
86-
" author={Cheng, Gong and Han, Junwei and Lu, Xiaoqiang},\n",
87-
" journal={Proceedings of the IEEE},\n",
88-
" volume={105},\n",
89-
" number={10},\n",
90-
" pages={1865--1883},\n",
91-
" year={2017},\n",
92-
" publisher={IEEE}\n",
93-
"}`"
83+
"The name of the dataset we will be downloading is <b>NWPU-RESISC45.rar</b> <br>"
9484
]
9585
},
9686
{
@@ -151,7 +141,7 @@
151141
"- `dataset_type` : The type of dataset getting passed to the Feature Classifier.\n",
152142
"- `batch_size`: Number of images your model will train on each step inside an epoch. <b>This directly depends on the memory of your graphic card</b>. 128 worked for us on a 32GB GPU.\n",
153143
"\n",
154-
"Since we are using the dataset from external source for training our `FeatureClassifier`, we will be using <b>Imagenet</b> as dataset_type."
144+
"Since we are using the dataset from external source for training our `FeatureClassifier`, we will be using <b>Imagenet</b> as `dataset_type`."
155145
]
156146
},
157147
{
@@ -448,7 +438,7 @@
448438
"cell_type": "markdown",
449439
"metadata": {},
450440
"source": [
451-
"Here, with only 20 epochs, we can see reasonable results, as both training and validation losses have decreased considerably, indicating that the model is learning to classify image scenes."
441+
"Here only after 20 epochs both training and validation losses have decreased considerably, indicating that the model is learning to classify image scenes."
452442
]
453443
},
454444
{
@@ -487,6 +477,13 @@
487477
"model.show_results(rows=4)"
488478
]
489479
},
480+
{
481+
"cell_type": "markdown",
482+
"metadata": {},
483+
"source": [
484+
"Here, with only 20 epochs, we can see reasonable results."
485+
]
486+
},
490487
{
491488
"cell_type": "markdown",
492489
"metadata": {},
@@ -696,6 +693,22 @@
696693
"source": [
697694
"In this notebook, we demonstrated how to use the `FeatureClassifier` model from the `ArcGIS API for Python` to classify image scenes using training data from an external source."
698695
]
696+
},
697+
{
698+
"cell_type": "markdown",
699+
"metadata": {},
700+
"source": [
701+
"- Citation : `@article{cheng2017remote,\n",
702+
" title={Remote sensing image scene classification: Benchmark and state of the art},\n",
703+
" author={Cheng, Gong and Han, Junwei and Lu, Xiaoqiang},\n",
704+
" journal={Proceedings of the IEEE},\n",
705+
" volume={105},\n",
706+
" number={10},\n",
707+
" pages={1865--1883},\n",
708+
" year={2017},\n",
709+
" publisher={IEEE}\n",
710+
"}`"
711+
]
699712
}
700713
],
701714
"metadata": {
@@ -714,7 +727,7 @@
714727
"name": "python",
715728
"nbconvert_exporter": "python",
716729
"pygments_lexer": "ipython3",
717-
"version": "3.7.11"
730+
"version": "3.9.11"
718731
}
719732
},
720733
"nbformat": 4,

0 commit comments

Comments
 (0)