Pouyan

Results 210 comments of Pouyan

I'd like to contribute, will open a PR soon. @mattdangerw Is it OK?

> I'm experiencing a similar issue with the Fashion MNIST data: > > ``` > train_images_url = 'http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/train-images-idx3-ubyte.gz' > train_labels_url = 'http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/train-labels-idx1-ubyte.gz' > test_images_url = 'http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/t10k-images-idx3-ubyte.gz' > test_labels_url = 'http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/t10k-labels-idx1-ubyte.gz'...

According to [the documentation](https://github.com/keras-team/keras/blob/b80dd12da9c0bc3f569eca3455e77762cf2ee8ef/keras/utils/data_utils.py#L169-L172) ``` By default the file at the url `origin` is downloaded to the cache_dir `~/.keras`, placed in the cache_subdir `datasets`, and given the filename `fname`. The...

> but the implementation does not conform to `fname` description `` If an absolute path `/path/to/file.txt` is specified the file will be saved at that location ``. My mistake, actually...

> there are 2 cases: > > * if `fname` is a file name, the **downloaded** file is stored at `datadir` > * if `fname` is an absolute path to...

@rjzamora , I would like to open a PR, but still some points are unclear to me. The issue is not that the statistics are not provided per partion, but...

Hi @BankNatchapol I think its related to the recent releases. Installing v0.0.147 would resolve the issue. Do the following ```bash pip install --force-reinstall -v langchain==v0.0.147 ``` In the meantime someone...

Hi @hsm207 , I think It doesn't need to be overridden by the parent. It only calls the `from_texts` method which is already implemented. The `page_content` and `metadata` are allready...

Hi @xiaofan-luan I would like to take over and work on this feature. For the time being I will only focus on the `embedding` module. I think ViT from transformers...