Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion notebooks/Comet-Python-API.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install -U \"comet_ml>=3.44.0\""
"%pip install comet_ml"
]
},
{
Expand Down
16 changes: 3 additions & 13 deletions notebooks/Comet_Custom_Panels_for_Object_Detection.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"outputId": "126c0c65-0781-4a7c-e3f1-6b00af076838"
},
"source": [
"!pip install comet_ml"
"%pip install comet_ml"
],
"execution_count": null,
"outputs": [
Expand Down Expand Up @@ -71,20 +71,10 @@
},
"source": [
"import comet_ml\n",
"import getpass, os\n",
"\n",
"os.environ[\"COMET_API_KEY\"] = getpass.getpass(\"Paste your COMET API KEY: \")"
"comet_ml.login()"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"text": [
"Paste your COMET API KEY: ··········\n"
],
"name": "stdout"
}
]
"outputs": []
},
{
"cell_type": "code",
Expand Down
16 changes: 3 additions & 13 deletions notebooks/Comet_Logging_Curves.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"id": "Tx5C-o8hy0y6"
},
"source": [
"!pip install comet_ml"
"%pip install comet_ml"
],
"execution_count": null,
"outputs": []
Expand All @@ -36,20 +36,10 @@
},
"source": [
"import comet_ml\n",
"import getpass, os\n",
"\n",
"os.environ[\"COMET_API_KEY\"] = getpass.getpass(\"Paste your COMET API KEY: \")"
"comet_ml.login()"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"text": [
"Paste your COMET API KEY: ··········\n"
],
"name": "stdout"
}
]
"outputs": []
},
{
"cell_type": "code",
Expand Down
9 changes: 4 additions & 5 deletions notebooks/Comet_Tensorflow_Model_Analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"id": "TMTwnEtTHXE6"
},
"source": [
"!pip install -U pip"
"%pip install -U pip"
],
"execution_count": null,
"outputs": []
Expand All @@ -30,7 +30,7 @@
"id": "dWTbGtU2HkZA"
},
"source": [
"!pip install tensorflow-model-analysis"
"%pip install tensorflow-model-analysis"
],
"execution_count": null,
"outputs": []
Expand All @@ -41,7 +41,7 @@
"id": "l2pryucSqLOS"
},
"source": [
"!pip install comet_ml"
"%pip install comet_ml"
],
"execution_count": null,
"outputs": []
Expand All @@ -52,7 +52,6 @@
"id": "tMFDWlcEHmEo"
},
"source": [
"import getpass, os\n",
"import comet_ml\n",
"import tensorflow_model_analysis as tfma"
],
Expand All @@ -65,7 +64,7 @@
"id": "yYhrTG1kffZB"
},
"source": [
"os.environ[\"COMET_API_KEY\"] = getpass.getpass(\"Paste your COMET API KEY: \")"
"comet_ml.login()"
],
"execution_count": null,
"outputs": []
Expand Down
16 changes: 3 additions & 13 deletions notebooks/Comet_Visualizations_to_Debug_CNNs.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"outputId": "6878478a-055d-42bc-c7cf-584012b724fd"
},
"source": [
"!pip install comet_ml"
"%pip install comet_ml"
],
"execution_count": null,
"outputs": [
Expand Down Expand Up @@ -63,20 +63,10 @@
},
"source": [
"import comet_ml\n",
"import getpass, os\n",
"\n",
"os.environ[\"COMET_API_KEY\"] = getpass.getpass(\"Paste your COMET API KEY: \")"
"comet_ml.login()"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"text": [
"Paste your COMET API KEY: ··········\n"
],
"name": "stdout"
}
]
"outputs": []
},
{
"cell_type": "code",
Expand Down
4 changes: 1 addition & 3 deletions notebooks/Comet_and_Vega.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@
},
"source": [
"import comet_ml\n",
"import getpass, os\n",
"\n",
"os.environ[\"COMET_API_KEY\"] = getpass.getpass(\"Paste your COMET API KEY: \")"
"comet_ml.login()"
],
"execution_count": null,
"outputs": []
Expand Down
Loading