I trained a model with these parameters:
conv1_kernel = 10
conv2_kernel = 10
min_rt = 0
max_rt = 61
time_scale = 60
max_length = 51
Is this model now restricted to input in the scale of the parameters also when predicting? e.g. RT in 0-61min, time_scale in sec and max length of the peptides = 51?
When predicting (python prediction_emb.py 100 model.pt 10 input_file.txt), what does the RT_scale mean?
The observed values in the prediction_file are different from the RTs in the input_file, because they are multiplied with the RT_scale parameter?
obse,pred1=pred_from_model(conv1,conv1,round1model,RTtest,15)
pred_ensemble = pred1*scale
obse = obse*scale
I would like the output RTs to be between 0-100, independent of the input time.
I trained a model with these parameters:
conv1_kernel = 10
conv2_kernel = 10
min_rt = 0
max_rt = 61
time_scale = 60
max_length = 51
Is this model now restricted to input in the scale of the parameters also when predicting? e.g. RT in 0-61min, time_scale in sec and max length of the peptides = 51?
When predicting (python prediction_emb.py 100 model.pt 10 input_file.txt), what does the RT_scale mean?
The observed values in the prediction_file are different from the RTs in the input_file, because they are multiplied with the RT_scale parameter?
I would like the output RTs to be between 0-100, independent of the input time.