JD White

Results 8 comments of JD White
trafficstars

+1 For OS X support. Datadog is such a great tool, and easy to install and use. Thank you for all of the work you do!

Thanks, @rgalanakis! As I continue to iterate, I'm still deciding as to whether it makes sense to have this be a new version of `hostthedocs` or fork it as a...

+1 I'm also having this issue in Chrome: ``` Google Chrome | 92.0.4515.159 (Official Build) (x86_64) Revision | 0185b8a19c88c5dfd3e6c0da6686d799e9bc3b52-refs/branch-heads/4515@{#2052} OS | macOS Version 11.5.2 (Build 20G95) JavaScript | V8 9.2.230.29...

I'm also facing the same issue on Big Sur 11.4.

Thank you to everyone working on this issue! Following the previous recommendations, I was able to get boot working properly in Big Sur 11.4 by building locally following the [Hacking...

I'm seeing the same error as @ushanboe. I suspect that [huggingface_hub](https://github.com/huggingface/huggingface_hub) may have changed the interface to the `hf_hub_download(...)` function in the [0.15.0 release](https://pypi.org/project/huggingface-hub/#history) on June 1, 2023. I'm going...

After a bit more digging, I think using [peft @ v0.3.0](https://github.com/huggingface/peft/releases/tag/v0.3.0) instead of [installing peft from github master](https://github.com/tloen/alpaca-lora/blob/main/requirements.txt#L9) may fix this issue. Trying it out now.

It appears running `pip install peft==0.3.0` fixes the issue. [Working line of code in peft==0.3.0](https://github.com/huggingface/peft/blob/7120c9a2636f93c8db3fc4ae466e02f338ecead8/src/peft/utils/config.py#L106): ``` config_file = hf_hub_download(pretrained_model_name_or_path, CONFIG_NAME, subfolder=subfolder) ``` [Not working line of code in peft @...