Casey Haralson
Casey Haralson
This would be nice to have.
> I also tried running pydantic 1.10.13 inside alpine inside gitpod to use musl binaries, and again - no error. Updating from 1.10.12 to 1.10.13 fixed the problem for me.
> Today we do this via `python ./ts_scripts/install_dependencies.py --cuda=cu102` which is mentioned in the README. Do you think it'd be best to briefly mention what this script does also in...
> Replace `df[indep_cols].values` with `df[indep_cols].to_numpy(dtype=np.float32)` > > ``` > indep_cols = ['Age', 'SibSp', 'Parch', 'LogFare'] + added_cols > t_indep = tensor(df[indep_cols].to_numpy(dtype=np.float32), dtype=torch.float) > t_indep > ``` > > This is...
> I run the notebook on my PC, when I use learn.fintune(), I found that the time consumed is far higher than mentioned in the notes, I found that this...