Skip to content

Commit 95d47d6

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents fcaa085 + 97a1d38 commit 95d47d6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,26 +33,26 @@ with the actual namespace that you will find at the top of the problem file.
3333
For example, you can run the integer-regression genetic programming problem with:
3434

3535
```
36-
clj -M -m propeller.problems.integer-regression
36+
clj -M -m propeller.problems.regression.integer-regression
3737
```
3838
or
3939

4040
```
41-
lein run -m propeller.problems.integer-regression
41+
lein run -m propeller.problems.regression.integer-regression
4242
```
4343

4444
Additional command-line arguments may
4545
be provided to override the default key/value pairs specified in the
4646
problem file, for example:
4747

4848
```
49-
clj -M -m propeller.problems.integer-regression :population-size 100
49+
clj -M -m propeller.problems.regression.integer-regression :population-size 100
5050
```
5151

5252
or
5353

5454
```
55-
lein run -m propeller.problems.integer-regression :population-size 100
55+
lein run -m propeller.problems.regression.integer-regression :population-size 100
5656
```
5757

5858
On Unix operating systems, including MacOS, you can use something
@@ -61,13 +61,13 @@ and to a text file (called `outfile` in this example):
6161

6262

6363
```
64-
clj -M -m propeller.problems.integer-regression | tee outfile
64+
clj -M -m propeller.problems.regression.integer-regression | tee outfile
6565
```
6666

6767
or
6868

6969
```
70-
lein run -m propeller.problems.integer-regression | tee outfile
70+
lein run -m propeller.problems.regression.integer-regression | tee outfile
7171
```
7272

7373
If you want to provide command line arguments that include
@@ -78,13 +78,13 @@ value for the `:variation` argument, which is a clojure map
7878
containing curly brackets that may confuse your shell:
7979

8080
```
81-
clj -M -m propeller.problems.integer-regression :variation "{:umad 1.0}"
81+
clj -M -m propeller.problems.regression.integer-regression :variation "{:umad 1.0}"
8282
```
8383

8484
or
8585

8686
```
87-
lein run -m propeller.problems.integer-regression :variation "{:umad 1.0}"
87+
lein run -m propeller.problems.regression.integer-regression :variation "{:umad 1.0}"
8888
```
8989

9090
For many genetic operator hyperparameters, collections may be provided in place of single values. When this is done, a random element of the collection will be chosen (with each being equally likely) each time the operator is used. When specied at the command line, these collections will also have to be quoted, for example with `:umad-rate "[0.01 0.05 0.1]"` to mean that UMAD rates of 0.01, 0.05, and 0.1 can be used.

0 commit comments

Comments
 (0)