Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get this error when running trainer.fit() #247

Open
rahzaazhar opened this issue Dec 2, 2023 · 2 comments
Open

Get this error when running trainer.fit() #247

rahzaazhar opened this issue Dec 2, 2023 · 2 comments

Comments

@rahzaazhar
Copy link

File "pyarrow\error.pxi", line 99, in pyarrow.lib.check_status
pyarrow.lib.ArrowInvalid: GetFileInfo() yielded path 'C:/Users/azhar/ray_results/llm', which is outside base dir 'C:/Users/azhar/ray_results\llm'

I am running the notebook on a windows machine

@yashpaneliya
Copy link

I changed the directory path in RunConfig and it worked for me. Give your local directory path.

run_config = RunConfig(name="llm", checkpoint_config=checkpoint_config, storage_path=Path('./').resolve())

@jgtiu
Copy link

jgtiu commented May 26, 2024

I also ran the notebook on a Windows machine. This worked for me:

run_config = RunConfig(
    name="llm", checkpoint_config=checkpoint_config, storage_path=os.path.join(os.path.expanduser("~"), "ray_results")
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants