Chirag Jain

Results 79 comments of Chirag Jain

Same issue in using a custom adapter as well where the underlying urllib3 adapter can return a `urllib3.exceptions.ReadTimeoutError` as a reason for `MaxRetryError` but that check is missing so it...

I have the same problem, using joblib also does not give any visibility into time spent in individual functions in separate threads. @joerick, is this something not supported? The following...

You are correct, spacy 3.x removed `disable` argument on `spacy.blank`. Downgrading to spacy 2.x should fix it

Hello, can you please post your traceback error ? I think the error is mostly because of a typo. It is `DateAdvancedDetector` not `DateAdvanceDetector` You can use DateAdvancedDetector via code...

Code documentation is incomplete in some places and does not follow standard Google format

Hey sorry, we kind of got busy with other things and totally forgot about this. I'll test out my PR today and get it merged. In the meanwhile if you...

@zhuohan123 Would appreciate if you can review when you get time

> please try [this](https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/latest/custom-driver-params.html) workaround to disable GSP RM. @shivamerla What if the driver is already installed (as is the case with EKS GPU AMI), will the driver component still...

Running into the same issue with Vicuna 13B which is also technically Llama 13B Tried these two: - `TheBloke/vicuna-13B-1.1-HF` - `eachadea/vicuna-13b-1.1` ``` RuntimeError: The file size different is more than...

+1 For now I silence the stdout stream as follows ``` tracker = ImpactTracker(f'./impact_tracker/{model_name}') for hndlr in tracker.logger.handlers: if type(hndlr) == logging.StreamHandler: hndlr.setLevel(logging.ERROR) tracker.logger.propagate = False ```