Skip to content

Commit

Permalink
Rename ov phi-3 helper
Browse files Browse the repository at this point in the history
  • Loading branch information
yatarkan committed Sep 12, 2024
1 parent 6a3c969 commit 625ce0c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
File renamed without changes.
10 changes: 5 additions & 5 deletions notebooks/phi-3-vision/phi-3-vision.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
"import requests\n",
"from pathlib import Path\n",
"\n",
"if not Path(\"ov_phi3_vision.py\").exists():\n",
" r = requests.get(url=\"https://raw.githubusercontent.com/openvinotoolkit/openvino_notebooks/latest/notebooks/phi-3-vision/ov_phi3_vision.py\")\n",
" open(\"ov_phi3_vision.py\", \"w\").write(r.text)\n",
"if not Path(\"ov_phi3_vision_helper.py\").exists():\n",
" r = requests.get(url=\"https://raw.githubusercontent.com/openvinotoolkit/openvino_notebooks/latest/notebooks/phi-3-vision/ov_phi3_vision_helper.py\")\n",
" open(\"ov_phi3_vision_helper.py\", \"w\").write(r.text)\n",
"\n",
"\n",
"if not Path(\"gradio_helper.py\").exists():\n",
Expand Down Expand Up @@ -194,7 +194,7 @@
}
],
"source": [
"from ov_phi3_vision import convert_phi3_model\n",
"from ov_phi3_vision_helper import convert_phi3_model\n",
"\n",
"# uncomment these lines to see model conversion code\n",
"# convert_phi3_model??"
Expand Down Expand Up @@ -451,7 +451,7 @@
"metadata": {},
"outputs": [],
"source": [
"from ov_phi3_vision import OvPhi3Vision\n",
"from ov_phi3_vision_helper import OvPhi3Vision\n",
"\n",
"# Uncomment below lines to see the model inference class code\n",
"\n",
Expand Down

0 comments on commit 625ce0c

Please sign in to comment.