File size: 5,845 Bytes
629fafa
1
2
{"cells":[{"cell_type":"code","execution_count":null,"metadata":{"_cell_guid":"b1076dfc-b9ad-4769-8c92-a6c4dae69d19","_uuid":"8f2839f25d086af736a60e9eeb907d3b93b6e0e5","execution":{"iopub.execute_input":"2023-04-11T14:34:42.295371Z","iopub.status.busy":"2023-04-11T14:34:42.294835Z","iopub.status.idle":"2023-04-11T14:34:42.334200Z","shell.execute_reply":"2023-04-11T14:34:42.332944Z","shell.execute_reply.started":"2023-04-11T14:34:42.295325Z"},"trusted":true},"outputs":[{"ename":"","evalue":"","output_type":"error","traceback":["\u001b[1;31mRunning cells with 'c:\\Users\\nicolasvonrotz\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe' requires the ipykernel package.\n","\u001b[1;31mRun the following command to install 'ipykernel' into the Python environment. \n","\u001b[1;31mCommand: 'c:/Users/nicolasvonrotz/AppData/Local/Microsoft/WindowsApps/python3.11.exe -m pip install ipykernel -U --user --force-reinstall'"]}],"source":["# This Python 3 environment comes with many helpful analytics libraries installed\n","# It is defined by the kaggle/python Docker image: https://github.com/kaggle/docker-python\n","# For example, here's several helpful packages to load\n","\n","import numpy as np # linear algebra\n","import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)\n","\n","\n","\n","# Input data files are available in the read-only \"../input/\" directory\n","# For example, running this (by clicking run or pressing Shift+Enter) will list all files under the input directory\n","\n","import os\n","for dirname, _, filenames in os.walk('/kaggle/input'):\n","    for filename in filenames:\n","        print(os.path.join(dirname, filename))\n","\n","# You can write up to 20GB to the current directory (/kaggle/working/) that gets preserved as output when you create a version using \"Save & Run All\" \n","# You can also write temporary files to /kaggle/temp/, but they won't be saved outside of the current session"]},{"cell_type":"code","execution_count":null,"metadata":{},"outputs":[{"ename":"","evalue":"","output_type":"error","traceback":["\u001b[1;31mRunning cells with 'c:\\Users\\nicolasvonrotz\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe' requires the ipykernel package.\n","\u001b[1;31mRun the following command to install 'ipykernel' into the Python environment. \n","\u001b[1;31mCommand: 'c:/Users/nicolasvonrotz/AppData/Local/Microsoft/WindowsApps/python3.11.exe -m pip install ipykernel -U --user --force-reinstall'"]}],"source":["!pip install fastai"]},{"cell_type":"code","execution_count":3,"metadata":{"execution":{"iopub.execute_input":"2023-04-11T14:35:10.245105Z","iopub.status.busy":"2023-04-11T14:35:10.244670Z","iopub.status.idle":"2023-04-11T14:35:16.105057Z","shell.execute_reply":"2023-04-11T14:35:16.102961Z","shell.execute_reply.started":"2023-04-11T14:35:10.245055Z"},"trusted":true},"outputs":[{"ename":"ModuleNotFoundError","evalue":"No module named 'gradio'","output_type":"error","traceback":["\u001b[0;31m---------------------------------------------------------------------------\u001b[0m","\u001b[0;31mModuleNotFoundError\u001b[0m                       Traceback (most recent call last)","\u001b[0;32m/tmp/ipykernel_27/903241981.py\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m      1\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0mfastai\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mvision\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mall\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0;34m*\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\u001b[0;31m \u001b[0;32mimport\u001b[0m \u001b[0mgradio\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mgr\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m      3\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n","\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'gradio'"]}],"source":["from fastai.vision.all import *\n","import gradio as gr\n","\n"]},{"cell_type":"code","execution_count":null,"metadata":{"execution":{"iopub.status.busy":"2023-04-11T14:34:42.409133Z","iopub.status.idle":"2023-04-11T14:34:42.409607Z","shell.execute_reply":"2023-04-11T14:34:42.409411Z","shell.execute_reply.started":"2023-04-11T14:34:42.409387Z"},"trusted":true},"outputs":[],"source":[" learn = load_learner('lego-bricks-model.pkl')"]},{"cell_type":"code","execution_count":null,"metadata":{"execution":{"iopub.status.busy":"2023-04-11T14:34:42.411395Z","iopub.status.idle":"2023-04-11T14:34:42.412332Z","shell.execute_reply":"2023-04-11T14:34:42.412068Z","shell.execute_reply.started":"2023-04-11T14:34:42.412028Z"},"trusted":true},"outputs":[],"source":["categories = ('3046 roof corner inside tile 2x2', '2357 brick corner 1x2x2', '18654 beam 1M')\n","\n","def classify_image(img)\n","pred,idx,probs = learn.predict(img)\n","return dict(zip(categories, map(float,probs)))"]},{"cell_type":"code","execution_count":null,"metadata":{"execution":{"iopub.status.busy":"2023-04-11T14:34:42.415004Z","iopub.status.idle":"2023-04-11T14:34:42.415583Z","shell.execute_reply":"2023-04-11T14:34:42.415375Z","shell.execute_reply.started":"2023-04-11T14:34:42.415346Z"},"trusted":true},"outputs":[],"source":["image = gr.inputs.Image(shape=(192, 192))\n","label = gr.outputs.Label()\n","examples = ['3046 roof corner inside tile 2x2 272L.png', '2357 brick corner 1x2x2 006L.png', '18654 beam 1M 259R.png']\n","\n","intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)\n","intf.launch(inline=False)"]}],"metadata":{"kernelspec":{"display_name":"Python 3","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.11.3"}},"nbformat":4,"nbformat_minor":4}