Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ERROR: fastai 1.0.50.post1 requires nvidia-ml-py3, which is not installed.

NVDIA GPU enabled instance may help to get rid of the above warning.


Info

Use the following code to test xarray.

Code Block
languagepy
import xarray as xr
import numpy as np
data = xr.DataArray(np.random.randn(2, 3), dims=('x', 'y'), coords={'x': [10, 20]})
print(data)

...