-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathControl.jl
346 lines (301 loc) · 11.4 KB
/
Control.jl
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# make your scripts automatically re-activate your project
cd(@__DIR__)
using Pkg; Pkg.activate("."); Pkg.instantiate()
using Flux, DiffEqFlux, DiffEqSensitivity
using DifferentialEquations
using DiffEqSensitivity
using DiffEqNoiseProcess
using Plots
using Printf, BSON
using QuantumOptics
using Statistics
using Zygote
using StaticArrays
using LinearAlgebra
using JLD #saving models
#################################################
#read parameters from external file
include("parameters_qb.jl")
using Main.parameters
struct Parameters
dim::Int64
w::Float32
force_mag::Float32
n_steps::Int64
dt::Float32
n_substeps::Int64
gamma::Float32
end
MyParameters=Parameters(
parameters.parameters_para["N"],
parameters.parameters_para["w"],
parameters.parameters_para["force_mag"],
parameters.parameters_para["max_episode_steps"],
parameters.parameters_para["dt"],
parameters.parameters_para["n_substeps"],
parameters.parameters_para["gamma"])
# nr of parallel realizations
n_par = 64
# loss function hyperparameters
C1 = 0.8f0 # evolution state fid
C2 = 0.001f0 # action amplitudes
C3 = 1.8f0*MyParameters.n_steps/50 #enhance last 50 steps
########################
using Random
Random.seed!(2)
################################
# Hamiltonian and evolution
basis = SpinBasis(1//2) #max n=dim-1
σ_z = sigmaz(basis)
σ_x = sigmax(basis)
σ_p = sigmap(basis)
σ_m = sigmam(basis)
σ_pm = σ_p*σ_m
H_0pre = MyParameters.w/2.0f0*σ_z #drift Hamiltonian
H_1pre = σ_x #control field
#to the dense regime, all real, otherwise Flux.train! complains
H_0 = real(Array{Float32}(H_0pre.data))
H_1 = real(Array{Float32}(H_1pre.data))
Arrayσ_p = real(Array{Float32}(σ_p.data))
Arrayσ_m = real(Array{Float32}(σ_m.data))
Arrayσ_pm = real(Array{Float32}(σ_pm.data))
###################
# DRIFT TERM FOR SDE
function qb_dynamics_dt!(du,u, α, t) #du/u have a standard dimension
ψRe = u[1:MyParameters.dim] #(dim,)
ψIm = u[MyParameters.dim+1:end]
HRe = H_0.+α[1]*H_1 #size (dim,dim) ,alpha is just a single number
Reρ = ψRe.*transpose(ψRe)+ψIm.*transpose(ψIm)
ex_x = real(sum(diag((Arrayσ_p+Arrayσ_m)*Reρ)))
HIm = -Arrayσ_pm/2 +ex_x*Arrayσ_m
du[1:MyParameters.dim] = dψRe = HIm*ψRe+HRe*ψIm; #size dim)
du[MyParameters.dim+1:end] = dψIm = HIm*ψIm-HRe*ψRe;
end
###################
# DIFFUSION TERM FOR SDE
function qb_dynamics_dW!(du,u, α, t) #last action IS NOT STORED IN u
ψRe = u[1:MyParameters.dim] #(dim)
ψIm = u[MyParameters.dim+1:end]
HRe = Arrayσ_m
du[1:MyParameters.dim,:] = dψRe = HRe*ψRe; #size (dim)
du[MyParameters.dim+1:end,:] = dψIm = HRe*ψIm;
end
################################################
#model
@info("Constructing the model...") #input: current state
state_1 = Dense(2*MyParameters.dim, 256,relu ,initb = Flux.glorot_uniform)
state_2 = Dense(256, 128,relu, initb = Flux.glorot_uniform)
state_3 = Dense(128, 64,relu, initb = Flux.glorot_uniform)
state_4 = Dense(64, 1,softsign,initb = Flux.glorot_uniform)
model = Chain(state_1, state_2, state_3,state_4)
p1, re = Flux.destructure(model)
###############################################
# initial state anywhere on the Bloch sphere
u0 = Array{Float32,2}(undef, 2*MyParameters.dim,n_par)
fill!(u0,0.0f0)
u0[2,:] .= 1.0f0 #down state
function prepare_initial!(u0) #random position on the Bloch sphere
fill!(u0,0.0f0)
theta = acos.(2*rand(n_par).-[1]) #uniform sampling for cos(theta) between -1 and 1
phi = rand(n_par)*2*pi
#real parts
u0[1,:] += cos.(theta/2)
u0[2,:] += sin.(theta/2).*cos.(phi)
#imag parts
#u0[3,:].+=0
u0[4,:] += sin.(theta/2).*sin.(phi)
#for sure normalize initial state
norm_factor = sqrt.(sum(u0[1:2*MyParameters.dim,:].^2,dims=1))
u0[1:2*MyParameters.dim,:] = u0[1:2*MyParameters.dim,:]./norm_factor
return u0
end
##########################
# target state
# ψtar = |up>
ut_complex = Array{Float32,1}(undef, MyParameters.dim)
fill!(ut_complex,0.0f0)
ut_complex[1,:] .= 1.0f0
Re_ut = real(Array{Float32}(ut_complex))
Im_ut = imag(Array{Float32}(ut_complex))
#To visualize
Fock_target = SVector{MyParameters.dim}(Re_ut.^2+Im_ut.^2)
############################################
#Mutate vector outside gradients so Zygote will not complain!
# Necessary for collectiong results during the training
mut(A,index,x) = (A[index] = x)
mut_row(A,index,x) = (A[index,:]=x)
mut_vec(A,x) = (A.=x)
#tell Zygote not to take gradients of these
Zygote.@nograd mut
Zygote.@nograd mut_row
Zygote.@nograd mut_vec
##################################
# time range for the solver
t_interval = round(MyParameters.n_substeps*MyParameters.dt,digits=5)
tspan = (0.0f0,t_interval)
#########################################
#Static Arrays to collect results
mean_fid_store = zeros(MVector{MyParameters.n_steps+1,Float32})
std_fid_store = zeros(MVector{MyParameters.n_steps+1,Float32})
single_traj_fid_store = zeros(MMatrix{MyParameters.n_steps+1,n_par,Float32})
mean_action_store = zeros(MVector{MyParameters.n_steps,Float32})
std_action_store = zeros(MVector{MyParameters.n_steps,Float32})
single_traj_action_store = zeros(MMatrix{MyParameters.n_steps,n_par,Float32})
Fock_end_example = zeros(MVector{MyParameters.dim,Float32})
###########################
# compute loss
###########################
#normalize the state using callback function
condition(u,t,integrator) = true
function affect!(integrator)
integrator.u = integrator.u/norm(integrator.u)
end
cb = DiscreteCallback(condition,affect!,save_positions = (false,false))
#creating the noise process
CreateGrid(W1) = (NoiseGrid(Array{Float32}((0.0:MyParameters.dt:(t_interval+MyParameters.dt))),W1))
Zygote.@nograd CreateGrid #avoid taking grads of this function
# set scalar random process
W = sqrt(MyParameters.dt)*randn(Float32,MyParameters.n_substeps+1) #for 1 trajectory
W1 = cumsum([zero(MyParameters.dt); W[1:end-1]], dims=1)
NG = CreateGrid(W1)
# define SDE problem
prepare_initial!(u0)
α = zeros(Float32,1,n_par)
prob = SDEProblem{true}(qb_dynamics_dt!,qb_dynamics_dW!, u0[:,1], tspan,α[1,1], noise=NG )
function loss_along_trajectory(p1)
#initial values
loss = 0.0f0
u = u0
α = zeros(Float32,1,n_par) #start with zero actions
function prob_func(prob, i, repeat)
#prepare tge vector of Wiener Process
W = sqrt(MyParameters.dt)*randn(Float32,MyParameters.n_substeps+1) #for 1 trajectory
W1 = cumsum([zero(MyParameters.dt); W[1:end-1]], dims=1)
NG = CreateGrid(W1) # EM and RKMil
remake(prob,p = α[i:i],u0 = u[:,i],noise = NG)
end
#initial state
Re_uj = @view u[1:MyParameters.dim,:]
Im_uj = @view u[MyParameters.dim+1:end,:]
fid = zeros(Float32,1,n_par)
fid += abs2.(sum(Re_ut.*Re_uj,dims=1))
# fid += abs2.(sum(Im_ut.*Im_uj,dims=1)) #commented because Im_ut=0, for general target uncomment
# fid += abs2.(sum(Im_ut.*Re_uj,dims=1))
fid += abs2.(sum(Re_ut.*Im_uj,dims=1))
# fid += 2*(sum(Re_ut.*Re_uj,dims=1)).*sum(Im_ut.*Im_uj,dims=1)
# fid -= 2*(sum(Re_ut.*Im_uj,dims=1)).*sum(Im_ut.*Re_uj,dims=1)
mut_row(single_traj_fid_store,1,fid)
mut(mean_fid_store,1,mean(fid))
mut(std_fid_store,1,std(fid))
for j in 1:MyParameters.n_steps
#update action from NN
α = re(p1)(u).*MyParameters.force_mag #dim (1,n_par)
#define ensemble problem
ensembleprob = EnsembleProblem(prob,prob_func = prob_func)
u = Array(solve(ensembleprob, RKMil(),
ensemblealg = EnsembleThreads(), # EnsembleCPUArray(), EnsembleDistributed()
sensealg = ForwardDiffSensitivity(),
dt = MyParameters.dt,# save_everystep=false,
saveat = [t_interval],callback = cb, adaptive = false, trajectories = n_par, batch_size = n_par,
save_noise = false,
timeseries_errors = false,weak_timeseries_errors = false,weak_dense_errors = false
))[:,1,:]
Re_uj = @view u[1:MyParameters.dim,:]
Im_uj = @view u[MyParameters.dim+1:end,:]
fid = zeros(Float32,1,n_par)
fid += abs2.(sum(Re_ut.*Re_uj,dims=1)) #average over n_par
# fid += abs2.(sum(Im_ut.*Im_uj,dims=1))
# fid +=a bs2.(sum(Im_ut.*Re_uj,dims=1))
fid += abs2.(sum(Re_ut.*Im_uj,dims=1))
# fid += 2*(sum(Re_ut.*Re_uj,dims=1)).*sum(Im_ut.*Im_uj,dims=1)
# fid -= 2*(sum(Re_ut.*Im_uj,dims=1)).*sum(Im_ut.*Re_uj,dims=1)
loss += C1*MyParameters.gamma^j*(1-mean(fid))
#store data
mut(mean_fid_store,j+1,mean(fid))
mut(std_fid_store,j+1,std(fid))
mut_row(single_traj_fid_store,j+1,fid)
mut(mean_action_store,j,mean(α))
mut(std_action_store,j,std(α))
mut_row(single_traj_action_store,j,α)
#punish large actions--note, that for j we are pointing to the j-1st action!
loss += C2*MyParameters.gamma^(j)*(mean(abs2.(α))) #mimic...sum max valus
#emphasize the main interval
if j>(MyParameters.n_steps-50)
loss += C3*MyParameters.gamma^j*(1-mean(fid))
mut_vec(Fock_end_example,Re_uj[:,1].^2+Im_uj[:,1].^2);
end
end
return loss
end
###################################
# training loop parameters
epochs = 3000
println("total epochs: ",epochs)
training = zeros(epochs)
maxgrads = zeros(epochs)
some_nans = zeros(epochs)
data = Iterators.repeated((), epochs)
opt = ADAM(0.0001)
###
#grad clipping
function clip(x)
min.(max.(x,-40), 40)
end
using DelimitedFiles #save txt files
## Save model
using BSON: @save
function qb_train!(loss, p1, data, opt,u0)
ps = Flux.params(p1)
iter = 0
for d in data
iter += 1
prepare_initial!(u0) #different initial states!
#ini_fid = abs2.(sum(Re_ut.*u0[1:2],dims=1))+abs2.(sum(Re_ut.*u0[3:4],dims=1)) #initial mean fidelity
@show iter
# @show mean(ini_fid)
@time gs = gradient(ps) do
training_loss = loss(Zygote.hook(clip,p1))
mut(training,iter,training_loss)
println("loss: ",training_loss)
return training_loss
end
maxgrads[iter] = maximum(abs.(gs[p1]))
some_nans[iter] = sum(isnan.(gs[p1]))
println("is nan: ",sum(isnan.(gs[p1])))
println("max grad: ",maximum(abs.(gs[p1])))
if iter%1 == 0
fig1 = plot( [1:MyParameters.n_steps+1,1:MyParameters.n_steps+1],
[mean_fid_store mean_fid_store],
fillrange=[mean_fid_store.-std_fid_store mean_fid_store.+std_fid_store], fillalpha=0.3, c=:blue,
xlabel = "steps", ylim=(0,1),xlim=(0,MyParameters.n_steps), lw = 1.5, title="Fidelity" ,legend=false)
fig1=plot!(1:MyParameters.n_steps+1,single_traj_fid_store[:,1], c=:black )
fig2 = plot( [1:MyParameters.n_steps,1:MyParameters.n_steps],
[mean_action_store mean_action_store],
fillrange = [mean_action_store.-std_action_store mean_action_store.+std_action_store], fillalpha=0.3, c=:orange,
xlabel = "steps", ylim=(-MyParameters.force_mag,MyParameters.force_mag), xlim=(0,MyParameters.n_steps), lw = 1.5, title="Action" ,legend=false)
fig2=plot!(1:MyParameters.n_steps,single_traj_action_store[:,1], c=:black )
# uncomment to display every epoch performance
# display(plot(fig1, fig2, layout = (1, 2), legend = false,size=(800,360)));
if iter == 1 || iter%100 == 0
png(string("Figures/Figure_",iter)) #for saving figs
epoch_output = hcat(1:MyParameters.n_steps,mean_fid_store[1:end-1],single_traj_fid_store[1:end-1,1],mean_action_store,single_traj_action_store[:,1]) #save results for epoch
writedlm(string("Data/Epoch",iter,".txt"), epoch_output)
end
println("iter: ", iter)
end
if iter%1000 == 0
@save string("Data/model_state-in_parallel_",iter,".bson") p1 re opt
end
println("++++++++++++++++++++++")
Flux.Optimise.update!(opt, ps, gs)
end
@save string("Data/model_state-in_parallel_END.bson") p1 re opt
end
#training
Random.seed!(10)
qb_train!(loss_along_trajectory, p1, data, opt,u0)
#plotting of the loss function
plot(training, xlabel = "epochs", ylabel="loss", lw = 1.5, title = "Training")
savefig("Figures/Loss.pdf")
#save training a txt
writedlm("Data/Loss.txt", training)