Skip to content

Commit

Permalink
Use official NVIDIA model store by default (NVIDIA#1308)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeyeager committed Nov 29, 2016
1 parent 74a66a2 commit 441c27a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion digits/config/store_option.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def load_url_list():
if 'DIGITS_MODEL_STORE_URL' in os.environ:
url_list = os.environ['DIGITS_MODEL_STORE_URL']
else:
url_list = ""
url_list = "http://developer.download.nvidia.com/compute/machine-learning/modelstore/5.0"

return validate(url_list).split(',')

Expand Down
2 changes: 1 addition & 1 deletion docs/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ DIGITS uses environment variables for configuration.
| `DIGITS_LOGFILE_FILENAME` | ~/digits.log | File for saving log messages. Default is `$DIGITS_ROOT/digits/digits.log`. |
| `DIGITS_LOGFILE_LEVEL` | DEBUG | Minimum log message level to be saved (DEBUG/INFO/WARNING/ERROR/CRITICAL). Default is INFO. |
| `DIGITS_SERVER_NAME` | The Big One | The name of the server (accessible in the UI under "Info"). Default is the system hostname. |
| `DIGITS_MODEL_STORE_URL` | http://localhost/modelstore | A list of URL's, separated by comma. |
| `DIGITS_MODEL_STORE_URL` | http://localhost/modelstore | A list of URL's, separated by comma. Default is the official NVIDIA store. |

0 comments on commit 441c27a

Please sign in to comment.