This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @misc{1605.06069, | |
| Author = {Iulian Vlad Serban and Alessandro Sordoni and Ryan Lowe and Laurent Charlin and Joelle Pineau and Aaron Courville and Yoshua Bengio}, | |
| Title = {A Hierarchical Latent Variable Encoder-Decoder Model for Generating Dialogues}, | |
| Year = {2016}, | |
| Eprint = {arXiv:1605.06069}, | |
| } | |
| @misc{1507.02221, | |
| Author = {Alessandro Sordoni and Yoshua Bengio and Hossein Vahabi and Christina Lioma and Jakob G. Simonsen and Jian-Yun Nie}, | |
| Title = {A Hierarchical Recurrent Encoder-Decoder For Generative Context-Aware Query Suggestion}, | |
| Year = {2015}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // TestDataSetIterator.java | |
| // ver 1.0.0-beta | |
| import org.datavec.api.records.reader.SequenceRecordReader; | |
| import org.datavec.api.records.reader.impl.collection.CollectionSequenceRecordReader; | |
| import org.datavec.api.writable.IntWritable; | |
| import org.datavec.api.writable.Writable; | |
| import org.deeplearning4j.datasets.datavec.SequenceRecordReaderDataSetIterator; | |
| import org.nd4j.linalg.dataset.DataSet; | |
| import org.nd4j.linalg.dataset.api.iterator.DataSetIterator; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // TestDataSetIterator.java | |
| // ver 1.0.0-beta | |
| import org.datavec.api.records.reader.SequenceRecordReader; | |
| import org.datavec.api.records.reader.impl.csv.CSVSequenceRecordReader; | |
| import org.datavec.api.split.FileSplit; | |
| import org.deeplearning4j.datasets.datavec.SequenceRecordReaderDataSetIterator; | |
| import org.nd4j.linalg.dataset.api.iterator.DataSetIterator; | |
| import java.io.File; | |
| import java.io.IOException; |
NewerOlder