13 lines
210 B
Python
13 lines
210 B
Python
|
#! /usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from datasets import load_dataset
|
||
|
|
||
|
|
||
|
def create_dataset():
|
||
|
iris_dataset = load_dataset("scikit-learn/iris")
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
create_dataset()
|