Skip to content

Commit

Permalink
Merge pull request #33 from AC-BO-Hackathon:canozkan42
Browse files Browse the repository at this point in the history
making my jupyter notebook main, moving others into the legacy_code folder
  • Loading branch information
canozkan42 authored Mar 28, 2024
2 parents dffe351 + 09a4014 commit a0ab0ba
Show file tree
Hide file tree
Showing 9 changed files with 4,355 additions and 4,355 deletions.
4,198 changes: 4,168 additions & 30 deletions baybe-inhibitor.ipynb

Large diffs are not rendered by default.

4,325 changes: 0 additions & 4,325 deletions can_baybe-inhibitor.ipynb

This file was deleted.

File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
187 changes: 187 additions & 0 deletions legacy_code/baybe-inhibitor.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
{
"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": []
},
{
"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
}
File renamed without changes.
Binary file removed run_impute_mode.png
Binary file not shown.

0 comments on commit a0ab0ba

Please sign in to comment.