C# 클래스 Encog.ML.Data.Specific.CSVMLDataSet

An implementation of the MLDataSet interface designed to provide a CSV file to the neural network. This implementation uses the BasicMLData to hold the data being read. This class has no ability to write CSV files. The columns of the CSV file will specify both the input and ideal columns. This class is not memory based, so very long files can be used, without running out of memory.
상속: BasicMLDataSet
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
CSVMLDataSet ( String filename, int inputSize, int idealSize, bool headers ) : System

Construct this data set using a comma as a delimiter.

CSVMLDataSet ( String filename, int inputSize, int idealSize, bool headers, CSVFormat format, bool expectSignificance ) : System

Construct this data set using a comma as a delimiter.

메소드 상세

CSVMLDataSet() 공개 메소드

Construct this data set using a comma as a delimiter.
public CSVMLDataSet ( String filename, int inputSize, int idealSize, bool headers ) : System
filename String The CSV filename to read.
inputSize int The number of columns that make up the input set.
idealSize int The number of columns that make up the ideal set.
headers bool True if headers are present on the first line.
리턴 System

CSVMLDataSet() 공개 메소드

Construct this data set using a comma as a delimiter.
public CSVMLDataSet ( String filename, int inputSize, int idealSize, bool headers, CSVFormat format, bool expectSignificance ) : System
filename String The CSV filename to read.
inputSize int The number of columns that make up the input set.
idealSize int The number of columns that make up the ideal set.
headers bool True if headers are present on the first line.
format Encog.Util.CSV.CSVFormat The format to use.
expectSignificance bool
리턴 System