Spaces:
Running
Running
MilesCranmer
commited on
Commit
•
af8beb1
1
Parent(s):
5eeffc0
Update benchmark with more measurements
Browse files- README.md +1 -0
- benchmark.jl +9 -7
README.md
CHANGED
@@ -81,6 +81,7 @@ weights = [8, 1, 1, 1, 2]
|
|
81 |
- [ ] Create a benchmark for accuracy
|
82 |
- [ ] Record hall of fame
|
83 |
- [ ] Optionally (with hyperparameter) migrate the hall of fame, rather than current bests
|
|
|
84 |
- [ ] Create struct to pass through all hyperparameters, instead of treating as constants
|
85 |
- Make sure doesn't affect performance
|
86 |
- [ ] Hyperparameter tune
|
|
|
81 |
- [ ] Create a benchmark for accuracy
|
82 |
- [ ] Record hall of fame
|
83 |
- [ ] Optionally (with hyperparameter) migrate the hall of fame, rather than current bests
|
84 |
+
- [ ] Test performance of reduced precision integers
|
85 |
- [ ] Create struct to pass through all hyperparameters, instead of treating as constants
|
86 |
- Make sure doesn't affect performance
|
87 |
- [ ] Hyperparameter tune
|
benchmark.jl
CHANGED
@@ -5,10 +5,12 @@ fullRun(1,
|
|
5 |
ncyclesperiteration=1000,
|
6 |
fractionReplaced=0.1f0,
|
7 |
verbosity=0)
|
8 |
-
@time
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
|
5 |
ncyclesperiteration=1000,
|
6 |
fractionReplaced=0.1f0,
|
7 |
verbosity=0)
|
8 |
+
@time for i=1:5
|
9 |
+
fullRun(3,
|
10 |
+
npop=100,
|
11 |
+
annealing=true,
|
12 |
+
ncyclesperiteration=100,
|
13 |
+
fractionReplaced=0.1f0,
|
14 |
+
verbosity=0
|
15 |
+
)
|
16 |
+
end
|