Skip to content

Commit

Permalink
Finetuning our best model to 1000k
Browse files Browse the repository at this point in the history
  • Loading branch information
ddrous committed Jan 29, 2024
1 parent e81cf13 commit 3cb0c54
Show file tree
Hide file tree
Showing 4 changed files with 943 additions and 6 deletions.
9 changes: 9 additions & 0 deletions examples/lotka-voltera/analysis/evaluate.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Run the command "python main.py --seed 000" with different values of the seed unifromly spread in [0, 1000]

# for seed in $(seq 10 12)
for seed in $(seq 1000 3000)
do
python main.py --seed $seed
done


16 changes: 16 additions & 0 deletions examples/lotka-voltera/analysis/paper_analysis.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#%%

import numpy as np
import matplotlib.pyplot as plt
import pandas as pd


## Load data from test_score.csv
df = pd.read_csv('test_scores.csv', sep=',', header=0)
df

# df[""]

## Compute the mean accross the ind colum
df_mean = df.loc[400:600, 'ind'].mean()
df_mean
Loading

0 comments on commit 3cb0c54

Please sign in to comment.