DATASET

I. Natural Language Processing

Usage:

# Short-term Usage
import requests
punctuation = requests.get("https://huggingface.co/onelevelstudio/dataset/raw/main/nlp/punctuation.txt").text.splitlines()
# Long-term Usage
from huggingface_hub import hf_hub_download as HF_Download
with open(HF_Download(repo_id="onelevelstudio/dataset", filename="nlp/punctuation.txt"), mode="r", encoding="utf-8") as f:
    punctuation = f.read().splitlines()

II. Computer Vision

Downloads last month
12
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including onelevelstudio/dataset