brendenc commited on
Commit
6320f2a
·
1 Parent(s): 638dcea

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -1
README.md CHANGED
@@ -116,7 +116,13 @@ Use the code below to get started with the model.
116
  <summary> Click to expand </summary>
117
 
118
  ```python
119
- [More Information Needed]
 
 
 
 
 
 
120
  ```
121
 
122
  </details>
 
116
  <summary> Click to expand </summary>
117
 
118
  ```python
119
+ from skops.hub_utils import download
120
+ from skops.io import load
121
+
122
+ download("brendenc/Fish-Weight", "path_to_folder")
123
+ # make sure model file is in skops format
124
+ # if model is a pickle file, make sure it's from a source you trust
125
+ model = load("path_to_folder/example.pkl")
126
  ```
127
 
128
  </details>