Skip to content

Commit e4e1655

Browse files
authored
Update README.md (#93)
fixes out-dated reference to -s signals flag, updates this to reflect modern -t tournament number flag
1 parent 9ffe9e4 commit e4e1655

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ To use this tool you need:
7676
- Windows 10 Command Prompt (windows key, type `cmd`, select Command Prompt):
7777

7878
```powershell
79-
powershell -command "$Script = Invoke-WebRequest 'https://raw.githubusercontent.com/numerai/numerai-cli/master/scripts/setup-win10.ps1'; $ScriptBlock = [ScriptBlock]::Create($Script.Content); Invoke-Command -ScriptBlock $ScriptBlock"
79+
powershell -command "$Script = Invoke-WebRequest 'https://raw.githubusercontent.com/numerai/numerai-cli/master/scripts/setup-win10.ps1'; $ScriptBlock = [ScriptBlock]::Create($Script.Content); Invoke-Command criptBlock $ScriptBlock"
8080
```
8181

8282
4. After the setup script confirms Python and Docker, install `numerai-cli` via:
@@ -128,7 +128,7 @@ To use this tool you need:
128128
to list the vCPU/mem presets available, then you can configure a node to use one of the presets via:
129129
130130
```shell
131-
numerai node config -s mem-lg
131+
numerai node config mem-lg
132132
```
133133
134134
Your compute node is now setup and ready to run! When you make changes to your code or re-train your model,
@@ -148,7 +148,7 @@ To use this tool you need:
148148
- The default example does _not_ make stake changes; please refer to the [numerapi docs](https://numerapi.readthedocs.io/en/latest/api/numerapi.html#module-numerapi.numerapi)
149149
for the methods you must call to do this.
150150
- You can view resources and logs in the AWS Console (region us-east-1) for your
151-
[ECS Cluster](https://console.aws.amazon.com/ecs/home?region=us-east-1#/clusters/numerai-submission-ecs-cluster/tasks)
151+
[ECS Cluster](https://console.aws.amazon.com/ecs/home?region=us-east-1#/clusters/numeraiubmission-ecs-cluster/tasks)
152152
and [other resources](https://console.aws.amazon.com/cloudwatch/home?region=us-east-1#logsV2:log-groups)
153153
154154
### List of Commands
@@ -168,12 +168,12 @@ requirements you'd use something like this (replacing [MODEL NAME] with the rele
168168
signals model name):
169169

170170
```shell
171-
numerai node -m [MODEL NAME] -s config -s mem-lg -e signals-python3
171+
numerai node -m [MODEL NAME] -t 11 config -s mem-lg -e signals-python3
172172
```
173173

174-
Here, the `node` command takes a model name with `-m` and a flag `-s` to detect if it's
175-
a signals model or numerai model. The `config` sub-command also takes a `-s` option to
176-
specify the size of the node to configure.
174+
Here, the `node` command takes a model name with `-m` and an argument `-t 11` to specify the tournament number
175+
(numerai is tournament 8, signals is tournament 11, crypto is tournament 12).
176+
The `config` sub-command also takes a `-s` option to specify the size of the node to configure.
177177

178178
### Upgrading
179179

0 commit comments

Comments
 (0)