id stringlengths 2 115 | lastModified stringlengths 24 24 | tags list | author stringlengths 2 42 ⌀ | description stringlengths 0 68.7k ⌀ | citation stringlengths 0 10.7k ⌀ | cardData null | likes int64 0 3.55k | downloads int64 0 10.1M | card stringlengths 0 1.01M |
|---|---|---|---|---|---|---|---|---|---|
DucHaiten/Dark-Rainbow | 2023-08-24T13:28:50.000Z | [
"license:creativeml-openrail-m",
"region:us"
] | DucHaiten | null | null | null | 0 | 0 | ---
license: creativeml-openrail-m
---
|
davidberenstein1957/emotion-custom | 2023-08-23T09:28:28.000Z | [
"size_categories:n<1K",
"rlfh",
"argilla",
"human-feedback",
"region:us"
] | davidberenstein1957 | null | null | null | 0 | 0 | ---
size_categories: n<1K
tags:
- rlfh
- argilla
- human-feedback
---
# Dataset Card for emotion-custom
This dataset has been created with [Argilla](https://docs.argilla.io).
As shown in the sections below, this dataset can be loaded into Argilla as explained in [Load with Argilla](#load-with-argilla), or used directly with the `datasets` library in [Load with `datasets`](#load-with-datasets).
## Dataset Description
- **Homepage:** https://argilla.io
- **Repository:** https://github.com/argilla-io/argilla
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
This dataset contains:
* A dataset configuration file conforming to the Argilla dataset format named `argilla.yaml`. This configuration file will be used to configure the dataset when using the `FeedbackDataset.from_huggingface` method in Argilla.
* Dataset records in a format compatible with HuggingFace `datasets`. These records will be loaded automatically when using `FeedbackDataset.from_huggingface` and can be loaded independently using the `datasets` library via `load_dataset`.
* The [annotation guidelines](#annotation-guidelines) that have been used for building and curating the dataset, if they've been defined in Argilla.
### Load with Argilla
To load with Argilla, you'll just need to install Argilla as `pip install argilla --upgrade` and then use the following code:
```python
import argilla as rg
ds = rg.FeedbackDataset.from_huggingface("davidberenstein1957/emotion-custom")
```
### Load with `datasets`
To load this dataset with `datasets`, you'll just need to install `datasets` as `pip install datasets --upgrade` and then use the following code:
```python
from datasets import load_dataset
ds = load_dataset("davidberenstein1957/emotion-custom")
```
### Supported Tasks and Leaderboards
This dataset can contain [multiple fields, questions and responses](https://docs.argilla.io/en/latest/guides/llms/conceptual_guides/data_model.html) so it can be used for different NLP tasks, depending on the configuration. The dataset structure is described in the [Dataset Structure section](#dataset-structure).
There are no leaderboards associated with this dataset.
### Languages
[More Information Needed]
## Dataset Structure
### Data in Argilla
The dataset is created in Argilla with: **fields**, **questions**, **suggestions**, and **guidelines**.
The **fields** are the dataset records themselves, for the moment just text fields are suppported. These are the ones that will be used to provide responses to the questions.
| Field Name | Title | Type | Required | Markdown |
| ---------- | ----- | ---- | -------- | -------- |
| text | Text | TextField | True | False |
The **questions** are the questions that will be asked to the annotators. They can be of different types, such as rating, text, single choice, or multiple choice.
| Question Name | Title | Type | Required | Description | Values/Labels |
| ------------- | ----- | ---- | -------- | ----------- | ------------- |
| sentiment | Sentiment | LabelQuestion | True | N/A | ['positive', 'neutral', 'negative'] |
| mixed-emotion | Mixed-emotion | MultiLabelQuestion | True | N/A | ['joy', 'anger', 'sadness', 'fear', 'surprise', 'love'] |
**✨ NEW** Additionally, we also have **suggestions**, which are linked to the existing questions, and so on, named appending "-suggestion" and "-suggestion-metadata" to those, containing the value/s of the suggestion and its metadata, respectively. So on, the possible values are the same as in the table above.
Finally, the **guidelines** are just a plain string that can be used to provide instructions to the annotators. Find those in the [annotation guidelines](#annotation-guidelines) section.
### Data Instances
An example of a dataset instance in Argilla looks as follows:
```json
{
"fields": {
"text": "i didnt feel humiliated"
},
"metadata": {},
"responses": [
{
"status": "submitted",
"user_id": "96a207d3-b1a9-44d1-b72a-1afdab457b26",
"values": {
"mixed-emotion": {
"value": [
"anger",
"sadness"
]
},
"sentiment": {
"value": "positive"
}
}
}
],
"suggestions": []
}
```
While the same record in HuggingFace `datasets` looks as follows:
```json
{
"external_id": null,
"metadata": "{}",
"mixed-emotion": [
{
"status": "submitted",
"user_id": "96a207d3-b1a9-44d1-b72a-1afdab457b26",
"value": [
"anger",
"sadness"
]
}
],
"mixed-emotion-suggestion": null,
"mixed-emotion-suggestion-metadata": {
"agent": null,
"score": null,
"type": null
},
"sentiment": [
{
"status": "submitted",
"user_id": "96a207d3-b1a9-44d1-b72a-1afdab457b26",
"value": "positive"
}
],
"sentiment-suggestion": null,
"sentiment-suggestion-metadata": {
"agent": null,
"score": null,
"type": null
},
"text": "i didnt feel humiliated"
}
```
### Data Fields
Among the dataset fields, we differentiate between the following:
* **Fields:** These are the dataset records themselves, for the moment just text fields are suppported. These are the ones that will be used to provide responses to the questions.
* **text** is of type `TextField`.
* **Questions:** These are the questions that will be asked to the annotators. They can be of different types, such as `RatingQuestion`, `TextQuestion`, `LabelQuestion`, `MultiLabelQuestion`, and `RankingQuestion`.
* **sentiment** is of type `LabelQuestion` with the following allowed values ['positive', 'neutral', 'negative'].
* **mixed-emotion** is of type `MultiLabelQuestion` with the following allowed values ['joy', 'anger', 'sadness', 'fear', 'surprise', 'love'].
* **✨ NEW** **Suggestions:** As of Argilla 1.13.0, the suggestions have been included to provide the annotators with suggestions to ease or assist during the annotation process. Suggestions are linked to the existing questions, are always optional, and contain not just the suggestion itself, but also the metadata linked to it, if applicable.
* (optional) **sentiment-suggestion** is of type `label_selection` with the following allowed values ['positive', 'neutral', 'negative'].
* (optional) **mixed-emotion-suggestion** is of type `multi_label_selection` with the following allowed values ['joy', 'anger', 'sadness', 'fear', 'surprise', 'love'].
Additionally, we also have one more field which is optional and is the following:
* **external_id:** This is an optional field that can be used to provide an external ID for the dataset record. This can be useful if you want to link the dataset record to an external resource, such as a database or a file.
### Data Splits
The dataset contains a single split, which is `train`.
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation guidelines
Emotion is a dataset of English Twitter messages with six basic emotions: anger, fear, joy, love, sadness, and surprise.
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
[More Information Needed]
### Contributions
[More Information Needed] |
PeculiarCoder/English-Hindi | 2023-08-23T09:28:57.000Z | [
"region:us"
] | PeculiarCoder | null | null | null | 0 | 0 | Entry not found |
NarchAI1992/walnut | 2023-08-23T09:33:28.000Z | [
"license:openrail",
"region:us"
] | NarchAI1992 | null | null | null | 0 | 0 | ---
license: openrail
---
|
Pppang/kitti_my | 2023-08-23T09:36:22.000Z | [
"region:us"
] | Pppang | null | null | null | 0 | 0 | Entry not found |
Code-Hugger/burgers | 2023-08-30T06:39:27.000Z | [
"license:apache-2.0",
"region:us"
] | Code-Hugger | null | null | null | 0 | 0 | ---
license: apache-2.0
---
|
NarchAI1992/walnut2 | 2023-08-23T09:37:06.000Z | [
"license:openrail",
"region:us"
] | NarchAI1992 | null | null | null | 0 | 0 | ---
license: openrail
---
|
RahmaSadder/test2 | 2023-08-23T09:50:31.000Z | [
"region:us"
] | RahmaSadder | null | null | null | 0 | 0 | Entry not found |
NarchAI1992/townhouse_interior | 2023-08-23T09:55:46.000Z | [
"license:openrail",
"region:us"
] | NarchAI1992 | null | null | null | 0 | 0 | ---
license: openrail
---
|
NarchAI1992/milimetvuong | 2023-08-23T10:00:15.000Z | [
"license:openrail",
"region:us"
] | NarchAI1992 | null | null | null | 0 | 0 | ---
license: openrail
---
|
rangiitoenailfungus/Rangii-Toenail-Fungus | 2023-08-23T09:59:01.000Z | [
"region:us"
] | rangiitoenailfungus | null | null | null | 0 | 0 | <h1 style="text-align: left;">Rangii</h1>
<p><span style="font-family: georgia;"><strong>Product Name - <a href="https://sites.google.com/view/rangii-toenail-fungus-reviews/">Rangii</a><br /></strong></span></p>
<p><span style="font-family: georgia;"><strong>Side Effects - No Side Effects (100% Natural)</strong></span></p>
<p><span style="font-family: georgia;"><strong>Main Benefits - Longer & Beautiful nails</strong></span></p>
<p><span style="font-family: georgia;"><strong>Category - Deep Nails Cleaner Liquid<br /></strong></span></p>
<p><span style="font-family: georgia;"><strong>Results - In 1-2 Months</strong></span></p>
<p><span style="font-family: georgia;"><strong>Availability - Online</strong></span></p>
<p><span style="font-family: georgia;"><strong>Customer Reviews - ★★★★✰ 4.9/5</strong></span></p>
<p><span style="font-family: georgia;"><strong>Price - Visit <a href="https://www.healthsupplement24x7.com/get-rangii">Official Website</a></strong></span></p>
<p><span style="font-family: georgia;"><strong><a href="https://www.healthsupplement24x7.com/get-rangii">https://www.healthsupplement24x7.com/get-rangii</a></strong></span></p>
<h3 style="text-align: center;"><span style="font-family: georgia;"><strong><span style="color: red;"><span style="background-color: #ffe599;"><a href="https://www.healthsupplement24x7.com/get-rangii">Get Huge Discount Now!!</a></span></span></strong></span></h3>
<h3 style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii"><strong><span style="font-family: georgia;"><span style="background-color: #fff2cc;"><span style="color: red;">Special Discount- As Low As On Rangii – Get Your Best Discount Online Hurry!!</span></span></span></strong></a></h3>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiu6uQnSUV0ZIUitHzh9N-pTS8zp65dXOkpgLe6Xdw6rtVah7WiTRptPQtNgqym3wjydjkOkHVSwCEWQaMKcrfXDNuWWIpE1781WxL5w0VJAzafCV8viFR2vVJJGC15V-UzotQoHili4ru5EctCppr14_NdXIiOxIaSg4woEIR9AUAV1HK3ukKtZ9wes6jH/w640-h312/Rangii%20Toenail%20Fungus%201.png" alt="" width="640" height="312" border="0" data-original-height="716" data-original-width="1468" /></a></div>
<p>The revolutionary 20-in-1 nail and pedicure product called Rangii Toenail Fungus or <a href="https://sites.google.com/view/rangii-reviews/">Rangii</a> offers consumers extraordinary benefits. This product is a top choice for people with brittle nails and toenail fungus as it is designed to comprehensively support healthy nails and feet.</p>
<p>Clinical studies have shown that the all-natural ingredients of this advanced serum are extremely effective. These organic ingredients combine to provide exceptional and long-lasting benefits for feet and nails. Users only need a cotton ball to apply the serum on their nails and use is very simple.</p>
<p>The fact that <a href="https://colab.research.google.com/drive/1igYaV3KpkcMt8ClBZdvtgLOSlfElJIvZ?usp=sharing">Rangii</a> Toenail Fungus is manufactured in an FDA approved facility using excellent manufacturing processes is one of its main advantages. This ensures the highest level of product safety, reliability and quality. Customers who have tried this product say they are very pleased with the results.</p>
<p>Rangii Toenail Fungus has benefits beyond improving the look of nails and feet. In addition, it contributes to their firmness, hydration and prevention of damage. Users can expect visible improvements in the condition and appearance of their feet and nails with continued use.</p>
<h2 style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii"><strong><span style="font-family: georgia;"><span style="background-color: #d9d2e9;"><span style="color: red;">SALE IS LIVE</span></span></span></strong></a></h2>
<h2 style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii"><strong><span style="font-family: georgia;"><span style="background-color: #ffe599;">Get <span style="color: red;">Rangii </span> “Now Available” Hurry Limited Time Offer Only For 1st User!!</span></span></strong></a></h2>
<h2 style="text-align: left;"><strong>What Is <a href="https://rangii.jimdosite.com/">Rangii Toenail Fungus</a>?</strong></h2>
<p><a href="https://sway.office.com/TErqXTWzIirvIsfm?ref=Link&loc=mysways">Rangii</a> Toenail Fungus is a revolutionary 20-in-1 nail and feet-improving formula that offers exceptional benefits to users. The product is designed to provide comprehensive support to healthy nails and feet, and it is a top choice for individuals dealing with toenail fungus and brittle nails.</p>
<p>This advanced serum contains 100% natural ingredients that have been clinically proven to be highly effective. These natural ingredients work synergistically to provide superior and long-lasting benefits to the nails and feet. The serum is easy to apply, and users can simply use a cotton swab to apply it to their nails.</p>
<p>One of the key advantages of Rangii Toenail Fungus is that it is developed in an FDA-approved facility that follows good manufacturing practices. This ensures that the product is safe, reliable, and of the highest quality. Customers who have used this product have reported being satisfied with the results they have experienced.</p>
<p>The benefits of <a href="https://soundcloud.com/rangii-toenail-fungus/rangii-clinically-porven-get-healthy-toes-beautiful-nails-toenail-fungus-remover-serum">Rangii</a> Toenail Fungus go beyond improving the appearance of nails and feet. It also helps to strengthen, nourish, and protect them from damage. With regular use, users can expect to see significant improvements in the health and appearance of their nails and feet.</p>
<h3 style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii"><span style="background-color: #d9ead3;"><span style="color: red;"><span style="font-family: georgia;"><strong>LIMITED TIME OFFER</strong></span></span></span></a></h3>
<h3 style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii"><span style="background-color: #ffe599;"><span style="color: red;"><span style="font-family: georgia;"><strong>Click Here to Order Rangii at Special Discounted Price</strong></span></span></span></a></h3>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgtSetaou4J2r1bkPjmKmSE32qUf2k03FO33x5S72PFmusRDUDKmr5Tz72URxiB7uKMryuNwGBjoJc_f0AmLjjVbeNp2lWoIO7C7AxTAuBExDXld4-34rgoRTNxe-7DhrpOgMXBz2QyQhLAkFjqqX0QbyiVgbYhndR9JfAtCDCxjjyAR1znIvqjLVr5C_rz/w492-h369/Rangii%20Toenail%20Fungus%207.png" alt="" width="492" height="369" border="0" data-original-height="1050" data-original-width="1400" /></a></div>
<h2 style="text-align: left;"><strong>How Does It <a href="https://rangii.company.site/">Rangii Toenail Fungus</a> Work?</strong></h2>
<p><a href="https://rangii-toenail-fungus.clubeo.com/page/rangii-clinically-porven-get-healthy-toes-beautiful-nails-toenail-fungus-remover-serum-spam-or-legit.html">Rangii Toenail Fungus</a> is specifically designed to combat toenail fungus and brittle nails. The key to its effectiveness lies in its ability to target the main cause of toenail fungus – T. Rubrum.</p>
<p>T. Rubrum is a type of fungus that is responsible for the majority of toenail fungus cases. It thrives in warm, moist environments such as shoes and socks and can spread quickly if left untreated. Rangii Toenail Fungus is designed to attack this fungus at its source by targeting and eliminating it from the nails.</p>
<p>The natural ingredients in <a href="https://www.ivoox.com/rangii-clinically-porven-get-healthy-toes-beautiful-nails-audios-mp3_rf_114761443_1.html">Rangii</a> Toenail Fungus work together to penetrate the nail bed and reach the fungus. These ingredients have antifungal properties that help destroy the fungus and promote healthy nail growth. By targeting the main cause of toenail fungus, Rangii Toenail Fungus is able to provide long-lasting relief to those suffering from this condition.</p>
<h3 style="text-align: left;"><strong style="font-family: georgia;">MUST SEE: <a href="https://www.healthsupplement24x7.com/get-rangii"><span style="background-color: #ffe599; color: red;">“Critical News Rangii Report – They Will Never Tell You This”</span></a></strong></h3>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJeVoX2upe3lQe5q1x0lt8bxoh1Jt6S8DSW1OCLRARpgpqbzpvISSVrWx72rheU2KPkrTRU4_TaYpyNRqZ3ez27e_cc6d-wNJjEaUzxagGiVLy-u2f4ngsAflC7kiFx1Q6cOM1s2sg4VEwhCiT7ueM3XOLNZ4XmrAufwsgRx-_PGobvifctLi6fdKxxozh/w640-h290/Rangii%20Toenail%20Fungus%202.png" alt="" width="640" height="290" border="0" data-original-height="702" data-original-width="1550" /></a></div>
<h2 style="text-align: left;"><strong>The Potion of Potency: A Symphony of Natural and Effective Ingredients In <a href="https://rangii.webflow.io/">Rangii</a><br /></strong></h2>
<p><a href="https://bitbucket.org/rangii-toenail-fungus/rangii-toenail-fungus/issues/1/rangii-clinically-porven-get-healthy-toes">Rangii</a> Serum is a powerhouse of natural and organic ingredients, each carefully selected for its ability to support healthy nails and beautiful feet. Here's a breakdown of the all-natural, powerful blend of ingredients:</p>
<p><strong>Witch Hazel, Scots Pine, and Horsetail Extract:</strong> These plant extracts have strong anti-inflammatory, antimicrobial, and astringent properties, ideal for fighting nail and foot infections and reducing swelling.</p>
<p><strong>Gotu Kola:</strong> This ancient herb is known for its wound-healing abilities and has been shown to improve blood circulation, promoting healthy nail and foot growth.</p>
<p><strong>Rosemary & Pelargonium Graveolens:</strong> These essential oils have antimicrobial and antifungal properties, helping to combat common nail and foot issues like athlete's foot and fungal nail infections.</p>
<p><strong>Glycerin:</strong> A natural humectant, glycerin helps to lock in moisture, preventing dryness and brittleness in nails and feet.</p>
<p><strong>Lemon Peel Extract & Aloe Vera:</strong> These natural ingredients are rich in antioxidants and have soothing properties, which can help reduce irritation and inflammation.</p>
<p><strong>Organic Green Tea & Hops:</strong> Packed with antioxidants, these ingredients help fight off free radicals and promote overall nail and foot health.</p>
<p><strong>Vitamin C and E:</strong> These essential vitamins promote collagen production, improve circulation, and protect against environmental damage, resulting in healthier nails and feet.</p>
<p><strong>Hyaluronic Acid:</strong> Known for its incredible moisturizing capabilities, it helps keep nails and feet hydrated and plump.</p>
<p><strong>Jojoba Seed Oil and Sage Leaf Extract:</strong> These natural oils provide nourishment and hydration, supporting the overall health of your nails and feet.</p>
<p><strong>MSM:</strong> Methylsulfonylmethane (MSM) is an organic sulfur compound that supports collagen production, contributing to the strength and resilience of nails and feet.</p>
<h3 style="text-align: left;"><a href="https://www.healthsupplement24x7.com/get-rangii"><span style="background-color: #ffe599;"><span style="color: red;"><span style="font-family: georgia;"><strong>To Learn More about Rangii Ingredients in Detail, Click Here to Head to Its Official Website</strong></span></span></span></a></h3>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhF2D2GsgFuIXywzKgLFuO-T0FgJQecanaMLMZzrnHSTjRKlSgkQ7QFcroAnceHuTzCZRGQsyazPXBVXWeVm5iTWmbgF3XmPXXODsQyUms8tI2Eldiw3jXilGWO9EubwHlQ5XyfO6r3I1Y27kLvMIXY3LO_v9lHBJbIB9ppFnJRMKBAFtaUhsONpdNehIFn/w640-h342/Rangii%20Toenail%20Fungus%204.png" alt="" width="640" height="342" border="0" data-original-height="749" data-original-width="1400" /></a></div>
<h2 style="text-align: left;"><strong><a href="https://rangii.mystrikingly.com/">Rangii Toenail Fungus</a> Real Benefits</strong></h2>
<p><a href="https://haitiliberte.com/advert/rangii-clinically-porven-get-healthy-toes-beautiful-nails-toenail-fungus-remover-serumspam-or-legit/">Rangii Toenail Fungus</a> Serum offers various advantages that cater to nail and foot concerns. Its unique 20-in-1 formula is designed to provide comprehensive care, resulting in healthier nails and more beautiful feet. Here are the key benefits of using Rangii:</p>
<p><strong>Stronger nails:</strong> The ingredients of Rangii Toenail Fungus work within. Protects and strengthens nails. No more fragile nails!</p>
<p><strong>Nail growth:</strong> The serum promotes healthy nail growth for long and glamorous nails. Grow your nails.</p>
<p><strong>Better nails:</strong> The serum's moisturizing and nutrient-rich properties help revitalize nails.</p>
<p><strong>Nail repair:</strong> Nail fungus, discoloration and damage are gone. The serum's powerful ingredients address these issues, helping to keep your nails healthy.</p>
<p><strong>Hydrate nails and cuticles:</strong> The serum also hydrates the epidermis. It prevents dry skin and cuticle problems by moisturizing and softening.</p>
<p><strong>Simple to use:</strong> Applying the serum is easy. Apply the liquid to the nail and gently massage the area.</p>
<p><strong>Moisturize nail cuticles:</strong> Rangii believes that a dehydrated cuticle leaves nails dry and brittle. The liquid keeps them moist and strong, preventing infection.</p>
<p><strong>Helper Cells</strong>: <a href="https://rangii-toenail-fungus.bandcamp.com/track/rangii-clinically-porven-get-healthy-toes-beautiful-nails-toenail-fungus-remover-serum-spam-or-legit">Rangii</a> Toenail Fungus removes toxins and creates new nail cells. They help strengthen nails and prevent infections.</p>
<p><strong>Maintain blood flow:</strong> Infected fingernails and feet can interfere with blood circulation. Increased blood flow delivers vitamins and oxygen with Rangii Toenail Fungus. Blood circulation nourishes the nail and speeds up repair.</p>
<p><strong>Improves collagen production:</strong> Vitamins C and E in Rangii Toenail Fungus improve collagen. The serum stimulates collagen production, which helps strengthen nails.</p>
<h3 style="text-align: left;"><span style="font-family: georgia;"><strong>IMPORTANT: <span style="background-color: #ffe599;"><span style="color: red;"><a href="https://www.healthsupplement24x7.com/get-rangii">Shocking Truth About Rangii – This May Change Your Mind!</a></span></span></strong></span></h3>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjGF16k_OMNTEydHdlKIENq4ixtvJYwx1NLigQP-rcL5D3o9D_0LDNnqX4r38BSdWHT8HrFmwt7rglGgYzXU6MvgsqmQ5dymne1y1Kg1aoDqmjH19aZ-cHFeXHcAOkfKRE8X7YvjNCtzBSLUoTqkLOt0TjpU7-oynqf-XjeKVh9dYTsqXKVpcfAd79ydubY/w640-h334/Rangii%20Toenail%20Fungus%203.jpg" alt="" width="640" height="334" border="0" data-original-height="583" data-original-width="1119" /></a></div>
<h2 style="text-align: left;"><strong><a href="https://www.eventcreate.com/e/rangii">Rangii Toenail Fungus</a> Side Effects</strong></h2>
<p>No negative effects associated with <a href="https://gocrowdera.com/US/self/Rangii/rangiitoenail-51454">Rangii</a> were recorded. Its powerful and special formula combines ingredients that have undergone rigorous testing to improve skin and nail health without causing negative side effects. Always check the ingredient list to make sure there are no ingredients to which you could be allergic.</p>
<h3 style="text-align: left;"><strong style="font-family: georgia;">Read This: <a href="https://www.healthsupplement24x7.com/get-rangii"><span style="background-color: #ffe599; color: red;">"More Information From Knowledgeable Expertise of Health Labs Rangii"</span></a></strong></h3>
<h2 style="text-align: left;"><strong>How to Use <a href="https://www.podcasts.com/rangii-toenail-fungus">Rangii Toenail Fungus</a>?</strong></h2>
<p><a href="https://rangiitoenailfungus.hashnode.dev/rangii-clinically-porven-get-healthy-toes-beautiful-nails-toenail-fungus-remover-serumspam-or-legit">Rangii Toenail Fungus</a> comes in a bottle and an applicator brush, making it easy to use. Lift the applicator brush and apply the formula only on the affected area. The solution dries after a few seconds and starts working immediately.</p>
<p>Rangii Toenail Fungus is a formula for men and women of all ages struggling with nasty nail fungus and wanting to eliminate the problem. The manufacturer recommends using the nail formula daily to get the best results.</p>
<p>After using Rangii Toenail Fungus, you won't feel any irritation. It is friendly on the skin and does not cause any harmful side effects. However, you should consult your doctor before using Rangii Toenail Fungus if you are pregnant, breastfeeding, or have a chronic health condition.</p>
<p>If you have any skin condition, get clearance from your doctor before using the fungus fighter. Check the ingredients on the label to avoid allergic reactions. Use Rangii Toenail Fungus for a minimum of six months for permanent relief.</p>
<p>Expect significant results within a few weeks to one month of using <a href="https://www.yepdesk.com/rangii-usa-clinically-porven-get-healthy-toes-beautiful-nails-toenail-fungus-remover-serum">Rangii</a> Toenail Fungus. It is important to note that the results depend on your body's reaction and the severity of the nail fungus infection.</p>
<h3 style="text-align: left;"><span style="font-family: georgia;"><strong>READ ALSO: <span style="background-color: #ffe599;"><span style="color: red;"><a href="https://www.healthsupplement24x7.com/get-rangii">Does the Rangii Work For Everyone? Before you buy, read real customer reviews and testimonials!!</a></span></span></strong></span></h3>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiI_XspCB32XSckI2b5ar-GFKV2rli7YwLnUwRb13RVPfMc_rMpDXpm53B6BJB4_8124biDke7Hb7fPHmFNv-55Tb1ppuNPN3pVCPoezMAvfi6MmxDBarjEFpk1GmUOGuCyDUGh6DcNCN9KkrGIG6kYLHt3CGU_42LUORWwDXYH9_Wylp9RWpq7ysFWp6fB/w640-h326/Rangii%20Toenail%20Fungus%205.jpg" alt="" width="640" height="326" border="0" data-original-height="789" data-original-width="1545" /></a></div>
<h2 style="text-align: left;"><strong>Where To Buy <a href="https://groups.google.com/g/rangii-toenail-fungus-reviews/c/zC9NHz0l_qk">Rangii Toenail Fungus</a>?</strong></h2>
<p>The official <a href="https://limitlessglucose1official.clubeo.com/calendar/2023/08/22/rangii-scientific-secret-nursing-formula-to-get-healthy-skin-nails-and-fungus-free-nails-work-or-hoax">Rangii</a> Toenail Fungus website has a convenient online store. The cost of the serum is divided into three separate categories and packages. Depending on your needs and budget, you can choose any of them.</p>
<p><strong>These are the Rangii costs which decline while getting more units simultaneously:</strong></p>
<p><strong>Basic -</strong> 1 Bottle Supply of Rangii USD 69/bottle + SMALL SHIPPING.<span style="color: red;"><br /></span></p>
<p><strong>Popular Pack -</strong> Buy 3 Get Bottle Supply of Rangii USD 49/bottle + SMALL SHIPPING + 2 FREE BOUNUSES.</p>
<p><strong>Best Value Pack - </strong>Buy 6 Bottle Supply of Rangii USD 39/bottle + FREE SHIPPING + 2 FREE BOUNUSES.</p>
<p style="text-align: left;"><a href="https://rangii.cgsociety.org/yiot/rangii-clinically-po">Rangii</a> Payments are made using 256-bit SSL technology to keep information safe and secure, and all orders arrive within a few business days of ordering.</p>
<h3 style="text-align: left;"><strong style="font-family: georgia;">Special Offer: <span style="background-color: #fff2cc; color: red;"><a href="https://www.healthsupplement24x7.com/get-rangii">Click Here To Get Heavy Discount Instantly!!</a></span></strong></h3>
<p><span style="font-family: times;"><span style="font-size: medium;"><span style="color: red;">Good News: Get additional discount on shipping when you checkout with Mastercard or Discover card!</span></span></span></p>
<div class="separator" style="clear: both; text-align: center;">
<p style="text-align: left;"><span style="font-size: medium;"><a style="clear: left; float: left; margin-bottom: 1em; margin-left: 1em;" href="https://www.healthsupplement24x7.com/get-rangii"><img src="https://blogger.googleusercontent.com/img/a/AVvXsEgJqDXBj2s2sKgxhjLGKnDNPxD392fUjUkF8lQbqbuoFZwPHnPE27muXA18Hs1EzbsUHHsPlOR9Njx119fwMPFiCrLv9NlRRfEUdLPeIVlqZmqjexv1dJ0pMoSO6VUtSY89rewM_LiPyGpkGpNCHHdprDSvrWyt6MprtcceNFal6bdDPK_FyvLHnQzy-A" alt="" width="110" height="120" border="0" data-original-height="120" data-original-width="110" /></a><span style="font-family: helvetica;"><span style="font-size: small;"><strong><span style="color: red;">APPROVED!</span><br /></strong></span></span></span></p>
<p style="text-align: left;"><span style="font-family: helvetica;"><span style="font-size: small;">Limited supply available. We currently have product in stock and ready to ship within <span style="color: red;">24 hours</span>.</span></span></p>
</div>
<p><span style="font-family: helvetica;"><span style="font-size: small;"><strong><span style="color: red;">EXPIRE SOON</span></strong></span></span></p>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicm_kvaEIYBlOqH8UKOud3WHLfMVX6ClvErzcge13WYufhLCuJNK1WGQRdzODQKw-hMyYma4SgEjeOcsgZad3GiLTRrKXMPf3V_CUKV7NfygPsnz7YOUod3NAZrDY7ZZHu_jGvIFmipvT45_-2YEs6oKbkrOH631H-3Z8DCkVwer-zDBz1tkKz_3tQcb6t/w450-h450/Rangii%20Toenail%20Fungus%206.png" alt="" width="450" height="450" border="0" data-original-height="1400" data-original-width="1400" /></a></div>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSJvORHtAeEI3H2rypjo7v70Cm2j2tC1B-Ja0K1qVp1MEYhmISktm3oeSPvmtOjcgIp6VWYex2WQ2w6gsXFZPdis4AmxfwRGftHtwSK5PNs5-vJjhVZwsNY6SljpUWbanRSWMbVUibr78lOgAkjowIEGQGH8g4my7mrAF8bND5KSQ7K8qU9d1qadr8WA/w327-h97/btn.png" alt="" width="327" height="97" border="0" data-original-height="84" data-original-width="282" /></a></div>
<p style="text-align: center;">By submitting, you affirm to have read and agreed to our <a href="https://www.healthsupplement24x7.com/get-rangii"><span style="color: red;">Terms & Conditions</span></a>.</p>
<p style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii"><span style="font-size: medium;"><span style="background-color: #ffe599;"><span style="color: red;"><span style="font-family: georgia;"><strong>HUGE SAVINGS Get Your Rangii “Get Something OFF” Get 2+1 Offer Hurry Only For 1st User!!</strong></span></span></span></span></a></p>
<h2 style="text-align: left;"><strong>Is <a href="https://lookerstudio.google.com/reporting/d30136e6-7a42-45c3-b102-cbd5dc9b7aa7">Rangii Toenail Fungus</a> Legit? – Conclusion</strong></h2>
<p><a href="https://www.podcasts.com/rangii-toenail-fungus/episode/rangii-clinically-porven-get-healthy-toes-beautiful-nails-toenail-fungus-remover-serumspam-or-legit">Rangii</a> Toenail Fungus seems to be a legitimate toenail fungus remover. This serum is easy to apply and works almost instantly. The product is developed using all-natural and plant-based ingredients that have a long history of being used for their medical properties.</p>
<p>Overall, if you have brittle nails, poor nail and skin texture, toenail fungus, or any other foot and nail-related issue, Rangii Toenail Fungus can be a game changer. Also, make sure you combine it with the <a href="https://rangiitoenailfungus.contently.com/?public_only=true">Rangii</a> supplement to get the best results.</p>
<p class="ql-align-center" style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgHYxn3NMPQqsmKG54OjkQESM8dw8D7zUXtssdLHaaWSYArzmNucZfEfKCOBsnUqZdp6i-enO0zDWtMGF2pKG2MifoTldIDExJOBDWxicPkSeox29VCmqX6Cz2feNaSfYBnC_BHUdfPT1qUGVgSNyn0NtyKxY-V-M-BDbo5jCOW4qSuxwu3TOTA3dSjIQ/s1600/Screenshot%20(1445).png" alt="" width="320" height="114" /></a></p>
<p class="ql-align-center" style="text-align: center;"><span style="font-family: georgia;"><a href="https://www.healthsupplement24x7.com/get-rangii"><strong>Terms and Conditions</strong></a><strong> | </strong><a href="https://www.healthsupplement24x7.com/get-rangii"><strong>Privacy</strong></a><strong> | </strong><a href="https://www.healthsupplement24x7.com/get-rangii"><strong>Contact Us</strong></a></span></p>
<p class="ql-align-center" style="text-align: center;"><span style="font-family: georgia;"><strong>© 2023 <a href="https://www.healthsupplement24x7.com/get-rangii">Rangii</a></strong><strong>. All Rights Reserved.</strong></span></p>
<p class="ql-align-center" style="text-align: left;"><span style="font-family: georgia;"><strong>Read More:</strong></span></p>
<p class="ql-align-center" style="text-align: left;"><span style="font-family: georgia;"><strong><a href="https://www.ourboox.com/books/rangii/">https://www.ourboox.com/books/rangii/</a></strong></span></p>
<p class="ql-align-center" style="text-align: left;"><span style="font-family: georgia;"><strong><a href="https://issuu.com/rangiitoenailfungus/docs/rangii">https://issuu.com/rangiitoenailfungus/docs/rangii</a></strong></span></p> |
NarchAI1992/Indochina_data | 2023-08-23T10:01:08.000Z | [
"license:openrail",
"region:us"
] | NarchAI1992 | null | null | null | 0 | 0 | ---
license: openrail
---
|
NarchAI1992/Farmhouse_interior | 2023-08-23T10:06:34.000Z | [
"license:openrail",
"region:us"
] | NarchAI1992 | null | null | null | 0 | 0 | ---
license: openrail
---
|
CreatorPhan/Lora_Vietnews | 2023-08-28T17:56:43.000Z | [
"region:us"
] | CreatorPhan | null | null | null | 0 | 0 | Entry not found |
neil-code/autotrain-data-img-classification | 2023-08-23T10:55:59.000Z | [
"task_categories:image-classification",
"region:us"
] | neil-code | null | null | null | 0 | 0 | ---
task_categories:
- image-classification
---
# AutoTrain Dataset for project: img-classification
## Dataset Description
This dataset has been automatically processed by AutoTrain for project img-classification.
### Languages
The BCP-47 code for the dataset's language is unk.
## Dataset Structure
### Data Instances
A sample from this dataset looks as follows:
```json
[
{
"image": "<222x163 RGB PIL image>",
"target": 0
},
{
"image": "<222x163 RGB PIL image>",
"target": 3
}
]
```
### Dataset Fields
The dataset has the following fields (also called "features"):
```json
{
"image": "Image(decode=True, id=None)",
"target": "ClassLabel(names=['elf', 'goblin', 'knight', 'zombie'], id=None)"
}
```
### Dataset Splits
This dataset is split into a train and validation split. The split sizes are as follow:
| Split name | Num samples |
| ------------ | ------------------- |
| train | 1160 |
| valid | 291 |
|
fia24/annotated18k_training_dataset_90 | 2023-08-23T10:18:59.000Z | [
"region:us"
] | fia24 | null | null | null | 0 | 0 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: test
path: data/test-*
dataset_info:
features:
- name: id
dtype: string
- name: translation
struct:
- name: en
dtype: string
- name: fr
dtype: string
splits:
- name: train
num_bytes: 905284
num_examples: 15273
- name: test
num_bytes: 101954
num_examples: 1697
download_size: 538353
dataset_size: 1007238
---
# Dataset Card for "annotated18k_training_dataset_90"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
roniwahyu/googleplay-bank-apps-indonesia | 2023-08-23T10:22:15.000Z | [
"region:us"
] | roniwahyu | null | null | null | 0 | 0 | ---
# For reference on model card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/datasetcard.md?plain=1
# Doc / guide: https://huggingface.co/docs/hub/datasets-cards
{}
---
# Dataset Card for Dataset Name
## Dataset Description
- **Homepage:**
- **Repository:**
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
This dataset card aims to be a base template for new datasets. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/datasetcard_template.md?plain=1).
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
[More Information Needed]
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
[More Information Needed]
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
[More Information Needed]
### Contributions
[More Information Needed] |
Sprakbanken/nst_tts_dataset | 2023-09-01T11:49:51.000Z | [
"region:us"
] | Sprakbanken | null | null | null | 0 | 0 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: audio
dtype: audio
- name: duration
dtype: float64
- name: text
dtype: string
splits:
- name: train
num_bytes: 1233182773.768
num_examples: 5363
download_size: 1098148678
dataset_size: 1233182773.768
---
# NST Text-to-Speech Dataset for Norwegian Bokmål
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Language](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Additional Information](#additional-information)
- [Licensing Information](#licensing-information)
## Dataset Description
- **Repository:** https://www.nb.no/sprakbanken/en/resource-catalogue/oai-nb-no-sbr-87/
- **Point of Contact:** sprakbanken@nb.no
### Dataset Summary
The Norwegian TTS dataset from the now defunct firm Nordisk språkteknologi (NST) was created at the start of the millenium.
It has been distributed by Språkbanken at the National Library of Norway since 2011. The dataset contains 7+ hours of recordings
of one man reading from a manuscript. The manuscript contains sentences, phrases and words.
### Language
Norwegian Bokmål
## Dataset Structure
### Data Instances
```
{'audio': {'path': 'ctts_core_cs_01_0011_1.wav',
'array': array([ 6.27044678e-01, 0.00000000e+00, 0.00000000e+00, ...,
-1.22070312e-04, -1.83105469e-04, -2.74658203e-04]),
'sampling_rate': 22050},
'duration': 5.48,
'text': 'jeg syntes det hørtes stort ut.'}
```
### Data Fields
* **audio**:
* **path**: File name of the segment
* **array**: Array of audio data of the segment
* **sampling_rate**: The sampling rate of the segment (22050 Hz)
* **duration**: The duration of the segment in seconds
* **text**: The text of the segment
### Data Splits
The dataset only has a training split.
## Dataset Creation
### Curation Rationale
The dataset was created by Nordisk språkteknologi to be used in various TTS tools at the turn of the millenium.
It has since been given an open licence and distributed freely in Språkbanken.
### Source Data
#### Initial Data Collection and Normalization
The recordings and the manuscript are developed by NST. We don't have information about the data collection process.
The text strings contain puncuation, but not sentence-initial capitalization. The manuscript is likely created to
get a broad coverage of Norwegian phoneme clusters. There seems to be utterances in the manuscript relevant for various
applications, e.g. screen navigation and numbers.
#### Who are the source language producers?
The Employees at NST
### Personal and Sensitive Information
The speaker of the dataset is anonymous and the manuscript does not contain sensitive information.
## Considerations for Using the Data
### Social Impact of Dataset
This dataset can be used to develop and improve TTS for Norwegian Bokmål. To our knowledge, it is the
only freely available dataset intended for this use in Norwegian Bokmål.
### Discussion of Biases
The dataset contains audio from one male speaking the Oslo dialect, so the dataset lacks gender and
dialect variation. The manuscript is Bokmål only, so it cannot be used to create application in
Norwegian Nynorsk, the other official written standard of Norwegian.
## Additional Information
### Licensing Information
(CC0)[https://creativecommons.org/publicdomain/zero/1.0/]
|
johnny46/Surah-Baqarah | 2023-08-25T05:59:27.000Z | [
"license:openrail",
"region:us"
] | johnny46 | null | null | null | 0 | 0 | ---
license: openrail
---
|
ctiwary/products_desc_and_marktng_emails_dataset | 2023-08-23T10:51:09.000Z | [
"region:us"
] | ctiwary | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: product
dtype: string
- name: description
dtype: string
- name: marketing_email
dtype: string
splits:
- name: train
num_bytes: 18095
num_examples: 10
download_size: 23309
dataset_size: 18095
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# Dataset Card for "products_desc_and_marktng_emails_dataset"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
ravipratap366/test | 2023-08-23T11:17:58.000Z | [
"license:apache-2.0",
"region:us"
] | ravipratap366 | null | null | null | 0 | 0 | ---
license: apache-2.0
---
|
ravipratap366/test1 | 2023-08-23T11:04:13.000Z | [
"license:apache-2.0",
"region:us"
] | ravipratap366 | null | null | null | 0 | 0 | ---
license: apache-2.0
---
|
Bandid/Panjson | 2023-08-23T11:04:54.000Z | [
"region:us"
] | Bandid | null | null | null | 0 | 0 | Entry not found |
dgrty24/samyy1 | 2023-08-23T11:37:08.000Z | [
"region:us"
] | dgrty24 | null | null | null | 0 | 0 | Entry not found |
dgrty24/samyy2 | 2023-08-23T11:37:15.000Z | [
"region:us"
] | dgrty24 | null | null | null | 0 | 0 | Entry not found |
Teja2022/smallset | 2023-08-23T11:35:32.000Z | [
"region:us"
] | Teja2022 | null | null | null | 0 | 0 | Entry not found |
dgrty24/samyy3 | 2023-08-23T11:37:12.000Z | [
"region:us"
] | dgrty24 | null | null | null | 0 | 0 | Entry not found |
dgrty24/samyy4 | 2023-08-23T11:37:18.000Z | [
"region:us"
] | dgrty24 | null | null | null | 0 | 0 | Entry not found |
dgrty24/samyy5 | 2023-08-23T11:37:07.000Z | [
"region:us"
] | dgrty24 | null | null | null | 0 | 0 | Entry not found |
StarkOsae/meta-kaggle-code | 2023-09-04T14:12:09.000Z | [
"region:us"
] | StarkOsae | null | null | null | 0 | 0 | Entry not found |
Muhammadreza/jmilo-basic | 2023-08-23T11:38:59.000Z | [
"region:us"
] | Muhammadreza | null | null | null | 0 | 0 | Entry not found |
Jackmin108/c4-en-validation-mini | 2023-08-23T11:40:24.000Z | [
"region:us"
] | Jackmin108 | null | null | null | 0 | 0 | ---
configs:
- config_name: default
data_files:
- split: validation
path: data/validation-*
dataset_info:
features:
- name: text
dtype: string
- name: timestamp
dtype: string
- name: url
dtype: string
splits:
- name: validation
num_bytes: 175483
num_examples: 100
download_size: 116815
dataset_size: 175483
---
# Dataset Card for "c4-en-validation-mini"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
logosrhema/ug-examine-data | 2023-08-23T11:45:50.000Z | [
"license:mit",
"region:us"
] | logosrhema | null | null | null | 0 | 0 | ---
license: mit
---
|
loubnabnl/llama-10k-annotations | 2023-08-23T11:46:43.000Z | [
"region:us"
] | loubnabnl | null | null | null | 0 | 0 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: completion
dtype: string
- name: eval_prompt_header
dtype: string
- name: generation_config
struct:
- name: do_sample
dtype: bool
- name: temperature
dtype: float64
- name: top_p
dtype: float64
- name: metadata
struct:
- name: timestamp
dtype: string
- name: prompt
dtype: string
- name: review_model
dtype: string
- name: score
dtype: float64
splits:
- name: train
num_bytes: 51557354.2433
num_examples: 9983
download_size: 14251796
dataset_size: 51557354.2433
---
# Dataset Card for "llama-10k-annotations"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
Zephyriyn/img | 2023-08-23T11:48:18.000Z | [
"region:us"
] | Zephyriyn | null | null | null | 0 | 0 | Entry not found |
Vijish/che_dots | 2023-08-23T15:21:29.000Z | [
"region:us"
] | Vijish | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: source_image
dtype: image
- name: target_image
dtype: image
- name: prompts
dtype: string
splits:
- name: train
num_bytes: 3585870.0
num_examples: 708
download_size: 1344440
dataset_size: 3585870.0
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# Dataset Card for "che_dots"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
RangiiReviews/Rangii-Toenail-Fungus | 2023-08-23T12:05:45.000Z | [
"region:us"
] | RangiiReviews | null | null | null | 0 | 0 | <h2 style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii"><span style="color: #ff0000;">Rangii Toenail Fungus Oil Toenail Fungus – Shocking Customer Compliant – In This Review!</span></a></h2>
<p><strong>Rangii Toenail Fungus (NEW 2023!) Reviews:</strong> So, after exhaustively searching for a solution, we came across <a href="https://sites.google.com/view/rangiitoenailfungus/home">Rangii Toenail Fungus</a>, a natural toenail support oil. It is one such product that is adored by many people all over the world due to its effectiveness and efficiency. When it comes to treating toenail infections, one medicine can turn the tide.</p>
<p style="background-color: white; box-sizing: border-box; color: black; font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: 400; letter-spacing: normal; margin: 0px 0px 10px; padding: 0px; text-align: left; text-decoration-color: initial; text-decoration-style: initial; text-decoration-thickness: initial; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;"><strong style="box-sizing: border-box; font-style: normal; font-weight: bold;">➥ <span style="box-sizing: border-box; color: #993300;">Product Name -</span> <span style="box-sizing: border-box; color: red;">{Rangii} (Rangii Toenail Fungus)</span><br style="box-sizing: border-box;" />➥ <span style="box-sizing: border-box; color: green;">Benefits - Rangii Stops the fungus's mutating and growing!</span><br style="box-sizing: border-box;" />➥ <span style="box-sizing: border-box; color: olive;">Category -</span></strong><strong style="box-sizing: border-box; font-style: normal; font-weight: bold;"> Toenail Fungus Oil </strong><strong style="box-sizing: border-box; font-style: normal; font-weight: bold;"><br style="box-sizing: border-box;" />➥ <span style="box-sizing: border-box; color: purple;">Availability –</span> Online<br style="box-sizing: border-box;" />➥ <span style="box-sizing: border-box; color: navy;">Rating: -</span> <span style="box-sizing: border-box; color: red;">5.0/5.0</span> ⭐⭐⭐⭐⭐</strong></p>
<h2 style="background-color: white; box-sizing: border-box; color: black; font-family: Roboto, Helvetica, Arial, sans-serif; font-size: 1.5em; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: bold; letter-spacing: normal; line-height: 1.1; margin: 10px 0px; padding: 0px; text-align: start; text-decoration-color: initial; text-decoration-style: initial; text-decoration-thickness: initial; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;"><a href="https://www.healthsupplement24x7.com/get-rangii" target="_blank"><span style="background-color: red; box-sizing: border-box;"><strong style="box-sizing: border-box; font-style: normal; font-weight: bold;">✅<span style="box-sizing: border-box; color: #ffcc00;">Click Here To Visit – “OFFICIAL WEBSITE”</span>✅</strong></span></a></h2>
<h2 style="background-color: white; box-sizing: border-box; color: black; font-family: Roboto, Helvetica, Arial, sans-serif; font-size: 1.5em; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: bold; letter-spacing: normal; line-height: 1.1; margin: 10px 0px; padding: 0px; text-align: start; text-decoration-color: initial; text-decoration-style: initial; text-decoration-thickness: initial; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;"><a href="https://www.healthsupplement24x7.com/get-rangii" target="_blank"><span style="background-color: red; box-sizing: border-box;"><strong style="box-sizing: border-box; font-style: normal; font-weight: bold;">✅<span style="box-sizing: border-box; color: #ffcc00;">Click Here To Visit – “OFFICIAL WEBSITE”</span>✅</strong></span></a></h2>
<h2 style="background-color: white; box-sizing: border-box; color: black; font-family: Roboto, Helvetica, Arial, sans-serif; font-size: 1.5em; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: bold; letter-spacing: normal; line-height: 1.1; margin: 10px 0px; padding: 0px; text-align: start; text-decoration-color: initial; text-decoration-style: initial; text-decoration-thickness: initial; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;"><a href="https://www.healthsupplement24x7.com/get-rangii" target="_blank"><span style="background-color: red; box-sizing: border-box;"><strong style="box-sizing: border-box; font-style: normal; font-weight: bold;">✅<span style="box-sizing: border-box; color: #ffcc00;">Click Here To Visit – “OFFICIAL WEBSITE”</span>✅</strong></span></a></h2>
<p>We have read hundreds of reviews and done extensive research on <a href="https://sites.google.com/view/rangi-toenail-fungus/home">Rangii Toenail Fungus</a> to give you one of the most accurate reviews available. With that said, let's begin our review. Continue reading to learn more about Rangii Toenail Fungus Skincare!</p>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii" target="_blank"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitIziNtWQpAKjNWDE451t4dEBgkE2PcLoKPwcIwrXusPUIhdUQ_xGMO12k8IQCB37nYcm46xP8wksSElWfEnHE6iZRkUBRb5NA4SKfPY_iKSS-gSz4RmZUSd3fYzLjKNpBP9DAuHK78neAJACQt_mypiZy89v6ERdhRyPg-1wuIOAhlEa9NR_PNa55ZAE/w640-h290/Rangii%20Toenail%20Fungus%202.png" alt="" width="640" height="290" border="0" data-original-height="702" data-original-width="1550" /></a></div>
<h2>Rangii Toenail Fungus Oil: What Is It?</h2>
<p>A natural oil supplement called <a href="https://devfolio.co/@RangiiToenail">Rangii Toenail Fungus</a> aids in preventing foot odor, dry skin, toenail fungus, and yellow, brittle nails. Its potent composition penetrates the skin and purges microorganisms from your body. A doctor-formulated mixture called Rangii Toenail Fungus for toenail fungus contains herbal extracts from natural plants.</p>
<p>Effective substances that deeply cleanse your skin of hazardous contaminants include clove bud oil and aloe vera gel extract.You can achieve dramatic results with this oil that will last a lifetime. Antioxidants and anti-inflammatories are also present, which soothe and calm sore nails and scars.</p>
<h2 style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii" target="_blank"><span style="background-color: red; color: #f1c232;">(THE BIG BILLION DAYS SALE) - THE MOST SELLING "RANGII TOENAIL FUNGUS" IS HERE ORDER NOW</span></a></h2>
<h2>What Does the Rangii Toenail Fungus Oil Do for Toenail Fungus?</h2>
<p>With the aid of its all-natural ingredients, <a href="https://rangii-toenail.clubeo.com/calendar/2023/08/23/rangii-toenail-fungus-new-toenail-fungus-remover-all-you-need-to-know-about-rangii-offer?_ga=2.150821686.1658347636.1692764482-2009335326.1692764482">Rangii Toenail Fungus</a> Oil aids in the treatment of fungal diseases on the skin and nails. Nail and skin health have improved as a result of the Rangii Toenail Fungus components utilized in the product.</p>
<p>By removing its source of life, the oil affects the fungus under your fingernails or toenails. It targets them and eliminates them from the root, preventing any additional fungal development. Additionally, it eliminates moisture from your skin and nails to stop the spread of the prevalent skin and nail fungus.</p>
<p>It has long been available on the market and has assisted in the treatment of fungus infections. Numerous <a href="https://rangii-toenail.clubeo.com/page/rangii-toenail-fungus-1-clinical-toenail-fungus-remover-fda-approved-or-hoax.html">Rangii</a> Toenail Fungus testimonials on their official website provide concrete evidence to support the claims made by the product's creators.</p>
<h2>What Ingredients makeup Rangii Toenail Fungus Oil Drop?</h2>
<p>It's important to carefully review <a href="https://rangii-toenail.clubeo.com/page/rangii-toenail-fungus-1-inner-toenail-fungus-remover-formula-stops-the-funguss-mutating-and-growing.html">Rangii Toenail Fungus</a>' ingredients before deciding whether to purchase it for your damaged and brittle toenails.</p>
<p><strong>• Almond Oil:</strong> It offers significant advantages to your heart, skin, and hair. Vitamin E, which is an essential ingredient for keeping your skin supple and well-hydrated, is included in the oil. Using almond oil to reduce cellulitis and stretch marks is also very common. </p>
<p><strong>• Flaxseed Oil:</strong> It contains a lot of Omega 3 fatty acids, a miraculous nutrient that helps to support heart and brain health, reduce inflammation, and maintain healthy nails and teeth. For skin that is supple and well-hydrated, flaxseed oil is a fantastic serum. You can seem young and healthy thanks to its anti-aging qualities. After removing fungal growth, the oil boosts nails' resistance to infection and helps them grow stronger.</p>
<p><strong>• Essential Tea Tree Oil:</strong> It can aid in the speedy healing of wounds and the prevention of toenail fungus. Whether used alone or in conjunction with other components, the oil has had impressive results.</p>
<p><strong>• Aloe Vera:</strong> Antioxidants like polyphenols found in aloe vera help prevent the formation of germs and fungi. Additionally, it has antibacterial, antifungal, and antiseptic qualities. By having a calming effect, the extracts also aid with skin inflammation and itching.</p>
<p><strong>• Lemongrass Oil:</strong> lt is an excellent anti-inflammatory because of its antioxidant, anti-fungal, and antibacterial qualities. It oil is an excellent treatment for brittle nails, toenail fungus, and skin infections due to its antioxidant, antifungal, and antibacterial qualities. </p>
<p><strong>• Clove Bud Oil:</strong> It helps to eliminate fungi and kill bacteria due to antibacterial characteristics. Clove oil penetrates and kills the bacteria at the source. Additionally, it helps with other skin issues like chronic itching and teeth erosion.</p>
<p><strong>• Manuka:</strong> Its anti-inflammatory qualities aid in reducing pain and inflammation. It is a perfect ingredient in <a href="https://www.eventcreate.com/e/rangii-toenail-fungus">Rangii Toenail Fungus</a> because it also has antimicrobial qualities. Due to its high concentration of MGO and hydrogen peroxide, manuka honey possesses antibacterial characteristics. </p>
<h2 style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii" target="_blank"><span style="background-color: red; color: #f1c232;">(THE BIG BILLION DAYS SALE) - THE MOST SELLING "RANGII TOENAIL FUNGUS" IS HERE ORDER NOW</span></a></h2>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii" target="_blank"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjGrgntm3-oqfh6J-0qF7uAh-5Ew0LRdBEwZ61X60GK_bzKWXpNv_rYIoJSM2701vWiZqaIydlPrGKHwtiy0fveBhGOzpWxRbWNPjSQ-PS0_S3J7iO_QLj16cGsVBI8Ue6zakP-FldcxKhMGrhAd2RVoVYMfv5ZIk_Z-NUynWLLk_4peRGTvnzx86KkLc/w640-h342/Rangii%20Toenail%20Fungus%204.png" alt="" width="640" height="342" border="0" data-original-height="749" data-original-width="1400" /></a></div>
<h2>Rangii Toenail Fungus Oil – Benefits, Precautions</h2>
<p>Some advantages of the <a href="https://www.sympla.com.br/evento/rangii-toenail-fungus-2023-new-toenail-fungus-remover-is-rangii-right-choice/2131904">Rangii Toenail Fungus</a> nail health support formula include the following:</p>
<p>►► Your nail and skin immunity is improved by the nail health support product.<br /> ►► The mixture encourages your nails to grow again in a healthy way.<br /> ►► Provides your nails a white hue and gets rid of the yellow stains on them.<br /> ►► Stops the fungus's mutating and growing.<br /> ►► Keeps your cuticles and nails well-hydrated and moisturized.<br /> ►► It is also beneficial in maintaining healthy nails and enhancing general nail and skin health.<br /> ►► Because of its high nutritional value, the nail improvement solution can help revitalize your entire body.<br /> ►► This nail health mixture also aids in the fight against numerous hazardous bacteria, detoxifying your skin as well as the overall body.</p>
<p><a href="https://www.townscript.com/e/rangii-toenail-fungus-new-2023-does-it-work-or-just-scam-321411">Rangii Toenail Fungus</a> is appropriate for everyone over the age of 18 and offers its consumers a variety of health advantages. It is not recommended to use by a pregnant, lactating, or nursing woman.</p>
<h2>Rangii Toenail Fungus Side Effects – Is It Safe?</h2>
<p>Rangii Toenail Fungus only uses natural products that have no negative side effects. It is manufactured in an FDA-approved facility using strict and accurate GMP standards. This product contains no stimulants or hazardous toxins.</p>
<p>The solution is safe for everyone to use, according to the manufacturer, and will not itch or irritate your cuticles or nails when applied to them. This nail fungus eliminator's components are likewise safe for human usage; there is no risk of side effects from using this solution.</p>
<h2>How to Apply Rangii Toenail Fungus Oil? What Thinks Should Be Remember While Applying It?</h2>
<p>The oil supplement <a href="https://rangii-update.clubeo.com/calendar/2023/08/23/rangii-toenail-fungus-dr-warning-is-rangii-worth-buying-what-do-customers-say">Rangii Toenail Fungus</a> is a simple-to-use product. It must be applied four times each day (twice in the morning and twice in the afternoon). You may apply the oil to your affected area effectively with the help of the contained brush applicator that is included with it. To get the best benefits, shake the supplement well before use and use it every day.</p>
<p>Here are a few additional steps you may take to prevent toenail fungus on your feet in addition to using the solution.</p>
<p>►► Avoid barefooted walking in public areas.<br /> ►► Never swap socks, sheets, or shoes with someone who has an infected toenail.<br /> ►► Avoid sweaty feet by keeping your feet dry.<br /> ►► Healthy feet and skin depend on hygiene, so wash them properly each day</p>
<h2 style="text-align: center;"><a href="https://www.healthsupplement24x7.com/get-rangii" target="_blank"><span style="background-color: red; color: #f1c232;">(THE BIG BILLION DAYS SALE) - THE MOST SELLING "RANGII TOENAIL FUNGUS" IS HERE ORDER NOW</span></a></h2>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="https://www.healthsupplement24x7.com/get-rangii" target="_blank"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEilNX5zHBzsDXHZp3KuJKLSQqqqzr6k5WIh7oz_SM7mWe-3btgTOZxh1jgz_o1Rq5YPVd-9pIXUfhHXHU63duiHWw2eC3eCZrZfGQPZUd6c77MOjPECoQXC9GljNDnT7aBIIRu31YeRSNzBd8_fDe3_QtEztwBlpXf4afSecqKIl2Q0bftW7oKF8X-HovM/w640-h462/Screenshot%20(1229).png" alt="" width="640" height="462" border="0" data-original-height="731" data-original-width="1011" /></a></div>
<h2>What’s the Price of Rangii Toenail Fungus Oil?</h2>
<p><a href="https://sketchfab.com/3d-models/rangii-toenail-fungus-new-2023-reviews-f9ec56326c874ea49d70e13930663e6a">Rangii Toenail Fungus</a> come in bottles that are 15 ml/0.5 oz in size, which is enough for one month's worth of use. Currently, Rangii Toenail Fungus comes in three separate packages, with the following pricing structure:</p>
<p>o One bottle of <a href="https://www.ivoox.com/rangii-toenail-fungus-new-2023-does-it-work-audios-mp3_rf_114763403_1.html">Rangii</a> Toenail Fungus Each bottle Costs $69 plus free shipping.<br /> o Three bottles of Rangii Toenail Fungus Each bottle costs $49 plus free shipping.<br /> o 180-day supply: For six months' Each bottle costs $39 plus free shipping.</p>
<h2>Rangii Toenail Fungus Reviews: Conclusive Ending</h2>
<p><a href="https://sites.google.com/view/rangii/home">Rangii Toenail Fungus</a> is a potent remedy that could help you permanently get rid of toenail fungus. The mixture contains premium ingredients that are said to possess qualities that can aid in the removal of fungus from your entire body. Every element in Rangii Toenail Fungus was selected after careful consideration of the ingredient's health-related attributes.</p>
<p>The formula for <a href="https://pdfhost.io/v/A5DB1UWHb_Rangii_Toenail_Fungus_Helps_To_Rejuvenates_And_Revitalize_Toe_Skin_And_Nail_Health">Rangii Toenail Fungus</a> was designed by the company behind it to be simple to use and apply to your cuticles and nails. You are advised to use <a href="https://rangiitoenailfungus.bandcamp.com/track/rangii-toenail-fungus-new-2023-does-it-work-or-just-scam">Rangii Toenail Fungus</a> four times every day, twice in the morning and twice in the afternoon, to get the most results from the formula, according to the official website. You can benefit from Rangii Toenail Fungus' anti-fungal oil in this circumstance.</p>
<h3>READ MORE ON OFFICIAL WEBSITE:</h3>
<p><a href="https://rangii-toenail.clubeo.com/calendar/2023/08/23/rangii-toenail-fungus-new-toenail-fungus-remover-all-you-need-to-know-about-rangii-offer?_ga=2.150821686.1658347636.1692764482-2009335326.1692764482">https://rangii-toenail.clubeo.com/calendar/2023/08/23/rangii-toenail-fungus-new-toenail-fungus-remover-all-you-need-to-know-about-rangii-offer</a></p>
<p><a href="https://www.ivoox.com/rangii-toenail-fungus-new-2023-does-it-work-audios-mp3_rf_114763403_1.html">https://www.ivoox.com/rangii-toenail-fungus-new-2023-does-it-work-audios-mp3_rf_114763403_1.html</a></p>
<p><a href="https://pdfhost.io/v/vw6Jc~oiy_Peoples_Keto_Gummies_New_Keto_ACV_Gummies_All_You_Need_To_Know_About_Peoples_Keto_Gummies_Offer">https://pdfhost.io/v/vw6Jc~oiy_Peoples_Keto_Gummies_New_Keto_ACV_Gummies_All_You_Need_To_Know_About_Peoples_Keto_Gummies_Offer</a></p>
<p><a href="https://sketchfab.com/3d-models/rangii-toenail-fungus-new-2023-reviews-f9ec56326c874ea49d70e13930663e6a">https://sketchfab.com/3d-models/rangii-toenail-fungus-new-2023-reviews-f9ec56326c874ea49d70e13930663e6a</a></p>
<p><a href="https://sites.google.com/view/rangiitoenailfungus/home">https://sites.google.com/view/rangiitoenailfungus/home</a></p>
<p><a href="https://rangiitoenailfungus.bandcamp.com/track/rangii-toenail-fungus-new-2023-does-it-work-or-just-scam">https://rangiitoenailfungus.bandcamp.com/track/rangii-toenail-fungus-new-2023-does-it-work-or-just-scam</a></p>
<p><a href="https://www.townscript.com/e/rangii-toenail-fungus-new-2023-does-it-work-or-just-scam-321411">https://www.townscript.com/e/rangii-toenail-fungus-new-2023-does-it-work-or-just-scam-321411</a></p>
<p><a href="https://rangii-toenail.clubeo.com/page/rangii-toenail-fungus-1-clinical-toenail-fungus-remover-fda-approved-or-hoax.html">https://rangii-toenail.clubeo.com/page/rangii-toenail-fungus-1-clinical-toenail-fungus-remover-fda-approved-or-hoax.html</a></p>
<p><a href="https://devfolio.co/@RangiiToenail">https://devfolio.co/@RangiiToenail</a></p>
<p><a href="https://www.eventcreate.com/e/rangii-toenail-fungus">https://www.eventcreate.com/e/rangii-toenail-fungus</a></p>
<p><a href="https://sites.google.com/view/rangii/home">https://sites.google.com/view/rangii/home</a></p>
<p><a href="https://rangii-update.clubeo.com/calendar/2023/08/23/rangii-toenail-fungus-dr-warning-is-rangii-worth-buying-what-do-customers-say">https://rangii-update.clubeo.com/calendar/2023/08/23/rangii-toenail-fungus-dr-warning-is-rangii-worth-buying-what-do-customers-say</a></p>
<p><a href="https://sites.google.com/view/rangi-toenail-fungus/home">https://sites.google.com/view/rangi-toenail-fungus/home</a></p>
<p><a href="https://www.sympla.com.br/evento/rangii-toenail-fungus-2023-new-toenail-fungus-remover-is-rangii-right-choice/2131904">https://www.sympla.com.br/evento/rangii-toenail-fungus-2023-new-toenail-fungus-remover-is-rangii-right-choice/2131904</a></p> |
NgThVinh/DSC_uit | 2023-08-23T13:01:20.000Z | [
"region:us"
] | NgThVinh | null | null | null | 0 | 0 | Entry not found |
afish3/all_grants | 2023-08-23T14:39:47.000Z | [
"task_categories:question-answering",
"language:en",
"finance",
"region:us"
] | afish3 | null | null | null | 0 | 0 | ---
task_categories:
- question-answering
language:
- en
tags:
- finance
---
## Dataset Description
- **Scottish grant scheme descriptions**
### Dataset Summary
This dataset represents raw text that has been converted into vector space. The text data has been extracted from PDF files that describe existing
grant schemes in Scotland for woodland, riverwood, and hedge preservation and creation.
### Languages
English |
lengoctuong/codeparrot-ds-mapped_ids | 2023-08-23T12:20:07.000Z | [
"region:us"
] | lengoctuong | null | null | null | 0 | 0 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: valid
path: data/valid-*
dataset_info:
features:
- name: input_ids
sequence: int32
splits:
- name: train
num_bytes: 8618263476
num_examples: 16702061
- name: valid
num_bytes: 48072624
num_examples: 93164
download_size: 3804670316
dataset_size: 8666336100
---
# Dataset Card for "codeparrot-ds-mapped_ids"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
NBA55/test | 2023-08-23T12:27:54.000Z | [
"region:us"
] | NBA55 | null | null | null | 0 | 0 | Entry not found |
NobodyExistsOnTheInternet/removedsysmsgconvo | 2023-08-23T12:29:19.000Z | [
"license:mit",
"region:us"
] | NobodyExistsOnTheInternet | null | null | null | 0 | 0 | ---
license: mit
---
|
chengzhiyuan/WJX | 2023-08-23T12:56:03.000Z | [
"region:us"
] | chengzhiyuan | null | null | null | 0 | 0 | Entry not found |
a-moron/worduniversity | 2023-08-23T12:31:04.000Z | [
"region:us"
] | a-moron | null | null | null | 0 | 0 | Entry not found |
tiagotrindade/Text2SQLChanged | 2023-08-23T12:44:43.000Z | [
"region:us"
] | tiagotrindade | null | null | null | 0 | 0 | Entry not found |
TheBot99/Mario-Kart-Item-Images | 2023-08-23T12:41:50.000Z | [
"region:us"
] | TheBot99 | null | null | null | 0 | 0 | Entry not found |
zxvix/pubmed_nonbiomedical | 2023-08-25T03:25:34.000Z | [
"region:us"
] | zxvix | null | null | null | 0 | 0 | ---
configs:
- config_name: default
data_files:
- split: test
path: data/test-*
dataset_info:
features:
- name: MedlineCitation
struct:
- name: PMID
dtype: int32
- name: DateCompleted
struct:
- name: Year
dtype: int32
- name: Month
dtype: int32
- name: Day
dtype: int32
- name: NumberOfReferences
dtype: int32
- name: DateRevised
struct:
- name: Year
dtype: int32
- name: Month
dtype: int32
- name: Day
dtype: int32
- name: Article
struct:
- name: Abstract
struct:
- name: AbstractText
dtype: string
- name: ArticleTitle
dtype: string
- name: AuthorList
struct:
- name: Author
sequence:
- name: LastName
dtype: string
- name: ForeName
dtype: string
- name: Initials
dtype: string
- name: CollectiveName
dtype: string
- name: Language
dtype: string
- name: GrantList
struct:
- name: Grant
sequence:
- name: GrantID
dtype: string
- name: Agency
dtype: string
- name: Country
dtype: string
- name: PublicationTypeList
struct:
- name: PublicationType
sequence: string
- name: MedlineJournalInfo
struct:
- name: Country
dtype: string
- name: ChemicalList
struct:
- name: Chemical
sequence:
- name: RegistryNumber
dtype: string
- name: NameOfSubstance
dtype: string
- name: CitationSubset
dtype: string
- name: MeshHeadingList
struct:
- name: MeshHeading
sequence:
- name: DescriptorName
dtype: string
- name: QualifierName
dtype: string
- name: PubmedData
struct:
- name: ArticleIdList
sequence:
- name: ArticleId
sequence: string
- name: PublicationStatus
dtype: string
- name: History
struct:
- name: PubMedPubDate
sequence:
- name: Year
dtype: int32
- name: Month
dtype: int32
- name: Day
dtype: int32
- name: ReferenceList
sequence:
- name: Citation
dtype: string
- name: CitationId
dtype: int32
- name: text
dtype: string
- name: title
dtype: string
- name: original_text
dtype: string
splits:
- name: test
num_bytes: 4015623.996
num_examples: 996
download_size: 2191434
dataset_size: 4015623.996
---
# Dataset Card for "pubmed_nonbiomedical"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
ticoAg/moss-003-sft-data | 2023-08-23T13:45:36.000Z | [
"region:us"
] | ticoAg | null | null | null | 0 | 0 | # moss-003-sft-data
本数据集可用于中文多轮对话指令微调,包含110万中英文多轮对话数据。该数据集来自[MOSS项目](https://github.com/OpenLMLab/MOSS#%E6%95%B0%E6%8D%AE) 中的moss-003-sft-data数据集。
fork from [[YeungNLP/moss-003-sft-data]](https://huggingface.co/datasets/YeungNLP/moss-003-sft-data)
在原数据集的基础上,我们去除了冗余信息,仅提取出有效的对话信息,并且调整数据格式,以便在训练中更加灵活地组织数据格式。更多详细信息,可参考MOSS项目介绍。
格式从`YeungNLP/moss-003-sft-data`的多轮转为:
```json
[
{
"instruction": "听起来很不错。人工智能可能在哪些方面面临挑战呢?",
"input": "",
"output": "人工智能面临的挑战包括数据隐私、安全和道德方面的问题,以及影响就业机会的自动化等问题。",
"history": [
["你好,你能帮我解答一个问题吗?", "当然,请问有什么问题?"],
["我想了解人工智能的未来发展方向,你有什么想法吗?", "人工智能在未来的发展方向可能包括更强大的机器学习算法,更先进的自然语言处理技术,以及更加智能的机器人。"]
]
}
]
``` |
djaekim/inversion-mutation | 2023-08-23T13:14:14.000Z | [
"region:us"
] | djaekim | null | null | null | 0 | 0 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: type
dtype: string
- name: dataset
dtype: string
- name: input
dtype: string
- name: instruction
dtype: string
- name: output
dtype: string
splits:
- name: train
num_bytes: 8482395
num_examples: 1965
download_size: 2794490
dataset_size: 8482395
---
# Dataset Card for "inversion-mutation"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
Seenka/directv-zocalos_1.0fps_15-08-2023_17-08-2023 | 2023-08-23T13:30:43.000Z | [
"region:us"
] | Seenka | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: image
dtype: image
- name: image_filename
dtype: string
- name: frame_number
dtype: int64
- name: is_L_shape
dtype: bool
- name: horizontal_check
dtype: bool
- name: vertical_check
dtype: bool
- name: black_image
dtype: bool
- name: horizontal_xmin
dtype: int64
- name: horizontal_xmax
dtype: int64
- name: horizontal_ymin
dtype: int64
- name: horizontal_ymax
dtype: int64
- name: vertical_xmin
dtype: int64
- name: vertical_xmax
dtype: int64
- name: vertical_ymin
dtype: int64
- name: vertical_ymax
dtype: int64
- name: cropped_image_horizontal
dtype: image
- name: cropped_image_vertical
dtype: 'null'
- name: width
dtype: int64
- name: height
dtype: int64
- name: embedding_horizontal
sequence: float32
splits:
- name: train
num_bytes: 976987.0
num_examples: 5
download_size: 960063
dataset_size: 976987.0
---
# Dataset Card for "directv-zocalos_1.0fps_15-08-2023_17-08-2023"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
agusbegue/spotify-artists | 2023-08-23T13:55:25.000Z | [
"size_categories:100K<n<1M",
"music",
"spotify",
"region:us"
] | agusbegue | null | null | null | 0 | 0 | ---
tags:
- music
- spotify
pretty_name: Spotify Artists
size_categories:
- 100K<n<1M
--- |
Eguchi7482/Eguchi7482 | 2023-08-26T12:06:35.000Z | [
"region:us"
] | Eguchi7482 | null | null | null | 0 | 0 | Entry not found |
agusbegue/spotify-tracks | 2023-08-23T13:57:26.000Z | [
"music",
"spotify",
"region:us"
] | agusbegue | null | null | null | 0 | 0 | ---
tags:
- music
- spotify
--- |
namngo/viquad-qag | 2023-08-23T13:57:13.000Z | [
"region:us"
] | namngo | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: paragraph
dtype: string
- name: questions
sequence: string
- name: answers
sequence: string
- name: questions_answers
dtype: string
splits:
- name: train
num_bytes: 323168
num_examples: 138
- name: validation
num_bytes: 42356
num_examples: 18
- name: test
num_bytes: 42356
num_examples: 18
download_size: 264361
dataset_size: 407880
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: validation
path: data/validation-*
- split: test
path: data/test-*
---
# Dataset Card for "viquad-qag"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
Hatanaka744/Hatanaka744 | 2023-08-23T13:57:10.000Z | [
"region:us"
] | Hatanaka744 | null | null | null | 0 | 0 | Entry not found |
Ayaka4543/Ayaka4543 | 2023-08-23T13:57:16.000Z | [
"region:us"
] | Ayaka4543 | null | null | null | 0 | 0 | Entry not found |
NobodyExistsOnTheInternet/removedlastconvo | 2023-09-04T09:50:50.000Z | [
"license:mit",
"region:us"
] | NobodyExistsOnTheInternet | null | null | null | 0 | 0 | ---
license: mit
---
|
Kelsey98/Phishpedia_benchmark | 2023-08-23T13:59:58.000Z | [
"region:us"
] | Kelsey98 | null | null | null | 0 | 0 | Entry not found |
dmitrijsk/rick | 2023-08-25T14:00:19.000Z | [
"region:us"
] | dmitrijsk | null | null | null | 0 | 0 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: validation
path: data/validation-*
- split: test
path: data/test-*
dataset_info:
features:
- name: context_name
dtype: string
- name: context_name_line
dtype: string
- name: line
dtype: string
splits:
- name: train
num_bytes: 592370.4808013355
num_examples: 499
- name: validation
num_bytes: 59355.75959933222
num_examples: 50
- name: test
num_bytes: 59355.75959933222
num_examples: 50
download_size: 417787
dataset_size: 711082.0
---
# Dataset Card for "rick"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
Baiheng/HWD_Standard_Dataset | 2023-08-23T14:05:16.000Z | [
"region:us"
] | Baiheng | null | null | null | 0 | 0 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: image
dtype: image
- name: labels
sequence: string
splits:
- name: train
num_bytes: 124407555.14
num_examples: 62706
download_size: 173792970
dataset_size: 124407555.14
---
# Dataset Card for "HWD_Standard_Dataset"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
neil-code/autotrain-data-test-summarization | 2023-08-24T04:20:55.000Z | [
"task_categories:summarization",
"language:en",
"region:us"
] | neil-code | null | null | null | 0 | 0 | ---
language:
- en
task_categories:
- summarization
---
# AutoTrain Dataset for project: test-summarization
## Dataset Description
This dataset has been automatically processed by AutoTrain for project test-summarization.
### Languages
The BCP-47 code for the dataset's language is en.
## Dataset Structure
### Data Instances
A sample from this dataset looks as follows:
```json
[
{
"feat_id": "train_1087",
"text": "#Person1#: Hello sir, how can I help you?\n#Person2#: Yes, I need this prescription please.\n#Person1#: Let's see. Okay, so 50 mg of Prozac, would you prefer this in capsule or tablet?\n#Person2#: Capsules are fine.\n#Person1#: Okay, you should take 1 capsule 3 times a day. Be sure not to take it on an empty stomach, and also, don't ever mix it with alcohol!\n#Person2#: Yes, I know. It's not the first time I'm taking this! Don't worry, I won't overdose!\n#Person1#: Okay, anything else I can get you?\n#Person2#: Oh, yes, I almost forgot! Can I also get some eye drops and um, some condoms?\n#Person1#: Sure. Darn condoms aren't registered in our system.\n#Person2#: Oh, well that's okay, I'll get some later, thanks. . . Really it's no problem.\n#Person1#: Just hang on there a sec. Can I get a price check on ' Fun Times Ribbed Condoms ' please!",
"target": "#Person1# gives #Person2# #Person2#'s prescription. #Person2# also wants some eye drops and some condoms but is told that darn condoms are registered in their system.",
"feat_topic": "the pharmacy"
},
{
"feat_id": "train_1193",
"text": "#Person1#: Don't be too sad. If you really think that you have no feeling with him, then, in my opinion, getting divorced maybe is the best way to solve the problem. \n#Person2#: I know clearly at the bottom of my heart. I just can't set my mind at rest because of the child. She's little. She cannot understand us and accept such truth. \n#Person1#: Yeah, child is the matter. Don't tell Jenny the truth, only tell her the white lie. When she grows up, you find the suitable opportunity to tell her. \n#Person2#: I see. OK. ",
"target": "#Person1# suggests #Person2# get divorced if #Person2# has no feeling with a man and tell their daughter the white lie.",
"feat_topic": "divorce"
}
]
```
### Dataset Fields
The dataset has the following fields (also called "features"):
```json
{
"feat_id": "Value(dtype='string', id=None)",
"text": "Value(dtype='string', id=None)",
"target": "Value(dtype='string', id=None)",
"feat_topic": "Value(dtype='string', id=None)"
}
```
### Dataset Splits
This dataset is split into a train and validation split. The split sizes are as follow:
| Split name | Num samples |
| ------------ | ------------------- |
| train | 1599 |
| valid | 400 |
|
Areisena624/Areisena624 | 2023-08-23T14:28:11.000Z | [
"region:us"
] | Areisena624 | null | null | null | 0 | 0 | Entry not found |
Hosoo784/Hosoo784 | 2023-08-23T14:28:08.000Z | [
"region:us"
] | Hosoo784 | null | null | null | 0 | 0 | Entry not found |
Seenka/directv-zocalos_1.0fps_03-08-2023_05-08-2023 | 2023-08-23T14:50:06.000Z | [
"region:us"
] | Seenka | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: image
dtype: image
- name: image_filename
dtype: string
- name: frame_time
dtype: int64
- name: video_storage_path
dtype: string
- name: zocalo_id
dtype: string
- name: frame_number
dtype: int64
- name: is_L_shape
dtype: bool
- name: horizontal_check
dtype: bool
- name: vertical_check
dtype: bool
- name: black_image
dtype: bool
- name: horizontal_xmin
dtype: int64
- name: horizontal_xmax
dtype: int64
- name: horizontal_ymin
dtype: int64
- name: horizontal_ymax
dtype: int64
- name: vertical_xmin
dtype: int64
- name: vertical_xmax
dtype: int64
- name: vertical_ymin
dtype: int64
- name: vertical_ymax
dtype: int64
- name: cropped_image_horizontal
dtype: image
- name: cropped_image_vertical
dtype: 'null'
- name: width
dtype: int64
- name: height
dtype: int64
- name: embedding_horizontal
sequence: float32
splits:
- name: train
num_bytes: 5576518.0
num_examples: 26
download_size: 3227023
dataset_size: 5576518.0
---
# Dataset Card for "directv-zocalos_1.0fps_03-08-2023_05-08-2023"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
ZiAngGu/omni3d_6 | 2023-08-23T18:49:11.000Z | [
"region:us"
] | ZiAngGu | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: image
dtype: image
- name: conditioning_image
dtype: image
- name: text
dtype: string
- name: label
sequence: string
- name: box2d_pro
sequence:
sequence:
sequence: int64
splits:
- name: train
num_bytes: 24149199949.632
num_examples: 213792
download_size: 23239060092
dataset_size: 24149199949.632
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# Dataset Card for "omni3d_6"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
franjay/Frasier | 2023-08-23T14:38:34.000Z | [
"license:unlicense",
"doi:10.57967/hf/1015",
"region:us"
] | franjay | null | null | null | 0 | 0 | ---
license: unlicense
---
|
Futaki7593/Futaki7593 | 2023-08-23T14:38:36.000Z | [
"region:us"
] | Futaki7593 | null | null | null | 0 | 0 | Entry not found |
Naora454/Naora454 | 2023-08-23T14:38:57.000Z | [
"region:us"
] | Naora454 | null | null | null | 0 | 0 | Entry not found |
namngo/viquad-qg | 2023-08-23T14:47:21.000Z | [
"region:us"
] | namngo | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: question
dtype: string
- name: paragraph
dtype: string
- name: answer
dtype: string
- name: sentence
dtype: string
- name: paragraph_sentence
dtype: string
- name: paragraph_answer
dtype: string
- name: sentence_answer
dtype: string
splits:
- name: train
num_bytes: 72612959
num_examples: 18432
- name: validation
num_bytes: 8472773
num_examples: 2250
- name: test
num_bytes: 8472773
num_examples: 2250
download_size: 18598577
dataset_size: 89558505
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: validation
path: data/validation-*
- split: test
path: data/test-*
---
# Dataset Card for "viquad-qg"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
loubnabnl/gpt4-1k-annotations | 2023-08-23T14:47:39.000Z | [
"region:us"
] | loubnabnl | null | null | null | 0 | 0 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: completion
dtype: string
- name: eval_prompt_header
dtype: string
- name: generation_config
struct:
- name: do_sample
dtype: bool
- name: temperature
dtype: float64
- name: top_p
dtype: float64
- name: metadata
struct:
- name: timestamp
dtype: string
- name: prompt
dtype: string
- name: review_model
dtype: string
- name: score
dtype: float64
- name: code_file
dtype: string
- name: size
dtype: int64
splits:
- name: train
num_bytes: 7384714
num_examples: 1000
download_size: 2350749
dataset_size: 7384714
---
# Dataset Card for "gpt4-1k-annotations"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
Falah/image_generation_prompts_SDXL | 2023-08-23T14:48:17.000Z | [
"region:us"
] | Falah | null | null | null | 2 | 0 | ---
dataset_info:
features:
- name: prompts
dtype: string
splits:
- name: train
num_bytes: 305708411
num_examples: 1000000
download_size: 42523277
dataset_size: 305708411
---
# Dataset Card for "image_generation_prompts_SDXL"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
Ayame5632/Ayame5632 | 2023-08-23T14:52:02.000Z | [
"region:us"
] | Ayame5632 | null | null | null | 0 | 0 | Entry not found |
Ienaga564/Ienaga564 | 2023-08-23T14:52:35.000Z | [
"region:us"
] | Ienaga564 | null | null | null | 0 | 0 | Entry not found |
xuzhou2004/xiaoyang | 2023-08-23T14:58:00.000Z | [
"region:us"
] | xuzhou2004 | null | null | null | 0 | 0 | Entry not found |
drewparo/bigquery-swift-filtered-no-duplicate | 2023-08-23T14:59:01.000Z | [
"region:us"
] | drewparo | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: repo_name
dtype: string
- name: ref
dtype: string
- name: path
dtype: string
- name: license
dtype: string
- name: copies
dtype: string
- name: content
dtype: string
- name: hash
dtype: string
- name: line_mean
dtype: float64
- name: line_max
dtype: int64
- name: alpha_frac
dtype: float64
- name: autogenerated
dtype: bool
- name: config_or_test
dtype: bool
- name: has_no_keywords
dtype: bool
- name: has_few_assignments
dtype: bool
splits:
- name: train
num_bytes: 1366718500.8048851
num_examples: 308891
download_size: 576460240
dataset_size: 1366718500.8048851
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# Dataset Card for "bigquery-swift-unfiltered-no-duplicate"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
ayesh22/textgen | 2023-08-23T15:05:51.000Z | [
"license:llama2",
"region:us"
] | ayesh22 | null | null | null | 0 | 0 | ---
license: llama2
---
|
Seenka/directv-zocalos_1.0fps_03-07-2023_05-07-2023 | 2023-08-23T15:10:24.000Z | [
"region:us"
] | Seenka | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: image
dtype: image
- name: image_filename
dtype: string
- name: frame_time
dtype: time64[us]
- name: video_storage_path
dtype: string
- name: zocalo_id
dtype: string
- name: frame_number
dtype: int64
- name: is_L_shape
dtype: bool
- name: horizontal_check
dtype: bool
- name: vertical_check
dtype: bool
- name: black_image
dtype: bool
- name: horizontal_xmin
dtype: int64
- name: horizontal_xmax
dtype: int64
- name: horizontal_ymin
dtype: int64
- name: horizontal_ymax
dtype: int64
- name: vertical_xmin
dtype: int64
- name: vertical_xmax
dtype: int64
- name: vertical_ymin
dtype: int64
- name: vertical_ymax
dtype: int64
- name: cropped_image_horizontal
dtype: image
- name: cropped_image_vertical
dtype: 'null'
- name: width
dtype: int64
- name: height
dtype: int64
- name: embedding_horizontal
sequence: float32
splits:
- name: train
num_bytes: 6073069.0
num_examples: 10
download_size: 6023337
dataset_size: 6073069.0
---
# Dataset Card for "directv-zocalos_1.0fps_03-07-2023_05-07-2023"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
mischel/Dataset_Ins_Test | 2023-08-28T11:27:19.000Z | [
"region:us"
] | mischel | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: text
dtype: string
splits:
- name: train
num_bytes: 507941
num_examples: 1661
download_size: 139651
dataset_size: 507941
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# Dataset Card for "Dataset_Ins_Test"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
OXadex/Project-Ngawur | 2023-08-23T16:00:15.000Z | [
"region:us"
] | OXadex | null | null | null | 0 | 0 | Entry not found |
ulajessen/Mietvertraege | 2023-08-23T15:31:15.000Z | [
"language:de",
"language:en",
"license:mit",
"region:us"
] | ulajessen | null | null | null | 0 | 0 | ---
license: mit
language:
- de
- en
--- |
yardeny/tokenized_bert_context_len_256 | 2023-08-23T18:59:50.000Z | [
"region:us"
] | yardeny | null | null | null | 0 | 0 | ---
dataset_info:
features:
- name: input_ids
sequence: int32
- name: token_type_ids
sequence: int8
- name: attention_mask
sequence: int8
splits:
- name: train
num_bytes: 15879303402
num_examples: 80462898
download_size: 5357270136
dataset_size: 15879303402
---
# Dataset Card for "tokenized_bert_context_len_256"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) |
r76941156/MPRINT2 | 2023-08-23T15:30:30.000Z | [
"license:apache-2.0",
"region:us"
] | r76941156 | null | null | null | 0 | 0 | ---
license: apache-2.0
---
|
ulajessen/real_estate | 2023-08-23T15:38:51.000Z | [
"license:mit",
"region:us"
] | ulajessen | null | null | null | 0 | 0 | ---
license: mit
---
|
videahu/online | 2023-08-23T16:23:37.000Z | [
"region:us"
] | videahu | null | null | null | 0 | 0 | Entry not found |
minovayIa/ee | 2023-08-23T15:43:22.000Z | [
"region:us"
] | minovayIa | null | null | null | 0 | 0 | Entry not found |
Siyoun/exercise | 2023-08-24T13:03:04.000Z | [
"region:us"
] | Siyoun | null | null | null | 0 | 0 | ---
# For reference on model card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/datasetcard.md?plain=1
# Doc / guide: https://huggingface.co/docs/hub/datasets-cards
{}
---
# Dataset Card for Dataset Name
## Dataset Description
- **Homepage:**
- **Repository:**
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
This dataset card aims to be a base template for new datasets. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/datasetcard_template.md?plain=1).
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
[More Information Needed]
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
[More Information Needed]
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
[More Information Needed]
### Contributions
[More Information Needed] |
gfdfr/test | 2023-08-23T16:08:26.000Z | [
"region:us"
] | gfdfr | null | null | null | 0 | 0 | Entry not found |
NobodyExistsOnTheInternet/sub4096ctx | 2023-08-23T16:15:59.000Z | [
"license:mit",
"region:us"
] | NobodyExistsOnTheInternet | null | null | null | 0 | 0 | ---
license: mit
---
|
GarlicBread99/StormtrooperV2 | 2023-08-23T17:21:41.000Z | [
"region:us"
] | GarlicBread99 | null | null | null | 0 | 0 | Entry not found |
ronnykhalil/fast-stable-diffusion | 2023-10-06T03:29:03.000Z | [
"region:us"
] | ronnykhalil | null | null | null | 0 | 0 | Entry not found |
nebulae7/compliance_db | 2023-08-23T16:39:11.000Z | [
"region:us"
] | nebulae7 | null | null | null | 0 | 0 | Entry not found |
SyCooo/Atif | 2023-08-23T16:59:56.000Z | [
"region:us"
] | SyCooo | null | null | null | 0 | 0 | Entry not found |
eddiekung/test | 2023-08-24T02:32:46.000Z | [
"license:afl-3.0",
"region:us"
] | eddiekung | null | null | null | 0 | 0 | ---
license: afl-3.0
---
|
HsiangNianian/autotrain-data-chinese-ner | 2023-08-23T17:15:38.000Z | [
"task_categories:text-generation",
"size_categories:10M<n<100M",
"language:zh",
"license:mit",
"region:us"
] | HsiangNianian | null | null | null | 0 | 0 | ---
license: mit
task_categories:
- text-generation
language:
- zh
size_categories:
- 10M<n<100M
--- |
Stussy-PIXae/XStussyy | 2023-08-23T20:29:16.000Z | [
"region:us"
] | Stussy-PIXae | null | null | null | 0 | 0 | Entry not found |
PROCESOS/pruebasCFE | 2023-08-27T05:41:13.000Z | [
"license:c-uda",
"region:us"
] | PROCESOS | null | null | null | 0 | 0 | ---
license: c-uda
---
|
OmkarB/Sample_SQL_GQL_Data | 2023-08-23T17:39:44.000Z | [
"region:us"
] | OmkarB | null | null | null | 0 | 0 | Entry not found |
Tasfiul/agrogpt | 2023-08-23T17:40:10.000Z | [
"region:us"
] | Tasfiul | null | null | null | 0 | 0 | Entry not found |
Myashka/SO-Python_basics_QA-filtered-2023-T5_paraphrased-tanh_score | 2023-08-23T18:50:55.000Z | [
"license:mit",
"region:us"
] | Myashka | null | null | null | 0 | 0 | ---
license: mit
---
|
oscorrea/scores-curated-gpt4-final | 2023-08-23T18:07:30.000Z | [
"region:us"
] | oscorrea | null | null | null | 0 | 0 | Entry not found |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.