Skip to content

Instantly share code, notes, and snippets.

@BrunoGomesCoelho
Created May 13, 2021 02:34
Show Gist options
  • Save BrunoGomesCoelho/1f8f3792a02ded4a7101de9636ba1518 to your computer and use it in GitHub Desktop.
Save BrunoGomesCoelho/1f8f3792a02ded4a7101de9636ba1518 to your computer and use it in GitHub Desktop.
KD-Lib test.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "KD-Lib test.ipynb",
"provenance": [],
"collapsed_sections": [],
"authorship_tag": "ABX9TyM5cCW2YoS1DcJLSDguEzRZ",
"include_colab_link": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/BrunoGomesCoelho/1f8f3792a02ded4a7101de9636ba1518/kd-lib-test.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "PXOEvII7ksSf",
"outputId": "87e08a86-2e10-48b2-c1f7-a4dcb92ec4f5"
},
"source": [
"!pip install KD-Lib -U"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"text": [
"Collecting KD-Lib\n",
" Downloading https://files.pythonhosted.org/packages/84/53/453d622516fcacbb7c99a6429c07ef947a00948c3062dec5586d0094402c/KD_Lib-0.0.3.tar.gz\n",
"Building wheels for collected packages: KD-Lib\n",
" Building wheel for KD-Lib (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
" Created wheel for KD-Lib: filename=KD_Lib-0.0.3-py2.py3-none-any.whl size=3016 sha256=2a0934d118b4c21da6fbfb4a605ea109eda01a8f9088b74bcbe3d571ec0d18bd\n",
" Stored in directory: /root/.cache/pip/wheels/92/4e/75/8b175dff50c7b47d56c3c12108d117b21784936a85077f9154\n",
"Successfully built KD-Lib\n",
"Installing collected packages: KD-Lib\n",
"Successfully installed KD-Lib-0.0.3\n"
],
"name": "stdout"
}
]
},
{
"cell_type": "code",
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 504
},
"id": "aTtm9pQ3kwmL",
"outputId": "5e751db2-133b-4a55-f15c-edd459cb745a"
},
"source": [
"from KD_Lib.KD import VanillaKD"
],
"execution_count": null,
"outputs": [
{
"output_type": "error",
"ename": "ModuleNotFoundError",
"evalue": "ignored",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m<ipython-input-2-202178457f3f>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0mKD_Lib\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mKD\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mVanillaKD\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
"\u001b[0;32m/usr/local/lib/python3.7/dist-packages/KD_Lib/__init__.py\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0m__version__\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m'0.0.3'\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 9\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0;34m.\u001b[0m\u001b[0mmodels\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mresnet\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mshallow\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mnin\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlenet\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlstm\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 10\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0;34m.\u001b[0m\u001b[0moriginal\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0moriginal\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 11\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0;34m.\u001b[0m\u001b[0mattention\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mattention\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'KD_Lib.models'",
"",
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0;32m\nNOTE: If your import is failing due to a missing package, you can\nmanually install dependencies using either !pip or !apt.\n\nTo view examples of installing some common dependencies, click the\n\"Open Examples\" button below.\n\u001b[0;31m---------------------------------------------------------------------------\u001b[0m\n"
]
}
]
},
{
"cell_type": "code",
"metadata": {
"id": "DhhHkDYokxad"
},
"source": [
""
],
"execution_count": null,
"outputs": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment