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
I am reading through the book and working through the labs. I am considering using the early chapters of the book as a text for course that I am teaching in the fall.
I am running into some issues with Lab2 (model-vetiver.qmd). The file uses a duckdb for the palmerpenquins but the duckdb database isn't created until the next lab. I modified the file to be more similar to the first lab and that worked for that portion of the lab. [Still trying to get the pins storage to work].
The text was updated successfully, but these errors were encountered:
I've added 2 lines for adding penguins dataframe to duckdb in this issue.
What issue are you encountering with pins storage? In my case, this code cell works even if I do not create /data/model directory:
from pins import board_folder
from vetiver import vetiver_pin_write
model_board = board_folder("/data/model", allow_pickle_read = True)
vetiver_pin_write(model_board, v)
Running this code also does not create /data/model. And when I try to get the model back from pins, it works without any errors: VetiverModel.from_pin(model_board, 'penguin_model')
I am reading through the book and working through the labs. I am considering using the early chapters of the book as a text for course that I am teaching in the fall.
I am running into some issues with Lab2 (model-vetiver.qmd). The file uses a duckdb for the palmerpenquins but the duckdb database isn't created until the next lab. I modified the file to be more similar to the first lab and that worked for that portion of the lab. [Still trying to get the pins storage to work].
The text was updated successfully, but these errors were encountered: