From b28c797314d203586b28d44aa44d6e89e6ae1b32 Mon Sep 17 00:00:00 2001 From: Tsz Wai Ko <47970742+kenko911@users.noreply.github.com> Date: Tue, 2 Apr 2024 13:03:52 -0700 Subject: [PATCH] Update Training a M3GNet Potential with PyTorch Lightning.ipynb Removed the public mp-api key Signed-off-by: Tsz Wai Ko <47970742+kenko911@users.noreply.github.com> --- .../Training a M3GNet Potential with PyTorch Lightning.ipynb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/Training a M3GNet Potential with PyTorch Lightning.ipynb b/examples/Training a M3GNet Potential with PyTorch Lightning.ipynb index 6e8ab53a..e7177733 100644 --- a/examples/Training a M3GNet Potential with PyTorch Lightning.ipynb +++ b/examples/Training a M3GNet Potential with PyTorch Lightning.ipynb @@ -84,8 +84,7 @@ "outputs": [], "source": [ "# Obtain your API key here: https://next-gen.materialsproject.org/api\n", - "# mpr = MPRester(api_key=\"YOUR_API_KEY\")\n", - "mpr = MPRester(\"FwTXcju8unkI2VbInEgZDTN8coDB6S6U\")\n", + "mpr = MPRester(api_key=\"YOUR_API_KEY\")\n", "entries = mpr.get_entries_in_chemsys([\"Si\", \"O\"])\n", "structures = [e.structure for e in entries]\n", "energies = [e.energy for e in entries]\n",