-
Notifications
You must be signed in to change notification settings - Fork 0
/
06.PBMC_celltype.py
134 lines (88 loc) · 3.33 KB
/
06.PBMC_celltype.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import tensorflow as tf
import utils
# import functools
import numpy as np
from sklearn import preprocessing
import keras_tuner as kt
from matplotlib import pyplot as plt
import pandas as pd
from scipy.stats import spearmanr, pearsonr
import os
os.chdir(r"E:\Documents\bio\10.nucleosome\01.scripts\09.train_scripts")
import random
seed=4
seed=7
def scale_x(x):
# 预处理
# 先对非0特征取log
# 然后进行归一化
min_max_scaler = preprocessing.MinMaxScaler()
standar_scaler = preprocessing.StandardScaler()
x[x!=0] = np.log(x[x!=0])
x = standar_scaler.fit_transform(x)
x = min_max_scaler.fit_transform(x)
return x
def load_data(path):
raw_data = np.loadtxt(path, dtype=np.float32, delimiter=",", skiprows=1)
return (raw_data[..., :263]), (raw_data[..., 263: 269])
data_dir = "../01.train_data/PBMC_CellType200/"
train_x, train_y = load_data(data_dir + "train.csv")
valid_x, valid_y = load_data(data_dir + "valid.csv")
test_x, test_y = load_data(data_dir + "test.csv")
def model_with_seed(seed):
random.seed(seed)# 为python设置随机种子
os.environ['PYTHONHASHSEED'] = str(seed)
np.random.seed(seed)# 为numpy设置随机种子
tf.compat.v1.set_random_seed(seed)# tf cpu fix seed
os.environ['TF_DETERMINISTIC_OPS'] = '1' # tf gpu fix seed
# 263 -> TPM
model = tf.keras.Sequential()
model.add(tf.keras.layers.Dense(32, activation="relu"))
for _ in range(4):
model.add(tf.keras.layers.BatchNormalization())
model.add(tf.keras.layers.Dense(32, activation="relu"
)
)
# model.add(tf.keras.layers.AlphaDropout(rate=0.5))
model.add(tf.keras.layers.BatchNormalization())
model.add(tf.keras.layers.Dense(5))
model.compile(
loss = "mse",
optimizer = "adam"
)
stop_early = tf.keras.callbacks.EarlyStopping(monitor='val_loss', patience=10)
y_pre_batch = []
class logPredictPer100epoch(tf.keras.callbacks.Callback):
def on_epoch_end(self, batch, logs=None):
example_result = self.model.predict(test_x)
y_pre_batch.append(tf.reshape(example_result,[-1]))
history = model.fit(x=train_x,
y=train_y,
batch_size=512,
validation_data=(valid_x, valid_y),
epochs=80,
callbacks=[stop_early, logPredictPer100epoch()]
)
loss = history.history['loss']
val_loss = history.history['val_loss']
example_batch = test_x
example_result = model.predict(example_batch)
return (model, history, loss, val_loss, example_batch, example_result, y_pre_batch)
seed = 769031
model, history, loss, val_loss, example_batch, example_result, y_pre_batch = model_with_seed(seed)
res_dir = "res/PBMC_CellType200/"
if not os.path.exists(res_dir):
os.makedirs(res_dir)
np.savetxt(res_dir + "01.y_pre_history.csv", y_pre_batch, delimiter=",")
pd.DataFrame({"loss": loss, "val_loss": val_loss}).to_csv(res_dir + "02.loss_history.csv")
pd.DataFrame(example_result).to_csv(res_dir + "03.res.csv")
pd.DataFrame(test_y).to_csv(res_dir + "04.real_y.csv")
plt.scatter(test_y,tf.reshape(example_result, [-1]))
plt.savefig("res_placenta_4p.pdf")
plt.savefig("res_placenta_4p.tiff")
y_pre = pd.Series(tf.reshape(example_result, [-1]))
test_y2 = pd.Series(tf.reshape(test_y,[-1]))
y = pd.Series(test_y2)
print(y.corr(y_pre))
print(spearmanr(y_pre, y))
print(pearsonr(y_pre, y))