Skip to content

Commit 060838b

Browse files
committed
Remove digits from 290-magika-content-type-recognition, update usages
1 parent e36def3 commit 060838b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

notebooks/290-magika-content-type-recognition/README.md renamed to notebooks/magika-content-type-recognition/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Magika: AI powered fast and efficient file type identification using OpenVINO
22

3-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/eaidova/openvino_notebooks_binder.git/main?urlpath=git-pull%3Frepo%3Dhttps%253A%252F%252Fgithub.com%252Fopenvinotoolkit%252Fopenvino_notebooks%26urlpath%3Dtree%252Fopenvino_notebooks%252Fnotebooks%2F290-magika-content-type-recognition%2F290-magika-content-type-recognition.ipynb)
4-
[![Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/openvinotoolkit/openvino_notebooks/blob/main/notebooks/290-magika-content-type-recognition/290-magika-content-type-recognition.ipynb)
3+
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/eaidova/openvino_notebooks_binder.git/main?urlpath=git-pull%3Frepo%3Dhttps%253A%252F%252Fgithub.com%252Fopenvinotoolkit%252Fopenvino_notebooks%26urlpath%3Dtree%252Fopenvino_notebooks%252Fnotebooks%2Fmagika-content-type-recognition%2Fmagika-content-type-recognition.ipynb)
4+
[![Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/openvinotoolkit/openvino_notebooks/blob/master/notebooks/magika-content-type-recognition/magika-content-type-recognition.ipynb)
55

66
Magika is a novel AI powered file type detection tool that relies on the recent advance of deep learning to provide accurate detection. Under the hood, Magika employs a custom, highly optimized model that only weighs about 1MB, and enables precise file identification within milliseconds, even when running on a single CPU.
77

notebooks/290-magika-content-type-recognition/290-magika-content-type-recognition.ipynb renamed to notebooks/magika-content-type-recognition/magika-content-type-recognition.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@
359359
"\n",
360360
"input_file = Path(\"./README.md\")\n",
361361
"if not input_file.exists():\n",
362-
" urllib.request.urlretrieve(\"https://raw.githubusercontent.com/openvinotoolkit/openvino_notebooks/main/README.md\", filename=\"README.md\")\n",
362+
" urllib.request.urlretrieve(\"https://raw.githubusercontent.com/openvinotoolkit/openvino_notebooks/master/README.md\", filename=\"README.md\")\n",
363363
"result = ov_magika.identify_path(input_file)\n",
364364
"print(f\"Content type: {result.output.ct_label} - {result.output.score * 100:.4}%\") "
365365
]

notebooks/yolov8-optimization/yolov8-obb.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"# Fetch the notebook utils script from the openvino_notebooks repo\n",
6868
"import urllib.request\n",
6969
"urllib.request.urlretrieve(\n",
70-
" url='https://raw.githubusercontent.com/openvinotoolkit/openvino_notebooks/main/notebooks/utils/notebook_utils.py',\n",
70+
" url='https://raw.githubusercontent.com/openvinotoolkit/openvino_notebooks/master/notebooks/utils/notebook_utils.py',\n",
7171
" filename='notebook_utils.py'\n",
7272
")\n",
7373
"\n",

0 commit comments

Comments
 (0)