UNPKG

@andypai/neuroflow

Version:

simple neural network library inspired by karpathy/micrograd and tfjs

7 lines (5 loc) 175 B
const range = (start, end, step = 1) => { const length = Math.ceil((end - start) / step) return Array.from({ length }, (_, i) => start + i * step) } export default range