Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Disconnect between README and demo.m
  • Loading branch information
keskarnitish committed Nov 27, 2016
1 parent f76b711 commit 7ba043e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -109,8 +109,8 @@ To solve a problem using minSQN, the user must follow 4 steps:


```
X = randn(2000,500);
y = 2*(randn(2000,1) > 0.5) - 1;
X = randn(5000,500);
y = 2*(randn(5000,1) > 0.5) - 1;
problem = lossFunctions.LogReg(X,y);
options = GenOptions();
Expand All @@ -132,8 +132,8 @@ where `fhist` is the history of average loss function values over each epoch, `h
### Example (with tuner):
The process for running the methods with automatic tuning is similar to above except no hyperparameters are passed as input (as in Step 3 above).
```
X = randn(2000,500);
y = 2*(randn(2000,1) > 0.5) - 1;
X = randn(5000,500);
y = 2*(randn(5000,1) > 0.5) - 1;
problem = lossFunctions.LogReg(X,y);
options = GenOptions();
Expand Down

0 comments on commit 7ba043e

Please sign in to comment.