LowRes discussions

#1
by not-lain - opened
That Time I got Reincarnated to a LowRes Hugging Face Organization org

you have any questions/looking for resources or need help 📖?
you have cool resources you want to add to the organization card 🤓?
feel free to post your query here and we will look into it( ̄︶ ̄)↗

That Time I got Reincarnated to a LowRes Hugging Face Organization org

@RescueCat1100
this is a minuature script that i used to load the dataset from lowres/ai-ohto
data structure

|_README.md
|_train
   |_ img1.png
   |_ img2.png
# download the dataset
!git lfs install 
!git clone https://huggingface.co/datasets/lowres/ai-ohto
from datasets import load_dataset
ds = load_dataset("imagefolder", data_files={"train": "ai-ohto/**"})
That Time I got Reincarnated to a LowRes Hugging Face Organization org

@RescueCat1100
i'll try to add an image_loader python script to add the repos soon, until then this is a hot-fix
also can you restructure your dataset into the same structure that i mentioned above ?

That Time I got Reincarnated to a LowRes Hugging Face Organization org

@RescueCat1100 it seems there's a problem with the datasets library, this initial fix for now for users working with colab

from datasets import load_dataset
from huggingface_hub.utils import _runtime
_runtime._is_google_colab = False
ds = load_dataset("lowres/Mikumo-Guynemer")

you can add this to your dataset card for now until it gets fixed

That Time I got Reincarnated to a LowRes Hugging Face Organization org

it would be nice to make a spaces / website / mobile site for crowdsourcing data for example by duplicating this space . it will be comfortable for collectioners that dont have the skills. could also help solve some of the problems above 🤸🏻‍♂️

That Time I got Reincarnated to a LowRes Hugging Face Organization org

@Tonic already started on an easy ui for people to contribute to our datasets, it can be found here https://huggingface.co/spaces/lowres/dataset-updater
it's still a work in progress but i'll try to finish it soon

That Time I got Reincarnated to a LowRes Hugging Face Organization org

also i'm trying to build something like this :
https://huggingface.co/spaces/multimodalart/lora-ease

Sign up or log in to comment