Spaces:
Running
Running
MilesCranmer
commited on
Commit
•
e2fe9b0
1
Parent(s):
382662a
Improve docs
Browse files
README.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
# Running:
|
2 |
|
3 |
-
For now, just modify the script
|
|
|
4 |
|
5 |
-
`
|
6 |
|
7 |
## Modification
|
8 |
|
@@ -49,10 +50,10 @@ Larger alpha means more exploration.
|
|
49 |
|
50 |
One can also adjust the relative probabilities of each mutation here:
|
51 |
```
|
52 |
-
weights = [8, 1, 1, 1]
|
53 |
```
|
54 |
(for: 1. perturb constant, 2. mutate operator,
|
55 |
-
3. append a node, 4. delete a subtree).
|
56 |
|
57 |
|
58 |
# TODO
|
|
|
1 |
# Running:
|
2 |
|
3 |
+
For now, just modify the script in `paralleleureqa.jl`
|
4 |
+
to your liking and run:
|
5 |
|
6 |
+
`julia --threads auto -O3 paralleleureqa.jl`
|
7 |
|
8 |
## Modification
|
9 |
|
|
|
50 |
|
51 |
One can also adjust the relative probabilities of each mutation here:
|
52 |
```
|
53 |
+
weights = [8, 1, 1, 1, 2]
|
54 |
```
|
55 |
(for: 1. perturb constant, 2. mutate operator,
|
56 |
+
3. append a node, 4. delete a subtree, 5. do nothing).
|
57 |
|
58 |
|
59 |
# TODO
|