Dave Morris
Dave Morris
I figured out that the documentation referenced the wrong installation folder for the PowerShell modules, and I created a pull request to fix the docs.
I was just suggesting that you include the examples in the pip package in their same format and structure. So they would continue to exist in the same place in...
I meant that Colab surfaces a restart button, in the console output, so you don't need any custom code to restart the runtime. I provided a screenshot in the pull...
Yes, I think that's a great idea, sorry I didn't think about that before submitting. On Wed, Aug 23, 2023, 12:14 PM Rajesh Thallam ***@***.***> wrote: > ***@***.**** commented on...
This example works: ``` import httpimport url = "https://gist.githubusercontent.com/operatorequals/ee5049677e7bbc97af2941d1d3f04ace/raw/e55fa867d3fb350f70b2897bb415f410027dd7e4" with httpimport.remote_repo(url): import hello hello.hello() # Hello world ``` This works: ``` $ pip install xgboost_ray from xgboost_ray.examples import simple simple.main(1,...
``` import httpimport url = "https://raw.githubusercontent.com/ray-project/xgboost_ray/master/xgboost_ray/examples/" with httpimport.remote_repo(url): import simple simple.main(1, 4) --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) [](https://localhost:8080/#) in () 15 import simple 16 ---> 17 simple.main(1, 4)...
Yes, the issue with this particular use case is that this pip package doesn't include the examples in it. On Tue, Nov 7, 2023, 2:08 PM rkbennett ***@***.***> wrote: >...
Did anyone figure out how to resolve this issue?
I am having the same issue, and it's now become a deal breaker for me. I'm going to have to edit the python source code to skip this step. It...
This is just on my local machine, and it's only happening when I run the test command.