Abdullah Makhdoom

Results 7 comments of Abdullah Makhdoom

> I've got the pretrained model from google drive, > but I now can't figure out how to actually run them. > What parts of codes should I modify ,...

@gkucsko If the `temp` is set to 0, would there still be some variability in the output for same text or history prompt?

Hi @dberenbaum, I'm interested in contributing to dvclive, and I believe this issue is a great starting point. If I'm not mistaken, it appears that the `Live`'s `dvcyaml` argument should...

@dberenbaum I tried passing `dvcyaml` arguments a `pathlib.Path` value, it did not break but rather silently defaulted to "dvc.yaml" as mentioned by this [function](https://github.com/iterative/dvclive/blob/main/src/dvclive/live.py#L267). One solution I could think of...

Alright @shcheklein. One quick question before I open a PR: Do you think it's worth adding a test case for this change, or is it too minor to require one?

I can parametrize this [test](https://github.com/iterative/dvclive/blob/main/tests/test_dvc.py#L223) for `dvcyaml` argument, something like.... ``` @pytest.mark.parametrize("dvcyaml_path", ["dvc.yaml", Path("dvcyaml/dvc.yaml")]) def test_test_mode(tmp_dir, monkeypatch, mocked_dvc_repo, dvcyaml_path): monkeypatch.setenv(DVCLIVE_TEST, "true") live = Live("dir", dvcyaml=dvcyaml_path) live.make_dvcyaml() assert live._dir != "dir"...

I can see there is a function `from localstack.services.kinesis.provider import find_stream_for_consumer`, which returns `stream_name`. Maybe we can modify the function to return `stream_arn` as well. ``` def find_stream_for_consumer(consumer_arn): account_id =...