--- language: - en tags: - promoters - tabular_classification - binary_classification - UCI pretty_name: Promoters size_categories: - n<1K task_categories: - tabular-classification configs: - promoters license: cc --- # Promoters The [Promoters dataset](https://archive.ics.uci.edu/ml/datasets/Promoters) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets). # Configurations and tasks | **Configuration** | **Task** | **Description** | |-------------------|---------------------------|---------------------------------| | promoters | Binary classification | Is this DNA string a promoter? | # Usage ```python from datasets import load_dataset dataset = load_dataset("mstz/promoters")["train"] ```