alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (ListDataSetIterator.java)

This example Java source code file (ListDataSetIterator.java) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

arraylist, dataset, datasetpreprocessor, list, listdatasetiterator, override, unsupportedoperationexception, util

The ListDataSetIterator.java Java example source code

/*
 *
 *  * Copyright 2015 Skymind,Inc.
 *  *
 *  *    Licensed under the Apache License, Version 2.0 (the "License");
 *  *    you may not use this file except in compliance with the License.
 *  *    You may obtain a copy of the License at
 *  *
 *  *        http://www.apache.org/licenses/LICENSE-2.0
 *  *
 *  *    Unless required by applicable law or agreed to in writing, software
 *  *    distributed under the License is distributed on an "AS IS" BASIS,
 *  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  *    See the License for the specific language governing permissions and
 *  *    limitations under the License.
 *
 */

package org.deeplearning4j.datasets.iterator.impl;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;


import org.nd4j.linalg.dataset.api.iterator.DataSetIterator;
import org.nd4j.linalg.dataset.api.DataSetPreProcessor;
import org.nd4j.linalg.dataset.DataSet;

/**
 * Wraps a data applyTransformToDestination collection
 * @author Adam Gibson
 *
 */
public class ListDataSetIterator implements DataSetIterator {



	/**
	 * 
	 */
	private static final long serialVersionUID = -7569201667767185411L;
	private int curr = 0;
	private int batch = 10;
	private List<DataSet> list;
	private DataSetPreProcessor preProcessor;

	public ListDataSetIterator(Collection<DataSet> coll,int batch) {
		list = new ArrayList<>(coll);
		this.batch = batch;

	}

	/**
	 * Initializes with a batch of 5
	 * @param coll the collection to iterate over
	 */ 
	public ListDataSetIterator(Collection<DataSet> coll) {
		this(coll,5);

	}

	@Override
	public synchronized boolean hasNext() {
		return curr < list.size();
	}

	@Override
	public synchronized DataSet next() {
		return next(batch);
	}

	@Override
	public void remove() {
		throw new UnsupportedOperationException();
	}

	@Override
	public int totalExamples() {
		return list.size();
	}

	@Override
	public int inputColumns() {
		return list.get(0).getFeatureMatrix().columns();
	}

	@Override
	public int totalOutcomes() {
		return list.get(0).getLabels().columns();
	}

	@Override
	public synchronized void reset() {
		curr = 0;
	}

	@Override
	public int batch() {
		return batch;
	}

	@Override
	public synchronized int cursor() {
		return curr;
	}

	@Override
	public int numExamples() {
		return list.size();
	}

    @Override
    public void setPreProcessor(org.nd4j.linalg.dataset.api.DataSetPreProcessor preProcessor) {
        this.preProcessor = (DataSetPreProcessor) preProcessor;
    }

	@Override
	public List<String> getLabels() {
		return null;
	}


	@Override
	public DataSet next(int num) {
		int end = curr + num;

		List<DataSet> r = new ArrayList<>();
		if(end >= list.size())
			end = list.size();
		for(; curr < end; curr++) {
			r.add(list.get(curr));
		}
		
		DataSet d = DataSet.merge(r);
        if(preProcessor != null)
            preProcessor.preProcess(d);
		return d;
	}


}

Other Java examples (source code examples)

Here is a short list of links related to this Java ListDataSetIterator.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.