diff --git a/Tutorial/.gitkeep b/Tutorial/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/Tutorial/assets/.gitkeep b/Tutorial/assets/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/Tutorial/assets/image/.gitkeep b/Tutorial/assets/image/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/Tutorial/assets/image/Logo_MPG.png b/Tutorial/assets/image/Logo_MPG.png
deleted file mode 100644
index 9c65d4be3575dc8e32da983ea00b728dca00845a..0000000000000000000000000000000000000000
Binary files a/Tutorial/assets/image/Logo_MPG.png and /dev/null differ
diff --git a/Tutorial/assets/image/Logo_NOMAD.png b/Tutorial/assets/image/Logo_NOMAD.png
deleted file mode 100644
index 2187e3b9351e11aa693758559114c1f2a6670731..0000000000000000000000000000000000000000
Binary files a/Tutorial/assets/image/Logo_NOMAD.png and /dev/null differ
diff --git a/Tutorial/atomic_features_package_usage.ipynb b/Tutorial/atomic_features_package_usage.ipynb
deleted file mode 100644
index 97a9f3963ba595a2d5f9be0c912d7f98decd5023..0000000000000000000000000000000000000000
--- a/Tutorial/atomic_features_package_usage.ipynb
+++ /dev/null
@@ -1,466 +0,0 @@
-{
- "cells": [
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "<div id=\"teaser\" style=' background-position:  right center; background-size: 00px; background-repeat: no-repeat; \n",
-    "    padding-top: 20px;\n",
-    "    padding-right: 10px;\n",
-    "    padding-bottom: 170px;\n",
-    "    padding-left: 10px;\n",
-    "    border-bottom: 14px double #333;\n",
-    "    border-top: 14px double #333;' > \n",
-    "\n",
-    "   \n",
-    "   <div style=\"text-align:center\">\n",
-    "    <b><font size=\"6.4\">atomic-features-package usage demonstration</font></b>    \n",
-    "  </div>\n",
-    "    \n",
-    "<p>\n",
-    " created by:\n",
-    " Aakash Naik<sup>1</sup>, \n",
-    " Luca Ghiringhelli<sup> 1</sup> <br><br>\n",
-    "   \n",
-    "<sup>1</sup> Fritz Haber Institute of the Max Planck Society, Faradayweg 4-6, D-14195 Berlin, Germany <br>\n",
-    "<span class=\"nomad--last-updated\" data-version=\"v1.0.0\">[Last updated: April 8, 2020]</span>\n",
-    "  \n",
-    "<div> \n",
-    "<img  style=\"float: left;\" src=\"assets/image/Logo_MPG.png\" width=\"200\"> \n",
-    "<img  style=\"float: right;\" src=\"assets/image/Logo_NOMAD.png\" width=\"250\">\n",
-    "</div>\n",
-    "</div>\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Unified package that contains atomic-features from various sources like PYMATGEN, MAGPIE, LDA2015 amd FHI_dft can be imported into Jupyter-notebook for performing various machine learning studies\n",
-    "\n",
-    "In this demonstration I will show how one can use the package to access material features from different sources using this package"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "# --------------------------------------------------------------------------------------------------------------\n",
-    "# Getting Started"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "To install this package clone it using this following link:\n",
-    "\n",
-    "``git clone git@gitlab.mpcdf.mpg.de:nomad-lab/atomic-features-package.git``\n",
-    "\n",
-    "Then use the following command to install it like any other python package\n",
-    "\n",
-    "```pip install ./atomic-features-package```\n"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import warnings\n",
-    "warnings.simplefilter(action='ignore', category=FutureWarning)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "# --------------------------------------------------------------------------------------------------------------\n",
-    "# Importing this package modules in Jupyter notebook"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {
-    "scrolled": true
-   },
-   "outputs": [],
-   "source": [
-    "from atomicfeaturespackage.atomicproperties import periodictable"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "This module is a visualization tool that allows us to visualize atomic properites of all elements accross periodic table as a heatmap"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "\n",
-    "After importing periodictable module one must call this heatmap method to get interactive heatmaps. One must supply Spin and method appropirate keywords agruments as per one's interest. \n",
-    "\n",
-    "**Spin** arg value could be :\n",
-    "\n",
-    "* \"True\"\n",
-    "\n",
-    "* \"False\"\n",
-    "\n",
-    "**method** arg value could be :\n",
-    "\n",
-    "* \"hse06\"\n",
-    "\n",
-    "* \"pbe\"\n",
-    "\n",
-    "* \"pbe0\"\n",
-    "\n",
-    "* \"pbesol\"\n",
-    "\n",
-    "* \"pw-lda\"\n",
-    "\n",
-    "* \"revpbe\"\n",
-    "\n",
-    "* \"magpie\"\n",
-    "\n",
-    "* \"lda2015\"\n",
-    "\n",
-    "* \"pymat\"\n",
-    "\n",
-    "\n",
-    "**<font color='red'>Note</font>**: for **method** “magpie”/“lda2015”/“pymat” , **Spin** arg value has to be set to **\"False\"**\n",
-    "\n",
-    "As per different combinations specific element features will be loaded in heatmap plots."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Below is an example line of code you need to run to visualize data calculated via the HSE06 functional and spinless settings."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "application/vnd.jupyter.widget-view+json": {
-       "model_id": "341626e99e1041719860ce0eef35e6d5",
-       "version_major": 2,
-       "version_minor": 0
-      },
-      "text/plain": [
-       "interactive(children=(Dropdown(description='Feature', options=('atomic number', 'atomic mass', 'atomic_hfomo',…"
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "periodictable.heatmap(Spin = 'False', method = 'hse06')"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "After running the above line of code one gets a plot of complete periodic table of elements. From the dropdown menu, one can select which property one is interested to check and the table is updated automatically to show the corresponding heatmap."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "# --------------------------------------------------------------------------------------------------------------"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Besides ```periodictable module``` this package has 4 other modules that consist to atomic features from sources corresponding to its name. And it can be imported according to ones need to atomic features. \n",
-    "\n",
-    "I will breifly depict each of these module to access atomic feature and functions that are available with it.\n",
-    "\n",
-    "```atomic_properties_dft``` module : This module contains several atomic features accessible from FHI-AIMS dft calculations\n",
-    "\n",
-    "Import this module using following code shown in next cell block"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 4,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "from atomicfeaturespackage.atomicproperties import atomic_properties_dft as dft"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "\n",
-    "After importing ``atomic_properties_dft`` module one must call **method** function to instantiate element objects. One must supply Spin and method appropirate keywords agruments as per one's interest. \n",
-    "\n",
-    "\n",
-    "Spin arg value could be :\n",
-    "\n",
-    "* \"True\"\n",
-    "\n",
-    "* \"False\"\n",
-    "\n",
-    "method arg value could be :\n",
-    "\n",
-    "* \"hse06\"\n",
-    "\n",
-    "* \"pbe\"\n",
-    "\n",
-    "* \"pbe0\"\n",
-    "\n",
-    "* \"pbesol\"\n",
-    "\n",
-    "* \"pw-lda\"\n",
-    "\n",
-    "* \"revpbe\"\n",
-    "\n",
-    "As per different combinations specific datafiles will be read and element features could be accessed. This can be done as follows :"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 5,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "dft.method(method = 'pbe', Spin = 'False')"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "-1.2418694571568608e-19"
-      ]
-     },
-     "execution_count": 6,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "dft.C.atomic_ea"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "To view a dropdown list of properties accessible one can just press **Tab** after typing in dft.C."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Use **symbol** method from ```atomic_properties_dft module``` to acess property of interest of elements at once.\n",
-    "\n",
-    "Say for example we have a python list ```element = ['Sc','Ti', 'V', 'Cr']``` and we wish to get atomic number of these elements we can do the following"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 7,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "element = ['Sc','Ti', 'V', 'Cr']\n",
-    "atomic_number = []\n",
-    "for ele in element:\n",
-    "        atomic_number.append(dft.symbol(ele).atomic_number)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "You can also get a python list of all feature names accessible from ```atomic_properties_dft``` module. For getting this one can use following command"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 8,
-   "metadata": {
-    "scrolled": false
-   },
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "['atomic_ea',\n",
-       " 'atomic_ea_by_half_charged_homo',\n",
-       " 'atomic_element_symbol',\n",
-       " 'atomic_hfomo',\n",
-       " 'atomic_hpomo',\n",
-       " 'atomic_ip',\n",
-       " 'atomic_ip_by_half_charged_homo',\n",
-       " 'atomic_lfumo',\n",
-       " 'atomic_lpumo',\n",
-       " 'atomic_number',\n",
-       " 'atomic_r_d',\n",
-       " 'atomic_r_d_05',\n",
-       " 'atomic_r_d_1',\n",
-       " 'atomic_r_d_neg_05',\n",
-       " 'atomic_r_d_neg_1',\n",
-       " 'atomic_r_p',\n",
-       " 'atomic_r_p_05',\n",
-       " 'atomic_r_p_1',\n",
-       " 'atomic_r_p_neg_05',\n",
-       " 'atomic_r_p_neg_1',\n",
-       " 'atomic_r_s',\n",
-       " 'atomic_r_s_05',\n",
-       " 'atomic_r_s_1',\n",
-       " 'atomic_r_s_neg_05',\n",
-       " 'atomic_r_s_neg_1',\n",
-       " 'atomic_r_val',\n",
-       " 'atomic_r_val_05',\n",
-       " 'atomic_r_val_1',\n",
-       " 'atomic_r_val_neg_05',\n",
-       " 'atomic_r_val_neg_1']"
-      ]
-     },
-     "execution_count": 8,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "dft.method_list"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "# --------------------------------------------------------------------------------------------------------------"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "``atomic_properties_pymat`` module contains several atomic features accessible from pymatgen\n",
-    "\n",
-    "Import this module using following code shown in next cell block"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 9,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "from atomicfeaturespackage.atomicproperties import atomic_properties_pymat as pymat"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 10,
-   "metadata": {
-    "scrolled": true
-   },
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "4300.0"
-      ]
-     },
-     "execution_count": 10,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "pymat.C.boiling_point"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "To get a list of properties accessible one can just press **Tab** after typing in pymat.C.\n",
-    "\n",
-    "Use **symbol** method from ``atomic_properties_pymat`` module to acess property of interest of elements at once in similar manner as described for ``atomic_properties_dft`` module above.\n",
-    "\n",
-    "Similarly you can also get a python list of all feature names accessible from ```atomic_properties_pymat``` module. "
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "# --------------------------------------------------------------------------------------------------------------"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Similarly remaining two modules ```atomic_properties_pymat``` and ```atomic_properties_magpie``` can be imported and atomic features can be accessed. Use the following commands for importing the modules respectively"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 11,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "from atomicfeaturespackage.atomicproperties import atomic_properties_lda2015 as lda\n",
-    "from atomicfeaturespackage.atomicproperties import atomic_properties_magpie as mp"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "One is referred to this documentation for further details on this package\n",
-    "\n",
-    "[atomic-features-package](https://gitlab.mpcdf.mpg.de/nomad-lab/atomic-features-package/-/blob/master/atomicfeaturespackage/docs/_build/latex/atomic-features-package.pdf)"
-   ]
-  }
- ],
- "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.6.9"
-  }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}