From 2f9a2e32ce961f5c559865c508eb051f5cd509f6 Mon Sep 17 00:00:00 2001 From: Michael <165048583+lordmikerahl@users.noreply.github.com> Date: Wed, 27 Mar 2024 18:06:51 +0000 Subject: [PATCH] rename --- michael-baybe-inhibitor.ipynb | 198 ------------------ ...ck.ipynb => michalis-baybe-inhibitor.ipynb | 0 2 files changed, 198 deletions(-) delete mode 100644 michael-baybe-inhibitor.ipynb rename baybe_hack.ipynb => michalis-baybe-inhibitor.ipynb (100%) diff --git a/michael-baybe-inhibitor.ipynb b/michael-baybe-inhibitor.ipynb deleted file mode 100644 index f2f841f..0000000 --- a/michael-baybe-inhibitor.ipynb +++ /dev/null @@ -1,198 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Introduction" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This project will focus on exploring the capabilities of Bayesian optimization, specifically employing BayBE, in the discovery of novel corrosion inhibitors for materials design. Initially, we will work with a randomly chosen subset from a comprehensive database of electrochemical responses of small organic molecules. Our goal is to assess how Bayesian optimization can speed up the screening process across the design space to identify promising compounds. We will compare different strategies for incorporating alloy information, while optimizing the experimental parameters with respect to the inhibitive performance of the screened compounds." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Initizalization" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Loading libraries and data files:" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import numpy as np\n", - "from baybe import Campaign\n", - "\n", - "df_AA2024 = pd.read_excel('data/filtered_AA2024.xlsx')\n", - "df_AA1000 = pd.read_excel('data/filtered_AA1000.xlsx')\n", - "df_Al = pd.read_excel('data/filtered_Al.xlsx')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Data Processing" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Can is the best" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Can is the best" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Data Anaylsis" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Bayesian Optimization" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Search Space" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Objective" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Recommender" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Benchmarking" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Transfer Learning" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "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.10.12" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/baybe_hack.ipynb b/michalis-baybe-inhibitor.ipynb similarity index 100% rename from baybe_hack.ipynb rename to michalis-baybe-inhibitor.ipynb