diff options
Diffstat (limited to 'src/research.py')
-rw-r--r-- | src/research.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/research.py b/src/research.py index 8c46877..e085b07 100644 --- a/src/research.py +++ b/src/research.py @@ -32,7 +32,7 @@ class Research: error = self.model.avg_error() print(f'Iteration {iteration}, avg error: {error}') - if iteration % 10 == 0 or iteration == 1: + if iteration % 50 == 0 or iteration == 1: if preview or save_plot: self.plotter.plot(self.model, normalize=True) if preview: @@ -52,7 +52,7 @@ class Research: self.inspect() def inspect(self): - self.plotter.plot(self.model, streamplot=True) + self.plotter.plot(self.model, streamplot=True, density=1) while True: self.plotter.show() |