예제 #1
0
 def load_tsv_to_net(self, file_buffer):
   ''' 
   This will load a tsv matrix file buffer, this is exposed so that it will
   be possible to load data without having to read from a file. 
   ''' 
   import load_data
   load_data.load_tsv_to_net(self, file_buffer)
예제 #2
0
 def load_tsv_to_net(self, file_buffer, filename=None):
     '''
 This will load a tsv matrix file buffer, this is exposed so that it will
 be possible to load data without having to read from a file.
 '''
     import load_data
     load_data.load_tsv_to_net(self, file_buffer, filename)