mstz commited on
Commit
b349007
1 Parent(s): 7752fd4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -0
README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - adult
6
+ - tabular_classification
7
+ - binary_classification
8
+ pretty_name: Sonar
9
+ size_categories:
10
+ - 10K<n<100K
11
+ task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
12
+ - tabular-classification
13
+ configs:
14
+ - sonar
15
+ ---
16
+ # Sonar
17
+ The [Sonar dataset](https://archive-beta.ics.uci.edu/dataset/151/connectionist+bench+sonar+mines+vs+rocks) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
18
+ Dataset to discriminate between sonar signals bounced off a metal cylinder and those bounced off a roughly cylindrical rock.
19
+
20
+ # Configurations and tasks
21
+ | **Configuration** | **Task** | **Description** |
22
+ |-------------------|---------------------------|-----------------------------------------------------------------|
23
+ | sonar | Binary classification | Is the sonar detecting a rock? |
24
+
25
+ # Usage
26
+ ```python
27
+ from datasets import load_dataset
28
+
29
+ dataset = load_dataset("mstz/sonar", "sonar")["train"]
30
+ ```