Skip to content

Commit 2f0ac8d

Browse files
committed
clean up
1 parent fde77a5 commit 2f0ac8d

23 files changed

+4
-158
lines changed

Diff for: CleanData.py

-33
This file was deleted.

Diff for: Data-Preprocess.Py

-33
This file was deleted.

Diff for: Diagrams/Graphs/Benchmark1k2101.png

-108 Bytes
Loading

Diff for: Diagrams/Graphs/CSARHiQ36.png

-37 Bytes
Loading

Diff for: Diagrams/Graphs/Test2016290.png

-96 Bytes
Loading

Diff for: Diagrams/Graphs/Train.png

-139 Bytes
Loading

Diff for: Diagrams/Graphs/Validation.png

-64 Bytes
Loading

Diff for: Diagrams/visualizations.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 2,
5+
"execution_count": 1,
66
"metadata": {},
77
"outputs": [],
88
"source": [
@@ -30,7 +30,7 @@
3030
},
3131
{
3232
"cell_type": "code",
33-
"execution_count": 16,
33+
"execution_count": 2,
3434
"metadata": {},
3535
"outputs": [],
3636
"source": [
@@ -56,8 +56,8 @@
5656
" main_ax.set(xlim=(0, 12), ylim=(0, 12))\n",
5757
" main_ax.grid(True)\n",
5858
" main_ax.plot([0, 12], [0, 12], 'k--')\n",
59-
" main_ax.set_xlabel('Predicted pKa', fontsize=12)\n",
60-
" main_ax.set_ylabel('Experimental pKa', fontsize=12)\n",
59+
" main_ax.set_xlabel('Predicted pKd', fontsize=12)\n",
60+
" main_ax.set_ylabel('Experimental pKd', fontsize=12)\n",
6161
" main_ax.legend(loc='upper left') # Adding the legend\n",
6262
"\n",
6363
" x_hist_ax.hist(df.iloc[:, 0], bins=40, color=color, alpha=0.7)\n",
File renamed without changes.

Diff for: aligned_binding_sites.csv

-28
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: Untitled-1.nb renamed to archive/Untitled-1.nb

File renamed without changes.

Diff for: Untitled-3.nb renamed to archive/Untitled-3.nb

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: temp/test.ipynb renamed to archive/test.ipynb

File renamed without changes.

Diff for: benchmarking.ipynb

-38
Original file line numberDiff line numberDiff line change
@@ -324,44 +324,6 @@
324324
" json.dump(experimental_pKd, file)\n",
325325
"plapt.clear_cache()"
326326
]
327-
},
328-
{
329-
"cell_type": "markdown",
330-
"metadata": {},
331-
"source": [
332-
"# Visualization"
333-
]
334-
},
335-
{
336-
"cell_type": "code",
337-
"execution_count": null,
338-
"metadata": {},
339-
"outputs": [],
340-
"source": [
341-
"import matplotlib.pyplot as plt\n",
342-
"import numpy as np\n",
343-
"from sklearn.metrics import mean_squared_error, mean_absolute_error, r2_score\n",
344-
"from scipy.stats import pearsonr\n",
345-
"\n",
346-
"# Plotting the straight line test\n",
347-
"plt.scatter(experimental_pKd, predicted_pKd, color='blue')\n",
348-
"plt.plot([min(experimental_pKd), max(experimental_pKd)], [min(predicted_pKd), max(predicted_pKd)], color='red') # Line\n",
349-
"plt.xlabel('Experimental pKd')\n",
350-
"plt.ylabel('Predicted pKd')\n",
351-
"plt.title('Straight Line Test')\n",
352-
"plt.show()\n",
353-
"\n",
354-
"# Calculating Metrics\n",
355-
"mse = mean_squared_error(experimental_pKd, predicted_pKd)\n",
356-
"mae = mean_absolute_error(experimental_pKd, predicted_pKd)\n",
357-
"rmse = np.sqrt(mse)\n",
358-
"pearson_corr, _ = pearsonr(experimental_pKd, predicted_pKd)\n",
359-
"\n",
360-
"print(\"Mean Squared Error (MSE):\", mse)\n",
361-
"print(\"Mean Absolute Error (MAE):\", mae)\n",
362-
"print(\"Root Mean Squared Error (RMSE):\", rmse)\n",
363-
"print(\"Pearson's Correlation Coefficient:\", pearson_corr)\n"
364-
]
365327
}
366328
],
367329
"metadata": {

0 commit comments

Comments
 (0)