Skip to content

Commit

Permalink
Notebooks minor updates for support testing (#1113)
Browse files Browse the repository at this point in the history
* Notebooks minor updates for support testing
  • Loading branch information
Idan-BenAmi authored Jun 19, 2024
1 parent d498eac commit c280efa
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
"source": [
"import sys\n",
"import importlib\n",
"import os\n",
"\n",
"if not importlib.util.find_spec('model_compression_toolkit'):\n",
" !pip install model_compression_toolkit\n",
Expand Down Expand Up @@ -134,12 +135,13 @@
"execution_count": null,
"outputs": [],
"source": [
"!wget -nc http://images.cocodataset.org/annotations/annotations_trainval2017.zip\n",
"!unzip -q -o annotations_trainval2017.zip -d ./coco\n",
"!echo Done loading annotations\n",
"!wget -nc http://images.cocodataset.org/zips/val2017.zip\n",
"!unzip -q -o val2017.zip -d ./coco\n",
"!echo Done loading val2017 images"
"if not os.path.isdir('coco'):\n",
" !wget -nc http://images.cocodataset.org/annotations/annotations_trainval2017.zip\n",
" !unzip -q -o annotations_trainval2017.zip -d ./coco\n",
" !echo Done loading annotations\n",
" !wget -nc http://images.cocodataset.org/zips/val2017.zip\n",
" !unzip -q -o val2017.zip -d ./coco\n",
" !echo Done loading val2017 images"
],
"metadata": {
"collapsed": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,12 @@
"execution_count": null,
"outputs": [],
"source": [
"!wget -nc http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar\n",
"!tar -xf VOCtrainval_11-May-2012.tar\n",
"!echo Done loading PascelVOC 2012"
"import os\n",
"\n",
"if not os.path.isdir('VOCdevkit'):\n",
" !wget -nc http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar\n",
" !tar -xf VOCtrainval_11-May-2012.tar\n",
" !echo Done loading PascelVOC 2012"
],
"metadata": {
"collapsed": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,10 @@
"representative_dataset_gen = DataLoader(representative_dataset, BATCH_SIZE, shuffle=True)"
],
"metadata": {
"collapsed": false
"collapsed": false,
"tags": [
"long_run"
]
},
"id": "20fe96b6cc95d38c"
},
Expand Down Expand Up @@ -321,7 +324,10 @@
"print('Quantized-GPTQ model is ready')"
],
"metadata": {
"collapsed": false
"collapsed": false,
"tags": [
"long_run"
]
},
"id": "240421e00f6cce34"
},
Expand All @@ -347,7 +353,10 @@
" repr_dataset=representative_dataset_gen)"
],
"metadata": {
"collapsed": false
"collapsed": false,
"tags": [
"long_run"
]
},
"id": "546ff946af81702b"
},
Expand Down Expand Up @@ -457,7 +466,10 @@
"print(\"Quantized using GPTQ model mAP: {:.4f}\".format(eval_results[0]))"
],
"metadata": {
"collapsed": false
"collapsed": false,
"tags": [
"long_run"
]
},
"id": "168468f17ae8bc59"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,10 @@
"base_uri": "https://localhost:8080/"
},
"id": "20fe96b6cc95d38c",
"outputId": "22b0be33-ef7b-490a-82ae-7eb02a3474a2"
"outputId": "22b0be33-ef7b-490a-82ae-7eb02a3474a2",
"tags": [
"long_run"
]
},
"outputs": [],
"source": [
Expand Down Expand Up @@ -340,7 +343,10 @@
"execution_count": null,
"id": "240421e00f6cce34",
"metadata": {
"id": "240421e00f6cce34"
"id": "240421e00f6cce34",
"tags": [
"long_run"
]
},
"outputs": [],
"source": [
Expand Down Expand Up @@ -380,7 +386,10 @@
"base_uri": "https://localhost:8080/"
},
"id": "546ff946af81702b",
"outputId": "cf627960-7b8b-423c-8cae-fbccddcb76f3"
"outputId": "cf627960-7b8b-423c-8cae-fbccddcb76f3",
"tags": [
"long_run"
]
},
"outputs": [],
"source": [
Expand Down Expand Up @@ -463,7 +472,10 @@
"execution_count": null,
"id": "VLwCbC2_szpy",
"metadata": {
"id": "VLwCbC2_szpy"
"id": "VLwCbC2_szpy",
"tags": [
"long_run"
]
},
"outputs": [],
"source": [
Expand Down

0 comments on commit c280efa

Please sign in to comment.