Updated example code in top-level README.md to address Issue #465 (#467)

This commit is contained in:
Rathijit Sen 2021-03-14 20:24:34 -05:00 коммит произвёл GitHub
Родитель c70bb009eb
Коммит 562e98727f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -91,7 +91,7 @@ In general, Hummingbird syntax is very intuitive and minimal. To run your tradit
```python
import numpy as np
from sklearn.ensemble import RandomForestClassifier
from hummingbird.ml import convert
from hummingbird.ml import convert, load
# Create some random data for binary classification
num_classes = 2
@ -116,7 +116,7 @@ model.predict(X)
model.save('hb_model')
# Load the model back
model = hummingbird.ml.load('hb_model')
model = load('hb_model')
```
# Documentation