Albert Villanova del Moral

Results 285 comments of Albert Villanova del Moral

Hi @daqieq, thanks for reporting. Unfortunately, I was not able to reproduce this bug: ```ipython In [1]: from datasets import load_dataset ...: ds = load_dataset('wiki_bio') Downloading: 7.58kB [00:00, 26.3kB/s] Downloading:...

@cakiki have you read my comment in the issue page? https://github.com/huggingface/datasets/issues/4637#issuecomment-1175984812

Thanks for proposing this interesting dataset, @osanseviero. Please note that the data files are already hosted in a third-party server: e.g. the index of data files for entity "6795937" is...

Hi @vblagoje, to install Datasets from @lhoestq PR reference #2505, you can use: ```shell pip install git+ssh://[email protected]/huggingface/datasets.git@refs/pull/2505/head#egg=datasets ```

@vblagoje in that case, you can add this to your `setup.py`: ```python install_requires=[ "datasets @ git+ssh://[email protected]/huggingface/datasets.git@refs/pull/2505/head", ```

@vblagoje I tested my proposed approach before posting it here and it worked for me. Is it not working in your case because of the SSH protocol? In that case...

Also note the blanks before and after the `@`.

Hi @margotwagner, thanks for reporting. Unfortunately, I'm not able to reproduce your bug: in an environment with datasets-2.3.2 and pyarrow-8.0.0, I can load the datasets without any problem: ```python >>>...

Hi @BramVanroy, thanks for reporting. First of all, please note that you do not need the dummy data: this was the case when we were adding datasets to the `datasets`...

I have opened an Issue to update the instructions on dummy data generation: - #4744