Reading NIPS 360 FFS Data Files =============================== NIPS 360 FFS Data Files is a collection of *logical records* (see :class:`nips.logical_records.LogicalRecord`) that are parsed into various kind of records holding the information contained in the data file. The simplest way to load a data file to a *data set* (:class:`nips.DataSet`). The data set consists of all the parsed records in the data file: .. code-block:: import nips with open("FILE.NIPS", "rb") as nip_file: data_set = nips.DataSet(nips_file) Data Set -------- .. autoclass:: nips.DataSet :exclude-members: '__init__'