Skip to content

Commit 9ad3b8c

Browse files
author
Jon Walker
authored
Merge pull request #32 from xavierBizoux/patch-1
Update README.md
2 parents 51b18af + ac19b87 commit 9ad3b8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ which can handle all necessary communication with the SAS Viya server:
8181
8282
>>> with Session('example.com', authinfo=<authinfo file>):
8383
... model = lm.LogisticRegression()
84-
... register_model('Sklearn Model', model, 'My Project')
84+
... register_model(model, 'Sklearn Model', 'My Project')
8585
```
8686

8787

@@ -165,7 +165,7 @@ Register a pure Python model in Model Manager:
165165
166166
>>> with Session(host, authinfo=<authinfo file>):
167167
... model = lm.LogisticRegression()
168-
... register_model('Sklearn Model', model, 'My Project')
168+
... register_model(model, 'Sklearn Model', 'My Project')
169169
```
170170

171171
Register a CAS model in Model Manager:

0 commit comments

Comments
 (0)