-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensitivity_schema.sql
29 lines (27 loc) · 1.95 KB
/
sensitivity_schema.sql
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
do $$
begin
create table if not exists "output_sensitivity_test" (
"id" serial unique,
"accuracy" double precision not null, -- the model prediction rate
"number_of_neurons" integer not null, -- the number of neurons in the reservoire
"reservoire_connectivity" double precision not null, -- the probability of each neurons being connected
"spectral_radius" double precision, -- the spectral radius of the connectivity matrix
"input_connectivity" double precision not null, -- the probability of a neuron being connected to the input
"representation" text not null, -- the representation we choose
"input_scaling" double precision not null, -- the input scaling
"thalmic_mean" double precision not null, -- thalmic mean
"connectivity_strength" double precision not null -- avg connection strength between the neurons
);
create table if not exists "representation_test" (
"id" serial unique,
"accuracy" double precision not null, -- the model prediction rate
"number_of_neurons" integer not null, -- the number of neurons in the reservoire
"reservoire_connectivity" double precision not null, -- the probability of each neurons being connected
"spectral_radius" double precision, -- the spectral radius of the connectivity matrix
"input_connectivity" double precision not null, -- the probability of a neuron being connected to the input
"representation" text not null, -- the representation we choose
"input_scaling" double precision not null, -- the input scaling
"thalmic_mean" double precision not null, -- thalmic mean
"connectivity_strength" double precision not null -- avg connection strength between the neurons
);
end$$;