Replies: 1 comment 3 replies
-
|
Any CSV data loading solution will happen on the host side, and so the best approach in JAX will likely be to use your preferred Python CSV loader and then convert to a JAX array; for example you could use pandas: import pandas as pd
arr = jnp.asarray(pd.read_csv('my_data.csv').values) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
https://jax.readthedocs.io/en/latest/_autosummary/jax.numpy.load.html
GOAL:
CODE
CODE 1
ERROR 1
CODE 2
ERROR 2
Beta Was this translation helpful? Give feedback.
All reactions