so_stacksample

তথ্যসূত্র:

উত্তর

TFDS এ এই ডেটাসেট লোড করতে নিম্নলিখিত কমান্ডটি ব্যবহার করুন:

ds = tfds.load('huggingface:so_stacksample/Answers')
  • বর্ণনা :
Dataset with the text of 10% of questions and answers from the Stack Overflow programming Q&A website.

This is organized as three tables:

Questions contains the title, body, creation date, closed date (if applicable), score, and owner ID for all non-deleted Stack Overflow questions whose Id is a multiple of 10.
Answers contains the body, creation date, score, and owner ID for each of the answers to these questions. The ParentId column links back to the Questions table.
Tags contains the tags on each of these questions
  • লাইসেন্স : সমস্ত স্ট্যাক ওভারফ্লো ব্যবহারকারীর অবদান CC-BY-SA 3.0 এর অধীনে লাইসেন্স করা হয়েছে এবং বিশেষত্ব প্রয়োজন।
  • সংস্করণ : 1.1.0
  • বিভাজন :
বিভক্ত উদাহরণ
'Answers' 2014516
  • বৈশিষ্ট্য :
{
    "Id": {
        "dtype": "int32",
        "id": null,
        "_type": "Value"
    },
    "OwnerUserId": {
        "dtype": "int32",
        "id": null,
        "_type": "Value"
    },
    "CreationDate": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "ParentId": {
        "dtype": "int32",
        "id": null,
        "_type": "Value"
    },
    "Score": {
        "dtype": "int32",
        "id": null,
        "_type": "Value"
    },
    "Body": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    }
}

প্রশ্ন

TFDS এ এই ডেটাসেট লোড করতে নিম্নলিখিত কমান্ডটি ব্যবহার করুন:

ds = tfds.load('huggingface:so_stacksample/Questions')
  • বর্ণনা :
Dataset with the text of 10% of questions and answers from the Stack Overflow programming Q&A website.

This is organized as three tables:

Questions contains the title, body, creation date, closed date (if applicable), score, and owner ID for all non-deleted Stack Overflow questions whose Id is a multiple of 10.
Answers contains the body, creation date, score, and owner ID for each of the answers to these questions. The ParentId column links back to the Questions table.
Tags contains the tags on each of these questions
  • লাইসেন্স : সমস্ত স্ট্যাক ওভারফ্লো ব্যবহারকারীর অবদান CC-BY-SA 3.0 এর অধীনে লাইসেন্স করা হয়েছে এবং বিশেষত্ব প্রয়োজন।
  • সংস্করণ : 1.1.0
  • বিভাজন :
বিভক্ত উদাহরণ
'Questions' 1264216
  • বৈশিষ্ট্য :
{
    "Id": {
        "dtype": "int32",
        "id": null,
        "_type": "Value"
    },
    "OwnerUserId": {
        "dtype": "int32",
        "id": null,
        "_type": "Value"
    },
    "CreationDate": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "ClosedDate": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "Score": {
        "dtype": "int32",
        "id": null,
        "_type": "Value"
    },
    "Title": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "Body": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    }
}

ট্যাগ

TFDS এ এই ডেটাসেট লোড করতে নিম্নলিখিত কমান্ডটি ব্যবহার করুন:

ds = tfds.load('huggingface:so_stacksample/Tags')
  • বর্ণনা :
Dataset with the text of 10% of questions and answers from the Stack Overflow programming Q&A website.

This is organized as three tables:

Questions contains the title, body, creation date, closed date (if applicable), score, and owner ID for all non-deleted Stack Overflow questions whose Id is a multiple of 10.
Answers contains the body, creation date, score, and owner ID for each of the answers to these questions. The ParentId column links back to the Questions table.
Tags contains the tags on each of these questions
  • লাইসেন্স : সমস্ত স্ট্যাক ওভারফ্লো ব্যবহারকারীর অবদান CC-BY-SA 3.0 এর অধীনে লাইসেন্স করা হয়েছে এবং বিশেষত্ব প্রয়োজন।
  • সংস্করণ : 1.1.0
  • বিভাজন :
বিভক্ত উদাহরণ
'Tags' 3750994
  • বৈশিষ্ট্য :
{
    "Id": {
        "dtype": "int32",
        "id": null,
        "_type": "Value"
    },
    "Tag": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    }
}