Skip to content

Commit 53a5e1d

Browse files
committed
typos fixing
1 parent 336d4c1 commit 53a5e1d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ from Filters import Seik, Ghosh
2121
EnsSize=31
2222
forgettin_factor=0.7
2323
ens_filters=[Seik(EnsSize, forget=forgettin_factor),
24-
Ghosh(EnsSize, forget=forgettin_factor))]
24+
Ghosh(EnsSize, forget=forgettin_factor)]
2525
```
2626
Each filter needs to know the ensemble size. Other customizations are possible by specifying other arguments (e.g., the chosen forgetting factor, which is 1.0 by default).
2727

@@ -72,7 +72,7 @@ test.build_obs(times=obs_times, template=obs_template)
7272
```
7373
The observations in the twin experiment are built given an observation template and observation times.
7474

75-
Initialize experiments, build error affected initial conditions and launch the twin experiments:
75+
Initialize 100 experiments at once, build error affected initial conditions and launch the twin experiments:
7676
```
7777
test.build_tests()
7878
n_experiments=100

multi_twin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def main_long(model=Models.Lorenz96(), load_file='Z.npz', save_file='Z_long.npz'
8484
for delta_obs in delta_obs_array:
8585
for EnsSize in EnsSize_array:
8686
i_conf+=1
87-
print(f"cofiguration {i_conf} of {n_conf}:")
87+
print(f"Configuration {i_conf} of {n_conf}:")
8888
print(f'computing for delta_obs, EnsSize = {(delta_obs, EnsSize)}')
8989

9090
forget= best[np.nonzero(arrays['delta_obs_array']==delta_obs)[0][0],
@@ -644,7 +644,7 @@ def main(model=Models.Lorenz96(), save_file='Z.npz'):
644644
for forget in forget_array:
645645
for EnsSize in EnsSize_array:
646646
i_conf+=1
647-
print(f"cofiguration {i_conf} of {n_conf}:")
647+
print(f"Configuration {i_conf} of {n_conf}:")
648648
print(f'computing for truth_t, delta_obs, forget, EnsSize = {(truth_t, delta_obs, forget, EnsSize)}')
649649

650650
if all([truth_t in saved['truth_t_array'], delta_obs in saved['delta_obs_array'], forget in saved['forget_array'], EnsSize in saved['EnsSize_array']]):

0 commit comments

Comments
 (0)