# Specific Hugging Face datasets

**Use case:** 

Fetch specific public Hugging Face dataset records such as SQuAD and GLUE with card data enabled.

## Input

```json
{
  "searchQueries": [
    "finance",
    "medical imaging"
  ],
  "datasetIds": [
    "squad",
    "glue"
  ],
  "maxItems": 2,
  "sort": "downloads",
  "includeCardData": true,
  "dedupe": true
}
```

## Output

```json
{
  "datasetId": {
    "label": "Dataset ID",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "downloads": {
    "label": "Downloads",
    "format": "integer"
  },
  "likes": {
    "label": "Likes",
    "format": "integer"
  },
  "license": {
    "label": "License",
    "format": "string"
  },
  "tasks": {
    "label": "Tasks",
    "format": "array"
  },
  "formats": {
    "label": "Formats",
    "format": "array"
  },
  "gated": {
    "label": "Gated",
    "format": "boolean"
  },
  "private": {
    "label": "Private",
    "format": "boolean"
  },
  "disabled": {
    "label": "Disabled",
    "format": "boolean"
  },
  "lastModified": {
    "label": "Last modified",
    "format": "string"
  },
  "sourceQuery": {
    "label": "Source query",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Hugging Face Datasets Scraper](https://apify.com/fetch_cat/hugging-face-datasets-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/hugging-face-datasets-scraper) to learn more, explore other use cases, and run it yourself.