You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ You can run a Python script on a Paperspace server from the command line as foll
78
78
79
79
You can also provide additional jobs options on the command line:
80
80
81
-
gradient run myscript.py --name my_new_job --project myproject --machineType P5000 \
81
+
gradient run myscript.py --name my_new_job --projectId myproject --machineType P5000 \
82
82
--container paperspace/tensorflow-python`
83
83
84
84
Note: this functionality is deprecated and will not be available in future releases
@@ -114,11 +114,11 @@ Basic Run Scenarios
114
114
115
115
4. Run an executable or shell command remotely using the `--command` option:
116
116
117
-
`gradient run --command "<executable or shell command>"`
117
+
`gradient run <path_to_script.py> --command "<executable or shell command>"`
118
118
119
119
Example:
120
120
121
-
`gradient run --command "ls -al"`
121
+
`gradient run <path_to_script.py> --command "ls -al"`
122
122
123
123
Run Options
124
124
===========
@@ -150,7 +150,7 @@ The `--ignoreFiles "<file-or-dir>,..."` option can be used specify a simple comm
150
150
151
151
The following files and directories are ignored by default: `.git`, `.gitignore`, `__pycache__`.
152
152
153
-
Other `jobs create` options can be specified, such as `--machineType <machine-type>`, `--container <container-image-reference>`, and `--project <project-name>`.
153
+
Other `jobs create` options can be specified, such as `--machineType <machine-type>`, `--container <container-image-reference>`, and `--projectId <project-name>`.
154
154
155
155
See the Paperspae API [jobs create](https://paperspace.github.io/paperspace-node/jobs.html#.create) documentation for a complete description of these options.
0 commit comments