kesmarag / ml-utils

Machine learning utilities

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

installation using pip:

pip install git+https://github.com/kesmarag/ml-utils.git

usage

import numpy as np
from kesmarag.ml.utils import Dataset

data = np.random.rand(1000, 20000, 10)
dataset = DataSet(data)
print(dataset.get_batch(5, 1000).shape)

# Good luck

About

Machine learning utilities

License:MIT License


Languages

Language:Python 100.0%