Skip to content

Commit

Permalink
more coherent variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
mhex committed Oct 25, 2017
1 parent e6f0ec2 commit cd757c9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Toy_Data_Example/ttur_example_saddle.ipynb
Expand Up @@ -162,12 +162,12 @@
"n_iter = 5000\n",
"sigma = 1\n",
"base_lr = 0.01\n",
"res01 = run(base_lr, base_lr, n_iter, sigma)\n",
"res02 = run(base_lr/10, base_lr/10, n_iter, sigma)\n",
"res1 = run(base_lr / 100, base_lr, n_iter, sigma)\n",
"res2 = run(base_lr, base_lr / 100, n_iter, sigma)\n",
"res_otur_1 = run(base_lr, base_lr, n_iter, sigma)\n",
"res_otur_2 = run(base_lr/10, base_lr/10, n_iter, sigma)\n",
"res_ttur_1 = run(base_lr / 100, base_lr, n_iter, sigma)\n",
"res_ttur_2 = run(base_lr, base_lr / 100, n_iter, sigma)\n",
"\n",
"res = [res01, res02, res1, res2]"
"res = [res_otur_1, res_otur_2, res_ttur_1, res_ttur_2]"
]
},
{
Expand Down

0 comments on commit cd757c9

Please sign in to comment.