index
int64
0
731k
package
stringlengths
2
98
name
stringlengths
1
76
docstring
stringlengths
0
281k
code
stringlengths
4
8.19k
signature
stringlengths
2
42.8k
embed_func_code
sequencelengths
768
768
728,918
tables.table
modify_column
Modify one single column in the row slice [start:stop:step]. The colname argument specifies the name of the column in the table to be modified with the data given in column. This method returns the number of rows modified. Should the modification exceed the length of the table, an IndexError is raised before changing data. The *column* argument may be any object which can be converted to a (record) array compliant with the structure of the column to be modified (otherwise, a ValueError is raised). This includes NumPy (record) arrays, lists of scalars, tuples or array records, and a string or Python buffer.
def modify_column(self, start=None, stop=None, step=None, column=None, colname=None): """Modify one single column in the row slice [start:stop:step]. The colname argument specifies the name of the column in the table to be modified with the data given in column. This method returns the number of rows modified. Should the modification exceed the length of the table, an IndexError is raised before changing data. The *column* argument may be any object which can be converted to a (record) array compliant with the structure of the column to be modified (otherwise, a ValueError is raised). This includes NumPy (record) arrays, lists of scalars, tuples or array records, and a string or Python buffer. """ if step is None: step = 1 if not isinstance(colname, str): raise TypeError("The 'colname' parameter must be a string.") self._v_file._check_writable() if column is None: # Nothing to be done return SizeType(0) if start is None: start = 0 if start < 0: raise ValueError("'start' must have a positive value.") if step < 1: raise ValueError( "'step' must have a value greater or equal than 1.") # Get the column format to be modified: objcol = self._get_column_instance(colname) descr = [objcol._v_parent._v_nested_descr[objcol._v_pos]] # Try to convert the column object into a NumPy ndarray try: # If the column is a recarray (or kind of), convert into ndarray if hasattr(column, 'dtype') and column.dtype.kind == 'V': column = np.rec.array(column, dtype=descr).field(0) else: # Make sure the result is always a *copy* of the original, # so the resulting object is safe for in-place conversion. iflavor = flavor_of(column) column = array_as_internal(column, iflavor) except Exception as exc: # XXX raise ValueError("column parameter cannot be converted into a " "ndarray object compliant with specified column " "'%s'. The error was: <%s>" % (str(column), exc)) # Get rid of single-dimensional dimensions column = column.squeeze() if column.shape == (): # Oops, stripped off to much dimensions column.shape = (1,) if stop is None: # compute the stop value. start + len(rows)*step does not work stop = start + (len(column) - 1) * step + 1 (start, stop, step) = self._process_range(start, stop, step) if stop > self.nrows: raise IndexError("This modification will exceed the length of " "the table. Giving up.") # Compute the number of rows to read. nrows = len(range(start, stop, step)) if len(column) < nrows: raise ValueError("The value has not enough elements to fill-in " "the specified range") # Now, read the original values: mod_recarr = self._read(start, stop, step) # Modify the appropriate column in the original recarray mod_col = get_nested_field(mod_recarr, colname) mod_col[:] = column # save this modified rows in table self._update_records(start, stop, step, mod_recarr) # Redo the index if needed self._reindex([colname]) return SizeType(nrows)
(self, start=None, stop=None, step=None, column=None, colname=None)
[ 0.05624082684516907, 0.03857492282986641, -0.03365989401936531, 0.057852309197187424, -0.019841408357024193, -0.014503364451229572, -0.02493773028254509, 0.0696161538362503, -0.06200188398361206, -0.07719013094902039, 0.002113815164193511, 0.015047241002321243, 0.0040664817206561565, 0.02177519164979458, 0.003975835628807545, 0.05700628086924553, 0.05688542127609253, -0.00045983976451680064, -0.0069293854758143425, 0.02544131875038147, 0.02233920991420746, -0.019740691408514977, 0.0211507398635149, -0.0105451550334692, 0.00296613946557045, 0.012428577989339828, 0.02979232929646969, 0.04463813453912735, 0.06369394063949585, -0.06103499233722687, 0.008878274820744991, -0.016638582572340965, -0.027435531839728355, 0.0425432026386261, -0.014815590344369411, -0.02683122456073761, 0.016648653894662857, -0.032934725284576416, 0.062404755502939224, 0.04016626253724098, -0.04717622324824333, -0.010333647020161152, 0.015923485159873962, -0.021110452711582184, -0.0010373934637755156, -0.007347364444285631, 0.01335518155246973, -0.015873126685619354, -0.04351009428501129, -0.0010896407766267657, -0.012650157324969769, 0.009125033393502235, 0.04967402294278145, -0.024212561547756195, 0.014322073198854923, 0.03490879386663437, 0.009804879315197468, 0.04109286516904831, 0.029973620548844337, -0.010172499343752861, 0.028926154598593712, -0.017575258389115334, -0.005302792880684137, -0.021634185686707497, 0.01127032283693552, 0.006289827171713114, 0.0613572895526886, -0.0031852007377892733, 0.002938442165032029, 0.03859506547451019, -0.03132323920726776, 0.049835171550512314, 0.05056034028530121, 0.039803680032491684, -0.00827396847307682, 0.06292849034070969, -0.03549295663833618, -0.0018141795881092548, 0.02082844264805317, -0.006410688627511263, 0.08210515975952148, 0.06292849034070969, 0.04411439970135689, -0.008802737109363079, -0.0021591379772871733, -0.01869322545826435, 0.028362136334180832, 0.031544819474220276, -0.015540758147835732, -0.005207110662013292, -0.021452894434332848, 0.0017512309132143855, 0.0075034769251942635, -0.001756266807205975, 0.04141516238451004, -0.05450848117470741, -0.0014717390295118093, -0.04137487709522247, -0.03434477373957634, -0.03347859904170036, 0.03591597080230713, 0.030396634712815285, 0.06671547889709473, 0.0024789171293377876, 0.04496043175458908, -0.02241978421807289, 0.003243113402277231, 0.023829834535717964, -0.014755159616470337, -0.030960654839873314, -0.04363095760345459, 0.011431471444666386, -0.05845661833882332, -0.041697174310684204, -0.04532301425933838, 0.00017452507745474577, 0.003950655926018953, -0.011592620052397251, -0.04407411441206932, 0.05720771849155426, 0.059624943882226944, -0.029026873409748077, 0.012418505735695362, 0.002023169072344899, -0.018391072750091553, -0.019932053983211517, -0.006002781447023153, 0.0175551138818264, 0.04089143127202988, -0.051809243857860565, -0.0399043969810009, -0.07860018312931061, -0.025542037561535835, 0.04250291734933853, -0.016275998204946518, -0.016386788338422775, 0.07473261654376984, -0.010373934172093868, -0.028503140434622765, -0.016648653894662857, 0.012398362159729004, 0.012771018780767918, 0.07674697041511536, -0.03049735352396965, 0.025300314649939537, -0.031101660802960396, 0.046249620616436005, 0.05757030099630356, -0.03581525385379791, 0.031222522258758545, -0.08105769753456116, -0.03527137637138367, 0.026166487485170364, -0.04540358856320381, 0.05374302342534065, 0.017313390970230103, -0.035130374133586884, -0.04818340018391609, -0.0076293740421533585, 0.009391935542225838, -0.028503140434622765, 0.0005457646329887211, -0.06989815831184387, 0.02721395343542099, -0.05233297497034073, 0.05027833208441734, -0.03265271335840225, -0.005262505728751421, -0.059383220970630646, 0.004947762470692396, 0.06055154651403427, 0.049150291830301285, 0.04665248841047287, 0.031101660802960396, 0.014070278033614159, 0.08847052603960037, 0.014694728888571262, -0.012468865141272545, 0.013083243742585182, -0.007664625532925129, 0.03619798272848129, 0.02922830916941166, -0.0106962313875556, 0.023467250168323517, 0.011058815754950047, 0.028462853282690048, -0.02227878011763096, -0.04467841982841492, 0.021694617345929146, 0.019297532737255096, 0.03309587389230728, -0.042140331119298935, 0.04427554830908775, 0.020788155496120453, 0.018602579832077026, 0.022258635610342026, 0.013455899432301521, 0.06079326942563057, 0.013264535926282406, 0.007478297688066959, 0.008626480586826801, -0.05321929231286049, 0.025803903117775917, 0.020314782857894897, -0.028825437650084496, -0.018320569768548012, 0.053702738136053085, -0.009125033393502235, -0.027516106143593788, 0.021493181586265564, -0.00985020212829113, -0.03055778332054615, 0.013032884337008, -0.017061596736311913, 0.03502965345978737, -0.0306786447763443, -0.0751354843378067, -0.01900545135140419, 0.0213320329785347, 0.043348945677280426, 0.045041006058454514, 0.04830426350235939, -0.05543508380651474, -0.019478823989629745, 0.05523364618420601, -0.035513099282979965, -0.0026513964403420687, -0.027435531839728355, -0.025743473321199417, 0.055837955325841904, -0.024152131751179695, -0.011894773691892624, -0.03249156475067139, -0.013899058103561401, 0.041576310992240906, 0.01518824603408575, 0.006234432570636272, 0.043469808995723724, 0.05902063846588135, -0.001717238686978817, -0.049271151423454285, -0.004663234576582909, -0.010736518539488316, -0.012257358059287071, -0.03118223510682583, -0.027616823092103004, 0.008767485618591309, 0.04677335172891617, -0.057489726692438126, 0.0234873928129673, 0.012519223615527153, 0.007176144048571587, 0.021674472838640213, 0.003492390038445592, 0.0615990124642849, 0.027636967599391937, 0.008923597633838654, 0.03136352822184563, -0.005494156386703253, 0.013234320096671581, 0.01932774856686592, -0.08814822882413864, 0.08274975419044495, -0.03265271335840225, 0.0008516950183548033, -0.03345845639705658, 0.005171859636902809, 0.016910521313548088, 0.04556473717093468, 0.08613387495279312, -0.035633962601423264, 0.043228086084127426, -0.03680228814482689, 0.0009341576951555908, 0.032108839601278305, -0.005403510760515928, 0.05998753011226654, -0.035331808030605316, 0.05507249757647514, -0.0031373598612844944, 0.002560750348493457, -0.0021906124893575907, 0.013878914527595043, 0.01673929952085018, -0.05511278659105301, -0.04238205403089523, -0.048143114894628525, 0.02336653135716915, -0.05450848117470741, 0.014261642470955849, 0.016779586672782898, 0.01693066395819187, -0.04282521456480026, 0.0213924627751112, -0.00918546412140131, 0.006793416570872068, -0.07340314239263535, 0.018290353938937187, 0.005116465035825968, -0.041133154183626175, -0.060752984136343, -0.030900225043296814, -0.012136496603488922, 0.039118796586990356, -0.03277357667684555, 0.0020407945849001408, -0.009774663485586643, -0.03476778790354729, 0.00362332328222692, -0.008258860558271408, 0.03748716786503792, -0.0351102277636528, -0.0939495712518692, -0.007030103355646133, 0.04653162881731987, -0.009452366270124912, 0.002102484228089452, 0.038474202156066895, 0.003366492921486497, 0.04032741114497185, -0.024897443130612373, -0.023024091497063637, 0.008707054890692234, 0.00048313074512407184, 0.0037290770560503006, 0.0011173381935805082, 0.06784351915121078, 0.013707693666219711, -0.02431328035891056, -0.02999376505613327, 0.04197918251156807, -0.001051242114044726, 0.042905788868665695, 0.007100605871528387, -0.0011739919427782297, -0.08323320001363754, -0.007110677659511566, -0.04226119443774223, -0.016084633767604828, 0.03605697676539421, 0.05019775778055191, 0.003021534299477935, 0.032733287662267685, -0.05406532064080238, 0.028624001890420914, -0.015601188875734806, 0.047941677272319794, -0.037144728004932404, 0.02961103618144989, 0.05245383456349373, 0.039360519498586655, -0.01230771653354168, -0.053259577602148056, 0.01970040425658226, -0.07505491375923157, -0.0702204555273056, 0.03408290818333626, -0.07775414735078812, 0.0021276636980473995, -0.02038528583943844, -0.0032481492962688208, 0.03688286244869232, -0.0018683153903111815, -0.009673945605754852, 0.01598391681909561, -0.010746590793132782, -0.13069143891334534, -0.013999775983393192, -0.004099214915186167, 0.038413774222135544, 0.02272193878889084, -0.016618438065052032, 0.06055154651403427, -0.00012267114652786404, 0.012962382286787033, -0.011431471444666386, -0.05233297497034073, 0.03958209976553917, -0.029026873409748077, -0.028624001890420914, 0.024796724319458008, -0.009774663485586643, -0.0696161538362503, 0.04810282588005066, -0.015258748084306717, 0.03180668503046036, 0.01313360221683979, -0.031786542385816574, -0.04326837137341499, -0.011904845014214516, -0.052494123578071594, 0.062404755502939224, 0.006239468231797218, -0.025179453194141388, 0.040065545588731766, 0.04153602570295334, -0.01474508736282587, -0.02094930410385132, 0.015208389610052109, -0.04367124289274216, -0.03502965345978737, 0.001571197877638042, -0.02026442438364029, 0.06059183552861214, -0.06929385662078857, -0.04878770932555199, 0.028200987726449966, -0.032431136816740036, -0.023205384612083435, 0.0038877076003700495, 0.022762225940823555, 0.052494123578071594, 0.010927882045507431, -0.007755271624773741, 0.019176671281456947, 0.013194032944738865, 0.009331504814326763, -0.0846029594540596, 0.0025594914332032204, 0.04032741114497185, -0.002973693422973156, 0.01982126571238041, -0.00212388695217669, 0.03029591776430607, 0.01357676088809967, -0.029631180688738823, -0.0045423731207847595, -0.0058567407540977, -0.03398219123482704, 0.02979232929646969, -0.01088759582489729, 0.03543252497911453, -0.03208869323134422, -0.015278891660273075, -0.027475818991661072, -0.021573755890130997, 0.018008343875408173, -0.01579255238175392, 0.0511646494269371, 0.037789322435855865, 0.044476985931396484, 0.02191619575023651, 0.010394077748060226, -0.02147303707897663, -0.008077568374574184, -0.017011238262057304, -0.017706191167235374, -0.007533692289143801, -0.0792044848203659, -0.019337819889187813, 0.060752984136343, 0.011109174229204655, 0.02298380434513092, -0.04584674909710884, 0.007281897589564323, -0.03378075361251831, -0.08734248578548431, 0.008666767738759518, 0.050036609172821045, -0.005307828541845083, 0.009205607697367668, 0.05797317251563072, -0.009613514877855778, -0.06276734173297882, 0.00472114747390151, -0.03793032839894295, -0.04173745959997177, -0.04842512309551239, -0.014654441736638546, -0.025098878890275955, 0.02816070057451725, -0.07775414735078812, 0.01849178969860077, -0.010585442185401917, 0.01091781072318554, 0.027012517675757408, -0.039118796586990356, 0.003605697536841035, -0.020173776894807816, -0.015681764110922813, -0.02505859173834324, -0.021452894434332848, -0.006556729320436716, -0.01335518155246973, 0.05700628086924553, 0.03654042258858681, -0.018894661217927933, 0.012176783755421638, -0.0023555378429591656, -0.04109286516904831, -0.015258748084306717, 0.041254013776779175, 0.00041168404277414083, 0.048022251576185226, 0.0014755158917978406, -0.019539255648851395, 0.04878770932555199, -0.0064409039914608, 0.023648541420698166, 0.04137487709522247, 0.040186405181884766, 0.003019016468897462, 0.008414973504841328, -0.024514716118574142, -0.04330866038799286, -0.004270435310900211, 0.026065768674016, 0.018642866984009743, -0.04951287433505058, -0.08734248578548431, -0.013878914527595043, 0.001171473995782435, 0.002292589284479618, 0.03239084780216217, -0.020747868344187737, -0.011058815754950047, -0.01693066395819187, 0.055837955325841904, -0.03188725933432579, -0.00817325059324503, -0.0027093091048300266, -0.040951862931251526, 0.000029979286409798078, 0.028120413422584534, -0.021634185686707497, 0.021291745826601982, 0.002198166213929653, -0.04189860820770264, 0.03889722004532814, -0.03289443626999855, -0.01486594881862402, 0.04210004583001137, 0.07324199378490448, -0.025521893054246902, 0.04407411441206932, 0.01856229268014431, 0.045242439955472946, -0.0175551138818264, 0.03176639601588249, 0.0064560119062662125, 0.001746195019222796, 0.03470735624432564, 0.016517721116542816, 0.0010235448135063052, -0.0934661254286766, -0.0055747306905686855, -0.003827276872470975, -0.03313615918159485, 0.05309842899441719, -0.019720546901226044, -0.09580278396606445, 0.015450112521648407, 0.08395836502313614, 0.0019841408357024193, -0.0014843287644907832, 0.014896164648234844, -0.003255703253671527, -0.0424223430454731, 0.027918977662920952, -0.001071385690011084, -0.01628606952726841, -0.0395418144762516, 0.07831817120313644, 0.014312000945210457, -0.015540758147835732, 0.09725312143564224, -0.013032884337008, -0.0042905788868665695, -0.028241274878382683, -0.025018304586410522, 0.03650013357400894, 0.054025035351514816, -0.07634410262107849, -0.012922095134854317, -0.0034495850559324026, -0.015953700989484787, 0.006309970747679472, 0.005625089630484581, -0.0426640659570694, -0.040569134056568146, -0.01565154828131199, -0.02419241890311241, -0.011260251514613628, -0.018391072750091553, -0.04455756023526192, -0.009553084149956703, -0.038917362689971924, 0.05551565811038017, 0.014301929622888565, 0.0325922854244709, 0.019428465515375137, -0.04064970836043358, -0.051486946642398834, -0.05765087530016899, -0.022298922762274742, 0.04165688529610634, -0.022016912698745728, -0.03079950623214245, 0.00985020212829113, 0.018260139971971512, -0.056039389222860336, -0.03742673993110657, 0.00508373137563467, 0.004353527445346117, -0.060269538313150406, -0.006053140386939049, 0.005242362152785063, 0.028704576194286346, 0.03704401105642319, -0.0028780114371329546, -0.010504867881536484, 0.008022173307836056, -0.020747868344187737, -0.001782705308869481, -0.07461175322532654, -0.021291745826601982, -0.026609646156430244, -0.03541238233447075, 0.036721713840961456, -0.06059183552861214, -0.06317020952701569, -0.0007623079582117498, 0.04415468871593475, -0.026468640193343163, -0.04556473717093468, -0.029691610485315323, 0.005207110662013292, 0.03384118527173996, -0.0011154497042298317, -0.0883093774318695, -0.04032741114497185, -0.011381112970411777, 0.012690444476902485, -0.009004171937704086, 0.027415387332439423, -0.055394794791936874, -0.03944109380245209, -0.04729708284139633, 0.025098878890275955, 0.0806548222899437, 0.11119246482849121, -0.030517496168613434, 0.04564531147480011, 0.019801121205091476, -0.02588447742164135, -0.02233920991420746, 0.05744943767786026, -0.01982126571238041, -0.0034218875225633383, 0.004998121410608292, 0.000701247772667557, 0.029208164662122726, -0.04500071704387665, -0.03789003938436508, 0.022943517193198204, -0.021291745826601982, 0.045685600489377975, -0.02727438323199749, -0.031786542385816574, -0.022258635610342026, 0.02759668044745922, -0.022943517193198204, -0.0036636104341596365, -0.06881041079759598, 0.06389538198709488, -0.016819873824715614, 0.08476410806179047, 0.08210515975952148, 0.009109926410019398, 0.07642467319965363, -0.05027833208441734, -0.020183850079774857, -0.041072722524404526, -0.013042956590652466, 0.06659461557865143, -0.031202377751469612, 0.022379497066140175, -0.04919057711958885, 0.00023212308587972075, 0.07001902163028717, -0.030134769156575203, 0.05386388674378395, -0.009376828558743, 0.042462628334760666, 0.016074562445282936, 0.04439641162753105, -0.015933558344841003, 0.013868842273950577, -0.008485475555062294, -0.03682243078947067, 0.017917698249220848, 0.015389681793749332, -0.04427554830908775, 0.016497576609253883, -0.03325702250003815, -0.006098463665693998, -0.015460183843970299, 0.00574595108628273, -0.010676087811589241, 0.11280395090579987, 0.04020655155181885, -0.009135105647146702, 0.007281897589564323, 0.053944461047649384, 0.016719156876206398, -0.026549214497208595, -0.026468640193343163, 0.014442933723330498, -0.011804127134382725, -0.008143034763634205, 0.014996882528066635, 0.06913270801305771, -0.028946299105882645, -0.017414109781384468, 0.024393854662775993, 0.03909865394234657, -0.06772265583276749, -0.02431328035891056, -0.017333535477519035, 0.0511646494269371, 0.026186630129814148, -0.025904621928930283, 0.03231027349829674, -0.00483193714171648, -0.09942862391471863, -0.01215664017945528, -0.025924764573574066, 0.010565298609435558, -0.012599797919392586, 0.005655304994434118, 0.017061596736311913, 0.0009039423312060535, 0.04552445188164711, 0.022500358521938324, 0.0473373718559742, -0.0072768619284033775, -0.05954436957836151, -0.016245782375335693, 0.028926154598593712, 0.009986170567572117, -0.052494123578071594, 0.025078734382987022, -0.036338984966278076, -0.052131537348032, -0.034123193472623825, 0.05039919167757034, -0.029188022017478943, 0.02878515049815178, -0.010525011457502842, 0.03226998820900917, -0.008782593533396721, -0.012257358059287071, -0.03821233659982681, 0.029530461877584457, 0.026367923244833946, -0.015278891660273075, -0.018753657117486, -0.011250179260969162, 0.009271074086427689, -0.01452350802719593, 0.0033463493455201387, -0.007609230466187, -0.022842800244688988, 0.047699954360723495, 0.01544004026800394, 0.03575482219457626, 0.021050022915005684, 0.04620933160185814 ]
728,919
tables.table
modify_columns
Modify a series of columns in the row slice [start:stop:step]. The names argument specifies the names of the columns in the table to be modified with the data given in columns. This method returns the number of rows modified. Should the modification exceed the length of the table, an IndexError is raised before changing data. The columns argument may be any object which can be converted to a structured array compliant with the structure of the columns to be modified (otherwise, a ValueError is raised). This includes NumPy structured arrays, lists of tuples or array records, and a string or Python buffer.
def modify_columns(self, start=None, stop=None, step=None, columns=None, names=None): """Modify a series of columns in the row slice [start:stop:step]. The names argument specifies the names of the columns in the table to be modified with the data given in columns. This method returns the number of rows modified. Should the modification exceed the length of the table, an IndexError is raised before changing data. The columns argument may be any object which can be converted to a structured array compliant with the structure of the columns to be modified (otherwise, a ValueError is raised). This includes NumPy structured arrays, lists of tuples or array records, and a string or Python buffer. """ if step is None: step = 1 if type(names) not in (list, tuple): raise TypeError("The 'names' parameter must be a list of strings.") if columns is None: # Nothing to be done return SizeType(0) if start is None: start = 0 if start < 0: raise ValueError("'start' must have a positive value.") if step < 1: raise ValueError("'step' must have a value greater or " "equal than 1.") descr = [] for colname in names: objcol = self._get_column_instance(colname) descr.append(objcol._v_parent._v_nested_descr[objcol._v_pos]) # descr.append(objcol._v_parent._v_dtype[objcol._v_pos]) # Try to convert the columns object into a recarray try: # Make sure the result is always a *copy* of the original, # so the resulting object is safe for in-place conversion. iflavor = flavor_of(columns) if iflavor != 'python': columns = array_as_internal(columns, iflavor) recarray = np.rec.array(columns, dtype=descr) else: recarray = np.rec.fromarrays(columns, dtype=descr) except Exception as exc: # XXX raise ValueError("columns parameter cannot be converted into a " "recarray object compliant with table '%s'. " "The error was: <%s>" % (str(self), exc)) if stop is None: # compute the stop value. start + len(rows)*step does not work stop = start + (len(recarray) - 1) * step + 1 (start, stop, step) = self._process_range(start, stop, step) if stop > self.nrows: raise IndexError("This modification will exceed the length of " "the table. Giving up.") # Compute the number of rows to read. nrows = len(range(start, stop, step)) if len(recarray) < nrows: raise ValueError("The value has not enough elements to fill-in " "the specified range") # Now, read the original values: mod_recarr = self._read(start, stop, step) # Modify the appropriate columns in the original recarray for i, name in enumerate(recarray.dtype.names): mod_col = get_nested_field(mod_recarr, names[i]) mod_col[:] = recarray[name].squeeze() # save this modified rows in table self._update_records(start, stop, step, mod_recarr) # Redo the index if needed self._reindex(names) return SizeType(nrows)
(self, start=None, stop=None, step=None, columns=None, names=None)
[ 0.034910012036561966, 0.019819023087620735, -0.049359045922756195, 0.006592754740267992, -0.04581302031874657, -0.013664426282048225, -0.0255354605615139, 0.062401898205280304, -0.059344980865716934, -0.05901890993118286, -0.016823241487145424, 0.027940236032009125, 0.013807082548737526, 0.027553027495741844, 0.00007905000529717654, 0.029020346701145172, 0.05253824219107628, -0.004539524205029011, -0.007683055475354195, -0.011473634280264378, 0.017852405086159706, -0.0034186539705842733, 0.012085018679499626, 0.0067506954073905945, 0.001064826617948711, 0.039515767246484756, 0.029692869633436203, 0.03982146084308624, 0.06920863687992096, -0.01888156682252884, -0.0034543180372565985, 0.004832478705793619, -0.011453255079686642, 0.04801400378346443, -0.03397255390882492, -0.07283618301153183, 0.014408276416361332, -0.04255230724811554, 0.07303997874259949, 0.05918194353580475, -0.036805301904678345, -0.025943050161004066, 0.016904760152101517, -0.05282355472445488, -0.010872440412640572, 0.007326414808630943, 0.0012584314681589603, -0.015702372416853905, -0.0404532216489315, 0.008910917676985264, 0.0029881380032747984, -0.0029881380032747984, 0.038068827241659164, -0.03238295763731003, 0.0007928882841952145, 0.04516087844967842, -0.014112774282693863, 0.02500559389591217, 0.018198855221271515, -0.05025574192404747, 0.014041446149349213, -0.01712893322110176, -0.0056654890067875385, -0.0019844495691359043, -0.022498920559883118, -0.017556902021169662, 0.05918194353580475, -0.04177788645029068, -0.008707122877240181, 0.028571998700499535, -0.04622060805559158, 0.058040693402290344, 0.04520163685083389, 0.04075891524553299, -0.008233300410211086, 0.06443984806537628, -0.03136398643255234, -0.02781795896589756, 0.0175772812217474, -0.03393179550766945, 0.05665489286184311, 0.06847497820854187, 0.0222339890897274, -0.010699215345084667, 0.020246991887688637, -0.0005209498922340572, -0.0005088495672680438, 0.04915525019168854, 0.015702372416853905, -0.04622060805559158, -0.02806251309812069, 0.0006273051840253174, 0.006725220941007137, -0.014948331750929356, 0.0216633640229702, -0.027451129630208015, -0.021683743223547935, -0.06081230193376541, -0.027940236032009125, -0.026350637897849083, 0.044997841119766235, -0.0011527130845934153, 0.04491632431745529, 0.01339949294924736, 0.04487556591629982, -0.05298658832907677, -0.017781076952815056, 0.0036657550372183323, -0.005026083905249834, -0.022702716290950775, -0.0398825965821743, 0.012054448947310448, -0.024679522961378098, -0.035643670707941055, -0.03527684137225151, -0.024414589628577232, 0.01625261828303337, -0.01565142348408699, -0.047810208052396774, 0.030467288568615913, 0.0358678437769413, -0.023823585361242294, 0.019961679354310036, 0.01065845601260662, -0.009970649145543575, -0.0145611222833395, 0.01354214921593666, 0.01881023868918419, 0.0505002960562706, -0.07303997874259949, -0.025474321097135544, -0.07487412542104721, -0.04308217391371727, 0.0573885515332222, 0.0059049478732049465, 0.0020073766354471445, 0.10263095051050186, -0.011667239479720592, -0.014713968150317669, -0.03576594963669777, 0.016833432018756866, 0.004340824671089649, 0.07483337074518204, -0.006837307941168547, 0.0076372018083930016, -0.022519299760460854, 0.06977926194667816, 0.03014121763408184, -0.042715344578027725, 0.040004875510931015, -0.06831194460391998, -0.04646516218781471, 0.03315737843513489, -0.024883316829800606, 0.02669708989560604, 0.007127715274691582, -0.025413183495402336, -0.06660006940364838, -0.01670096628367901, 0.008029506541788578, -0.039230454713106155, 0.01434713788330555, -0.07381439208984375, 0.019370675086975098, -0.05176382139325142, 0.06855649501085281, -0.015427249483764172, -0.038884006440639496, -0.05412783846259117, -0.002057051518931985, 0.0615459606051445, 0.052130650728940964, 0.06496971100568771, 0.004111555404961109, -0.005833619739860296, 0.06973850727081299, 0.01708817481994629, -0.034339386969804764, -0.015050229616463184, -0.001395992818288505, 0.03698871657252312, 0.025189010426402092, -0.03639771044254303, 0.020583251491189003, 0.013817272149026394, 0.043163690716028214, -0.04430494084954262, -0.03949538990855217, 0.03480811417102814, 0.0029346419032663107, 0.010576938278973103, -0.04234851151704788, 0.027512267231941223, 0.048340074717998505, 0.017485573887825012, 0.03896552324295044, 0.019350294023752213, 0.06692613661289215, 0.025800393894314766, 0.021541086956858635, 0.002674803836271167, -0.04198168218135834, 0.005726627539843321, 0.017597662284970284, 0.00753530440852046, -0.021785639226436615, 0.053231142461299896, -0.042430032044649124, -0.027267714962363243, 0.007504735141992569, -0.000025135990654234774, -0.03277016803622246, -0.0033167568035423756, -0.017261400818824768, 0.043449003249406815, 0.018575875088572502, -0.06798586994409561, -0.021724501624703407, 0.033748380839824677, 0.017393866553902626, 0.04139067977666855, 0.054005563259124756, -0.056817926466464996, -0.046505920588970184, 0.04723958298563957, -0.04312293231487274, 0.0067405058071017265, -0.02215247042477131, -0.015427249483764172, 0.035256460309028625, -0.019574468955397606, -0.030324632301926613, -0.05196761712431908, -0.013705185614526272, 0.047280341386795044, 0.037722375243902206, 0.012390710413455963, 0.026248741894960403, 0.07683055847883224, 0.004259306471794844, -0.05005194619297981, 0.008742786943912506, -0.017628230154514313, -0.033564966171979904, -0.030202355235815048, -0.03607163950800896, 0.01341987308114767, 0.02781795896589756, -0.049888912588357925, 0.022763853892683983, 0.001227862318046391, -0.02728809416294098, 0.05123395472764969, 0.00476624583825469, 0.04263382405042648, 0.03533798083662987, 0.03851717337965965, 0.034522801637649536, 0.0008935118676163256, -0.008248585276305676, 0.034624699503183365, -0.08388184756040573, 0.04090157151222229, -0.017281780019402504, 0.018973274156451225, -0.028857311233878136, 0.01797468215227127, 0.014214671216905117, -0.0017551807686686516, 0.07381439208984375, 0.01044447161257267, 0.05840752646327019, -0.04609833285212517, 0.00872240774333477, 0.03301472216844559, 0.0025869174860417843, 0.07083899527788162, -0.04699502885341644, 0.02060363069176674, -0.005324133206158876, 0.011188321746885777, -0.019187258556485176, 0.006292157340794802, 0.004493670538067818, -0.026248741894960403, -0.044957082718610764, -0.05950801447033882, 0.03364648297429085, -0.04609833285212517, -0.004656706005334854, 0.031425122171640396, -0.001732253935188055, -0.02844972349703312, 0.0017475384520366788, -0.013175318948924541, 0.004340824671089649, -0.054453909397125244, -0.005955896340310574, -0.004837573505938053, -0.033177755773067474, -0.06329859793186188, -0.04381583258509636, 0.03541949763894081, 0.05355721339583397, -0.022417403757572174, -0.026065325364470482, 0.013552338816225529, -0.02282499335706234, 0.013124370947480202, -0.01429618988186121, 0.0328516848385334, -0.013144750148057938, -0.06439908593893051, -0.018270183354616165, 0.04153333604335785, -0.027940236032009125, 0.0073467944748699665, 0.040636640042066574, 0.007968368008732796, 0.06407301127910614, -0.018025631085038185, -0.007489450741559267, -0.002076157135888934, 0.0031995747704058886, 0.004521692171692848, 0.011453255079686642, 0.05995636433362961, 0.0067405058071017265, -0.017821835353970528, -0.04846234992146492, 0.008462569676339626, -0.013939549215137959, 0.07161341607570648, 0.008049885742366314, 0.011371737346053123, -0.07198024541139603, 0.0005254079005680978, -0.04891069978475571, -0.02529090642929077, 0.023538272827863693, 0.057551588863134384, 0.0026467819698154926, 0.02465914376080036, -0.04589453712105751, 0.022702716290950775, -0.011595911346375942, 0.05335342139005661, -0.014622260816395283, 0.04903297498822212, 0.05416859686374664, 0.03649960830807686, -0.015050229616463184, -0.03246447443962097, 0.03330003470182419, -0.06223886460065842, -0.05771462246775627, 0.014612071216106415, -0.043693557381629944, 0.01593673601746559, -0.02229512669146061, -0.010296721011400223, 0.038598693907260895, 0.01167742908000946, 0.016191478818655014, 0.025433562695980072, -0.014917762950062752, -0.11844540387392044, -0.00838614720851183, -0.010261056944727898, 0.022111712023615837, 0.03596974164247513, 0.0008928749593906105, 0.05457618832588196, 0.01916687935590744, -0.005158550105988979, 0.005752102006226778, -0.051396992057561874, 0.03183271363377571, -0.02863313816487789, -0.03038577176630497, -0.0023818491026759148, -0.02433307282626629, -0.04772869125008583, 0.04715806618332863, -0.0042975181713700294, 0.003268355503678322, 0.007784952875226736, -0.030120838433504105, -0.038700588047504425, -0.003912855871021748, -0.038843244314193726, 0.04540543258190155, 0.007820616476237774, -0.018626824021339417, 0.017842214554548264, 0.0466281995177269, -0.016466600820422173, -0.028959209099411964, -0.012584314681589603, -0.05306810885667801, -0.03519532456994057, -0.029020346701145172, -0.02975400723516941, 0.05045953765511513, -0.05384252592921257, -0.01466302014887333, 0.06443984806537628, -0.05103016272187233, -0.007525114808231592, 0.02490369789302349, 0.019931109622120857, 0.0546577051281929, 0.0022697621025145054, -0.0126964021474123, 0.021785639226436615, 0.02170412242412567, -0.007586252875626087, -0.05636958032846451, 0.024007001891732216, 0.04353052005171776, 0.034869253635406494, 0.010047072544693947, 0.0044732908718287945, 0.042389269918203354, 0.021683743223547935, -0.014285999350249767, -0.006765979807823896, -0.010597317479550838, -0.01948276162147522, 0.0015106273349374533, -0.016833432018756866, 0.03735554590821266, -0.033116620033979416, -0.029040727764368057, -0.015060419216752052, -0.016222048550844193, 0.01357271894812584, 0.0020201136358082294, 0.040595877915620804, 0.01899365521967411, 0.039760321378707886, -0.003563857637345791, 0.014061825349926949, -0.037722375243902206, 0.007494545541703701, -0.04075891524553299, 0.006343106273561716, -0.025820773094892502, -0.11045666038990021, -0.0021207372192293406, 0.08253680169582367, 0.01839246042072773, 0.030834119766950607, -0.0433267280459404, 0.022030193358659744, -0.01332816481590271, -0.04573150351643562, 0.03315737843513489, 0.020104335620999336, -0.023905104026198387, 0.03362610563635826, 0.029305659234523773, 0.00013541194493882358, -0.01821923442184925, 0.006658987607806921, -0.01906498335301876, -0.04118688404560089, -0.0609753355383873, -0.016548119485378265, -0.030120838433504105, 0.05196761712431908, -0.07634145021438599, 0.016222048550844193, -0.003566405037418008, -0.00602212967351079, 0.03429862856864929, -0.03847641497850418, 0.021785639226436615, -0.04817703738808632, -0.032301440834999084, -0.0021997077856212854, -0.027491888031363487, 0.0038720970042049885, -0.0162831861525774, 0.03372800350189209, 0.019594848155975342, -0.013888600282371044, 0.009807613678276539, -0.009695527143776417, -0.0404532216489315, -0.00602212967351079, 0.010281436145305634, 0.0017895711353048682, 0.07393667101860046, 0.0182905625551939, -0.033035099506378174, 0.05103016272187233, 0.01649717055261135, 0.018789859488606453, 0.03851717337965965, 0.0507856085896492, -0.01982921175658703, 0.025657737627625465, -0.014652829617261887, -0.029244521632790565, -0.012309192679822445, 0.05082636699080467, 0.019034413620829582, -0.0430414155125618, -0.08526764810085297, -0.03382990136742592, -0.01002159807831049, -0.004198168404400349, 0.028144031763076782, -0.030854498967528343, -0.043489761650562286, -0.012655642814934254, 0.04821779578924179, -0.039515767246484756, -0.01385803148150444, 0.012054448947310448, -0.012380520813167095, -0.01860644482076168, 0.04357127845287323, -0.029346419498324394, 0.0327090285718441, 0.012849248014390469, -0.024842558428645134, 0.0695754662156105, -0.024496108293533325, -0.01390897948294878, 0.05714399740099907, 0.07181721180677414, -0.05592123046517372, 0.03607163950800896, 0.007239802274852991, 0.04393811151385307, -0.03364648297429085, 0.03788541257381439, 0.026962023228406906, 0.0253928042948246, 0.05596198886632919, 0.006669177673757076, -0.029061106964945793, -0.0833519846200943, -0.00012060499284416437, -0.00728056114166975, -0.04699502885341644, 0.044794049113988876, -0.034237489104270935, -0.08600131422281265, -0.004116650205105543, 0.08461550623178482, 0.006791454274207354, -0.02645253576338291, 0.01141249667853117, 0.010780733078718185, -0.07911305129528046, 0.0253928042948246, 0.0029957802034914494, -0.014724157750606537, -0.05539136379957199, 0.0786239504814148, 0.008946581743657589, -0.02602456696331501, 0.09007719904184341, 0.01649717055261135, 0.006796549074351788, -0.04520163685083389, 0.0010374417761340737, 0.005777576006948948, 0.059385739266872406, -0.06158671900629997, -0.015702372416853905, 0.011881223879754543, -0.02408851869404316, -0.003887381637468934, 0.0126964021474123, -0.04181864857673645, -0.05975256860256195, 0.006373675540089607, -0.006918825674802065, -0.006103647407144308, -0.046750474721193314, -0.011738567613065243, -0.0018201402854174376, -0.06725221127271652, 0.0507856085896492, 0.01649717055261135, 0.04020867124199867, 0.008956771343946457, -0.03837451711297035, -0.05698096379637718, -0.056817926466464996, -0.03105829283595085, 0.040595877915620804, -0.03904704004526138, -0.02170412242412567, -0.009191134944558144, 0.01357271894812584, -0.05539136379957199, -0.02777720056474209, 0.021969055756926537, 0.013481011614203453, -0.05025574192404747, -0.021194634959101677, 0.023823585361242294, 0.050214983522892, 0.04976663365960121, 0.006042509339749813, -0.0031231518369168043, 0.005803050473332405, 0.012920576147735119, -0.025311285629868507, -0.048380833119153976, -0.04385659098625183, -0.035501014441251755, -0.033992934972047806, 0.06578488647937775, -0.07487412542104721, -0.061872031539678574, -0.01632394641637802, 0.03851717337965965, -0.020766668021678925, -0.046261370182037354, -0.009878941811621189, -0.02113349735736847, 0.010994717478752136, 0.010072547011077404, -0.0822107344865799, -0.02651367336511612, -0.016293376684188843, 0.027226954698562622, -0.0092166094109416, 0.020970461890101433, -0.03130284696817398, -0.0321384035050869, -0.04520163685083389, 0.03173081576824188, 0.0621165856719017, 0.10727746784687042, -0.04163523018360138, 0.04507936164736748, 0.030609944835305214, -0.035725187510252, -0.01730215921998024, 0.04430494084954262, -0.05669565126299858, 0.01225824374705553, 0.01807657815515995, -0.00916056614369154, 0.03378913924098015, -0.04764717072248459, -0.0430414155125618, 0.010770543478429317, 0.011483823880553246, 0.03552139550447464, -0.03446166217327118, -0.007800237275660038, -0.027226954698562622, 0.015702372416853905, -0.03851717337965965, 0.021215016022324562, -0.06549957394599915, 0.07361060380935669, 0.0064500984735786915, 0.0830666720867157, 0.10328309237957001, 0.03193461149930954, 0.08115100115537643, -0.06223886460065842, -0.006964679807424545, -0.028184790164232254, 0.0034033693373203278, 0.058855872601270676, 0.009491732344031334, 0.0011469813762232661, -0.06582564860582352, 0.01983940228819847, 0.03967880457639694, -0.007550588808953762, 0.05384252592921257, -0.015111368149518967, 0.030039319768548012, 0.028144031763076782, 0.025616977363824844, 0.004985324572771788, 0.022213608026504517, -0.004180336371064186, -0.035602912306785583, 0.05429087579250336, 0.009058669209480286, -0.01174875721335411, 0.028775794431567192, -0.03776313364505768, 0.01521326508373022, -0.00688316160812974, -0.031425122171640396, 0.014836245216429234, 0.09977782517671585, 0.03660150617361069, -0.004175241570919752, 0.010719594545662403, 0.04825855419039726, 0.01994129829108715, -0.0038211483042687178, -0.027349231764674187, 0.029835525900125504, -0.016925139352679253, -0.015325351618230343, 0.010271246545016766, 0.09097389876842499, -0.007683055475354195, -0.011860844679176807, 0.00439432030543685, 0.001547565101645887, -0.01701684668660164, -0.012788109481334686, -0.024944456294178963, 0.04638364538550377, 0.03158815950155258, -0.010408807545900345, 0.04324520751833916, -0.015590284951031208, -0.09488675743341446, -0.011453255079686642, -0.03527684137225151, 0.024149656295776367, -0.010230488143861294, -0.01354214921593666, 0.03751857951283455, 0.008814115077257156, 0.029794767498970032, 0.014938142150640488, 0.025209389626979828, -0.03537873923778534, -0.03623467683792114, -0.035501014441251755, 0.02349751442670822, 0.031384363770484924, -0.06525502353906631, 0.02932604029774666, -0.022030193358659744, -0.03839489817619324, -0.05844828486442566, 0.05147850885987282, -0.03865982964634895, 0.02268233709037304, 0.0034543180372565985, 0.024944456294178963, 0.007912324741482735, -0.0009495553676970303, -0.041940923780202866, -0.01723083108663559, 0.025087112560868263, -0.018545307219028473, -0.031139811500906944, -0.0510709211230278, -0.010780733078718185, -0.013083611615002155, 0.007092051208019257, 0.007458881475031376, -0.01776069775223732, 0.07784952968358994, 0.006113837473094463, 0.027104677632451057, 0.021459568291902542, 0.028857311233878136 ]
728,920
tables.table
modify_coordinates
Modify a series of rows in positions specified in coords. The values in the selected rows will be modified with the data given in rows. This method returns the number of rows modified. The possible values for the rows argument are the same as in :meth:`Table.append`.
def modify_coordinates(self, coords, rows): """Modify a series of rows in positions specified in coords. The values in the selected rows will be modified with the data given in rows. This method returns the number of rows modified. The possible values for the rows argument are the same as in :meth:`Table.append`. """ if rows is None: # Nothing to be done return SizeType(0) # Convert the coordinates to something expected by HDF5 coords = self._point_selection(coords) lcoords = len(coords) if len(rows) < lcoords: raise ValueError("The value has not enough elements to fill-in " "the specified range") # Convert rows into a recarray recarr = self._conv_to_recarr(rows) if len(coords) > 0: # Do the actual update of rows self._update_elements(lcoords, coords, recarr) # Redo the index if needed self._reindex(self.colpathnames) return SizeType(lcoords)
(self, coords, rows)
[ -0.002302634296938777, -0.034238215535879135, -0.02123613841831684, 0.03796817362308502, -0.03881269320845604, -0.005256252363324165, -0.030244342982769012, 0.061438772827386856, -0.05605496093630791, -0.028696058318018913, 0.012280716560781002, 0.008185678161680698, -0.00006986114749452099, 0.034941982477903366, -0.026725513860583305, -0.03474844619631767, 0.04292972385883331, 0.033112190663814545, -0.03309459611773491, -0.03729959949851036, 0.0038399233017116785, -0.04841909930109978, 0.03379836305975914, -0.004987941589206457, -0.026655137538909912, -0.026004154235124588, 0.03054344467818737, 0.03145834058523178, 0.07111555337905884, -0.04328160732984543, -0.021517645567655563, 0.01889611780643463, -0.0037475540302693844, 0.044126126915216446, -0.004794405773282051, -0.05207868292927742, 0.02135929837822914, 0.012095977552235126, 0.07023584842681885, 0.0464133657515049, -0.07283978164196014, -0.015122171491384506, 0.035944849252700806, -0.06031274423003197, 0.0389886349439621, 0.04247227683663368, 0.008396808058023453, -0.0058236634358763695, -0.011049126274883747, -0.005700504407286644, 0.008286844938993454, -0.021763963624835014, 0.058940403163433075, -0.031651876866817474, 0.04088880494236946, 0.03659583255648613, 0.021271327510476112, 0.039410896599292755, 0.008027330972254276, -0.01919521763920784, 0.0257402416318655, -0.009571217931807041, -0.011832065880298615, 0.012095977552235126, -0.00013869137910660356, -0.056934669613838196, 0.03497717157006264, -0.05654759705066681, 0.001784706604667008, 0.028308987617492676, -0.0029448207933455706, 0.021975092589855194, 0.05521044135093689, -0.02269645407795906, -0.0061007714830338955, 0.048876550048589706, -0.0576736219227314, 0.06084056943655014, 0.04708194360136986, 0.001521894009783864, 0.01828032173216343, 0.010486112907528877, 0.09993477165699005, -0.005502570420503616, -0.02494850382208824, 0.020092519000172615, 0.02983967773616314, 0.053134333342313766, 0.036279138177633286, 0.03905901312828064, 0.012799743562936783, 0.015623604878783226, -0.04820797219872475, -0.06319818645715714, 0.0133363651111722, 0.019511912018060684, 0.02040921337902546, -0.022168628871440887, -0.02007492445409298, -0.013353959657251835, 0.04602629691362381, -0.017427004873752594, 0.011682515032589436, 0.010732430964708328, -0.041170310229063034, -0.06939132511615753, 0.016951963305473328, -0.005960018374025822, 0.005150687415152788, 0.0008252756088040769, 0.006910102441906929, 0.049509938806295395, 0.009034596383571625, -0.018368292599916458, -0.040044285356998444, -0.05999604985117912, 0.015210142359137535, -0.04577997699379921, -0.01118108257651329, 0.00024219446640927345, 0.008220866322517395, 0.00740713719278574, 0.0028524515219032764, 0.06766709685325623, -0.020831473171710968, 0.02904794178903103, 0.03905901312828064, 0.048383910208940506, -0.00006085788845666684, -0.12435545027256012, 0.0366310216486454, -0.09557142108678818, 0.042577844113111496, 0.046131860464811325, 0.019582288339734077, -0.03209172934293747, -0.00038267276249825954, -0.01873776875436306, -0.025441139936447144, -0.020092519000172615, 0.0235761608928442, 0.04507621005177498, 0.06038312241435051, -0.0010710438946262002, 0.042296335101127625, -0.0048911734484136105, 0.018350698053836823, -0.009861521422863007, -0.02603934146463871, 0.009509637951850891, -0.026303254067897797, -0.00915775541216135, 0.01822753995656967, 0.0036133984103798866, -0.01118108257651329, -0.011418603360652924, 0.03235564008355141, -0.10486113280057907, 0.015130968764424324, -0.0101166358217597, 0.008066917769610882, -0.010723634622991085, 0.010248592123389244, 0.014154493808746338, -0.08367777615785599, 0.04482989385724068, -0.0779772698879242, -0.01597548834979534, -0.06840605288743973, -0.038495998829603195, 0.055351193994283676, 0.058694083243608475, 0.08276288211345673, 0.0010270584607496858, 0.006584610790014267, 0.01965266466140747, -0.005238658282905817, -0.032408423721790314, 0.0027402888517826796, -0.0023224276956170797, 0.057110611349344254, 0.02232697606086731, 0.027675596997141838, 0.06010161712765694, 0.0366310216486454, 0.04078323766589165, 0.007622665259987116, -0.01718948408961296, 0.055104877799749374, -0.006698972545564175, -0.03374557942152023, -0.003021795302629471, 0.009993476793169975, 0.007754621561616659, 0.02962854877114296, 0.056688349694013596, -0.01665286347270012, 0.0533454604446888, -0.026778295636177063, 0.05943303927779198, -0.04965069144964218, -0.01589631475508213, 0.033939115703105927, 0.002072810661047697, 0.05989048629999161, 0.012403875589370728, 0.07882179319858551, -0.039622023701667786, -0.03508273512125015, 0.003674978157505393, 0.01306365616619587, -0.010406939312815666, -0.04757457971572876, -0.010046259500086308, 0.02537076361477375, 0.028520116582512856, -0.03406227380037308, 0.001910064835101366, -0.018007611855864525, -0.01965266466140747, 0.04490027204155922, 0.03839043527841568, -0.015676386654376984, -0.04824315756559372, 0.06203697249293327, -0.049967385828495026, 0.017506178468465805, -0.06889869272708893, 0.0034792430233210325, 0.028801623731851578, -0.025810617953538895, 0.014779086224734783, -0.00866072066128254, 0.000552841171156615, 0.037405163049697876, 0.05179717764258385, 0.00030789762968197465, 0.009175349026918411, 0.009623999707400799, 0.031053675338625908, -0.07481032609939575, 0.023892855271697044, 0.029945243149995804, -0.014884650707244873, -0.04468914121389389, -0.029610954225063324, -0.007798606995493174, 0.040994368493556976, -0.041662946343421936, 0.029118318110704422, -0.00019820909074041992, -0.03188059851527214, 0.03305940702557564, 0.006852921564131975, 0.04979144409298897, 0.04197964072227478, 0.053802911192178726, 0.013362756930291653, 0.0019672459457069635, -0.03268992900848389, 0.006474647205322981, -0.02829139307141304, 0.018245132640004158, -0.036279138177633286, 0.0109523581340909, -0.01279094722121954, 0.01070604007691145, 0.0344669409096241, -0.06963764876127243, 0.05925709754228592, -0.026866266503930092, 0.09324899315834045, -0.04247227683663368, -0.007455520797520876, 0.045463282614946365, 0.012447861023247242, 0.07234714180231094, -0.06020718067884445, 0.00901700183749199, -0.0015021004946902394, 0.004521696362644434, -0.022309381514787674, -0.024139173328876495, 0.060699816793203354, 0.011031531728804111, -0.05964416638016701, 0.02457902766764164, 0.0737546756863594, -0.04173332452774048, -0.03087773360311985, -0.016450529918074608, 0.025986559689044952, -0.02120095118880272, -0.027781162410974503, -0.009060987271368504, -0.011999210342764854, -0.06372600793838501, 0.028643276542425156, -0.013934566639363766, 0.02074350230395794, -0.016177820041775703, -0.04373905807733536, 0.010591678321361542, 0.006685777101665735, 0.07459919899702072, -0.052395377308130264, 0.0126238027587533, -0.00019161128147970885, -0.005423396825790405, 0.010055056773126125, 0.01894889958202839, 0.013160424306988716, -0.06787823140621185, -0.06031274423003197, 0.017717309296131134, -0.0031823418103158474, -0.00884985737502575, 0.031898193061351776, 0.00798774417489767, 0.032531581819057465, -0.01828032173216343, -0.03779223561286926, -0.018121974542737007, 0.009219334460794926, -0.027306120842695236, -0.012465455569326878, 0.023083524778485298, -0.004259983543306589, -0.04039616882801056, -0.04514658823609352, 0.003707967000082135, -0.01134822703897953, 0.028361769393086433, 0.01162093598395586, 0.026778295636177063, -0.028959970921278, 0.019793419167399406, 0.036701396107673645, -0.030613820999860764, 0.01577315479516983, 0.010169418528676033, -0.006109568756073713, -0.00840560533106327, -0.00035325755015946925, 0.03202135115861893, -0.012034398503601551, 0.00033538846764713526, -0.013389147818088531, 0.01822753995656967, 0.0361383855342865, 0.03249639645218849, 0.011532965116202831, -0.019089652225375175, -0.0438094325363636, 0.016969557851552963, 0.06358525902032852, 0.04866541922092438, -0.054436299949884415, -0.010169418528676033, -0.033534448593854904, 0.018790552392601967, -0.0663299411535263, 0.03147593513131142, -0.01949431747198105, -0.031563904136419296, 0.03877750784158707, -0.06636513024568558, -0.0006262417882680893, 0.0004970347508788109, 0.030701791867613792, -0.030033214017748833, -0.002738089533522725, 0.007653455249965191, 0.03863675147294998, 0.03379836305975914, 0.008555155247449875, -0.06801898032426834, 0.05411960557103157, -0.07664011418819427, -0.02837936393916607, 0.01051250472664833, -0.04088880494236946, 0.0351531095802784, -0.011233864352107048, 0.013767422176897526, -0.006197539158165455, 0.04057211056351662, -0.013573886826634407, -0.06147395819425583, -0.02287239395081997, -0.014040131121873856, 0.045920729637145996, 0.010732430964708328, -0.043457549065351486, -0.007684244774281979, 0.01101393811404705, 0.014972621574997902, 0.037158843129873276, -0.028308987617492676, -0.024719780310988426, -0.05879965052008629, -0.046096671372652054, 0.05883483588695526, 0.01408411655575037, -0.038038551807403564, -0.03583928197622299, 0.005137491971254349, -0.05584383010864258, 0.03117683343589306, -0.0274116862565279, 0.005036325193941593, 0.050178516656160355, 0.007899773307144642, 0.028009885922074318, 0.017664525657892227, 0.03473085165023804, -0.016907978802919388, -0.036912526935338974, 0.020884254947304726, 0.029857272282242775, 0.0022542504593729973, -0.010063854046165943, -0.04236671328544617, 0.07980706542730331, 0.009456855244934559, -0.06910981982946396, 0.010750025510787964, -0.028801623731851578, 0.016916774213314056, 0.0009737262153066695, -0.03284827619791031, -0.080440454185009, -0.03744035214185715, 0.026320848613977432, -0.036736585199832916, -0.0272885262966156, 0.024385491386055946, -0.01931837573647499, -0.02616250142455101, 0.02348819002509117, 0.021306514739990234, 0.004275378305464983, 0.023048335686326027, -0.04574478790163994, -0.01594029925763607, -0.04303529113531113, -0.02412157878279686, -0.03979796543717384, -0.045005835592746735, 0.018632205203175545, 0.06259998679161072, 0.03576890751719475, 0.006742957979440689, -0.025089258328080177, -0.0428241603076458, -0.0043501537293195724, -0.04152219370007515, -0.03930532932281494, 0.011735297739505768, 0.01601947285234928, 0.018350698053836823, -0.008084511384367943, -0.006250321865081787, -0.037369973957538605, 0.03779223561286926, -0.029698925092816353, -0.04866541922092438, -0.0535917803645134, 0.0037431553937494755, -0.0820591151714325, 0.07903292030096054, -0.08733735978603363, -0.033323321491479874, -0.018209945410490036, 0.011920036748051643, 0.003657383844256401, 0.0015603811480104923, 0.04785608872771263, -0.024684593081474304, -0.0012865721946582198, -0.047046758234500885, -0.058658894151449203, 0.03719403222203255, -0.01320440974086523, 0.0535917803645134, 0.029470201581716537, -0.036243949085474014, -0.03209172934293747, -0.014867056161165237, 0.022643670439720154, 0.061403583735227585, -0.03305940702557564, -0.02595137059688568, 0.0016747431363910437, 0.01685519516468048, -0.008651923388242722, 0.06523910909891129, -0.0036969706416130066, -0.030772168189287186, -0.03212691843509674, 0.018720176070928574, -0.004292972385883331, 0.051339730620384216, -0.02595137059688568, 0.019371159374713898, 0.0056081353686749935, 0.0665762647986412, 0.0007444524671882391, -0.02713017910718918, -0.06625957041978836, -0.030385097488760948, -0.030948109924793243, 0.01898408681154251, 0.012527034617960453, 0.006998073309659958, 0.000708714360371232, -0.03884788230061531, 0.05897558853030205, 0.002876643557101488, -0.016512108966708183, -0.010609271936118603, 0.026725513860583305, 0.04155738279223442, 0.06520392000675201, -0.04131106287240982, 0.0034220621455460787, 0.07347317039966583, 0.0017363226506859064, 0.053310275077819824, 0.002370811766013503, -0.04729307442903519, 0.04113512113690376, 0.009069784544408321, -0.017963627353310585, 0.039375707507133484, 0.054225169122219086, 0.016749629750847816, -0.04219077154994011, 0.023523379117250443, 0.031106457114219666, 0.019459130242466927, 0.004618464503437281, 0.014479985460639, -0.04958031326532364, -0.061614714562892914, -0.009711970575153828, -0.0035540182143449783, -0.04461876302957535, 0.05450667440891266, -0.025863399729132652, -0.012219137512147427, -0.02056756056845188, 0.06084056943655014, -0.05028408020734787, 0.001939755049534142, 0.03128239884972572, -0.007877780124545097, -0.08163685351610184, -0.04965069144964218, 0.02241494692862034, 0.005291440524160862, -0.01533330138772726, 0.06984877586364746, 0.0027029013726860285, -0.019142435863614082, 0.03634951263666153, -0.012315904721617699, -0.006157952360808849, -0.00865632202476263, -0.011708906851708889, 0.016380153596401215, 0.0727694034576416, -0.04933399707078934, -0.004488707520067692, -0.03506514057517052, -0.03775704652070999, 0.01061806920915842, -0.05014332756400108, 0.022274194285273552, -0.02591618336737156, -0.008475981652736664, -0.017849264666438103, -0.057990316301584244, -0.06203697249293327, 0.03747553750872612, 0.06488722562789917, -0.06404270231723785, 0.09078581631183624, 0.019177623093128204, 0.03835524618625641, 0.028977565467357635, -0.027147773653268814, -0.06390195339918137, -0.028660869225859642, -0.0173566285520792, -0.006844124291092157, -0.05879965052008629, -0.03293624892830849, -0.03587447106838226, -0.001893570413812995, -0.10106080025434494, 0.014339231885969639, -0.008541959337890148, -0.03330572694540024, -0.0306314155459404, -0.0681949257850647, -0.007244391366839409, 0.06981358677148819, -0.03571612387895584, 0.027323715388774872, 0.061825841665267944, 0.0332881323993206, 0.052008308470249176, -0.03722922131419182, -0.06020718067884445, -0.014990216121077538, -0.010503707453608513, -0.015632402151823044, 0.013820204883813858, -0.019001681357622147, -0.03888307139277458, -0.000171955325640738, 0.015623604878783226, -0.03775704652070999, -0.03856637701392174, -0.016133835539221764, 0.031053675338625908, 0.05274726077914238, 0.016450529918074608, 0.009034596383571625, -0.037405163049697876, -0.022854801267385483, 0.011480182409286499, -0.0022894388530403376, 0.025933776050806046, -0.08543719351291656, -0.040079474449157715, -0.04359830170869827, 0.03810892999172211, 0.010187013074755669, 0.06735040247440338, 0.02077869139611721, 0.010107839480042458, -0.01706632599234581, 0.008779481053352356, 0.0008929031318984926, 0.009685579687356949, -0.014937433414161205, 0.017963627353310585, 0.015104577876627445, 0.06214253604412079, 0.027218149974942207, -0.045709602534770966, -0.02628565952181816, 0.06622438132762909, 0.08881527185440063, -0.04775052145123482, -0.02208065800368786, 0.03529386594891548, 0.00741593400016427, -0.00614475691691041, -0.023558566346764565, 0.009694376960396767, -0.022010281682014465, 0.07090442627668381, 0.03195097669959068, 0.006307502742856741, 0.06903944164514542, 0.0305082555860281, 0.0002519537229090929, -0.024068797007203102, -0.017963627353310585, -0.03531146049499512, 0.005682910326868296, 0.019335970282554626, -0.06530948728322983, -0.006866117008030415, -0.03751072660088539, -0.04226114973425865, 0.06661145389080048, -0.04444282129406929, 0.018913710489869118, -0.0028392558451741934, 0.01852663978934288, 0.03443175181746483, 0.05253612995147705, 0.001399834523908794, 0.03163428232073784, -0.015113375149667263, -0.003657383844256401, 0.04060729965567589, -0.01852663978934288, -0.01104032900184393, 0.04124068841338158, -0.010688446462154388, 0.003503435058519244, -0.002867846516892314, -0.021148167550563812, 0.03905901312828064, 0.04877098277211189, 0.018051598221063614, 0.033692795783281326, -0.028643276542425156, 0.0753733366727829, -0.011612138710916042, -0.043914999812841415, -0.05770881101489067, 0.006808936130255461, -0.022098252549767494, 0.023523379117250443, -0.02369931899011135, 0.003439656225964427, -0.011480182409286499, 0.0032923053950071335, -0.0428241603076458, 0.07122112065553665, 0.02749965526163578, -0.030948109924793243, 0.02996283769607544, 0.018755363300442696, 0.011541762389242649, -0.02978689596056938, -0.002001334447413683, -0.030824949964880943, -0.08128497004508972, 0.010837996378540993, -0.024420680478215218, -0.011840863153338432, -0.00037250114837661386, 0.003815731266513467, -0.014673520810902119, -0.027605220675468445, 0.011840863153338432, 0.03216210752725601, 0.01677602156996727, 0.0126238027587533, -0.006698972545564175, -0.03202135115861893, 0.02120095118880272, -0.003903701901435852, -0.008687111549079418, -0.01639774814248085, 0.011735297739505768, -0.04922842979431152, -0.016380153596401215, 0.004776811692863703, -0.025757836177945137, 0.06217772513628006, -0.004961550235748291, 0.03824968263506889, 0.055597513914108276, 0.08410003781318665, 0.015869922935962677, -0.008783879689872265, 0.05260650813579559, -0.06062943860888481, 0.01564999669790268, -0.03775704652070999, 0.017119107767939568, 0.027675596997141838, -0.012043195776641369, 0.03121202252805233, -0.07664011418819427, 0.03680695965886116, -0.014488782733678818, 0.027640409767627716, -0.008396808058023453, 0.03203894570469856 ]
728,921
tables.table
modify_rows
Modify a series of rows in the slice [start:stop:step]. The values in the selected rows will be modified with the data given in rows. This method returns the number of rows modified. Should the modification exceed the length of the table, an IndexError is raised before changing data. The possible values for the rows argument are the same as in :meth:`Table.append`.
def modify_rows(self, start=None, stop=None, step=None, rows=None): """Modify a series of rows in the slice [start:stop:step]. The values in the selected rows will be modified with the data given in rows. This method returns the number of rows modified. Should the modification exceed the length of the table, an IndexError is raised before changing data. The possible values for the rows argument are the same as in :meth:`Table.append`. """ if step is None: step = 1 if rows is None: # Nothing to be done return SizeType(0) if start is None: start = 0 if start < 0: raise ValueError("'start' must have a positive value.") if step < 1: raise ValueError( "'step' must have a value greater or equal than 1.") if stop is None: # compute the stop value. start + len(rows)*step does not work stop = start + (len(rows) - 1) * step + 1 (start, stop, step) = self._process_range(start, stop, step) if stop > self.nrows: raise IndexError("This modification will exceed the length of " "the table. Giving up.") # Compute the number of rows to read. nrows = len(range(start, stop, step)) if len(rows) != nrows: raise ValueError("The value has different elements than the " "specified range") # Convert rows into a recarray recarr = self._conv_to_recarr(rows) lenrows = len(recarr) if start + lenrows > self.nrows: raise IndexError("This modification will exceed the length of the " "table. Giving up.") # Do the actual update self._update_records(start, stop, step, recarr) # Redo the index if needed self._reindex(self.colpathnames) return SizeType(lenrows)
(self, start=None, stop=None, step=None, rows=None)
[ 0.003230069298297167, -0.009113813750445843, -0.034014053642749786, -0.00623862212523818, -0.05565936118364334, 0.02007208950817585, -0.030542124062776566, 0.039348527789115906, -0.0810840055346489, -0.06079491972923279, 0.01430362369865179, 0.02477365918457508, 0.006080396473407745, 0.030813368037343025, -0.02804667502641678, -0.025985218584537506, 0.023779096081852913, -0.009692467749118805, -0.026021383702754974, -0.001595821464434266, 0.006487262900918722, 0.006871526129543781, 0.014249375090003014, 0.005085833370685577, -0.003169039264321327, 0.0352979451417923, 0.012395870871841908, 0.019005194306373596, 0.07200635969638824, -0.02636495977640152, 0.016464537009596825, 0.030849535018205643, -0.0035781662445515394, 0.023272773250937462, -0.018299957737326622, -0.055261533707380295, 0.0234536025673151, -0.03905919939279556, 0.054031893610954285, 0.08542391657829285, -0.054755210876464844, -0.02048799768090248, 0.051247116178274155, -0.05110245198011398, 0.008241310715675354, -0.00363241508603096, -0.0036007699090987444, 0.0010787617648020387, -0.0010442910715937614, -0.014647199772298336, 0.0062928711995482445, 0.0032910993322730064, 0.030668705701828003, -0.036925408989191055, 0.005189810413867235, 0.05012597143650055, -0.028173256665468216, -0.01587684080004692, 0.014882278628647327, -0.009466431103646755, 0.04097599536180496, -0.03869754076004028, 0.036021262407302856, 0.0282455887645483, -0.0020241616293787956, -0.03942085802555084, 0.02654578909277916, -0.03506286442279816, -0.007947462610900402, 0.04726886376738548, -0.023525934666395187, 0.06332653760910034, 0.05497220903635025, 0.017956381663680077, -0.04263962805271149, 0.06954707205295563, -0.03330881893634796, 0.0011267946101725101, 0.018733950331807137, -0.029312482103705406, 0.08187965303659439, 0.05374256521463394, 0.05128328129649162, 0.005687091965228319, 0.03891453519463539, -0.00846282672137022, -0.007002627477049828, 0.015894925221800804, 0.01309206523001194, -0.03584043309092522, -0.027540352195501328, 0.01327289454638958, 0.002687580417841673, -0.07992669939994812, 0.057178329676389694, -0.011943796649575233, -0.011374183930456638, -0.055442363023757935, -0.03685307875275612, -0.01878819800913334, 0.054574381560087204, 0.03014429844915867, 0.04148231819272041, -0.012811779044568539, 0.047015704214572906, -0.09721400588750839, -0.01788404956459999, -0.013553180731832981, -0.016907570883631706, 0.03065062128007412, -0.004077708348631859, 0.039710186421871185, -0.019240273162722588, -0.00659123994410038, -0.022965362295508385, -0.028354085981845856, 0.020126337185502052, -0.028064757585525513, -0.01713360659778118, 0.02444816567003727, -0.0052666631527245045, -0.01094923447817564, 0.016383163630962372, 0.016401248052716255, 0.018028713762760162, 0.004258537665009499, 0.013734010048210621, 0.02468324452638626, 0.04925798997282982, -0.09048714488744736, -0.0006317734951153398, -0.09786499291658401, -0.008517075330018997, 0.030307045206427574, -0.013806342147290707, -0.012766571715474129, 0.06090341880917549, 0.013770176097750664, -0.015958214178681374, 0.000988346990197897, 0.00311931106261909, 0.03130161017179489, 0.03249508515000343, 0.027540352195501328, -0.0068217976950109005, -0.04140998423099518, 0.04517124220728874, 0.045315906405448914, 0.015460933558642864, 0.040071845054626465, -0.03171751648187637, -0.034466128796339035, 0.029529478400945663, -0.011328976601362228, 0.023507852107286453, -0.00012573310232255608, -0.024393916130065918, -0.08846185356378555, -0.013688802719116211, -0.006342599168419838, -0.029637975618243217, 0.02144639380276203, -0.03034321218729019, 0.01785692572593689, -0.05692516639828682, 0.09338042140007019, -0.0196200143545866, -0.01713360659778118, -0.06933008134365082, -0.031355857849121094, 0.0535617358982563, 0.04958348348736763, 0.09670768678188324, 0.0025383958127349615, -0.025876719504594803, 0.08021602034568787, 0.03001771867275238, -0.021048568189144135, -0.0045523857697844505, -0.010153583250939846, 0.018236668780446053, 0.03260358050465584, -0.015361476689577103, 0.024068424478173256, -0.0023959926329553127, -0.012531492859125137, -0.03837204724550247, -0.05095778778195381, 0.040397338569164276, -0.006921254098415375, -0.02573205716907978, -0.07403165102005005, 0.04133765399456024, 0.029909221455454826, 0.0009793054778128862, 0.03905919939279556, -0.004306005779653788, 0.0679919421672821, 0.004579510539770126, 0.04994514212012291, -0.04238646477460861, -0.02207929827272892, 0.022965362295508385, 0.01896902732551098, 0.05338090658187866, -0.01869778335094452, 0.033778972923755646, -0.01705223321914673, -0.03826354816555977, 0.010054127313196659, -0.04694337025284767, -0.029023155570030212, -0.025081070140004158, 0.022223960608243942, 0.033182237297296524, 0.009041481651365757, -0.05464671552181244, -0.03978251665830612, 0.004464231431484222, -0.00850803405046463, 0.03685307875275612, 0.03739556670188904, -0.045460570603609085, -0.08730454742908478, 0.06184373423457146, -0.052621420472860336, 0.029475228860974312, -0.02546081133186817, -0.011030607856810093, 0.05377873033285141, -0.016527827829122543, -0.005587635561823845, -0.0019054922740906477, 0.003684403607621789, 0.05801014602184296, 0.06036093086004257, -0.020054005086421967, 0.02696169726550579, 0.0678834393620491, 0.025352314114570618, -0.05222359672188759, -0.007513470947742462, 0.016907570883631706, -0.034014053642749786, -0.04245879873633385, 0.015081191435456276, -0.011012524366378784, 0.023688681423664093, -0.03280249610543251, 0.014014296233654022, -0.02887849137187004, -0.029203984886407852, 0.03562343865633011, 0.002261500572785735, 0.05999927222728729, 0.07905871421098709, 0.06433918327093124, 0.030071968212723732, -0.0013437902089208364, -0.008453785441815853, 0.04520740732550621, -0.050017476081848145, 0.016093837097287178, -0.019692346453666687, -0.0037680373061448336, -0.01701606810092926, -0.0016704136505723, 0.03249508515000343, -0.009448348544538021, 0.10133692622184753, 0.038335882127285004, 0.08021602034568787, -0.018471745774149895, -0.014339789748191833, 0.058227140456438065, -0.001208167988806963, 0.06961940973997116, -0.05587635561823845, 0.0032775369472801685, -0.02262178622186184, -0.004111613612622023, -0.010343454778194427, -0.007359765935689211, -0.02376101352274418, -0.015804508700966835, -0.08296463638544083, -0.0037024866323918104, 0.054357387125492096, -0.035099029541015625, -0.01117527112364769, 0.004464231431484222, -0.000190436199773103, -0.06093958392739296, -0.015262020751833916, 0.0066816546022892, 0.01773938722908497, -0.057359158992767334, -0.007197019178420305, -0.02444816567003727, -0.017386768013238907, -0.04405009746551514, -0.07869705557823181, 0.02426733635365963, 0.04108449071645737, -0.007007148116827011, -0.03148243948817253, 0.021193232387304306, 0.00036222435301169753, 0.011609261855483055, -0.022187795490026474, 0.026744702830910683, -0.00426079798489809, -0.06466467678546906, -0.07403165102005005, 0.0008431181195192039, -0.035008616745471954, 0.004100312013179064, 0.04119298979640007, -0.011030607856810093, 0.051391780376434326, -0.031952597200870514, 0.02276645042002201, -0.012513410300016403, 0.003964689560234547, -0.029041238129138947, -0.00307410373352468, 0.08195199072360992, 0.03043362684547901, -0.03905919939279556, -0.04527973756194115, -0.02139214426279068, -0.0008222096948884428, 0.05218743160367012, 0.0048462338745594025, -0.023833345621824265, -0.07316366583108902, 0.04368843883275986, -0.000340468279318884, -0.0688960924744606, 0.04748586192727089, 0.06354352831840515, -0.003917221911251545, 0.02231437712907791, -0.04036117345094681, 0.040433503687381744, -0.017992548644542694, 0.05970994383096695, -0.011301851831376553, 0.03092186711728573, 0.050885457545518875, 0.04661787673830986, 0.03215150907635689, 0.0010284684831276536, -0.010054127313196659, -0.019421102479100227, -0.035279858857393265, 0.016943736001849174, -0.06618364155292511, -0.0019382676109671593, -0.021229399368166924, 0.009421223774552345, 0.011093897745013237, -0.0044981371611356735, 0.028444500640034676, -0.035153280943632126, 0.011518847197294235, -0.10647248476743698, 0.003734131809324026, -0.03461078926920891, 0.06332653760910034, 0.022513289004564285, -0.02207929827272892, 0.05012597143650055, 0.03840821236371994, 0.0282455887645483, 0.03356197848916054, -0.07048738747835159, 0.013815383426845074, -0.038986869156360626, -0.008395015262067318, 0.018299957737326622, -0.02097623609006405, -0.033091820776462555, 0.018046796321868896, -0.004773902241140604, 0.006026147399097681, 0.009954671375453472, -0.03963785618543625, -0.013652636669576168, -0.028209421783685684, -0.03321840241551399, 0.026762785390019417, 0.039203863590955734, -0.02924015186727047, 0.02240479178726673, 0.04470108449459076, 0.0008770236745476723, -0.0171697735786438, 0.016075754538178444, -0.056129515171051025, -0.034140635281801224, -0.004111613612622023, 0.022332459688186646, 0.061699070036411285, -0.04405009746551514, -0.03330881893634796, 0.03207917511463165, -0.07761207967996597, 0.015741219744086266, -0.020596494898200035, -0.008607489988207817, 0.028317920863628387, -0.007065917830914259, 0.016880445182323456, 0.03573193401098251, -0.00038906626286916435, -0.02043374814093113, -0.04010801017284393, 0.004461971111595631, 0.04484574869275093, 0.03754023090004921, 0.02540656365454197, 0.012938359752297401, 0.0669792965054512, 0.033363066613674164, -0.05077695846557617, 0.009665343910455704, -0.03840821236371994, -0.0027666932437568903, 0.009244915097951889, -0.0033408273011446, -0.012133668176829815, -0.03484586998820305, 0.0029610851779580116, -0.03837204724550247, -0.02873382903635502, 0.009638219140470028, -0.011392266489565372, 0.036238256841897964, 0.0010047346586361527, 0.019945507869124413, -0.029457146301865578, 0.026889365166425705, -0.02189846895635128, 0.021012403070926666, -0.0488240011036396, 0.011301851831376553, -0.05808247625827789, -0.0802883580327034, 0.015759302303195, 0.05066846311092377, 0.017151691019535065, -0.011419391259551048, -0.018625451251864433, -0.004615676123648882, -0.029095487669110298, -0.0526575893163681, 0.003639196278527379, 0.013462766073644161, 0.009339850395917892, 0.07674409449100494, 0.04697953909635544, -0.019782761111855507, -0.0019755635876208544, 0.029764557257294655, -0.04893249645829201, -0.01382442470639944, -0.04904099553823471, 0.01304685790091753, -0.050342969596385956, 0.02144639380276203, -0.054936040192842484, -0.03180793300271034, -0.0015325311105698347, 0.019855093210935593, 0.02792009525001049, -0.038118887692689896, 0.010415786877274513, -0.04361610487103462, -0.02792009525001049, -0.023019611835479736, -0.018191460520029068, 0.04817301407456398, 0.01842653937637806, -0.010940192267298698, 0.0014929745811969042, -0.032368503510951996, 0.003076364053413272, 0.020234836265444756, -0.01740485243499279, 0.04122915491461754, -0.058914292603731155, -0.024050340056419373, 0.055948685854673386, -0.005741340573877096, -0.05634651333093643, 0.0458945594727993, 0.007942941039800644, 0.018860530108213425, 0.03851671144366264, 0.04072283208370209, -0.01680811494588852, 0.0430736169219017, 0.027974342927336693, 0.004238194320350885, 0.03370664268732071, 0.061518240720033646, 0.008833527565002441, -0.011934755370020866, -0.07291051000356674, 0.0029543039854615927, -0.020180586725473404, -0.007513470947742462, 0.04347144439816475, -0.02175380475819111, -0.07110220938920975, -0.016310833394527435, 0.061337411403656006, -0.0013923881342634559, -0.03079528547823429, 0.004348952788859606, -0.008684342727065086, 0.002108925487846136, 0.051066286861896515, -0.046147722750902176, 0.016193293035030365, 0.033869389444589615, -0.051572609692811966, 0.06582198292016983, -0.024195004254579544, -0.02960181050002575, 0.03855287656188011, 0.049836646765470505, -0.036021262407302856, 0.006342599168419838, 0.02477365918457508, 0.02039758302271366, -0.062386222183704376, 0.07008956372737885, 0.016464537009596825, -0.00619341479614377, 0.04802834987640381, -0.0018489829963073134, -0.014149918220937252, -0.05587635561823845, 0.009981795214116573, 0.002212902531027794, -0.04263962805271149, 0.04817301407456398, -0.016735782846808434, -0.05844413489103317, 0.001347180688753724, 0.08050534874200821, -0.015035984106361866, -0.020379498600959778, 0.03088570013642311, 0.01117527112364769, -0.0831092968583107, 0.0038923576939851046, 0.01033441349864006, -0.009145458228886127, -0.05793781206011772, 0.051608774811029434, -0.0016127742128446698, -0.0013584826374426484, 0.04462875425815582, 0.010750321671366692, -0.009109292179346085, -0.03370664268732071, 0.03189834579825401, 0.012739446945488453, 0.048607002943754196, -0.036599915474653244, 0.015026941895484924, -0.01827283389866352, -0.05099395662546158, 0.008128291927278042, -0.011392266489565372, -0.01322768721729517, -0.06947474181652069, 0.002848066622391343, -0.004945690277963877, -0.034411877393722534, -0.04889633134007454, 0.014818987809121609, 0.0457860603928566, -0.09475472569465637, 0.06462851166725159, -0.00015441155119333416, 0.03490011766552925, 0.014384997077286243, -0.01952959969639778, -0.08527925610542297, -0.032784413546323776, -0.02654578909277916, 0.032043009996414185, -0.028932740911841393, -0.06043326109647751, -0.02833600342273712, 0.039203863590955734, -0.07319983094930649, 0.012748489156365395, -0.003044718876481056, 0.011030607856810093, -0.02987305447459221, -0.0008267304510809481, 0.004391899798065424, 0.048100680112838745, 0.009611094370484352, -0.009611094370484352, 0.03303757309913635, 0.0025225733406841755, 0.0291497353464365, -0.04990897700190544, -0.0734168291091919, -0.045315906405448914, -0.006622885353863239, -0.05486370995640755, 0.08137333393096924, -0.06419451534748077, -0.028082842007279396, -0.008485429920256138, 0.030451709404587746, -0.04090366140007973, -0.039565522223711014, -0.009339850395917892, -0.018806280568242073, 0.04643704742193222, 0.010027002543210983, -0.06256705522537231, -0.03506286442279816, -0.016799071803689003, 0.012802737765014172, -0.006423972547054291, 0.027666933834552765, -0.03262166678905487, -0.03023471310734749, -0.0363105908036232, 0.05077695846557617, 0.0023168795742094517, 0.06046942621469498, 0.0005537907127290964, 0.010479076765477657, 0.020867738872766495, -0.03466504067182541, -0.03043362684547901, 0.010063168592751026, -0.0372147373855114, -0.014330748468637466, -0.002337222918868065, 0.039529357105493546, 0.02696169726550579, -0.005976419430226088, -0.03256741538643837, 0.020741159096360207, 0.020542245358228683, 0.04958348348736763, -0.027811596170067787, 0.027034029364585876, -0.01920410618185997, 0.002313489094376564, 0.011410349979996681, 0.009990837424993515, -0.047775186598300934, 0.08904051035642624, 0.004177164286375046, 0.08354328572750092, 0.05645500868558884, 0.027540352195501328, 0.041120659559965134, -0.0516449436545372, 0.015831634402275085, -0.05746765807271004, 0.02564164064824581, 0.04622005298733711, -0.007450180593878031, -0.002592644887045026, -0.10039661079645157, 0.0004181685217190534, 0.05584019050002098, -0.0515364445745945, 0.01669057458639145, -0.02681703492999077, 0.008960108272731304, -0.0015788687160238624, 0.06347119808197021, -0.04813684895634651, -0.0011070163454860449, -0.02144639380276203, -0.02025291882455349, 0.03244083374738693, -0.014728573150932789, -0.02079540677368641, 0.0314643569290638, -0.02166339010000229, 0.017187856137752533, -0.016066713258624077, -0.032187674194574356, 0.026202213019132614, 0.08889584243297577, 0.033146072179079056, -0.00035205268068239093, 0.011536930687725544, 0.024665161967277527, 0.002102144528180361, -0.02417692169547081, -0.0419524721801281, 0.003935304936021566, 0.0016444193897768855, 0.024249253794550896, 0.018715865910053253, 0.06231389194726944, -0.025533143430948257, 0.0010143412509933114, 0.019457267597317696, 0.03685307875275612, -0.015262020751833916, -0.020632660016417503, -0.03023471310734749, 0.034773536026477814, 0.03754023090004921, -0.022748367860913277, 0.0033634311985224485, -0.024900240823626518, -0.10654481500387192, 0.000019866536604240537, -0.02632879465818405, 0.02795626036822796, -0.012260248884558678, -0.011808174662292004, 0.02354401722550392, 0.011419391259551048, 0.0282455887645483, -0.019167941063642502, 0.05095778778195381, -0.029077405110001564, -0.029203984886407852, -0.026798950508236885, 0.053670234978199005, -0.003982772585004568, -0.03495436906814575, 0.003589468076825142, -0.0032594541553407907, -0.043399110436439514, -0.019240273162722588, 0.032458920031785965, -0.018318042159080505, 0.03124736063182354, 0.00793842040002346, 0.034285299479961395, -0.006017106119543314, 0.019547682255506516, -0.0186073686927557, 0.006252184510231018, 0.0363648384809494, -0.03490011766552925, -0.01992742531001568, -0.03992718085646629, -0.01687140390276909, -0.0032617144752293825, 0.013562222011387348, 0.025985218584537506, -0.007242226507514715, 0.06072258949279785, 0.005727778654545546, 0.02253137156367302, 0.03235042095184326, 0.01836324855685234 ]
728,923
tables.table
read
Get data in the table as a (record) array. The start, stop and step parameters can be used to select only a *range of rows* in the table. Their meanings are the same as in the built-in Python slices. If field is supplied only the named column will be selected. If the column is not nested, an *array* of the current flavor will be returned; if it is, a *structured array* will be used instead. If no field is specified, all the columns will be returned in a structured array of the current flavor. Columns under a nested column can be specified in the field parameter by using a slash character (/) as a separator (e.g. 'position/x'). The out parameter may be used to specify a NumPy array to receive the output data. Note that the array must have the same size as the data selected with the other parameters. Note that the array's datatype is not checked and no type casting is performed, so if it does not match the datatype on disk, the output will not be correct. When specifying a single nested column with the field parameter, and supplying an output buffer with the out parameter, the output buffer must contain all columns in the table. The data in all columns will be read into the output buffer. However, only the specified nested column will be returned from the method call. When data is read from disk in NumPy format, the output will be in the current system's byteorder, regardless of how it is stored on disk. If the out parameter is specified, the output array also must be in the current system's byteorder. .. versionchanged:: 3.0 Added the *out* parameter. Also the start, stop and step parameters now behave like in slice. Examples -------- Reading the entire table:: t.read() Reading record n. 6:: t.read(6, 7) Reading from record n. 6 to the end of the table:: t.read(6)
def read(self, start=None, stop=None, step=None, field=None, out=None): """Get data in the table as a (record) array. The start, stop and step parameters can be used to select only a *range of rows* in the table. Their meanings are the same as in the built-in Python slices. If field is supplied only the named column will be selected. If the column is not nested, an *array* of the current flavor will be returned; if it is, a *structured array* will be used instead. If no field is specified, all the columns will be returned in a structured array of the current flavor. Columns under a nested column can be specified in the field parameter by using a slash character (/) as a separator (e.g. 'position/x'). The out parameter may be used to specify a NumPy array to receive the output data. Note that the array must have the same size as the data selected with the other parameters. Note that the array's datatype is not checked and no type casting is performed, so if it does not match the datatype on disk, the output will not be correct. When specifying a single nested column with the field parameter, and supplying an output buffer with the out parameter, the output buffer must contain all columns in the table. The data in all columns will be read into the output buffer. However, only the specified nested column will be returned from the method call. When data is read from disk in NumPy format, the output will be in the current system's byteorder, regardless of how it is stored on disk. If the out parameter is specified, the output array also must be in the current system's byteorder. .. versionchanged:: 3.0 Added the *out* parameter. Also the start, stop and step parameters now behave like in slice. Examples -------- Reading the entire table:: t.read() Reading record n. 6:: t.read(6, 7) Reading from record n. 6 to the end of the table:: t.read(6) """ self._g_check_open() if field: self._check_column(field) if out is not None and self.flavor != 'numpy': msg = ("Optional 'out' argument may only be supplied if array " "flavor is 'numpy', currently is {}").format(self.flavor) raise TypeError(msg) start, stop, step = self._process_range(start, stop, step, warn_negstep=False) arr = self._read(start, stop, step, field, out) return internal_to_flavor(arr, self.flavor)
(self, start=None, stop=None, step=None, field=None, out=None)
[ 0.02100447006523609, 0.0374932587146759, -0.041034601628780365, 0.013406510464847088, -0.016170255839824677, 0.025426462292671204, -0.021753959357738495, 0.03994784131646156, -0.04792991280555725, -0.10432907193899155, 0.010633395984768867, 0.028705483302474022, -0.034120552241802216, 0.01717269979417324, 0.014980440028011799, 0.035001203417778015, 0.010642764158546925, 0.016048463061451912, -0.03638776019215584, 0.05876005068421364, -0.003260283498093486, -0.009073518216609955, 0.02197880670428276, 0.011654576286673546, -0.003733399324119091, 0.038242749869823456, 0.024058643728494644, -0.01810019463300705, 0.06063377484679222, 0.00850671622902155, -0.013406510464847088, -0.019599175080657005, -0.013303454965353012, 0.05257675424218178, -0.012263537384569645, -0.0383739098906517, 0.025276564061641693, -0.033277373760938644, 0.02137921378016472, 0.09406104683876038, -0.038036640733480453, -0.07907123863697052, 0.04335802048444748, -0.019093269482254982, -0.0454191192984581, -0.041334398090839386, 0.037155989557504654, -0.051377568393945694, -0.0500284880399704, -0.00762606505304575, 0.04208388924598694, 0.02330915257334709, 0.012001215480268002, -0.04170914366841316, -0.027262713760137558, -0.0326777845621109, -0.03874865546822548, -0.02182890847325325, -0.015195918269455433, 0.03457024693489075, -0.03346474841237068, 0.012863129377365112, 0.032059453427791595, 0.014259055256843567, 0.00593502726405859, -0.004129223991185427, 0.03616291284561157, -0.03698735311627388, -0.003995720762759447, 0.026082267984747887, -0.022091230377554893, 0.05426310747861862, 0.03878612816333771, 0.034008126705884933, -0.033427271991968155, 0.036275338381528854, -0.013350298628211021, -0.01113930158317089, 0.03286515548825264, -0.01147657260298729, 0.005330750718712807, 0.08244394510984421, 0.017032170668244362, 0.0120667964220047, 0.015729930251836777, 0.0024943978060036898, 0.014774329960346222, 0.0557246133685112, -0.0035577374510467052, -0.003546026535332203, -0.029361287131905556, -0.019486751407384872, -0.004454783629626036, 0.05624925717711449, -0.014952334575355053, -0.0888146162033081, -0.032452937215566635, 0.034907516092061996, -0.08784028142690659, 0.0005269854445941746, -0.0010820768075063825, -0.007452745456248522, 0.03365211933851242, 0.007939914241433144, 0.012966184876859188, -0.04170914366841316, -0.0170134324580431, 0.041521769016981125, -0.005822603590786457, 0.0023925139103084803, -0.01726638525724411, 0.058497726917266846, -0.039460670202970505, 0.0003539585741236806, -0.04320812225341797, 0.0014345715753734112, 0.015870459377765656, 0.003909061197191477, -0.0987078920006752, -0.020367402583360672, 0.014586957171559334, 0.02192259579896927, -0.01113930158317089, 0.006197349168360233, -0.006122400052845478, -0.018999582156538963, 0.004281464032828808, -0.014821173623204231, 0.0493539460003376, -0.027693672105669975, 0.01513033825904131, -0.058834999799728394, -0.02844316139817238, 0.002478002803400159, -0.015205287374556065, 0.052202008664608, 0.10965044796466827, -0.0016219441313296556, -0.037305887788534164, 0.0025388989597558975, 0.0229156706482172, -0.049578793346881866, 0.04688062518835068, -0.04703052341938019, 0.012685125693678856, -0.010820767842233181, 0.08087001740932465, 0.00647372379899025, -0.022690823301672935, 0.02364642359316349, -0.0627698227763176, -0.033633384853601456, 0.005335434805601835, -0.05430058017373085, 0.06321951746940613, 0.0118981609120965, -0.03183460608124733, -0.07997062802314758, -0.026475749909877777, -0.011092458851635456, -0.04062238335609436, 0.017678605392575264, -0.078096903860569, 0.020817097276449203, -0.038130324333906174, 0.10492865741252899, -0.03605049103498459, -0.007977388799190521, -0.02216617949306965, -0.02761872299015522, -0.024901820346713066, 0.0401352122426033, 0.03893602639436722, 0.03886107727885246, -0.038673706352710724, 0.05092787370085716, 0.004829529207199812, 0.019730335101485252, -0.00939673651009798, 0.009256206452846527, 0.030241938307881355, 0.012638282030820847, -0.028817906975746155, 0.03595680370926857, 0.008352134376764297, 0.002076322678476572, -0.0020798358600586653, -0.08049527555704117, 0.024358438327908516, 0.03207819163799286, -0.005653968546539545, -0.005475964397192001, 0.01113930158317089, -0.004124539438635111, 0.042608533054590225, -0.007612012326717377, 0.033427271991968155, 0.11632091552019119, 0.019842758774757385, 0.05268917605280876, 0.04043500870466232, -0.02158532477915287, 0.010520972311496735, 0.024171067401766777, -0.04590629041194916, 0.00755580049008131, 0.02692544460296631, -0.018259460106492043, -0.025089193135499954, 0.037399571388959885, 0.0010077132610604167, -0.04999101161956787, -0.011607733555138111, -0.02167901024222374, 0.05014090985059738, 0.0326777845621109, -0.05313887074589729, -0.011532784439623356, 0.01647942140698433, 0.05995923653244972, 0.06977755576372147, 0.011232987977564335, -0.029305076226592064, -0.01982402242720127, -0.0009526726207695901, -0.013097344897687435, 0.0067407297901809216, -0.0310476403683424, -0.015270867384970188, -0.015224024653434753, -0.036668818444013596, 0.01496170274913311, 0.0014779014745727181, -0.022428501397371292, 0.07007735222578049, 0.0816195085644722, 0.002749693114310503, 0.015055389143526554, 0.05381341278553009, 0.025201614946126938, -0.03586311638355255, 0.004862319212406874, -0.023084305226802826, -0.04972869157791138, -0.0443323589861393, -0.00039231139817275107, 0.04234620928764343, 0.022297339513897896, -0.02428348921239376, 0.02849937416613102, -0.021472901105880737, -0.0037919532041996717, 0.058834999799728394, 0.0002719830663409084, 0.049129098653793335, 0.04466962814331055, 0.03790547698736191, -0.026625648140907288, 0.02188512124121189, 0.0024662918876856565, 0.026232164353132248, -0.0816195085644722, 0.03440161049365997, -0.020685935392975807, 0.02389000728726387, 0.007373112253844738, -0.004571891855448484, -0.04669325426220894, 0.03425171226263046, 0.05797308683395386, -0.09960728138685226, 0.05542481690645218, -0.046430934220552444, -0.03507615253329277, 0.03923582285642624, -0.04830465838313103, 0.07277552038431168, 0.01565498113632202, 0.017107119783759117, -0.001206211163662374, -0.047067999839782715, 0.00227423501200974, -0.00787433423101902, -0.008019547909498215, -0.033970654010772705, -0.08116981387138367, -0.04590629041194916, 0.02330915257334709, -0.004286148585379124, 0.005532176233828068, 0.033090002834796906, 0.004253358114510775, -0.07772215455770493, -0.036762505769729614, 0.007747857365757227, 0.0022707218304276466, -0.04879182577133179, -0.01731322892010212, -0.0035553951747715473, -0.04620608687400818, -0.020423613488674164, -0.03638776019215584, 0.04815476015210152, 0.08851481974124908, -0.05253927782177925, -0.009387367404997349, 0.012263537384569645, -0.01810019463300705, -0.018727893009781837, -0.06284477561712265, 0.016713635995984077, -0.035488370805978775, -0.034757617861032486, -0.026944180950522423, -0.03258409723639488, -0.009705901145935059, -0.035544585436582565, 0.06284477561712265, 0.005672705825418234, 0.015102231875061989, -0.03783052787184715, 0.028836645185947418, 0.03305252641439438, -0.0010762214660644531, 0.030185727402567863, 0.021116893738508224, 0.004276779945939779, 0.02001139521598816, -0.0006072043324820697, 0.036369021981954575, 0.04856697842478752, 0.00946700107306242, 0.041034601628780365, 0.06235760450363159, -0.007045209873467684, -0.04418246075510979, 0.004368124064058065, -0.03498246520757675, -0.028199577704072, 0.04688062518835068, 0.044032562524080276, -0.01854052022099495, 0.031759656965732574, -0.06269487738609314, 0.04193399101495743, -0.020742148160934448, 0.027506299316883087, -0.01967412419617176, 0.04830465838313103, 0.07146391272544861, 0.0620952807366848, -0.0064409333281219006, -0.014230949804186821, 0.04002279043197632, -0.07266309857368469, -0.018381252884864807, 0.006127084139734507, -0.030335625633597374, 0.012722600251436234, -0.0034687353763729334, -0.02021750435233116, 0.014746224507689476, 0.006384721491485834, 0.007031157147139311, 0.028199577704072, -0.034813832491636276, -0.0699649304151535, 0.019093269482254982, -0.024958031252026558, 0.07914619147777557, 0.007251319941133261, -0.030448049306869507, 0.029248863458633423, 0.024246014654636383, 0.011467203497886658, -0.023477787151932716, -0.01691974699497223, 0.0037404256872832775, -0.001342056319117546, -0.015317711047828197, 0.008000810630619526, 0.009968223050236702, -0.0447445772588253, 0.06235760450363159, -0.01056781504303217, 0.007869649678468704, -0.04950384423136711, 0.022241128608584404, -0.03130996227264404, -0.005115272011607885, -0.02237228862941265, 0.06906554102897644, 0.006899996194988489, -0.05418815836310387, 0.010324230417609215, -0.004843581933528185, 0.0031174118630588055, -0.022428501397371292, 0.03694987669587135, -0.058347828686237335, -0.056286729872226715, -0.008328712545335293, -0.052464328706264496, 0.03859875723719597, -0.041371870785951614, -0.023777583613991737, 0.028836645185947418, -0.09900768846273422, -0.008281868882477283, -0.06591768562793732, 0.023796321824193, 0.0317971333861351, 0.0009895615512505174, 0.022840721532702446, 0.054375529289245605, 0.036668818444013596, -0.008947041817009449, -0.00998696032911539, 0.03591932728886604, 0.06662970036268234, -0.01814703643321991, 0.016170255839824677, -0.014259055256843567, 0.026307113468647003, 0.06801625341176987, -0.026644384488463402, -0.032303038984537125, 0.02531403861939907, 0.02040487714111805, 0.026157215237617493, 0.013406510464847088, 0.016891641542315483, -0.03968551754951477, -0.023702634498476982, -0.009762112982571125, -0.029005279764533043, -0.0036092649679630995, -0.015495714731514454, 0.04392014071345329, -0.005761707667261362, 0.0500284880399704, 0.03550710901618004, 0.04384519159793854, -0.014259055256843567, 0.0017156304093077779, -0.028049679473042488, 0.011963740922510624, 0.0024053959641605616, -0.06730423867702484, -0.039310771971940994, 0.06591768562793732, -0.018727893009781837, 0.04283337667584419, -0.030991429463028908, 0.016938483342528343, -0.024808133020997047, -0.011523415334522724, -0.011401623487472534, 0.04193399101495743, 0.00407301215454936, 0.025819946080446243, 0.02535151317715645, 0.017079012468457222, -0.057373493909835815, 0.008932989090681076, -0.028405686840415, -0.02806841768324375, -0.0029089597519487143, -0.05553724244236946, -0.061045996844768524, -0.012638282030820847, -0.0022309052292257547, -0.05283907428383827, -0.01588919758796692, 0.020479826256632805, 0.029567398130893707, -0.01528023649007082, -0.003213440300896764, -0.04624355956912041, -0.04069732874631882, -0.033520959317684174, -0.08072011917829514, -0.04418246075510979, -0.0034453137777745724, -0.02443338744342327, 0.02422727830708027, 0.0022297340910881758, 0.0379616916179657, -0.014952334575355053, -0.0699649304151535, -0.012835023924708366, 0.04395761340856552, -0.0012003558222204447, 0.026457011699676514, 0.016545001417398453, 0.02825578860938549, 0.08888956904411316, 0.0032462305389344692, 0.0016336549306288362, 0.05347614362835884, 0.02510792948305607, 0.0047850278206169605, -0.0026911390013992786, -0.008192867040634155, -0.05774823948740959, -0.008797143585979939, 0.02638206258416176, 0.030691633000969887, 0.01262891385704279, -0.035544585436582565, -0.00005774882447440177, 0.05793561041355133, -0.03582564368844032, 0.022447237744927406, -0.05392583832144737, -0.0440700389444828, -0.015027282759547234, 0.010605289600789547, -0.06269487738609314, 0.04377024248242378, 0.024751922115683556, 0.021791433915495872, -0.017191436141729355, 0.07663539797067642, -0.014493271708488464, 0.025276564061641693, -0.013331561349332333, -0.014474534429609776, 0.006525251083076, -0.03145986050367355, -0.0003832355432678014, -0.000053137700888328254, 0.04107207432389259, -0.005297960713505745, 0.0005466010188683867, 0.011963740922510624, 0.022634610533714294, 0.02089204639196396, 0.027806095778942108, 0.002192259533330798, 0.033033791929483414, 0.045456595718860626, 0.0241335928440094, 0.00021723512327298522, -0.00009083179611479864, 0.00017551543714944273, -0.029305076226592064, -0.007026472594588995, 0.09615962207317352, 0.01879347302019596, -0.002254326594993472, -0.008562928065657616, 0.1414288431406021, -0.033727068454027176, 0.03453277051448822, 0.022896932438015938, -0.007949283346533775, 0.0011236501159146428, -0.002186404075473547, -0.03964804485440254, -0.020667199045419693, -0.014024839736521244, -0.012404066510498524, 0.04571891576051712, -0.006164558697491884, 0.05336371809244156, 0.04616861045360565, 0.01142972894012928, -0.016545001417398453, -0.05606188625097275, -0.006422196049243212, 0.059434592723846436, -0.03893602639436722, 0.032003242522478104, 0.05216453596949577, 0.010698975995182991, -0.03234051167964935, 0.0020165976602584124, -0.044032562524080276, -0.06018408015370369, 0.02031119167804718, -0.016179624944925308, -0.017884716391563416, -0.007930546067655087, -0.02458328567445278, 0.015439502894878387, -0.05606188625097275, 0.010258650407195091, 0.007747857365757227, -0.007710382807999849, 0.05253927782177925, -0.05583703890442848, -0.032546620815992355, 0.02447086200118065, 0.0024897134862840176, 0.024002430960536003, -0.04748021811246872, -0.04212136194109917, 0.001384215196594596, -0.03277146816253662, -0.049278996884822845, 0.00544317439198494, 0.0082865534350276, -0.04065985605120659, -0.017791029065847397, -0.011635839007794857, -0.002522503724321723, 0.009968223050236702, 0.03771810606122017, 0.019093269482254982, -0.029267601668834686, -0.03717472404241562, -0.0493539460003376, -0.013799992389976978, -0.047854963690042496, -0.031815867871046066, -0.016619950532913208, -0.03805537521839142, 0.020610986277461052, -0.054525427520275116, 0.0005603611934930086, -0.01059592142701149, 0.06831604987382889, 0.023627685382962227, -0.025988580659031868, -0.02810589037835598, 0.006398774683475494, -0.008769038133323193, 0.02458328567445278, -0.038092851638793945, -0.010970666073262691, -0.01888715848326683, 0.043395496904850006, 0.002995619550347328, 0.02482687123119831, -0.07453682273626328, -0.005522807594388723, -0.026457011699676514, -0.00037181752850301564, 0.048829302191734314, 0.013116082176566124, 0.012647651135921478, 0.032452937215566635, -0.013631356880068779, 0.008675351738929749, -0.061495691537857056, 0.02604479342699051, -0.0023339600302278996, 0.02285945788025856, 0.011823211796581745, -0.004494600463658571, 0.0362003892660141, -0.0068812589161098, -0.020367402583360672, -0.0056633371859788895, -0.008726879023015499, 0.07449934631586075, 0.0021290213335305452, -0.018512412905693054, 0.012769442982971668, -0.0241335928440094, 0.005897552706301212, -0.02540772594511509, -0.05744844302535057, 0.024751922115683556, -0.00004387885928736068, 0.006323825567960739, 0.11084963381290436, 0.009752743877470493, 0.07273804396390915, -0.04590629041194916, 0.03768063336610794, 0.009167204611003399, -0.030841531231999397, 0.06374416500329971, -0.024246014654636383, 0.05321381986141205, -0.0923372209072113, 0.027000393718481064, 0.002829326316714287, 0.022428501397371292, 0.05186473950743675, 0.008235026150941849, 0.04335802048444748, 0.02149163745343685, 0.05081545189023018, 0.006450301967561245, 0.011617101728916168, 0.008038285188376904, -0.0482671856880188, 0.038280222564935684, 0.027300188317894936, 0.018681049346923828, 0.017238279804587364, -0.023608949035406113, -0.007316900417208672, -0.014043577015399933, -0.019730335101485252, -0.01593604125082493, 0.07052704691886902, 0.01608593761920929, -0.03743704780936241, 0.04144681990146637, 0.04125944897532463, 0.019655385985970497, 0.016451315954327583, -0.019730335101485252, -0.012909973040223122, -0.02276577241718769, -0.0317971333861351, -0.008516085334122181, 0.058197930455207825, -0.03337106108665466, -0.031178802251815796, 0.06543051451444626, 0.015823617577552795, -0.025051718577742577, 0.029211388900876045, -0.07191360741853714, 0.04680567607283592, 0.007832175120711327, -0.03192829340696335, 0.025632573291659355, 0.02188512124121189, -0.07847164571285248, 0.036518920212984085, -0.06524313986301422, 0.016619950532913208, -0.03753073513507843, 0.022990619763731956, 0.004065985791385174, 0.02319672890007496, 0.04249610751867294, -0.0007512470474466681, -0.002480344846844673, -0.039460670202970505, -0.02703786827623844, -0.05823540687561035, 0.055462293326854706, -0.02482687123119831, -0.08139465749263763, -0.0017776975873857737, 0.009443579241633415, -0.007452745456248522, -0.018671680241823196, 0.016760479658842087, 0.012413435615599155, -0.0014216896379366517, -0.01824072375893593, 0.008502031676471233, -0.0026255587581545115, -0.0287429578602314, -0.0006962063489481807, 0.021997544914484024, 0.007518325932323933, -0.001106083975173533, -0.013312824070453644, -0.05441300570964813, -0.008319343440234661, 0.014146631583571434, -0.06396900862455368, 0.07581095397472382, -0.05066555365920067, 0.09698405861854553, -0.03086026944220066, 0.0007266543689183891, 0.02046108804643154, 0.006942155305296183 ]
728,924
tables.table
read_coordinates
Get a set of rows given their indexes as a (record) array. This method works much like the :meth:`Table.read` method, but it uses a sequence (coords) of row indexes to select the wanted columns, instead of a column range. The selected rows are returned in an array or structured array of the current flavor.
def read_coordinates(self, coords, field=None): """Get a set of rows given their indexes as a (record) array. This method works much like the :meth:`Table.read` method, but it uses a sequence (coords) of row indexes to select the wanted columns, instead of a column range. The selected rows are returned in an array or structured array of the current flavor. """ self._g_check_open() result = self._read_coordinates(coords, field) return internal_to_flavor(result, self.flavor)
(self, coords, field=None)
[ 0.0028571770526468754, -0.02886623702943325, -0.04250557720661163, 0.05110911652445793, 0.0008401893428526819, 0.011804260313510895, -0.006307554431259632, 0.041242361068725586, 0.01013134978711605, -0.05817630887031555, 0.017079047858715057, 0.041583769023418427, -0.05377211794257164, 0.03912561759352684, -0.0040862541645765305, -0.02577647566795349, -0.023284180089831352, 0.03048793599009514, -0.046056244522333145, -0.006776993628591299, -0.022208737209439278, -0.007587843108922243, 0.07517854124307632, -0.005052872002124786, 0.00021111423848196864, 0.006593485828489065, 0.049333784729242325, -0.003892076900228858, 0.056469257920980453, -0.02420598827302456, -0.0275688786059618, 0.00964483991265297, -0.013613734394311905, 0.04117407649755478, -0.03550666570663452, -0.04585139825940132, 0.02284034714102745, 0.026152025908231735, 0.06514108180999756, 0.04728532209992409, -0.10522264242172241, -0.05964437499642372, 0.04247143864631653, -0.02067239210009575, -0.027773724868893623, -0.03721372038125992, 0.026493435725569725, -0.08610367029905319, -0.05892741307616234, -0.016831526532769203, 0.04240315407514572, 0.00951681099832058, 0.049333784729242325, -0.02128693088889122, 0.03419223800301552, -0.01133482065051794, -0.028729673475027084, 0.07558823376893997, -0.004171606618911028, 0.008825455792248249, -0.031921859830617905, 0.0241206344217062, -0.025179006159305573, -0.007314715068787336, 0.059507809579372406, -0.048309553414583206, 0.015636589378118515, -0.044417474418878555, 0.004766940604895353, 0.0508359894156456, 0.0012546827783808112, 0.0314609557390213, 0.02050168626010418, -0.012982125394046307, -0.0006838874542154372, 0.01245293952524662, -0.027107974514365196, 0.07367633283138275, 0.04264214262366295, -0.01647304557263851, -0.04779743775725365, 0.05807388573884964, 0.046226948499679565, 0.025691121816635132, -0.0413789227604866, 0.0262885894626379, 0.04731946438550949, 0.06510693579912186, 0.02273792400956154, 0.04038883373141289, -0.0031943197827786207, 0.020621180534362793, -0.07476884871721268, 0.028319980949163437, -0.058210451155900955, -0.01913604512810707, -0.011949359439313412, 0.02895159088075161, -0.06111243739724159, 0.018316660076379776, -0.005778368562459946, -0.02145763486623764, -0.03178529441356659, 0.03446536511182785, -0.017958179116249084, -0.009329035878181458, -0.00891080778092146, -0.015312250703573227, 0.031495098024606705, 0.030044103041291237, -0.00795059185475111, 0.04370051249861717, 0.010080138221383095, 0.029224717989563942, -0.06425341218709946, -0.04472474381327629, -0.004263360518962145, -0.012504151090979576, -0.054762206971645355, -0.02439376339316368, 0.020826026797294617, 0.033116795122623444, -0.013033336959779263, 0.054762206971645355, -0.03670160472393036, 0.055888861417770386, 0.010438619181513786, 0.008454171940684319, 0.002392005641013384, -0.045714832842350006, 0.05913225933909416, -0.07633933424949646, 0.028285840526223183, 0.011522596701979637, -0.0013112288434058428, 0.022976910695433617, 0.06831619143486023, -0.00585518591105938, -0.039671871811151505, 0.006025891285389662, 0.051757797598838806, 0.04090094938874245, 0.06616530567407608, -0.031136615201830864, -0.014689176343381405, 0.017685052007436752, 0.00622646976262331, 0.0027782260440289974, -0.03496041148900986, 0.015610984526574612, -0.03997914120554924, -0.006486794911324978, -0.006145384628325701, -0.0014755325391888618, -0.032604679465293884, -0.026169097051024437, -0.007839633151888847, -0.0586201436817646, 0.046226948499679565, -0.005710086785256863, -0.01756555773317814, -0.003764048218727112, -0.005133956670761108, -0.02051875740289688, -0.06667742133140564, 0.06572147458791733, -0.07688558846712112, -0.04168619215488434, -0.012760208919644356, -0.031239038333296776, 0.005441226065158844, 0.0508359894156456, 0.02905401401221752, -0.018231308087706566, -0.029753904789686203, 0.017616769298911095, -0.02833705209195614, -0.0012109394883736968, 0.009294894523918629, 0.03383375704288483, 0.02833705209195614, -0.019067762419581413, 0.0008225853671319783, 0.010660535655915737, 0.07893405109643936, 0.0474218875169754, 0.03371426463127136, -0.04711461812257767, 0.04759259149432182, 0.015679266303777695, -0.013340606354176998, -0.0018148089293390512, -0.021167436614632607, -0.01257243286818266, 0.003064157208427787, 0.018572717905044556, -0.014108778908848763, 0.048548538237810135, -0.06514108180999756, 0.055786438286304474, -0.027364032343029976, -0.007984732277691364, 0.00018844245641957968, 0.04069610312581062, -0.013169900514185429, 0.045544128865003586, 0.012632180005311966, -0.06824791431427002, -0.03181943669915199, 0.027193328365683556, 0.07012566924095154, -0.05756177008152008, -0.06852103769779205, -0.04670492559671402, 0.03956944867968559, 0.04349566623568535, -0.009090048260986805, 0.009021766483783722, 0.02007492445409298, 0.019784724339842796, 0.10119400173425674, -0.006170990411192179, 0.007545166648924351, -0.044417474418878555, 0.03919389843940735, -0.027073834091424942, -0.018367871642112732, -0.0533965639770031, -0.047695014625787735, -0.01826544851064682, -0.022345302626490593, 0.01783868670463562, -0.01826544851064682, -0.02514486573636532, 0.026920199394226074, 0.016908343881368637, 0.060258910059928894, 0.009252218529582024, 0.03120489791035652, 0.01564512588083744, -0.06162455305457115, 0.05868842452764511, 0.0166010744869709, -0.06360473483800888, -0.05090427026152611, -0.03629191219806671, -0.007203756365925074, 0.03369719162583351, -0.03653089702129364, 0.0332021489739418, 0.009055906906723976, 0.0019897816237062216, 0.06107829511165619, -0.004766940604895353, 0.06920386105775833, -0.008330410346388817, 0.020484615117311478, -0.039603590965270996, 0.028132205829024315, -0.011684766039252281, 0.017130259424448013, -0.028849167749285698, 0.02103087306022644, -0.029958751052618027, 0.025042442604899406, 0.010583718307316303, 0.013297929428517818, 0.008927877992391586, -0.0029297268483787775, 0.04431505128741264, -0.05551330745220184, 0.09422923624515533, -0.05421594902873039, -0.01571340672671795, 0.03741856664419174, -0.025964250788092613, 0.04417848959565163, -0.03748684749007225, 0.010481295175850391, 0.020569968968629837, -0.027449384331703186, 0.04038883373141289, -0.011488455347716808, 0.04185689985752106, 0.0010717081604525447, -0.07709043473005295, 0.02169662155210972, 0.03861350193619728, -0.03840865567326546, -0.030368443578481674, 0.0019161651143804193, 0.05093841254711151, -0.01231637503951788, -0.055274322628974915, 0.04670492559671402, -0.0076689282432198524, -0.04421262815594673, 0.008680355735123158, -0.017428994178771973, -0.018316660076379776, 0.009294894523918629, -0.024752244353294373, 0.009021766483783722, 0.06268292665481567, 0.027005551382899284, -0.012862632051110268, -0.005564987193793058, 0.0010509034618735313, -0.0057997070252895355, -0.02808099426329136, 0.0032604681327939034, -0.006998910568654537, -0.04574897512793541, -0.061214860528707504, -0.03419223800301552, -0.01835080236196518, -0.04807056486606598, 0.05978093668818474, 0.0003592809662222862, 0.017719192430377007, -0.017633840441703796, -0.01478306483477354, 0.03659918159246445, 0.013690551742911339, -0.007400067523121834, 0.06483381241559982, -0.045441705733537674, -0.021611269563436508, -0.01647304557263851, 0.01756555773317814, 0.0482754111289978, 0.037111297249794006, -0.00961069855839014, 0.04759259149432182, 0.06759922951459885, -0.032177917659282684, 0.01715586520731449, 0.008424297906458378, 0.011616484262049198, -0.0003904879849869758, -0.02480345591902733, -0.058824989944696426, 0.009807010181248188, -0.03694058954715729, 0.04110579565167427, -0.017044907435774803, -0.009439993649721146, -0.023693872615695, 0.0517236553132534, 0.0015182087663561106, 0.027449384331703186, -0.04315425828099251, -0.019323820248246193, 0.009072978049516678, -0.0262885894626379, 0.06623359024524689, 0.00951681099832058, -0.009499740786850452, -0.0080786207690835, 0.04516857862472534, 0.015807295218110085, -0.0490947961807251, 0.027500595897436142, -0.018470294773578644, -0.03084641695022583, 0.004702926613390446, -0.032451044768095016, -0.021133296191692352, -0.019016550853848457, 0.03984257951378822, -0.019340891391038895, 0.02601546235382557, -0.020877238363027573, 0.028490686789155006, 0.010310590267181396, -0.026851916685700417, 0.003345820587128401, 0.021850256249308586, -0.04448575899004936, -0.043290819972753525, -0.0025456403382122517, -0.045441705733537674, 0.03844279423356056, 0.00658921804279089, -0.00040489123784936965, 0.016788849607110023, -0.014842811040580273, 0.0022682445123791695, -0.07763669639825821, 0.007946323603391647, -0.010652000084519386, 0.034089814871549606, -0.023676801472902298, -0.023284180089831352, -0.012273699045181274, -0.03987671807408333, 0.013588128611445427, 0.0170278362929821, 0.050972551107406616, -0.041754476726055145, -0.06657499819993973, -0.020109064877033234, -0.016046281903982162, 0.024359622970223427, -0.057937320321798325, -0.010703211650252342, -0.000014569949598808307, -0.10119400173425674, 0.03721372038125992, -0.0491289384663105, 0.006602020934224129, 0.06456068158149719, 0.0620683878660202, 0.02188439853489399, -0.005654607433825731, 0.03306558355689049, -0.03489213064312935, 0.017975250259041786, 0.03350941836833954, 0.07299351692199707, -0.020894307643175125, -0.05520603805780411, -0.06384371966123581, 0.015960929915308952, 0.014433118514716625, -0.05223577097058296, -0.019323820248246193, -0.00009375446097692475, 0.06066860258579254, -0.001564085716381669, -0.04694391041994095, -0.0430859737098217, -0.016276733949780464, -0.050016604363918304, -0.0387842059135437, -0.026783635839819908, -0.009747263044118881, 0.012760208919644356, 0.006141117308288813, 0.026493435725569725, 0.07142302393913269, 0.02661292999982834, 0.03895490989089012, -0.0344482958316803, 0.0044127278961241245, -0.04506615549325943, -0.024581538513302803, 0.03024894930422306, -0.014876952394843102, -0.008774244226515293, 0.02635687217116356, 0.018760494887828827, 0.049333784729242325, -0.05117739737033844, 0.021252788603305817, 0.03564323112368584, -0.029019871726632118, -0.04349566623568535, 0.0036552236415445805, 0.027807865291833878, 0.030283089727163315, -0.01244440395385027, 0.0017326570814475417, -0.08064110577106476, 0.02575940452516079, -0.014245343394577503, -0.0973702073097229, -0.0011757316533476114, -0.008266395889222622, -0.05059700086712837, 0.02516193687915802, -0.0030193470884114504, -0.03738442435860634, -0.07135474681854248, 0.0559912845492363, 0.02075774408876896, 0.004604770801961422, 0.04090094938874245, 0.007485419977456331, -0.05336242541670799, -0.0499824620783329, -0.0810507982969284, -0.016012141481041908, -0.05616198852658272, 0.018641000613570213, 0.05015316605567932, -0.015354926697909832, -0.020228557288646698, -0.042778704315423965, -0.010959269478917122, 0.03851107880473137, 0.04462232068181038, 0.011864006519317627, -0.03595050051808357, 0.013903932645916939, 0.03246811777353287, 0.10051117837429047, 0.007447011303156614, 0.003960358910262585, 0.020279768854379654, 0.023335391655564308, 0.02610081434249878, 0.008637679740786552, -0.005671678110957146, 0.0018862916622310877, -0.016404762864112854, 0.028985731303691864, 0.02101380191743374, -0.005078477784991264, -0.07558823376893997, -0.0331680066883564, -0.013682016171514988, 0.02514486573636532, -0.02456446923315525, -0.008458439260721207, -0.008765708655118942, -0.03775997459888458, 0.02430841140449047, -0.044690605252981186, 0.040115706622600555, -0.010558112524449825, 0.061214860528707504, 0.03156337887048721, 0.09081512689590454, -0.015303715132176876, 0.02620323747396469, 0.016933949664235115, -0.0026245913468301296, 0.0038686050102114677, -0.01964816078543663, 0.008927877992391586, -0.008484045043587685, 0.009900897741317749, -0.022959839552640915, 0.017616769298911095, 0.05650340020656586, 0.009363176301121712, 0.01732657104730606, 0.030982982367277145, 0.02775665372610092, 0.05619613081216812, -0.014663570560514927, 0.025059513747692108, 0.009550952352583408, 0.001472331816330552, -0.05281616747379303, -0.02092844992876053, -0.021935610100626945, 0.07975343614816666, 0.003825928783044219, 0.05585471913218498, -0.02575940452516079, 0.09620941430330276, -0.08507943898439407, 0.033304572105407715, 0.018470294773578644, -0.051382243633270264, -0.023540237918496132, -0.05093841254711151, -0.021560057997703552, 0.017599700018763542, -0.019511597231030464, -0.0043999250046908855, 0.04892409220337868, -0.07702215760946274, 0.05305515602231026, 0.02343781478703022, 0.003266869578510523, 0.0030470865312963724, -0.06421927362680435, 0.02956612966954708, 0.03265589103102684, -0.052338194102048874, 0.03393618017435074, 0.04578311741352081, -0.0035143918357789516, -0.014074638485908508, -0.08193846046924591, -0.03697473183274269, -0.024325480684638023, -0.0030556218698620796, -0.009055906906723976, -0.023915788158774376, -0.052338194102048874, -0.009798474609851837, 0.07135474681854248, -0.029531987383961678, 0.017172936350107193, 0.07784154266119003, 0.020109064877033234, 0.11020722985267639, -0.021850256249308586, -0.0063758366741240025, 0.021184507757425308, 0.0009495472768321633, -0.005005928222090006, -0.05582057684659958, -0.032963160425424576, -0.023471955209970474, -0.03591635823249817, -0.05404524505138397, 0.02214045636355877, 0.002145550213754177, -0.061897680163383484, 0.005052872002124786, -0.06596045941114426, -0.01730949990451336, 0.029088154435157776, -0.0018265448743477464, 0.038545217365026474, -0.001271753222681582, -0.0474218875169754, -0.00574849545955658, -0.0024474847596138716, -0.02335246279835701, -0.008996160700917244, -0.017428994178771973, 0.017889898270368576, -0.006102708633989096, -0.02507658302783966, -0.029531987383961678, -0.033645980060100555, 0.05230405181646347, 0.0025328374467790127, -0.02249893732368946, -0.020740672945976257, 0.041925180703401566, 0.015807295218110085, 0.005718621890991926, 0.047080475836992264, -0.025913039222359657, -0.031853578984737396, 0.05988335981965065, -0.023591449484229088, 0.0010615725768730044, -0.0732666403055191, -0.009286358952522278, -0.03646261617541313, -0.025537487119436264, 0.03909147530794144, -0.0076177166774868965, 0.0688965916633606, 0.0027184791397303343, -0.016916878521442413, -0.0026715353596955538, -0.03810138627886772, 0.008445636369287968, 0.009030301123857498, 0.04103751480579376, -0.00865474995225668, -0.01775333285331726, 0.013903932645916939, -0.04496373236179352, -0.010959269478917122, 0.023369532078504562, 0.0378965400159359, -0.053294140845537186, -0.0101228142157197, -0.0030684247612953186, 0.008121296763420105, 0.021662481129169464, 0.010336196050047874, 0.006119778845459223, -0.03936460241675377, 0.003830196335911751, -0.006533739157021046, -0.027876148000359535, 0.0973019227385521, 0.019750583916902542, 0.05978093668818474, 0.03608706593513489, -0.008927877992391586, -0.008347480557858944, -0.019767655059695244, 0.030129455029964447, 0.021645409986376762, 0.004222818184643984, -0.05564987286925316, -0.013690551742911339, 0.0019097636686637998, 0.008714497089385986, 0.045373424887657166, 0.01947745494544506, 0.044758886098861694, 0.035882219672203064, 0.029224717989563942, 0.025025371462106705, 0.0396377332508564, 0.0058381156995892525, -0.01124093309044838, 0.03745270520448685, 0.0185215063393116, 0.035711511969566345, 0.0525771789252758, -0.0001785735657904297, 0.03006117418408394, 0.009841150604188442, -0.02739817462861538, 0.008074352517724037, 0.0629219114780426, -0.018828775733709335, -0.011488455347716808, 0.008893737569451332, 0.10126228630542755, -0.0072507006116211414, -0.031068334355950356, 0.004583432804793119, 0.000024755578124313615, -0.029497846961021423, -0.008808384649455547, -0.010592253878712654, -0.010045996867120266, -0.008987625129520893, -0.001766798086464405, -0.008462706580758095, 0.05899569392204285, 0.013519846834242344, 0.005321732722222805, 0.014603824354708195, 0.007575040217489004, 0.009115654043853283, -0.017318036407232285, -0.020723603665828705, 0.02060410939157009, -0.02523021772503853, 0.059678513556718826, -0.04366637393832207, -0.002082602586597204, -0.04516857862472534, -0.0034994552843272686, -0.029002802446484566, -0.0370771549642086, -0.028473615646362305, 0.06336574256420135, -0.018726352602243423, 0.003251932794228196, 0.0013048273976892233, -0.007681731134653091, 0.0027504863683134317, -0.02316468581557274, -0.05800560489296913, -0.005151027347892523, 0.019784724339842796, -0.019067762419581413, -0.04127649962902069, 0.01956280879676342, -0.011625019833445549, 0.035984642803668976, -0.04865096136927605, 0.027381103485822678, 0.050870127975940704, 0.06739438325166702, 0.04943620786070824, 0.0034887860529124737, -0.012427333742380142, -0.04195932298898697, -0.008757173083722591, -0.025486275553703308, -0.01649865135550499, 0.03180236741900444, -0.062000103294849396, 0.060532040894031525, -0.08733274787664413, 0.07012566924095154, -0.023489026352763176, -0.00891934335231781, 0.0003987565287388861, 0.025486275553703308 ]
728,925
tables.table
read_sorted
Read table data following the order of the index of sortby column. The sortby column must have associated a full index. If you want to ensure a fully sorted order, the index must be a CSI one. You may want to use the checkCSI argument in order to explicitly check for the existence of a CSI index. If field is supplied only the named column will be selected. If the column is not nested, an *array* of the current flavor will be returned; if it is, a *structured array* will be used instead. If no field is specified, all the columns will be returned in a structured array of the current flavor. The meaning of the start, stop and step arguments is the same as in :meth:`Table.read`. .. versionchanged:: 3.0 The start, stop and step parameters now behave like in slice.
def read_sorted(self, sortby, checkCSI=False, field=None, start=None, stop=None, step=None): """Read table data following the order of the index of sortby column. The sortby column must have associated a full index. If you want to ensure a fully sorted order, the index must be a CSI one. You may want to use the checkCSI argument in order to explicitly check for the existence of a CSI index. If field is supplied only the named column will be selected. If the column is not nested, an *array* of the current flavor will be returned; if it is, a *structured array* will be used instead. If no field is specified, all the columns will be returned in a structured array of the current flavor. The meaning of the start, stop and step arguments is the same as in :meth:`Table.read`. .. versionchanged:: 3.0 The start, stop and step parameters now behave like in slice. """ self._g_check_open() index = self._check_sortby_csi(sortby, checkCSI) coords = index[start:stop:step] return self.read_coordinates(coords, field)
(self, sortby, checkCSI=False, field=None, start=None, stop=None, step=None)
[ 0.00647171912714839, 0.03457481786608696, -0.06239038333296776, 0.03346007317304611, 0.04197106882929802, 0.029124949127435684, 0.005582576617598534, 0.059488505125045776, -0.02018928714096546, -0.09519576281309128, -0.009147994220256805, -0.0067459819838404655, -0.01618150994181633, -0.027408594265580177, -0.003603018121793866, 0.0420418456196785, -0.03453942760825157, 0.06960968673229218, -0.030805915594100952, -0.013978559523820877, -0.020118510350584984, -0.01782708801329136, -0.024011272937059402, -0.024612881243228912, 0.05786062031984329, 0.01158097106963396, 0.02319733239710331, 0.005299466662108898, 0.013624671846628189, -0.0353887602686882, 0.0464654415845871, 0.008263275027275085, -0.02279036119580269, 0.040944792330265045, -0.06507992744445801, -0.02762092649936676, 0.09130299836397171, -0.024152828380465508, 0.05917000398039818, 0.09816841781139374, -0.021197866648435593, -0.0254445169121027, 0.040626294910907745, -0.07941237837076187, -0.05754212290048599, 0.0035388758406043053, 0.012624939903616905, -0.02142789401113987, 0.021056311205029488, -0.013155771419405937, 0.01551797054708004, -0.0492965430021286, 0.016101885586977005, -0.015420651994645596, 0.02758553810417652, -0.0584622286260128, 0.011510194279253483, 0.021003227680921555, 0.04766865819692612, 0.00602051243185997, 0.0246482715010643, 0.014350141398608685, -0.008683516643941402, 0.023869717493653297, 0.003167293965816498, -0.04816409945487976, 0.03107132948935032, -0.02882414497435093, -0.049190375953912735, -0.0004075236793141812, -0.027727093547582626, 0.06738019734621048, 0.06178877502679825, 0.03441556915640831, -0.04473138973116875, 0.0021056311670690775, -0.008351746946573257, -0.03261074051260948, 0.011837540194392204, -0.03369009867310524, 0.0467839390039444, 0.04126329347491264, 0.05085364729166031, -0.0074537573382258415, 0.01763244904577732, -0.03984774276614189, 0.07367939502000809, 0.0172254778444767, 0.015588748268783092, 0.02110939472913742, -0.010006171651184559, -0.03790136054158211, -0.009395715780556202, 0.008546384982764721, -0.0451914444565773, -0.028647201135754585, 0.025586072355508804, 0.02468365989625454, -0.028930310159921646, 0.0103512117639184, 0.012916897423565388, -0.0014553627697750926, 0.04940270632505417, 0.0018125680508092046, 0.0031319051049649715, -0.05488796532154083, -0.00628150487318635, 0.02388741262257099, -0.05315391719341278, -0.036114227026700974, 0.023020388558506966, 0.01981770433485508, 0.017013145610690117, -0.015756845474243164, 0.035512618720531464, -0.03184988349676132, 0.031584467738866806, -0.008971050381660461, -0.10567083209753036, -0.05042898282408714, -0.040343184024095535, -0.021357115358114243, 0.0016831778921186924, 0.0005051192129030824, -0.059276171028614044, -0.03376087546348572, 0.019676150754094124, -0.03597267344594002, -0.020684730261564255, 0.006153220310807228, 0.012739953584969044, -0.03995390981435776, -0.028930310159921646, -0.021339422091841698, 0.0009643436642363667, 0.005078286863863468, 0.08960434049367905, -0.03227454796433449, -0.00006441860023187473, -0.020967839285731316, 0.053613968193531036, -0.030186612159013748, 0.0023467170540243387, -0.07969548553228378, 0.05219842121005058, -0.009475340135395527, 0.03144291415810585, 0.012200274504721165, -0.022524945437908173, -0.019163012504577637, -0.041227903217077255, -0.007073328364640474, -0.014323600567877293, -0.03344237804412842, -0.0011545582674443722, -0.023621996864676476, -0.050995200872421265, -0.04586383327841759, -0.06299199163913727, 0.023179637268185616, 0.043280452489852905, 0.0016665894072502851, -0.006573461927473545, 0.02910725399851799, -0.03867991268634796, 0.07290084660053253, 0.01059008575975895, -0.035919591784477234, -0.0369812548160553, -0.021357115358114243, -0.02231261320412159, 0.04575766623020172, -0.050676703453063965, -0.007506840396672487, -0.005268501583486795, -0.002923996187746525, -0.03584881126880646, -0.01483673695474863, 0.04933192953467369, -0.029089560732245445, 0.008480031043291092, 0.01889759674668312, 0.004447924438863993, 0.008400406688451767, -0.027762481942772865, 0.02123325504362583, 0.014544780366122723, -0.057471346110105515, 0.0496150404214859, -0.027284733951091766, -0.004220109432935715, 0.0464654415845871, -0.003474733792245388, 0.020967839285731316, 0.02556837908923626, 0.00928954966366291, -0.02556837908923626, 0.0802617073059082, 0.01672118902206421, 0.07222845405340195, 0.04331584274768829, -0.023692773655056953, 0.018915291875600815, 0.019003763794898987, -0.033672403544187546, 0.03928152099251747, 0.013881240971386433, -0.01949920691549778, -0.03289385139942169, 0.010731641203165054, 0.01075818296521902, -0.07757215946912766, -0.05637429282069206, -0.036078840494155884, 0.00799785926938057, 0.012987674213945866, -0.04197106882929802, 0.0014420918887481093, 0.08953355997800827, 0.03673353046178818, 0.06111638620495796, 0.04943809658288956, -0.03131905198097229, -0.06812336295843124, 0.061859551817178726, -0.0010063678491860628, -0.0021675615571439266, -0.02585148811340332, -0.04041396453976631, -0.07208690047264099, -0.0035101224202662706, -0.036804310977458954, 0.017809392884373665, 0.029531918466091156, 0.062248826026916504, -0.007228154223412275, 0.010634321719408035, -0.0006574568105861545, -0.04282039776444435, 0.020755507051944733, -0.06596464663743973, 0.05085364729166031, 0.01570376195013523, -0.0660354271531105, -0.08854267746210098, 0.00034061679616570473, 0.010749335400760174, 0.012916897423565388, -0.009829227812588215, 0.021799474954605103, 0.0012386065209284425, -0.017535129562020302, 0.01031582336872816, -0.06023166701197624, -0.023657385259866714, 0.019676150754094124, 0.005016356706619263, -0.025019852444529533, -0.012271052226424217, 0.010121185332536697, -0.023869717493653297, -0.036521200090646744, 0.009121452458202839, -0.008971050381660461, 0.05849761888384819, -0.026346931234002113, 0.04197106882929802, 0.03613192215561867, 0.027355510741472244, 0.0445544458925724, -0.04274962097406387, 0.0044280183501541615, -0.053012359887361526, -0.019800011068582535, 0.02854103408753872, -0.020808590576052666, 0.049225762486457825, -0.02641770802438259, 0.020330842584371567, 0.04827026650309563, 0.01425282284617424, 0.01553566474467516, -0.012032178230583668, 0.017402421683073044, -0.013226548209786415, -0.01946381665766239, -0.014721724204719067, 0.002342293504625559, -0.08741023391485214, 0.0073874033987522125, 0.014190892688930035, 0.0006502684555016458, -0.05042898282408714, -0.014058184809982777, 0.010421989485621452, 0.006661933846771717, -0.02604612708091736, -0.04848260059952736, -0.010970515199005604, -0.014341294765472412, -0.06444293260574341, -0.030239693820476532, 0.015429498627781868, 0.045333001762628555, -0.0037711146287620068, 0.030009668320417404, -0.02335658110678196, -0.029761945828795433, -0.04412978142499924, -0.09951318800449371, 0.033955514430999756, 0.021640226244926453, -0.012315288186073303, -0.0331769622862339, -0.06861880421638489, -0.016110733151435852, -0.06412442773580551, 0.032186076045036316, 0.012209122069180012, 0.04441289231181145, -0.0316021628677845, 0.03229224309325218, 0.008042095229029655, -0.05414479970932007, 0.047704048454761505, 0.04788099229335785, 0.006131102330982685, 0.004191356245428324, 0.005259654484689236, 0.0467839390039444, 0.031655244529247284, 0.040661685168743134, 0.03457481786608696, 0.03229224309325218, -0.010625475086271763, -0.033672403544187546, 0.012439148500561714, -0.029567308723926544, -0.008466760627925396, 0.030575888231396675, -0.013642366975545883, -0.02689545601606369, 0.05786062031984329, -0.04855337738990784, 0.01732279732823372, -0.031124413013458252, 0.015164082869887352, -0.006445177830755711, 0.010545849800109863, 0.06851264089345932, 0.05853300914168358, -0.01515523623675108, -0.042997341603040695, 0.033990904688835144, -0.014827890321612358, 0.009793839417397976, 0.02275497280061245, -0.0025878029409796, 0.008838342502713203, 0.0037755381781607866, 0.07091907411813736, -0.026824679225683212, -0.018632180988788605, -0.0003627347759902477, 0.007705902215093374, -0.04512066766619682, -0.05368474870920181, 0.012386065907776356, -0.00906836986541748, 0.010607780888676643, -0.03188527002930641, 0.004224533215165138, 0.09675286710262299, 0.0537201352417469, -0.005489681381732225, -0.0020879367366433144, -0.000024848161046975292, 0.006763676647096872, 0.0006292563630267978, 0.008838342502713203, 0.031124413013458252, 0.05517107620835304, 0.02914264239370823, 0.08196036517620087, -0.04257267713546753, 0.013952018693089485, -0.05343702435493469, -0.013766227290034294, -0.018083656206727028, -0.00669289892539382, -0.05913461744785309, 0.06108099967241287, -0.017420116811990738, -0.04901343211531639, 0.030363555997610092, 0.0009234254248440266, 0.03878607973456383, -0.005374667700380087, 0.054498687386512756, -0.08012015372514725, -0.01055469736456871, -0.04600538685917854, -0.0244890209287405, 0.043882060796022415, -0.01748204603791237, 0.00236219959333539, 0.037122808396816254, -0.07813838124275208, -0.03846758231520653, -0.009537270292639732, 0.025833794847130775, 0.046217720955610275, 0.008179226890206337, 0.006498260889202356, 0.037087418138980865, 0.037087418138980865, 0.011704832315444946, 0.055312629789114, -0.0006928455550223589, 0.05828528478741646, -0.01592494174838066, -0.015986870974302292, -0.0581437312066555, 0.025356044992804527, 0.08358824998140335, -0.033637017011642456, -0.007281237281858921, -0.005476410500705242, -0.019322263076901436, 0.015066764317452908, 0.05442791059613228, 0.03775980696082115, -0.04823487997055054, 0.021250950172543526, 0.002901878207921982, -0.018083656206727028, 0.017092769965529442, 0.0032668248750269413, 0.05464024469256401, 0.02041931450366974, 0.029779640957713127, 0.05106597766280174, 0.04264345392584801, 0.023621996864676476, -0.015933789312839508, 0.003945846576243639, 0.03584881126880646, 0.0322391577064991, -0.03715819865465164, -0.06150566413998604, 0.07084829360246658, 0.02790403738617897, 0.02114478312432766, -0.030823608860373497, 0.020118510350584984, -0.07587350159883499, 0.006706169806420803, 0.027886342257261276, -0.041511014103889465, 0.016154969111084938, 0.026683123782277107, 0.026966234669089317, 0.005763944238424301, -0.07052979618310928, -0.016977757215499878, -0.04289117455482483, -0.08592391014099121, -0.00042632396798580885, 0.006546920631080866, -0.017535129562020302, -0.024577492848038673, -0.0074537573382258415, -0.03935230150818825, -0.0024197064340114594, 0.007073328364640474, 0.013775074854493141, 0.03280537948012352, -0.002696181181818247, -0.07665205001831055, 0.0017196724656969309, -0.045333001762628555, -0.06649547815322876, -0.04494372382760048, -0.005162335000932217, 0.017075076699256897, 0.025904571637511253, -0.0005189429502934217, -0.014774806797504425, -0.027160871773958206, -0.09109066426753998, 0.02597534842789173, 0.05311852693557739, 0.02399357780814171, 0.005476410500705242, 0.040590908378362656, 0.061293330043554306, 0.026594651862978935, -0.0043174284510314465, -0.012403760105371475, 0.026559263467788696, 0.028080979362130165, 0.007104293443262577, -0.015509123913943768, 0.014128961600363255, -0.0289126168936491, -0.0726885125041008, 0.057506732642650604, -0.011634054593741894, 0.03100055269896984, -0.05991316959261894, 0.02041931450366974, -0.026081515476107597, 0.010174267925322056, 0.022648805752396584, 0.005449868738651276, -0.04147562384605408, -0.031248273327946663, -0.005290619563311338, -0.045085277408361435, 0.0492965430021286, -0.009209924377501011, -0.028611810877919197, 0.02926650457084179, 0.00455187913030386, 0.036114227026700974, 0.023250414058566093, -0.003054492175579071, -0.019888482987880707, 0.01969384402036667, -0.0401308536529541, -0.03453942760825157, -0.004728822968900204, 0.025391435250639915, -0.03200913220643997, 0.03236301988363266, 0.02424130029976368, -0.002430765423923731, 0.024913687258958817, -0.036114227026700974, -0.017305104061961174, 0.012713411822915077, 0.02540912851691246, 0.015031374990940094, -0.03469868004322052, 0.03878607973456383, -0.02528526820242405, -0.022365694865584373, -0.053330861032009125, -0.004613809287548065, -0.012872661463916302, -0.003589747240766883, -0.011492499150335789, 0.03441556915640831, -0.03337160125374794, 0.02079089544713497, 0.02355121821165085, -0.05619734898209572, -0.00844021886587143, -0.02294960990548134, -0.006976009346544743, 0.025904571637511253, 0.045085277408361435, -0.0005590317887254059, 0.040060076862573624, -0.03744130581617355, 0.018702959641814232, 0.06366437673568726, -0.023781245574355125, -0.00601166533306241, -0.03584881126880646, 0.02983272448182106, 0.035353370010852814, -0.014783654361963272, 0.028859533369541168, 0.023462746292352676, -0.009351479820907116, 0.03843219205737114, 0.029284197837114334, -0.0663539245724678, -0.07707671821117401, -0.008767564781010151, -0.03715819865465164, 0.007471451535820961, 0.005171182565391064, -0.021127089858055115, 0.010218503884971142, 0.018596792593598366, 0.08380058407783508, 0.07863382250070572, -0.03807830438017845, 0.01684504933655262, -0.09378021210432053, 0.00817037932574749, -0.002410859102383256, -0.02234800159931183, 0.011280166916549206, -0.03308849036693573, -0.012819577939808369, -0.024949075654149055, -0.03701664134860039, -0.03457481786608696, 0.030080445110797882, 0.011784456670284271, -0.029744252562522888, 0.04175873473286629, -0.009183382615447044, 0.03301771357655525, -0.02847025729715824, 0.017862476408481598, 0.0037335141096264124, 0.03151369094848633, 0.009731908328831196, -0.003587535349652171, 0.019729232415556908, 0.02082628384232521, 0.018472932279109955, 0.06065633147954941, -0.08825956284999847, 0.0625673234462738, -0.053012359887361526, -0.013978559523820877, -0.022135669365525246, 0.07601505517959595, 0.03140752390027046, -0.0066132741048932076, -0.02862950600683689, 0.016915826126933098, 0.015526818111538887, 0.04788099229335785, -0.0376182496547699, -0.03754747286438942, -0.04727938026189804, 0.06968046724796295, 0.06851264089345932, 0.007192765362560749, -0.06175338476896286, -0.018057113513350487, -0.05003970488905907, -0.009032980538904667, -0.01634075865149498, 0.019163012504577637, 0.039139967411756516, 0.04841182380914688, 0.0002721893251873553, 0.024258993566036224, -0.07813838124275208, 0.03333621099591255, 0.032823074609041214, 0.03147830069065094, 0.015747997909784317, -0.013925476931035519, 0.06051477789878845, -0.027231650426983833, -0.005856839474290609, -0.011103223077952862, -0.04837643355131149, 0.05329547077417374, 0.007546653039753437, 0.02730242721736431, -0.006918502505868673, 0.011669442988932133, 0.02408204972743988, 0.019039152190089226, -0.04009546339511871, 0.0010898631298914552, -0.006852148566395044, 0.01189947035163641, 0.11041292548179626, -0.01902145706117153, 0.057506732642650604, -0.008586198091506958, 0.05410941317677498, 0.023338885977864265, -0.04129868000745773, 0.08790567517280579, -0.005224265623837709, 0.028611810877919197, -0.06929118931293488, 0.0366627536714077, 0.00015938765136525035, -0.00847118441015482, 0.06026705726981163, -0.006157644093036652, 0.028753366321325302, -0.019569983705878258, 0.05124292150139809, -0.02493138052523136, -0.024011272937059402, -0.0021686675027012825, -0.041829511523246765, 0.0042444393038749695, 0.04759788140654564, 0.01292574405670166, 0.0023798940237611532, -0.031619857996702194, 0.010961667634546757, 0.023268109187483788, 0.034114763140678406, 0.02951422519981861, 0.04996892809867859, 0.01744665764272213, -0.031089024618268013, 0.06868958473205566, 0.06171799451112747, -0.023852024227380753, -0.023816633969545364, 0.007250272203236818, -0.027284733951091766, -0.020472396165132523, -0.036556586623191833, -0.01748204603791237, 0.007670513354241848, -0.07261773198843002, -0.004697857890278101, 0.06122255325317383, 0.04363434016704559, -0.007590888999402523, 0.019109928980469704, -0.004795176908373833, 0.033070795238018036, 0.0046049621887505054, -0.03779519349336624, 0.04600538685917854, 0.004390418063849211, -0.012439148500561714, 0.0005631789099425077, -0.004587267991155386, 0.006321317050606012, -0.05676357075572014, -0.02190564200282097, 0.034999482333660126, 0.009838075377047062, -0.021003227680921555, 0.017039688304066658, 0.016411537304520607, 0.016384994611144066, -0.006480566691607237, -0.02348044142127037, 0.03549492359161377, 0.03344237804412842, -0.04363434016704559, 0.02709009498357773, -0.02158714272081852, -0.06281504780054092, -0.02452440932393074, 0.03461020812392235, -0.012209122069180012, 0.02455979958176613, -0.03991851955652237, 0.047704048454761505, -0.02316194213926792, -0.0492965430021286, -0.004932308103889227, 0.014403224922716618, 0.033265434205532074, 0.033796265721321106, -0.04880109801888466, 0.01946381665766239, -0.009935393929481506, 0.008081907406449318, -0.07835071533918381, 0.014597862958908081, -0.06649547815322876, 0.014084725640714169, -0.009077216498553753, -0.057719066739082336, -0.024418244138360023, -0.008307510986924171 ]
728,926
tables.table
read_where
Read table data fulfilling the given *condition*. This method is similar to :meth:`Table.read`, having their common arguments and return values the same meanings. However, only the rows fulfilling the *condition* are included in the result. The meaning of the other arguments is the same as in the :meth:`Table.where` method.
def read_where(self, condition, condvars=None, field=None, start=None, stop=None, step=None): """Read table data fulfilling the given *condition*. This method is similar to :meth:`Table.read`, having their common arguments and return values the same meanings. However, only the rows fulfilling the *condition* are included in the result. The meaning of the other arguments is the same as in the :meth:`Table.where` method. """ self._g_check_open() coords = [p.nrow for p in self._where(condition, condvars, start, stop, step)] self._where_condition = None # reset the conditions if len(coords) > 1: cstart, cstop = coords[0], coords[-1] + 1 if cstop - cstart == len(coords): # Chances for monotonically increasing row values. Refine. inc_seq = np.all(np.arange(cstart, cstop) == np.array(coords)) if inc_seq: return self.read(cstart, cstop, field=field) return self.read_coordinates(coords, field)
(self, condition, condvars=None, field=None, start=None, stop=None, step=None)
[ 0.05245428904891014, 0.0005168739007785916, -0.010924986563622952, 0.0028321549762040377, 0.009126580320298672, 0.01890794187784195, -0.009866572916507721, 0.015490518882870674, -0.050409216433763504, -0.0788608267903328, -0.0071398108266294, -0.0002257819432998076, -0.016019726172089577, 0.005664309952408075, -0.028361912816762924, 0.028487486764788628, -0.015625063329935074, 0.027608465403318405, -0.045709140598773956, -0.022244637832045555, -0.003917478024959564, -0.026514172554016113, 0.024953460320830345, 0.02043277584016323, 0.04384346306324005, -0.004892922937870026, -0.02719586342573166, -0.00896961148828268, 0.028648938983678818, -0.024289708584547043, -0.017374137416481972, -0.002230069600045681, -0.006238365080207586, -0.02220875769853592, -0.055719226598739624, -0.0171678364276886, 0.047216035425662994, -0.035681113600730896, 0.03639868274331093, 0.06659039855003357, -0.04775421321392059, -0.022908387705683708, 0.028146641328930855, 0.016835961490869522, -0.05396118387579918, -0.054427605122327805, -0.003926447592675686, -0.11588738113641739, 0.015643002465367317, 0.02102476917207241, 0.0025787632912397385, 0.02579660341143608, 0.03591432422399521, -0.04262359440326691, 0.04779009148478508, -0.06989121437072754, -0.06687742471694946, 0.024684371426701546, 0.020396897569298744, 0.01138243731111288, 0.036811284720897675, 0.02113240584731102, -0.023500382900238037, 0.04793360456824303, 0.010889108292758465, -0.014557680115103722, 0.038282301276922226, 0.013642779551446438, -0.03553760051727295, -0.006803450640290976, -0.055719226598739624, 0.03268526494503021, 0.04728779196739197, -0.0031371216755360365, -0.044130489230155945, -0.03311580792069435, -0.03734946250915527, 0.021473249420523643, 0.0560421347618103, -0.027213802561163902, 0.06497586518526077, 0.01715886779129505, -0.0022401604801416397, -0.016100453212857246, -0.013077693991363049, 0.017302380874753, 0.013167389668524265, 0.07279736548662186, 0.05313597992062569, -0.004731470253318548, -0.06903012841939926, 0.03011995553970337, -0.027769917622208595, -0.019481996074318886, 0.06415066123008728, -0.0007181295077316463, 0.001355532556772232, 0.058804772794246674, -0.011884735897183418, 0.05905592441558838, 0.02075568214058876, -0.04463278874754906, 0.02692677453160286, -0.012028248980641365, 0.02421795204281807, -0.046677857637405396, -0.03564523532986641, 0.01681802235543728, -0.0004277383559383452, -0.05812308192253113, -0.010332992300391197, 0.03358222544193268, -0.06354072690010071, 0.004825651179999113, 0.0038614177610725164, 0.0003032849926967174, 0.013831141404807568, -0.0045722597278654575, -0.07878907024860382, -0.03273908421397209, 0.020988890901207924, -0.011194075457751751, -0.027859613299369812, 0.025563392788171768, 0.0015360460383817554, 0.020899195224046707, -0.029814988374710083, -0.05083975940942764, 0.017652194947004318, -0.0745554119348526, 0.02633477933704853, -0.0785738006234169, 0.04441751539707184, -0.005475948099046946, -0.03526851162314415, 0.042121294885873795, 0.002910638926550746, 0.027769917622208595, -0.03932277858257294, 0.025975994765758514, 0.03792351856827736, 0.006628543138504028, -0.04735954850912094, -0.06242849677801132, 0.0016246208688244224, -0.04517096281051636, 0.03803115338087082, -0.009126580320298672, 0.008386586792767048, 0.01715886779129505, -0.028523365035653114, -0.014781920239329338, -0.03560935705900192, -0.032649386674165726, 0.003619238268584013, 0.0032223330345004797, -0.023859167471528053, -0.05640091747045517, -0.0006233879830688238, -0.011848856694996357, -0.00687969196587801, -0.024092376232147217, -0.03033522702753544, 0.0024733704049140215, -0.022388150915503502, 0.1094292625784874, -0.09120301157236099, -0.011409346014261246, -0.002711065113544464, -0.0122704291716218, 0.0237335916608572, 0.03078370727598667, 0.08316624164581299, 0.01378629356622696, -0.06020403280854225, 0.006202486343681812, -0.007265385240316391, 0.0008577191038057208, 0.034748274832963943, -0.039035748690366745, 0.017607348039746284, 0.014512831345200539, -0.029348568990826607, 0.03724182769656181, 0.036990679800510406, -0.03125012665987015, 0.015042038634419441, -0.03094515949487686, 0.052023746073246, 0.04122433438897133, -0.050409216433763504, -0.0445251539349556, 0.05033745989203453, 0.011319650337100029, -0.02698059193789959, -0.00795156043022871, 0.03695480152964592, 0.036165475845336914, -0.02287250943481922, 0.07233095169067383, -0.00827446673065424, -0.05371003597974777, 0.009678211063146591, 0.05076800286769867, -0.05277719348669052, 0.04255183786153793, 0.028056945651769638, 0.03950216993689537, -0.07007060945034027, 0.012925210408866405, -0.06522701680660248, -0.050193946808576584, -0.04696488752961159, -0.01105056144297123, 0.028523365035653114, 0.07627757638692856, -0.025545453652739525, 0.001265836413949728, 0.0027917916886508465, 0.05313597992062569, 0.03577081114053726, 0.008077135309576988, -0.0034555429592728615, -0.040757916867733, 0.036542199552059174, -0.05568334832787514, -0.004040810279548168, -0.022298455238342285, -0.004222444724291563, -0.015947969630360603, 0.03928690031170845, 0.057405512779951096, 0.07003472745418549, -0.021598825231194496, 0.04596028849482536, 0.027052348479628563, -0.02107858657836914, 0.05435584485530853, 0.06849195808172226, 0.02660386823117733, -0.034281857311725616, 0.00638187862932682, 0.01745486445724964, -0.06458120048046112, 0.02687295712530613, -0.07469892501831055, 0.021706460043787956, 0.005179950501769781, 0.014019503258168697, -0.028146641328930855, -0.0686713457107544, -0.00172328669577837, 0.0156878512352705, -0.03526851162314415, 0.04599616676568985, 0.046785496175289154, 0.08302272856235504, -0.045386236160993576, 0.003881599521264434, 0.009229730814695358, 0.0003321559343021363, -0.033994827419519424, 0.003917478024959564, -0.05557571351528168, -0.023428626358509064, 0.00284560932777822, -0.027554646134376526, -0.022908387705683708, 0.0005112678627483547, 0.045206841081380844, -0.09349922835826874, 0.0949343666434288, -0.036111656576395035, -0.008413495495915413, 0.02703440934419632, -0.018620913848280907, 0.04265947267413139, -0.02995850332081318, -0.006166608072817326, -0.040399130433797836, -0.02942032553255558, 0.02802106738090515, -0.02193967066705227, 0.011696374043822289, -0.02995850332081318, -0.06077808886766434, -0.02215494029223919, 0.02242402918636799, 0.004578986670821905, -0.01484470721334219, -0.02156294696033001, -0.029994381591677666, -0.01823521964251995, -0.029348568990826607, 0.026047753170132637, -0.03424597904086113, -0.0020293747074902058, -0.03033522702753544, -0.006834844127297401, -0.05173671990633011, -0.017284441739320755, -0.0686354711651802, 0.03180624172091484, 0.0753447413444519, -0.05945058539509773, 0.02898978441953659, 0.02904360182583332, -0.011884735897183418, -0.02459467574954033, -0.11588738113641739, 0.03770824894309044, -0.0560421347618103, 0.0084493737667799, -0.05514517426490784, -0.023482443764805794, -0.022226696833968163, -0.06178268417716026, 0.0378158837556839, -0.045709140598773956, 0.035250574350357056, -0.02622714452445507, 0.030765768140554428, 0.05593449994921684, -0.05238253250718117, -0.021706460043787956, 0.006798965856432915, 0.029617657884955406, -0.030191712081432343, 0.003937659319490194, 0.036703649908304214, 0.04524271935224533, 0.09486261010169983, 0.025509575381875038, 0.028864210471510887, 0.055288687348365784, -0.04373582825064659, 0.004220202099531889, 0.01807376742362976, -0.024289708584547043, 0.02936650812625885, 0.0378158837556839, -0.05704673007130623, 0.055181052535772324, -0.027877552434802055, 0.05173671990633011, -0.04481218010187149, 0.017203714698553085, -0.029707353562116623, 0.04463278874754906, 0.0290974210947752, 0.019858719781041145, 0.06067045405507088, -0.04255183786153793, 0.01636057160794735, -0.03713419288396835, -0.01024329662322998, 0.0037963881622999907, -0.007754229474812746, -0.0056508551351726055, 0.04427400231361389, 0.06590870767831802, 0.0635766088962555, -0.01094292663037777, 0.0343356728553772, -0.034479185938835144, 0.010709716007113457, -0.017338259145617485, 0.027213802561163902, -0.06537052989006042, 0.04535035789012909, -0.03510706126689911, 0.005852671805769205, 0.05281307175755501, 0.027070287615060806, 0.014638406224548817, -0.04542211443185806, 0.006180062424391508, -0.00670478492975235, 0.020845377817749977, 0.03304404765367508, 0.017849527299404144, 0.006435696501284838, -0.06501174718141556, -0.009848633781075478, -0.053674157708883286, 0.007875318638980389, -0.05335124954581261, 0.013337812386453152, -0.03803115338087082, 0.032541751861572266, -0.006754117552191019, 0.03720594942569733, 0.014216834679245949, -0.04814887419342995, 0.025832481682300568, 0.01750868186354637, 0.0070142364129424095, 0.024612614884972572, 0.0029196084942668676, -0.05062448978424072, -0.052203141152858734, -0.0017445894191041589, -0.021006830036640167, 0.027823735028505325, -0.022119062021374702, -0.04000446945428848, 0.03121424838900566, -0.07972190529108047, -0.011660494841635227, -0.038282301276922226, 0.014423135668039322, 0.05665206536650658, -0.025096973404288292, 0.055826861411333084, 0.024038558825850487, -0.02464849315583706, 0.007211567834019661, -0.007543443236500025, 0.022190818563103676, 0.0654422864317894, -0.011543890461325645, -0.03564523532986641, 0.024576736614108086, -0.00863773562014103, 0.015813425183296204, 0.006906601134687662, -0.02421795204281807, -0.0005502296262420714, 0.0013409568928182125, 0.008314830251038074, -0.04248008131980896, -0.0033568772487342358, -0.04649846628308296, -0.0154187623411417, -0.03738534078001976, 0.004101355094462633, 0.017553530633449554, 0.015051008202135563, 0.0941450446844101, -0.027106165885925293, 0.031070735305547714, -0.0098576033487916, 0.03078370727598667, 0.03290053457021713, -0.10397573560476303, -0.02861306071281433, 0.03526851162314415, -0.017903344705700874, -0.048579417169094086, -0.018002010881900787, 0.04161899909377098, 0.024774067103862762, 0.025886299088597298, 0.009086216799914837, 0.016593782231211662, 0.022782813757658005, -0.07419662922620773, -0.011256862431764603, 0.003074334468692541, 0.00039774621836841106, 0.012665092013776302, 0.04366406798362732, -0.014234773814678192, -0.0804394781589508, 0.005287586245685816, -0.04151136428117752, -0.05991700664162636, -0.04481218010187149, 0.0033658468164503574, -0.030299348756670952, -0.040614400058984756, 0.009373243898153305, -0.08424258977174759, 0.03408452495932579, 0.048902321606874466, 0.041044943034648895, -0.020038112998008728, 0.02156294696033001, 0.018943820148706436, -0.007669018115848303, 0.021383553743362427, -0.02324923314154148, -0.0278954915702343, -0.02346450462937355, 0.00277609471231699, -0.011543890461325645, 0.005081284791231155, 0.002711065113544464, 0.020612167194485664, -0.01633366197347641, 0.0474671833217144, 0.05213138461112976, 0.08130055665969849, -0.03856933116912842, 0.018872063606977463, 0.03130394592881203, 0.027823735028505325, 0.026406535878777504, 0.04707252234220505, 0.010036995634436607, -0.002883730223402381, 0.005220314022153616, -0.00822064932435751, 0.03180624172091484, -0.05948646366596222, -0.00746271712705493, 0.07907609641551971, 0.005955822300165892, 0.024146195501089096, -0.007574837189167738, 0.07907609641551971, 0.014997190795838833, -0.01037784107029438, 0.018567096441984177, -0.005372797604650259, -0.048077117651700974, -0.010880138725042343, 0.061316266655921936, -0.07850204408168793, 0.01976902410387993, -0.018979698419570923, 0.020899195224046707, 0.0027133075054734945, 0.03867696598172188, -0.041906025260686874, 0.032487932592630386, 0.009462940506637096, -0.04771833494305611, -0.0021504643373191357, -0.045709140598773956, -0.01446798350661993, -0.024451160803437233, 0.04750306159257889, -0.0383540578186512, 0.024576736614108086, 0.03663189336657524, -0.024558797478675842, 0.00796501524746418, -0.010637959465384483, 0.017140928655862808, 0.013813202269375324, 0.039681561291217804, 0.02064804546535015, 0.03347459062933922, -0.0009362032287754118, -0.027447011321783066, 0.006175577640533447, -0.02459467574954033, 0.005458008497953415, 0.01422580424696207, 0.022190818563103676, -0.049978677183389664, 0.07333554327487946, -0.008444889448583126, 0.02032513916492462, 0.014073320664465427, -0.01245879102498293, 0.002625853754580021, -0.08223339915275574, -0.009337365627288818, 0.0017109534237533808, -0.016728324815630913, 0.016701417043805122, 0.03842581808567047, -0.024451160803437233, -0.013427508994936943, 0.062069714069366455, -0.04097318649291992, -0.02839779108762741, 0.011373467743396759, 0.008234103210270405, 0.09105949848890305, 0.009884512051939964, 0.06099335849285126, 0.046462588012218475, -0.007337142247706652, -0.00439735222607851, -0.020073991268873215, 0.0024778551887720823, 0.011355528607964516, 0.009041368961334229, -0.019786963239312172, -0.028541304171085358, 0.013849080540239811, -0.003910750616341829, 0.01912321150302887, 0.023105720058083534, 0.04843590408563614, 0.01508688647300005, 0.017392076551914215, 0.043592311441898346, -0.00037980699562467635, -0.04240832477807999, 0.014871615916490555, 0.0282901544123888, 0.0011251256801187992, -0.02054041065275669, -0.07075230032205582, -0.03300816938281059, 0.0394304133951664, -0.059414707124233246, -0.006597149185836315, -0.023697713389992714, -0.023769471794366837, -0.05037333816289902, -0.024397343397140503, -0.004220202099531889, -0.00038036759360693395, -0.017652194947004318, -0.011741221882402897, 0.011247892864048481, -0.05955822020769119, 0.009337365627288818, 0.030478740110993385, -0.03810290992259979, -0.008736401796340942, -0.011364498175680637, -0.027124105021357536, 0.023769471794366837, -0.031555093824863434, -0.008121983148157597, -0.05754902958869934, 0.0686713457107544, 0.03315168619155884, 0.026747381314635277, 0.0058975196443498135, 0.06110099330544472, -0.01665656827390194, -0.01433343905955553, 0.0402197390794754, -0.03162685036659241, 0.06587282568216324, 0.06350485235452652, 0.011427285149693489, -0.05205962434411049, -0.001366744632832706, -0.007301263976842165, -0.04258771613240242, -0.0021403736900538206, -0.017571469768881798, -0.019320543855428696, 0.0748424381017685, 0.047108400613069534, 0.0012613516300916672, 0.050301581621170044, -0.003045183140784502, 0.033887192606925964, -0.02459467574954033, -0.005561159458011389, -0.009884512051939964, -0.010880138725042343, 0.04979928210377693, -0.011400376446545124, 0.01394774578511715, 0.011534920893609524, -0.02271105721592903, -0.019266726449131966, -0.022459907457232475, 0.004978134296834469, 0.00439735222607851, 0.021383553743362427, 0.06056281924247742, -0.009705119766294956, -0.040829673409461975, 0.0006200243951752782, -0.005314494948834181, 0.024522917345166206, 0.011606677435338497, 0.03824642300605774, 0.0197152066975832, 0.035573478788137436, 0.02367977425456047, 0.0016190148890018463, 0.010422688908874989, 0.048579417169094086, -0.026944713667035103, 0.028110763058066368, -0.10426276922225952, -0.012387033551931381, -0.032326482236385345, 0.024720249697566032, -0.00025114911841228604, 0.03971743956208229, 0.017338259145617485, 0.061531536281108856, 0.06264376640319824, -0.031339824199676514, -0.010261235758662224, 0.0029801535420119762, -0.009705119766294956, -0.018567096441984177, 0.06350485235452652, 0.011633586138486862, 0.026837078854441643, 0.0016683477442711592, -0.040757916867733, -0.032165028154850006, 0.0010836411966010928, 0.02480994537472725, 0.03867696598172188, -0.003782933810725808, -0.03184211999177933, 0.01338266022503376, -0.021652642637491226, -0.009705119766294956, -0.041152577847242355, -0.0012736849021166563, 0.0006295546190813184, 0.04535035789012909, 0.033779557794332504, -0.009175912477076054, 0.05396118387579918, -0.0217243991792202, -0.049225229769945145, 0.01863885298371315, 0.046570222824811935, -0.0721515566110611, 0.004592441022396088, -0.015212461352348328, 0.00474043982103467, 0.01853121817111969, 0.017571469768881798, -0.0005269646644592285, -0.019733145833015442, -0.0402197390794754, 0.04373582825064659, -0.009767906740307808, -0.029456203803420067, -0.06967594474554062, 0.013068724423646927, -0.008077135309576988, 0.014728101901710033, -0.037457097321748734, 0.02762640453875065, 0.02802106738090515, 0.027339376509189606, -0.02129385806620121, -0.0262809619307518, -0.012575395405292511, 0.018253160640597343, -0.009274578653275967, 0.04552974924445152, 0.018728548660874367, -0.025330184027552605, 0.028630999848246574, -0.002509248908609152, 0.013992594555020332, 0.03424597904086113, -0.009875542484223843, 0.009355304762721062, 0.006175577640533447, 0.021437371149659157, 0.06293079257011414, -0.0018208312103524804, -0.009175912477076054, 0.018405642360448837, 0.007399929687380791, 0.009471910074353218, -0.02167058177292347, 0.07627757638692856, -0.0962977483868599, 0.06540641188621521, -0.029115360230207443, 0.07907609641551971, -0.003881599521264434, -0.03614753484725952, -0.007471686694771051, 0.03993271291255951 ]
728,927
tables.table
reindex
Recompute all the existing indexes in the table. This can be useful when you suspect that, for any reason, the index information for columns is no longer valid and want to rebuild the indexes on it.
def reindex(self): """Recompute all the existing indexes in the table. This can be useful when you suspect that, for any reason, the index information for columns is no longer valid and want to rebuild the indexes on it. """ self._do_reindex(dirty=False)
(self)
[ 0.014140061102807522, 0.01508790161460638, 0.024402590468525887, 0.004618569277226925, -0.0036901163402944803, -0.020369959995150566, -0.03529414162039757, -0.04191179573535919, -0.012089277617633343, -0.05707724764943123, -0.03646601736545563, -0.006281599402427673, 0.05083873122930527, 0.03874083608388901, -0.005531943403184414, -0.04422108083963394, 0.012382246553897858, 0.0437040738761425, 0.00366211193613708, -0.039981644600629807, -0.0009693825850263238, -0.029227962717413902, -0.00005742245411965996, -0.0037138124462217093, 0.01422622799873352, 0.0057172030210494995, -0.013821241445839405, 0.019422119483351707, 0.04949451982975006, -0.025505533441901207, -0.012123744934797287, -0.02236904203891754, -0.003522090148180723, 0.02045612595975399, -0.0357077457010746, -0.06204048544168472, 0.010615816339850426, -0.02178310416638851, 0.1129826158285141, 0.06224728748202324, 0.003978777211159468, -0.022610310465097427, -0.007823994383215904, -0.06641778349876404, 0.025212563574314117, 0.006139423232525587, 0.011675674468278885, 0.014769081957638264, 0.012563198804855347, -0.030193036422133446, -0.06290215998888016, -0.0058550708927214146, 0.007798144593834877, 0.003263588063418865, 0.021145464852452278, -0.0026582623831927776, -0.013097436167299747, 0.01450196374207735, 0.0381893664598465, -0.051528070122003555, 0.026711875572800636, -0.043497275561094284, -0.040670983493328094, 0.011227604933083057, 0.056215573102235794, -0.03722429275512695, 0.034518636763095856, 0.009581808000802994, -0.004670269787311554, -0.02064569480717182, -0.04608229547739029, 0.007914470508694649, 0.015992658212780952, -0.016475195065140724, -0.07334563881158829, 0.016328711062669754, -0.053216949105262756, -0.02504022978246212, -0.004842604510486126, -0.018974049016833305, 0.045806556940078735, 0.0029598481487482786, -0.001840749871917069, 0.00599293876439333, -0.014398562721908092, -0.000021676471078535542, 0.034449703991413116, 0.007410391233861446, -0.008207439444959164, -0.08203130960464478, 0.012838933616876602, 0.03226105123758316, -0.015156835317611694, -0.04439341276884079, 0.008211747743189335, -0.021197166293859482, -0.03898210451006889, -0.033415693789720535, 0.015036201104521751, -0.046461429446935654, 0.009693825617432594, 0.041187990456819534, 0.01450196374207735, 0.005389767233282328, 0.006432392168790102, -0.07334563881158829, -0.0033476012758910656, -0.04894305020570755, -0.011408556252717972, -0.00513126514852047, -0.0625230222940445, 0.00700109638273716, 0.012813083827495575, -0.012382246553897858, -0.000032447387638967484, -0.056146640330553055, 0.006725361105054617, -0.007440549787133932, -0.0014400717336684465, 0.07500005513429642, 0.064211905002594, 0.020335491746664047, 0.004989088978618383, 0.0037267375737428665, 0.005402692127972841, 0.010934635996818542, -0.01182215940207243, 0.06986448168754578, 0.03608688339591026, -0.022076072171330452, -0.009073421359062195, -0.020852496847510338, -0.039395708590745926, 0.06066180765628815, 0.024764493107795715, -0.015303320251405239, 0.09099271148443222, -0.0161649938672781, -0.04136032238602638, 0.0180779080837965, 0.02367878518998623, 0.028624791651964188, 0.052734412252902985, 0.01052103191614151, 0.037120889872312546, -0.012037578038871288, -0.03974037617444992, 0.013864325359463692, -0.02412685565650463, -0.02035272680222988, 0.0381893664598465, -0.024730026721954346, -0.003724583424627781, -0.049908123910427094, -0.042945802211761475, 0.009555958211421967, -0.05428542569279671, -0.010012645274400711, -0.0036707287654280663, 0.010012645274400711, -0.010167745873332024, -0.0005692429840564728, 0.020904196426272392, -0.027039311826229095, -0.04211859777569771, 0.030589405447244644, 0.00015011966752354056, -0.049804724752902985, -0.09981624782085419, 0.010443481616675854, 0.005687044467777014, -0.003586715552955866, -0.04042971506714821, 0.0020389347337186337, -0.009047570638358593, 0.05201060697436333, -0.053320351988077164, 0.032105952501297, -0.013235303573310375, 0.0022748177871108055, -0.0013399021700024605, -0.03815490007400513, -0.02965879812836647, -0.04384194314479828, 0.005755978170782328, 0.019921889528632164, -0.03918890655040741, -0.02111099846661091, 0.033967167139053345, -0.014958650805056095, 0.03438076749444008, -0.053940754383802414, 0.034880541265010834, 0.009866160340607166, 0.014243461191654205, 0.0020637079142034054, -0.031106410548090935, 0.02159353531897068, 0.07155335694551468, 0.06042053923010826, -0.012209911830723286, 0.011486106552183628, 0.07472431659698486, -0.01730240136384964, 0.0018515207339078188, 0.01497588399797678, 0.003547940170392394, -0.03183021768927574, 0.02676357701420784, 0.02035272680222988, 0.009805843234062195, 0.0010383164044469595, -0.02969326637685299, -0.008741676807403564, -0.0004879225743934512, 0.016690613701939583, -0.018388111144304276, -0.035466477274894714, 0.0803079605102539, 0.0325540229678154, 0.02426472306251526, -0.006057564169168472, -0.031175343319773674, -0.053251415491104126, 0.03870636969804764, -0.0491153858602047, -0.008629659190773964, -0.0022360424045473337, -0.02559170126914978, -0.04073991999030113, -0.013045735657215118, -0.0005132342339493334, -0.036017946898937225, -0.02052506059408188, 0.027435680851340294, 0.03639708459377289, 0.003442385233938694, -0.0011546423193067312, 0.06869260221719742, 0.0034488479141145945, -0.042290929704904556, 0.00033255209564231336, -0.017767705023288727, -0.03470820561051369, -0.024161322042346, 0.024867894127964973, 0.041153520345687866, 0.041808392852544785, -0.025901902467012405, 0.005971396807581186, -0.016802631318569183, -0.016819864511489868, 0.03984377905726433, 0.010805384255945683, 0.037810228765010834, 0.016190843656659126, -0.02481619454920292, 0.05824912339448929, -0.041704993695020676, 0.007578417658805847, 0.0007658122340217233, 0.010865701362490654, -0.015260236337780952, -0.035983480513095856, 0.014286545105278492, 0.01341625489294529, 0.033346761018037796, 0.08782175183296204, 0.020869730040431023, 0.03629368543624878, 0.0449448861181736, -0.022162239998579025, -0.025057462975382805, 0.025539999827742577, 0.03386376425623894, 0.04501381888985634, 0.035104576498270035, 0.007302682381123304, -0.02709101140499115, 0.031847450882196426, 0.02012869156897068, -0.016725080087780952, 0.03108917735517025, -0.0053854589350521564, -0.044152144342660904, -0.023592617362737656, -0.03839616850018501, 0.017733238637447357, -0.05580196902155876, 0.010512415319681168, 0.04711630195379257, -0.010546882636845112, 0.0007981249946169555, 0.017957273870706558, 0.031795747578144073, 0.00940085668116808, -0.024023454636335373, -0.027401214465498924, -0.06934747844934464, 0.027952685952186584, -0.011908326297998428, -0.016561362892389297, -0.059696733951568604, -0.011374088935554028, 0.05421649292111397, 0.00936639029532671, 0.010572732426226139, 0.01961168646812439, 0.02211054041981697, -0.0243853572756052, 0.0009047570638358593, 0.038292765617370605, -0.07437964528799057, -0.0023696019779890776, 0.021317800506949425, -0.09085484594106674, -0.004721970297396183, -0.017164533957839012, 0.009995411150157452, 0.04852944612503052, -0.060730740427970886, 0.06055840849876404, -0.032898690551519394, -0.035139042884111404, -0.06379830092191696, 0.0119686434045434, 0.034811604768037796, -0.006535792723298073, -0.04721970483660698, -0.05983460322022438, 0.011951410211622715, -0.07210483402013779, 0.046909499913454056, -0.04366960749030113, -0.08092837035655975, -0.05649130791425705, 0.026625707745552063, -0.015441187657415867, -0.02426472306251526, 0.038258299231529236, 0.04549635574221611, 0.023764953017234802, 0.02236904203891754, -0.021765870973467827, -0.05652577430009842, -0.007569801062345505, 0.003000777680426836, -0.021834803745150566, 0.022575844079256058, 0.010581349954009056, 0.033053793013095856, -0.023764953017234802, -0.007617192808538675, 0.08423719555139542, 0.05366501957178116, -0.02012869156897068, -0.013028502464294434, -0.028797125443816185, -0.005053714383393526, -0.03722429275512695, 0.01017636340111494, 0.013209453783929348, -0.0386374369263649, -0.025229796767234802, 0.0055621019564569, 0.008629659190773964, -0.02328241616487503, 0.016854332759976387, 0.004717661999166012, -0.030106868594884872, -0.022162239998579025, -0.070071280002594, 0.02712547965347767, 0.05718064680695534, 0.01873278059065342, 0.012037578038871288, -0.0424632653594017, 0.037775762379169464, -0.059696733951568604, -0.02507469616830349, 0.021834803745150566, -0.027918217703700066, 0.0224724430590868, -0.006531484425067902, -0.028469689190387726, 0.016613062471151352, 0.024954061955213547, -0.0012117282021790743, 0.031623415648937225, 0.0162770114839077, -0.0237132515758276, -0.03646601736545563, -0.01811237446963787, 0.013571356423199177, 0.003614719957113266, 0.08823535591363907, 0.062488555908203125, 0.0008864465053193271, -0.05811125412583351, -0.06831346452236176, -0.0047822874039411545, -0.03963697701692581, 0.006333299446851015, 0.031433846801519394, -0.005303599871695042, -0.004829679615795612, 0.034518636763095856, -0.028211187571287155, 0.05721511319279671, -0.011038036085665226, -0.014682915061712265, 0.031657882034778595, 0.007944628596305847, 0.018887881189584732, 0.0029749274253845215, 0.018198542296886444, 0.05873166024684906, -0.026918677613139153, 0.06741733103990555, 0.0776195377111435, 0.059627801179885864, 0.022851578891277313, 0.014725998975336552, 0.06917513906955719, 0.010839851573109627, -0.014691531658172607, -0.05128680169582367, -0.028797125443816185, -0.04418661445379257, 0.053768422454595566, -0.011511956341564655, -0.029744965955615044, -0.03295039013028145, 0.009685209020972252, -0.025901902467012405, -0.047598838806152344, 0.019146382808685303, 0.01781940646469593, 0.005954163148999214, 0.04842604696750641, 0.051045533269643784, -0.038327232003211975, 0.007526717148721218, -0.048322644084692, 0.060489472001791, 0.020473361015319824, 0.014269311912357807, 0.0014508425956591964, -0.05139020085334778, 0.0004346065397839993, 0.07527578622102737, 0.013821241445839405, -0.011287922039628029, -0.0037612044252455235, -0.016285628080368042, -0.010736450552940369, -0.0533892847597599, 0.04625462740659714, 0.036017946898937225, 0.02598807029426098, 0.011167287826538086, 0.0714154914021492, -0.058938462287187576, -0.018008973449468613, 0.024643858894705772, -0.008565033785998821, -0.04856391251087189, -0.025608934462070465, 0.007711977232247591, -0.017242085188627243, -0.007552567403763533, -0.10919125378131866, -0.045772090554237366, -0.08768388628959656, -0.06765859574079514, 0.015096518211066723, -0.028934992849826813, 0.021214399486780167, 0.022937746718525887, -0.031192578375339508, 0.004786595702171326, 0.0013495959574356675, 0.06810666620731354, -0.012726916000247002, 0.06338469684123993, -0.011925560422241688, -0.021386733278632164, -0.004618569277226925, -0.033708665519952774, -0.061247747391462326, -0.020059756934642792, -0.05483689531683922, 0.01635456085205078, 0.06424637138843536, 0.01748335361480713, 0.002180033829063177, -0.022007139399647713, 0.005346683319658041, -0.00662626838311553, 0.00844870787113905, 0.06272982805967331, -0.054974764585494995, -0.05452669411897659, 0.05983460322022438, -0.019663387909531593, -0.004110182169824839, 0.030744507908821106, 0.010564115829765797, -0.01619946025311947, -0.06221282109618187, -0.038878705352544785, -0.017164533957839012, 0.01372645702213049, 0.06624545156955719, 0.0386374369263649, -0.044014278799295425, -0.06328129768371582, 0.002386835403740406, 0.05287228152155876, 0.04439341276884079, -0.037775762379169464, 0.0013840629253536463, -0.0046961200423538685, 0.02386835403740406, -0.01957722008228302, 0.02657400816679001, 0.022575844079256058, -0.03241615369915962, 0.1040901467204094, 0.003709504147991538, -0.010710600763559341, 0.026487840339541435, 0.0541820228099823, -0.0222484078258276, -0.008776144124567509, 0.03438076749444008, 0.07789527624845505, -0.09009657055139542, 0.05828358978033066, -0.005148498807102442, -0.000716804584953934, 0.04952898621559143, 0.060248203575611115, -0.08382359147071838, -0.05687044560909271, 0.017112834379076958, 0.004721970297396183, -0.05083873122930527, 0.005777520127594471, -0.031847450882196426, -0.08444399386644363, 0.007785219233483076, 0.05352715402841568, -0.016121909022331238, -0.0011557195102795959, 0.0034294601064175367, -0.019456585869193077, -0.014312395825982094, 0.04842604696750641, 0.028331821784377098, 0.010314230807125568, -0.03639708459377289, 0.10278040170669556, -0.024109622463583946, 0.01458813063800335, 0.06331576406955719, -0.0052648247219622135, 0.013743691146373749, 0.0049546221271157265, 0.025229796767234802, -0.012218529358506203, 0.0076215011067688465, 0.021507367491722107, -0.015260236337780952, 0.016182227060198784, -0.026039769873023033, 0.04277346655726433, -0.05349268391728401, -0.024368124082684517, -0.11415449529886246, 0.017112834379076958, -0.018681079149246216, -0.004553943872451782, -0.013493805192410946, 0.005294983275234699, 0.03267465531826019, 0.0004372992552816868, 0.07886034995317459, 0.03310549259185791, -0.01198587752878666, -0.007677509915083647, -0.03629368543624878, 0.021800337359309196, -0.04366960749030113, -0.02364431880414486, 0.05869719386100769, -0.02254137583076954, -0.059662267565727234, -0.0075482591055333614, 0.010701984167098999, 0.0011729529360309243, 0.0045754858292639256, 0.020869730040431023, -0.0337948314845562, -0.05366501957178116, 0.03980931267142296, 0.03701749071478844, 0.07072615623474121, 0.02760801650583744, 0.009840310551226139, 0.020904196426272392, -0.03133044391870499, -0.015570438466966152, -0.025178097188472748, -0.023696018382906914, -0.035500943660736084, -0.04701290279626846, -0.06852027028799057, 0.038878705352544785, -0.014596747234463692, -0.06772752851247787, 0.012451181188225746, 0.006036022212356329, 0.0009591502021066844, -0.05025279521942139, 0.032174885272979736, 0.008052337914705276, 0.0117704588919878, -0.011477489955723286, -0.00940085668116808, -0.013062968850135803, -0.05597430467605591, -0.031985316425561905, 0.01649242825806141, -0.032019782811403275, -0.03722429275512695, -0.017647070810198784, -0.011279304511845112, -0.0020486286375671625, 0.03269188851118088, 0.010900168679654598, -0.0025807118508964777, 0.07313884049654007, -0.0033346761483699083, -0.037120889872312546, -0.04101565480232239, -0.031795747578144073, -0.07203589379787445, 0.0035156274680048227, 0.009125121869146824, -0.007259598467499018, 0.05656024441123009, -0.0072552901692688465, -0.014028043486177921, 0.0027875134255737066, 0.04890858381986618, -0.0304687712341547, -0.09071698039770126, 0.008603809401392937, -0.013295620679855347, 0.030985776335000992, -0.0014303778298199177, 0.04329047352075577, -0.04949451982975006, 0.1062270998954773, 0.025022996589541435, 0.021903738379478455, 0.06528037786483765, -0.015492888167500496, 0.040119513869285583, -0.030382605269551277, 0.00339499325491488, -0.051562536507844925, 0.004997705575078726, 0.04670269787311554, 0.02386835403740406, 0.010219446383416653, -0.04718523472547531, 0.004864146467298269, -0.0018698313506320119, -0.01512236800044775, 0.03925783932209015, 0.0026690333615988493, 0.011882476508617401, 0.012882017530500889, 0.07493112236261368, -0.022748177871108055, -0.0003435922844801098, 0.025677867233753204, -0.03677622228860855, 0.0044376179575920105, -0.05473349615931511, 0.0017179613932967186, 0.027332279831171036, -0.0018482895102351904, 0.03753449395298958, -0.038258299231529236, -0.04732310399413109, 0.027142712846398354, 0.01730240136384964, 0.04029184952378273, 0.019887423142790794, 0.052148476243019104, 0.03269188851118088, 0.055595166981220245, 0.041153520345687866, 0.001510082627646625, 0.008711517788469791, -0.07879141718149185, -0.03994717821478844, 0.031761281192302704, 0.04218753054738045, -0.02467832714319229, 0.06345362961292267, 0.07699913531541824, -0.026953143998980522, 0.06941641122102737, -0.038223832845687866, -0.03460480272769928, 0.03148554638028145, 0.04446234926581383, -0.02302391268312931, -0.0004572254547383636, 0.02169693633913994, -0.0008794454042799771, -0.04208412766456604, -0.02676357701420784, -0.004709045402705669, -0.014760465361177921, -0.034484170377254486, 0.04136032238602638, -0.03874083608388901, 0.05749085173010826, -0.03200254961848259, 0.0769302025437355, 0.010529649443924427, 0.03856850042939186, 0.009030337445437908, 0.018594911321997643, 0.03246785327792168, -0.022024372592568398, -0.0005950931808911264, -0.07755060493946075, 0.005467317998409271, -0.004338525701314211, 0.03145107999444008, -0.01866384595632553, 0.03798256441950798, -0.0065659512765705585, 0.04267006739974022, 0.012399480678141117, 0.02588466927409172, -0.011891093105077744, 0.03743109479546547, 0.03619028255343437, 0.04601335898041725, 0.005687044467777014, 0.010167745873332024, -0.010719217360019684, 0.0018622917123138905, 0.05866272747516632, -0.05356162041425705, -0.057352982461452484, 0.025574466213583946, 0.012752766720950603, -0.009504257701337337, 0.05973120033740997, 0.0003102024202235043 ]
728,928
tables.table
reindex_dirty
Recompute the existing indexes in table, *if* they are dirty. This can be useful when you have set :attr:`Table.autoindex` (see :class:`Table`) to false for the table and you want to update the indexes after a invalidating index operation (:meth:`Table.remove_rows`, for example).
def reindex_dirty(self): """Recompute the existing indexes in table, *if* they are dirty. This can be useful when you have set :attr:`Table.autoindex` (see :class:`Table`) to false for the table and you want to update the indexes after a invalidating index operation (:meth:`Table.remove_rows`, for example). """ self._do_reindex(dirty=True)
(self)
[ 0.036634430289268494, 0.027171405032277107, 0.00405744556337595, 0.02986767143011093, 0.019726231694221497, -0.01728219725191593, -0.049298182129859924, -0.016029737889766693, -0.008127938024699688, -0.06864171475172043, -0.029154464602470398, -0.016595084220170975, 0.07072915136814117, 0.008227960206568241, -0.008049659430980682, -0.056569404900074005, -0.008558470755815506, 0.03303360939025879, 0.009906603954732418, -0.014394582249224186, 0.01080245990306139, -0.002905009314417839, 0.016116714105010033, 0.030024228617548943, 0.01622108556330204, -0.02640601247549057, -0.004209654405713081, -0.00533599779009819, 0.036947544664144516, -0.01721261441707611, 0.017734473571181297, -0.0380956307053566, 0.00770175363868475, 0.015847086906433105, -0.0023722792975604534, -0.020735155791044235, 0.0177866593003273, 0.0032703098841011524, 0.08815920352935791, 0.012924682348966599, -0.001226366264745593, -0.028928326442837715, -0.012002733536064625, -0.04087887331843376, 0.04794135317206383, -0.0011105790035799146, -0.013072541914880276, 0.04856758192181587, 0.005679554305970669, -0.0021646234672516584, -0.01552527491003275, -0.008327983319759369, 0.002761498326435685, 0.013150820508599281, 0.030441714450716972, -0.021970219910144806, -0.011150364764034748, 0.0005286529776640236, 0.04508852958679199, -0.03990473970770836, 0.031746361404657364, -0.02243989333510399, -0.015490484423935413, 0.00478369789198041, 0.06627596169710159, -0.025884155184030533, 0.037295449525117874, 0.0037878190632909536, 0.002594068879261613, -0.008284495212137699, -0.04679326340556145, 0.01088943611830473, 0.026058107614517212, 0.00515334727242589, -0.10221458226442337, 0.0149425333365798, -0.06262295693159103, -0.023483607918024063, -0.01656029373407364, -0.013855328783392906, 0.047871772199869156, -0.00734515069052577, 0.005509950220584869, 0.0218658484518528, -0.0428619347512722, 0.00041748638614080846, 0.032407380640506744, 0.0017232184763997793, 0.015012114308774471, -0.07897450774908066, 0.01960446499288082, 0.042757563292980194, 0.003355111926794052, -0.04362732544541359, 0.004827185999602079, -0.038617487996816635, -0.004070491995662451, -0.013794445432722569, -0.011072086170315742, -0.06192714720964432, -0.007975729182362556, 0.03590382635593414, 0.007553894072771072, -0.003224647371098399, 0.011063388548791409, -0.018682515248656273, 0.009837022982537746, -0.05371658131480217, -0.012724637053906918, 0.0020428565330803394, -0.03268570452928543, -0.008601958863437176, 0.014029281213879585, -0.007140756584703922, -0.004983743652701378, -0.0409136638045311, 0.01071548368781805, -0.03172896429896355, -0.01969144120812416, 0.030476504936814308, 0.05900473892688751, -0.0039487252943217754, 0.018247634172439575, -0.01951748877763748, 0.016186295077204704, 0.006266644224524498, 0.023153098300099373, 0.08774171769618988, 0.03680838271975517, -0.005849157925695181, -0.010819855146110058, -0.02598852664232254, -0.03237259015440941, 0.045158110558986664, 0.01763010211288929, -0.028249911963939667, 0.06422331929206848, 0.00028131407452747226, -0.056499823927879333, -0.00184607261326164, 0.029363207519054413, 0.022039800882339478, 0.024979600682854652, -0.0014101037522777915, 0.027919400483369827, -0.02614508382976055, -0.035729873925447464, 0.012472405098378658, 0.010419763624668121, 0.003483401844277978, 0.025449274107813835, -0.03305100277066231, -0.02664954774081707, -0.008780260570347309, -0.06262295693159103, 0.0322682186961174, -0.056986890733242035, -0.04428834468126297, 0.029432788491249084, 0.01440327987074852, -0.00824100710451603, 0.01960446499288082, 0.030476504936814308, -0.043001096695661545, -0.028858745470643044, 0.06164881959557533, -0.03708670660853386, -0.04133114963769913, -0.10764190554618835, 0.014620720408856869, 0.001580794807523489, 0.0018525958294048905, -0.03868706896901131, 0.004561908543109894, 0.0352775976061821, 0.049541715532541275, -0.05343825742602348, 0.040113482624292374, -0.02814554050564766, -0.016003644093871117, -0.023570584133267403, -0.011698315851390362, -0.0190478153526783, -0.03806084021925926, 0.0003693775797728449, 0.014029281213879585, -0.031015759333968163, -0.02880655974149704, 0.0630752295255661, -0.010411066003143787, 0.02788460999727249, -0.03296402841806412, 0.038130421191453934, -0.011506968177855015, -0.016021039336919785, -0.0028897884767502546, -0.013585702516138554, 0.021222224459052086, 0.10103170573711395, 0.06286648660898209, -0.02184845320880413, -0.006901571527123451, 0.0650235041975975, -0.011446084827184677, -0.016194991767406464, 0.025362297892570496, -0.01763010211288929, 0.0012078837025910616, 0.013429145328700542, 0.004692372865974903, -0.02343142218887806, -0.006027459632605314, -0.03945246338844299, -0.006031808443367481, 0.03320756182074547, 0.027293171733617783, -0.008010519668459892, -0.011646130122244358, 0.05876120552420616, 0.01944790780544281, 0.008728074841201305, -0.0010236026719212532, -0.0173952654004097, -0.04442750662565231, 0.03639089688658714, -0.03917413949966431, 0.012568078935146332, 0.006871129851788282, -0.00910642184317112, -0.02591894567012787, -0.005883948411792517, 0.005827413871884346, -0.004792395513504744, -0.03452960029244423, 0.014081467874348164, 0.04533206298947334, 0.008767213672399521, -0.026875685900449753, 0.06373625248670578, 0.00939344335347414, -0.04999399185180664, 0.011028598062694073, 0.015046904794871807, -0.04247923940420151, -0.016334153711795807, 0.03146803379058838, 0.05382095277309418, 0.014377187006175518, -0.029432788491249084, 0.007140756584703922, -0.040426596999168396, 0.016012342646718025, 0.025431878864765167, 0.005766530521214008, 0.052011843770742416, 0.034964483231306076, -0.0019004327477887273, 0.044810205698013306, -0.05246412009000778, 0.02002195082604885, -0.00820186734199524, 0.003165938425809145, -0.03868706896901131, -0.031015759333968163, -0.0025288367178291082, 0.02110045775771141, 0.06057031452655792, 0.08252313733100891, 0.014151048846542835, 0.031659383326768875, 0.05448197200894356, -0.04007869213819504, -0.018091076985001564, 0.016334153711795807, 0.004344467539340258, 0.025953736156225204, 0.05931785702705383, -0.008284495212137699, -0.007593033369630575, 0.02757149562239647, -0.00424009608104825, -0.026301641017198563, 0.044323135167360306, -0.015090392902493477, -0.03378160670399666, -0.036112572997808456, -0.040183063596487045, 0.024214209988713264, -0.09240365028381348, 0.00009078154107555747, 0.0437316969037056, -0.012185383588075638, 0.0059317853301763535, -0.0004957650671713054, 0.026945266872644424, -0.006440597120672464, -0.041018035262823105, -0.037712935358285904, -0.06641512364149094, 0.006936362013220787, -0.009097724221646786, 0.00391393480822444, -0.061300914734601974, -0.013063844293355942, 0.055421315133571625, 0.0054795085452497005, 0.011559153907001019, 0.0093064671382308, 0.014124955981969833, -0.0086497962474823, 0.0018580318428575993, 0.043488163501024246, -0.030859200283885002, 0.008493238128721714, 0.006244900170713663, -0.08454099297523499, -0.02110045775771141, -0.03739982098340988, -0.0036029943730682135, 0.04668889194726944, -0.06338834762573242, 0.04797614365816116, -0.03212905675172806, -0.04835883900523186, -0.07145974785089493, 0.0035986455623060465, 0.04585392028093338, 0.007127710152417421, -0.024214209988713264, -0.02548406459391117, 0.04157468304038048, -0.06512787193059921, 0.046723682433366776, -0.029937252402305603, -0.08753297477960587, -0.0587959960103035, 0.036112572997808456, -0.03593861684203148, -0.03562550246715546, 0.027919400483369827, 0.04376648738980293, 0.0022461635526269674, 0.04724553972482681, -0.02880655974149704, -0.046236615628004074, -0.01689080335199833, -0.017986703664064407, 0.022805193439126015, 0.053264301270246506, 0.013350866734981537, 0.03903497755527496, 0.00510985916480422, -0.01349002867937088, 0.07820911705493927, 0.03519062325358391, -0.021465757861733437, 0.011846175417304039, -0.004185735713690519, -0.012637660838663578, -0.03560810908675194, 0.0027136614080518484, 0.016160201281309128, -0.029032697901129723, -0.033085793256759644, 0.009750046767294407, 0.0021494023967534304, -0.007271220907568932, -0.01225496456027031, -0.009671767242252827, -0.049124229699373245, -0.026997452601790428, -0.05281202495098114, 0.019482698291540146, 0.06164881959557533, 0.041922591626644135, 0.007575638126581907, -0.06846776604652405, 0.02134399116039276, -0.02731056697666645, -0.025223135948181152, 0.013837933540344238, -0.042409658432006836, 0.011593944393098354, -0.03470355644822121, -0.05288160592317581, 0.019882788881659508, 0.009628279134631157, -0.008923770859837532, 0.011950547806918621, 0.008488889783620834, -0.018665120005607605, -0.03642568737268448, -0.03708670660853386, 0.01142868958413601, -0.033311933279037476, 0.056569404900074005, 0.058482881635427475, 0.002702789381146431, -0.032320402562618256, -0.07100747525691986, -0.00785831082612276, -0.03526020422577858, 0.011559153907001019, 0.0010301258880645037, -0.0031007060315459967, -0.014629418030381203, 0.00021947933419141918, -0.016690757125616074, 0.030093809589743614, 0.0010083818342536688, -0.02673652395606041, 0.027867214754223824, 0.017847541719675064, 0.03618215397000313, -0.012942077592015266, 0.012689846567809582, 0.055908381938934326, -0.043592534959316254, 0.05691730976104736, 0.07883534580469131, 0.04693242534995079, 0.038443535566329956, 0.008414959535002708, 0.06324918568134308, -0.016099318861961365, -0.0279889814555645, -0.028162935748696327, -0.009115119464695454, -0.05587359145283699, 0.07751329988241196, 0.021396176889538765, -0.0695810616016388, -0.01969144120812416, 0.008797655813395977, -0.040600549429655075, -0.026597360149025917, 0.010419763624668121, -0.012133197858929634, 0.006784153636544943, 0.07438215613365173, 0.055838800966739655, -0.018230238929390907, 0.015951458364725113, -0.031659383326768875, 0.06909399479627609, 0.010698088444769382, 0.003850876819342375, 0.018926048651337624, -0.032668307423591614, 0.0031594152096658945, 0.06857213377952576, 0.01737787015736103, -0.03404253348708153, -0.01622108556330204, -0.023727141320705414, -0.03980036824941635, -0.050515852868556976, 0.03096357360482216, 0.028110750019550323, 0.024683881551027298, 0.009419536218047142, 0.10868562012910843, -0.056743357330560684, -0.01920437254011631, 0.03865227848291397, -0.021709291264414787, -0.06335356086492538, -0.002887614071369171, 0.005040278192609549, -0.015864482149481773, -0.03614736348390579, -0.10513698309659958, -0.06359709054231644, -0.0852368026971817, -0.053020767867565155, 0.015768807381391525, -0.04369690641760826, 0.01762140356004238, 0.0344078354537487, -0.024040257558226585, -0.023327050730586052, 0.016012342646718025, 0.05514299124479294, -0.010706786066293716, 0.04988962039351463, -0.027501914650201797, -0.02856302633881569, 0.022144172340631485, -0.012820310890674591, -0.05931785702705383, -0.013203006237745285, -0.05058543384075165, 0.011506968177855015, 0.041679054498672485, -0.01604713313281536, -0.010089254006743431, -0.022909564897418022, 0.026632150635123253, -0.010819855146110058, -0.005883948411792517, 0.08384518325328827, -0.06119654327630997, -0.03270309790968895, 0.07535628974437714, -0.039556834846735, -0.022057196125388145, 0.023466212674975395, -0.004901116248220205, -0.011750501580536366, -0.05096812918782234, -0.04477541521191597, -0.01340305246412754, 0.02939799800515175, 0.0729905366897583, 0.04345337301492691, -0.04098324477672577, -0.05935264751315117, -0.009810930117964745, 0.07591293752193451, 0.02649298869073391, -0.04063533991575241, -0.021170038729906082, 0.020300274714827538, 0.007880055345594883, -0.023118307814002037, 0.019239163026213646, 0.005148998461663723, -0.023796724155545235, 0.10110128670930862, -0.00906293373554945, 0.007179895881563425, 0.026353826746344566, 0.04508852958679199, -0.03524280712008476, -0.03172896429896355, 0.03583424538373947, 0.07626084238290787, -0.10952059179544449, 0.03296402841806412, -0.018265029415488243, 0.01689080335199833, 0.050376687198877335, 0.10687651485204697, -0.06731967628002167, -0.03319016844034195, 0.047071587294340134, 0.024057652801275253, -0.040183063596487045, 0.013220401480793953, -0.022544264793395996, -0.0918470025062561, 0.0028528235852718353, 0.032824866473674774, -0.025257926434278488, -0.003722586901858449, -0.023622769862413406, -0.02953716181218624, -0.007897450588643551, 0.042583610862493515, 0.03359025716781616, 0.024544719606637955, -0.02671912871301174, 0.07097268104553223, -0.020561203360557556, 0.0038008654955774546, 0.06446685642004013, 0.0032833563163876534, 0.00019039661856368184, 0.03376420959830284, 0.047384701669216156, 0.00552299665287137, 0.00943693146109581, 0.011072086170315742, -0.0006822205614298582, 0.02938060276210308, -0.0027180102188140154, 0.058900367468595505, -0.05785665288567543, -0.03524280712008476, -0.11501749604940414, 0.0275541003793478, -0.011550456285476685, -0.00492286030203104, -0.007110314909368753, 0.029363207519054413, 0.037712935358285904, -0.004574954975396395, 0.10277123004198074, 0.005096812732517719, -0.033137980848550797, 0.01444676797837019, -0.02045683190226555, 0.02821512147784233, -0.05396011471748352, 0.012924682348966599, 0.05820455774664879, -0.023970676586031914, -0.07173807173967361, -0.016412433236837387, 0.010872040875256062, 0.025518855080008507, 0.006053552497178316, 0.005357741843909025, -0.04675847291946411, -0.053681790828704834, 0.016238480806350708, 0.03094617649912834, 0.03889581561088562, -0.0015405681915581226, 0.004761953838169575, 0.017595311626791954, -0.023031331598758698, -0.014055375009775162, -0.03868706896901131, -0.015681831166148186, -0.025779783725738525, -0.05058543384075165, -0.0673544704914093, 0.05677814781665802, -0.008293192833662033, -0.05816976726055145, 0.019726231694221497, 0.0141162583604455, 0.0035464598331600428, -0.04842841997742653, 0.00997618492692709, 0.043001096695661545, 0.008775911293923855, -0.0024592557456344366, -0.012002733536064625, -0.04087887331843376, -0.01781275123357773, -0.028528235852718353, 0.023657560348510742, 0.015151276253163815, -0.0526728630065918, -0.011480875313282013, -0.009784837253391743, -0.0009882685262709856, 0.04901985824108124, -0.03426867350935936, -0.014629418030381203, 0.073477603495121, 0.012115802615880966, -0.031833335757255554, -0.043905649334192276, -0.03639089688658714, -0.048880696296691895, 0.03774772584438324, 0.00984572060406208, -0.005449066869914532, 0.0414007306098938, -0.004979394841939211, -0.01911739632487297, 0.0031441941391676664, 0.07994864135980606, -0.0014198885764926672, -0.08955083042383194, 0.011176458559930325, -0.00397046934813261, 0.0031507175881415606, -0.020178508013486862, -0.003718238091096282, -0.02508397214114666, 0.10638944059610367, 0.016273271292448044, -0.015038207173347473, 0.04571475833654404, 0.025779783725738525, -0.0012589823454618454, -0.020300274714827538, 0.040009111166000366, -0.06665866076946259, 0.0004992985050193965, 0.015307833440601826, -0.010158834978938103, 0.007036385126411915, -0.03691275417804718, 0.028110750019550323, 0.0034725298173725605, -0.00952390767633915, 0.035138435661792755, -0.0034268673043698072, 0.033468492329120636, 0.030406923964619637, 0.08461057394742966, -0.006323179230093956, -0.004670628812164068, 0.033242352306842804, -0.03138105943799019, -0.019395720213651657, -0.051037710160017014, 0.02442295290529728, 0.020491622388362885, -0.007993124425411224, 0.03143324330449104, -0.029450183734297752, -0.02433597669005394, 0.011411294341087341, 0.0048750233836472034, 0.02939799800515175, 0.020143717527389526, 0.06157923862338066, 0.0433490015566349, 0.052533701062202454, 0.03659963980317116, -0.037365030497312546, -0.020387250930070877, -0.06818944215774536, -0.031259290874004364, 0.007014640606939793, 0.0447058342397213, -0.01225496456027031, 0.04171384498476982, 0.052116215229034424, -0.05604754388332367, 0.0725034698843956, -0.0475238673388958, -0.00012040785077260807, 0.025292716920375824, 0.02691047638654709, -0.021552734076976776, -0.030598271638154984, 0.010358880273997784, -0.0033203212078660727, -0.031328871846199036, -0.019987160339951515, -0.023396631702780724, -0.06164881959557533, -0.05604754388332367, 0.05761311948299408, -0.045575596392154694, 0.04728033021092415, -0.0400439016520977, 0.08815920352935791, 0.010619809851050377, 0.030180785804986954, -0.00519683538004756, 0.0029985089786350727, 0.012472405098378658, 0.0019178279908373952, -0.003609517589211464, -0.05730000510811806, 0.01803889125585556, -0.017082151025533676, 0.03030255250632763, 0.006244900170713663, 0.04164426401257515, -0.014411977492272854, 0.03642568737268448, 0.03021557629108429, 0.01221147645264864, -0.019900184124708176, 0.04247923940420151, 0.054586343467235565, 0.07834827899932861, -0.0009252107120119035, -0.0023331400007009506, -0.019082605838775635, 0.0141162583604455, 0.06321439146995544, -0.03666922077536583, -0.0447058342397213, 0.021170038729906082, -0.0007512580486945808, -0.01656029373407364, 0.01598624885082245, 0.022074591368436813 ]
728,930
tables.table
remove_row
Removes a row from the table. Parameters ---------- n : int The index of the row to remove. .. versionadded:: 3.0 Examples -------- Remove row 15:: table.remove_row(15) Which is equivalent to:: table.remove_rows(15, 16) .. warning:: This is not equivalent to:: table.remove_rows(15)
def remove_row(self, n): """Removes a row from the table. Parameters ---------- n : int The index of the row to remove. .. versionadded:: 3.0 Examples -------- Remove row 15:: table.remove_row(15) Which is equivalent to:: table.remove_rows(15, 16) .. warning:: This is not equivalent to:: table.remove_rows(15) """ self.remove_rows(start=n, stop=n + 1)
(self, n)
[ -0.022395022213459015, 0.05026058480143547, -0.01981361210346222, -0.026822740212082863, -0.03511402755975723, 0.015719253569841385, -0.0366184264421463, 0.09929029643535614, -0.06602257490158081, -0.0746728703379631, -0.022309545427560806, 0.06882622838020325, -0.011830042116343975, 0.0050559756346046925, -0.0178989227861166, -0.055970460176467896, 0.037165481597185135, 0.01849726215004921, -0.044926807284355164, -0.03319934010505676, 0.009317013435065746, 0.010701743885874748, -0.0021347927395254374, 0.02152315527200699, -0.022309545427560806, 0.05094440281391144, 0.016223570331931114, 0.03425925597548485, 0.03832796961069107, 0.0008852230967022479, -0.0015620955964550376, -0.0026583403814584017, 0.007474979851394892, -0.00203649397008121, -0.051628220826387405, 0.02030937932431698, -0.011727469973266125, -0.03022473305463791, 0.0005088563775643706, 0.08848598599433899, -0.028378425166010857, 0.02405327931046486, 0.08930656313896179, -0.026036350056529045, 0.005325228441506624, 0.00046077545266598463, 0.028840001672506332, -0.008274191990494728, -0.03306257724761963, 0.035045646131038666, 0.016924483701586723, 0.03330191224813461, 0.024292616173624992, -0.025745728984475136, -0.03781510517001152, -0.002480975352227688, -0.02588249184191227, -0.05805610492825508, 0.05791934207081795, -0.01889045722782612, 0.03244714066386223, -0.021095769479870796, -0.03390025347471237, 0.05036315694451332, 0.04253344610333443, -0.06506523489952087, 0.03631071001291275, -0.03699452430009842, 0.018634026870131493, -0.016967222094535828, 0.0287032388150692, 0.07453610748052597, 0.044448137283325195, 0.024207139387726784, -0.01880498044192791, 0.017035603523254395, 0.011000913567841053, 0.02942124754190445, 0.013069462031126022, 0.005513278301805258, 0.07111702114343643, -0.02791684865951538, 0.038259588181972504, 0.027557844296097755, -0.02559186890721321, 0.005214108154177666, 0.05620979890227318, -0.026121828705072403, -0.020702574402093887, 0.03410539776086807, -0.059663075953722, 0.008590457029640675, -0.04116581380367279, -0.09040067344903946, 0.029660582542419434, 0.010898341424763203, 0.07289494574069977, -0.01901012659072876, -0.025643154978752136, -0.06677477806806564, 0.08458822220563889, 0.023010458797216415, 0.011197511106729507, 0.00503460643813014, 0.015249130316078663, -0.02283950336277485, -0.024429379031062126, -0.00003499222293612547, -0.023694276809692383, 0.08951170742511749, -0.02991701476275921, 0.021198341622948647, -0.009017842821776867, -0.013573776930570602, 0.02205311320722103, -0.023198507726192474, -0.04537129029631615, -0.029369961470365524, 0.02477128803730011, 0.013428465463221073, 0.060415275394916534, -0.04509776458144188, -0.034327637404203415, -0.0249935295432806, 0.00690228259190917, 0.01798439957201481, 0.016120996326208115, 0.012214689515531063, 0.04653377830982208, -0.04598672688007355, 0.0032011205330491066, -0.06899718195199966, 0.039798177778720856, -0.008265644311904907, -0.05063668638467789, 0.01678771898150444, 0.057577431201934814, 0.0016165872802957892, 0.017745064571499825, -0.047593697905540466, 0.03268647566437721, 0.05997079238295555, 0.022531786933541298, 0.0647917091846466, 0.03966141492128372, -0.051115356385707855, -0.03277195245027542, 0.05350871756672859, 0.017745064571499825, -0.006321037653833628, -0.040892284363508224, -0.018941745162010193, 0.06277444213628769, -0.03870407119393349, 0.02536962926387787, 0.03860149532556534, 0.003570809494704008, -0.08725511282682419, -0.025557678192853928, -0.030600832775235176, 0.05255137383937836, 0.04075552150607109, 0.0370287150144577, -0.032703571021556854, -0.06533876061439514, 0.036857761442661285, 0.01700141280889511, 0.001518288510851562, -0.08766540139913559, -0.0028634858317673206, -0.008838340640068054, 0.020446142181754112, 0.06886041909456253, -0.00020367609977256507, -0.062124818563461304, 0.06944166868925095, 0.011718922294676304, 0.03482340648770332, 0.0011945436708629131, -0.005645768251270056, 0.016343237832188606, -0.007782697677612305, 0.014864482916891575, -0.03781510517001152, 0.0050559756346046925, -0.007445062976330519, -0.034225065261125565, -0.03863568976521492, 0.03966141492128372, 0.004714066628366709, -0.020292283967137337, -0.022189877927303314, 0.025232864543795586, 0.030617928132414818, 0.017847636714577675, -0.0089494613930583, 0.00894091371446848, 0.0746728703379631, -0.006786888465285301, -0.04219153895974159, -0.005795353092253208, 0.041610293090343475, 0.010077760554850101, -0.0008328683325089514, 0.034327637404203415, -0.04376431927084923, 0.01506962813436985, -0.030771786347031593, -0.0044234441593289375, 0.05159403011202812, 0.06742440164089203, -0.028378425166010857, 0.04882456734776497, 0.008838340640068054, 0.0026369711849838495, -0.036857761442661285, -0.023318177089095116, -0.03549012914299965, 0.01081286370754242, -0.015274773351848125, 0.019232366234064102, 0.015223486348986626, -0.005380788818001747, -0.08157942444086075, 0.03489178791642189, -0.019693942740559578, -0.027284318581223488, -0.04581577330827713, 0.033626724034547806, -0.013471204787492752, 0.010710291564464569, 0.020753860473632812, 0.0588424950838089, 0.001063656760379672, 0.0029874276369810104, 0.01587311364710331, -0.07877577096223831, 0.0012575831497088075, 0.050807639956474304, 0.013163486495614052, -0.03942207992076874, 0.000804554030764848, 0.00072976149385795, 0.008569087833166122, -0.020292283967137337, 0.0670824944972992, -0.006671494338661432, 0.049098096787929535, -0.0021647096145898104, 0.030515355989336967, 0.007218548562377691, -0.0499870590865612, 0.020907720550894737, 0.04123419523239136, 0.012719005346298218, 0.06626191735267639, 0.006085975561290979, -0.022600168362259865, -0.01767668128013611, -0.004829461220651865, 0.022309545427560806, -0.10585494339466095, -0.013813112862408161, -0.028686143457889557, 0.0588424950838089, -0.0095136109739542, -0.03304547816514969, 0.0372338630259037, 0.04249925538897514, 0.03478921577334404, 0.022583073005080223, 0.036960333585739136, 0.02326688915491104, -0.04783303290605545, 0.06198805570602417, -0.02316431701183319, -0.005051701795309782, -0.04591834545135498, 0.020206807181239128, 0.016565479338169098, 0.018052781000733376, -0.027848467230796814, 0.014001162722706795, 0.035421743988990784, 0.008030581288039684, -0.02487386018037796, 0.025044815614819527, 0.019078508019447327, -0.003203257452696562, 0.024925148114562035, 0.011838589794933796, 0.004410622641444206, -0.02193344570696354, 0.005953486077487469, 0.02030937932431698, -0.016445809975266457, -0.08609262108802795, 0.04164448380470276, -0.04820913448929787, -0.002397635020315647, 0.05357709899544716, -0.0713905468583107, -0.033113863319158554, -0.006782614625990391, 0.013274607248604298, -0.030925646424293518, 0.02092481590807438, 0.021386392414569855, -0.0362081341445446, 0.016753528267145157, 0.02678854949772358, -0.02711336314678192, -0.02942124754190445, -0.04225992038846016, 0.0029446890112012625, -0.03617394343018532, 0.008282739669084549, 0.025403819978237152, -0.029694775119423866, 0.013086557388305664, 0.01248821709305048, -0.03942207992076874, -0.04561062529683113, -0.0019061412895098329, -0.026241496205329895, -0.0639711245894432, -0.014001162722706795, 0.014300333335995674, -0.10332482308149338, 0.0011667635990306735, 0.00020207341003697366, 0.004521742928773165, -0.008415228687226772, -0.02083933725953102, -0.011146225035190582, -0.014146474190056324, 0.036823570728302, 0.028583571314811707, -0.03466954827308655, 0.05634656175971031, 0.0024788384325802326, 0.010248714126646519, 0.03719967231154442, -0.02193344570696354, -0.010385477915406227, 0.009487967938184738, -0.0006784751894883811, -0.007667303550988436, 0.04325145483016968, -0.009265727363526821, 0.09265726804733276, 0.023813944309949875, -0.028446806594729424, -0.013659254647791386, -0.010693196207284927, 0.022531786933541298, 0.012907055206596851, 0.018428880721330643, 0.005261120852082968, -0.04742274433374405, -0.026138924062252045, -0.015719253569841385, -0.008120332844555378, -0.016257761046290398, -0.00649626599624753, 0.02557477355003357, -0.06824498623609543, 0.009248631075024605, -0.05159403011202812, 0.07932282984256744, -0.03648166358470917, -0.03815701603889465, 0.01258224155753851, 0.042601827532052994, 0.05145726725459099, 0.014881578274071217, -0.00879560224711895, 0.04294373840093613, -0.07898092269897461, -0.05439767986536026, 0.012479669414460659, -0.03082307241857052, -0.03972979635000229, -0.01506962813436985, -0.06414207816123962, 0.03511402755975723, -0.047080833464860916, 0.019232366234064102, -0.0730317085981369, -0.05244880169630051, -0.02083933725953102, -0.007115975487977266, 0.02771170437335968, -0.03624232858419418, -0.011975353583693504, -0.002203174401074648, 0.0010732728987932205, 0.005043154116719961, -0.023608798161149025, -0.01779635064303875, -0.03201975300908089, 0.031113695353269577, -0.013505395501852036, -0.0182066410779953, -0.008761411532759666, 0.02114705555140972, -0.029831537976861, -0.06468913704156876, 0.02577991969883442, -0.08875951170921326, -0.01740315556526184, 0.03819120675325394, -0.007928009144961834, -0.016428714618086815, 0.07911768555641174, 0.0010823548072949052, 0.011043651960790157, 0.025455106049776077, -0.02759203501045704, -0.011770208366215229, -0.016052614897489548, -0.03709710016846657, -0.05429510772228241, 0.07768166810274124, 0.012317262589931488, -0.0317804180085659, 0.014847387559711933, -0.008534897118806839, -0.0013986204285174608, 0.031814608722925186, -0.016839005053043365, -0.0697493851184845, -0.017745064571499825, 0.02892548032104969, -0.0149157689884305, -0.03569527342915535, -0.011736017651855946, -0.029780251905322075, -0.021899254992604256, 0.04961095750331879, 0.01648000068962574, 0.0007687604520469904, 0.0672876387834549, -0.04314888268709183, 0.02660050056874752, 0.033831868320703506, 0.015488466247916222, -0.004449087660759687, 0.03713129088282585, 0.0017683092737570405, 0.06468913704156876, -0.003938361536711454, -0.004331556614488363, -0.015710705891251564, -0.04745693504810333, -0.09860648214817047, -0.0734419971704483, -0.03236166387796402, 0.01384730450809002, 0.009770042262971401, 0.006423610728234053, 0.10592333227396011, -0.06574904918670654, -0.02711336314678192, 0.020497428253293037, 0.006252656225115061, 0.0366184264421463, -0.04714921489357948, -0.040687140077352524, -0.03955884277820587, 0.013984067365527153, -0.05056830123066902, -0.04509776458144188, 0.0011528735049068928, 0.027540748938918114, -0.005038880277425051, -0.008098963648080826, 0.005654315929859877, 0.04256763681769371, 0.0020600000862032175, 0.02668597735464573, 0.014095188118517399, 0.013813112862408161, 0.008509254083037376, -0.007910913787782192, 0.026241496205329895, -0.08000664412975311, -0.036823570728302, 0.030412781983613968, -0.006509087514132261, 0.025540582835674286, -0.08923818171024323, 0.003763133194297552, 0.05197012796998024, 0.024497762322425842, -0.05484216287732124, 0.031917180866003036, -0.0058551873080432415, 0.044140417128801346, 0.026566309854388237, 0.026173114776611328, 0.0306521188467741, 0.0063552288338541985, -0.012659171596169472, 0.01057352777570486, 0.05265394598245621, 0.03285742923617363, 0.04239668324589729, -0.028156185522675514, -0.04195220395922661, 0.025318343192338943, 0.06058622896671295, 0.0044790045358240604, 0.06219319999217987, 0.026326972991228104, -0.07898092269897461, -0.08684482425451279, 0.01234290562570095, 0.07480963319540024, 0.03832796961069107, 0.024121662601828575, 0.018445976078510284, -0.011881329119205475, 0.047080833464860916, 0.01168473158031702, -0.014599503017961979, 0.04407203570008278, -0.01972813531756401, 0.07822871953248978, 0.014163569547235966, -0.039285313338041306, 0.0499870590865612, -0.014249047264456749, -0.0380544438958168, -0.011975353583693504, -0.0059150210581719875, -0.03196846693754196, -0.018155355006456375, 0.1174798458814621, 0.02497643418610096, 0.014471287839114666, -0.023899421095848083, 0.04400365427136421, 0.034139588475227356, -0.027438176795840263, 0.0493716225028038, -0.031387221068143845, -0.002523713978007436, -0.025301247835159302, 0.035455938428640366, -0.05320100113749504, -0.02366008423268795, 0.05248299241065979, -0.06181710213422775, 0.007261286955326796, 0.04376431927084923, -0.007526266388595104, -0.013471204787492752, 0.016616765409708023, -0.020172616466879845, -0.04113162308931351, -0.016223570331931114, 0.035661082714796066, -0.03890921548008919, 0.03024182841181755, 0.0740574300289154, 0.022600168362259865, -0.038464732468128204, 0.00475253164768219, 0.0008301971829496324, -0.025044815614819527, 0.050021249800920486, -0.0009845903841778636, 0.01708688959479332, -0.07829710096120834, -0.006436432246118784, 0.029284484684467316, -0.013325893320143223, -0.027438176795840263, -0.05877411365509033, -0.013009627349674702, -0.005316680762916803, 0.01829211786389351, -0.027284318581223488, -0.0018569919047877192, 0.058398012071847916, -0.055252451449632645, 0.01542008388787508, -0.01708688959479332, 0.04964514821767807, 0.0744677260518074, -0.040892284363508224, 0.0027523653116077185, -0.027951039373874664, 0.0016272718785330653, 0.03983236849308014, -0.02516448311507702, -0.045542243868112564, -0.017933113500475883, 0.07494639605283737, -0.034037016332149506, -0.002280103974044323, 0.01909560337662697, 0.005820996128022671, -0.015240582637488842, 0.038875024765729904, 0.0017522822599858046, -0.030156351625919342, -0.03569527342915535, -0.01931784488260746, 0.007415145635604858, 0.005179917439818382, -0.03102821856737137, -0.0588424950838089, -0.03730224445462227, -0.010847054421901703, 0.021813778206706047, -0.04420880228281021, 0.02104448340833187, -0.026634691283106804, 0.008210083469748497, 0.02872033417224884, 0.025249959900975227, -0.006855270359665155, 0.0016796266427263618, -0.02104448340833187, -0.004966224543750286, 0.00945377629250288, 0.0025493570137768984, -0.001964906696230173, -0.05155983939766884, -0.08691320568323135, -0.011599253863096237, 0.018360499292612076, -0.05046572908759117, -0.03781510517001152, -0.0014050311874598265, -0.041815441101789474, 0.005868008825927973, 0.036823570728302, 0.048482660204172134, -0.014343071728944778, -0.028275853022933006, 0.04208896681666374, -0.02041195146739483, 0.0012800208060070872, -0.020001661032438278, -0.006945021450519562, 0.004098630975931883, -0.05022639408707619, 0.044345565140247345, 0.02981444261968136, -0.013966972008347511, -0.02991701476275921, 0.01006921287626028, -0.010932532139122486, 0.000793869374319911, 0.00905203353613615, 0.006662946660071611, 0.021266723051667213, 0.05962888523936272, -0.030156351625919342, -0.003090000245720148, -0.01808697171509266, 0.04051618650555611, 0.006444979924708605, 0.02364298887550831, -0.028241662308573723, 0.010368382558226585, -0.034755025058984756, -0.01313784345984459, -0.002342074876651168, -0.016941579058766365, -0.030600832775235176, 0.019488798454403877, 0.01730058155953884, -0.04714921489357948, -0.03485759720206261, -0.05508149787783623, 0.014753362163901329, -0.05682523176074028, 0.0020567947067320347, 0.02083933725953102, -0.029387056827545166, -0.02860066667199135, 0.027728799730539322, -0.049303241074085236, 0.04755950719118118, -0.041097432374954224, 0.00044394712313078344, -0.011385560967028141, -0.045849964022636414, -0.05043153837323189, 0.023437844589352608, 0.03186589479446411, -0.019693942740559578, -0.0017522822599858046, 0.009111868217587471, 0.07275818288326263, 0.04458490014076233, 0.049098096787929535, -0.004004606045782566, 0.025967968627810478, 0.0370287150144577, -0.03678938001394272, -0.02215568721294403, 0.02487386018037796, -0.04520033672451973, 0.002570726443082094, 0.01071883924305439, -0.006637303624302149, 0.018138259649276733, 0.003419087501242757, 0.02022390253841877, -0.027079172432422638, 0.08657129108905792, 0.004102904815226793, -0.024805478751659393, -0.053132619708776474, -0.02649792842566967, 0.04116581380367279, -0.047764651477336884, 0.0017789938719943166, 0.023882325738668442, -0.04400365427136421, 0.010513694025576115, -0.00503033259883523, -0.02991701476275921, -0.03338738903403282, 0.016539836302399635, 0.011607801541686058, -0.022600168362259865, 0.010693196207284927, -0.022702740505337715, 0.0915631577372551, 0.02326688915491104, 0.024138757959008217, 0.0021006017923355103, 0.0954609215259552, -0.023335272446274757, -0.003154108067974448, 0.041918013244867325, 0.004739710129797459, -0.06188548356294632, 0.020052947103977203, 0.06568066775798798, -0.022993363440036774, 0.018531454727053642, 0.03590041771531105, -0.008415228687226772, 0.011026556603610516, 0.014291785657405853, -0.01697576977312565, 0.025318343192338943, -0.03692614287137985, -0.01041112095117569, 0.04390108212828636, -0.026326972991228104, -0.040994856506586075, 0.013351536355912685, 0.025403819978237152, 0.047593697905540466, -0.041918013244867325, 0.017428798601031303, -0.006444979924708605, 0.022292450070381165, 0.036447472870349884, 0.009975187480449677 ]
728,931
tables.table
remove_rows
Remove a range of rows in the table. If only start is supplied, that row and all following will be deleted. If a range is supplied, i.e. both the start and stop parameters are passed, all the rows in the range are removed. .. versionchanged:: 3.0 The start, stop and step parameters now behave like in slice. .. seealso:: remove_row() Parameters ---------- start : int Sets the starting row to be removed. It accepts negative values meaning that the count starts from the end. A value of 0 means the first row. stop : int Sets the last row to be removed to stop-1, i.e. the end point is omitted (in the Python range() tradition). Negative values are also accepted. If None all rows after start will be removed. step : int The step size between rows to remove. .. versionadded:: 3.0 Examples -------- Removing rows from 5 to 10 (excluded):: t.remove_rows(5, 10) Removing all rows starting from the 10th:: t.remove_rows(10) Removing the 6th row:: t.remove_rows(6, 7) .. note:: removing a single row can be done using the specific :meth:`remove_row` method.
def remove_rows(self, start=None, stop=None, step=None): """Remove a range of rows in the table. If only start is supplied, that row and all following will be deleted. If a range is supplied, i.e. both the start and stop parameters are passed, all the rows in the range are removed. .. versionchanged:: 3.0 The start, stop and step parameters now behave like in slice. .. seealso:: remove_row() Parameters ---------- start : int Sets the starting row to be removed. It accepts negative values meaning that the count starts from the end. A value of 0 means the first row. stop : int Sets the last row to be removed to stop-1, i.e. the end point is omitted (in the Python range() tradition). Negative values are also accepted. If None all rows after start will be removed. step : int The step size between rows to remove. .. versionadded:: 3.0 Examples -------- Removing rows from 5 to 10 (excluded):: t.remove_rows(5, 10) Removing all rows starting from the 10th:: t.remove_rows(10) Removing the 6th row:: t.remove_rows(6, 7) .. note:: removing a single row can be done using the specific :meth:`remove_row` method. """ (start, stop, step) = self._process_range(start, stop, step) nrows = self._remove_rows(start, stop, step) # remove_rows is a invalidating index operation self._reindex(self.colpathnames) return SizeType(nrows)
(self, start=None, stop=None, step=None)
[ -0.017632097005844116, 0.01474797073751688, -0.022365249693393707, -0.050251033157110214, -0.06139827147126198, 0.008807201869785786, -0.05187888443470001, 0.06249529868364334, -0.08386968076229095, -0.07962311804294586, 0.028628934174776077, 0.045509036630392075, 0.006254838313907385, 0.010766814462840557, -0.0091655058786273, -0.007104151416569948, 0.0463937371969223, -0.02284298837184906, -0.013827881775796413, -0.03475106880068779, 0.00356976967304945, 0.009037223644554615, 0.0171985924243927, 0.04037776589393616, -0.013527083210647106, 0.03644969314336777, -0.0038329684175550938, -0.0054187956266105175, 0.022152921184897423, -0.002379846526309848, 0.0005020679673179984, 0.0031871364917606115, 0.01635812781751156, -0.013182049617171288, -0.044801272451877594, -0.03195540979504585, 0.05308207869529724, 0.00012371994671411812, 0.033760201185941696, 0.08004777133464813, -0.06352155655622482, 0.006728153210133314, 0.020719705149531364, -0.022436024621129036, 0.029018202796578407, -0.005989427678287029, 0.017676331102848053, -0.043208811432123184, -0.016765089705586433, 0.02992059849202633, 0.03708667680621147, 0.028788181021809578, 0.014447172172367573, 0.0107048861682415, -0.0045031295157969, 0.027372658252716064, -0.051772721111774445, -0.04409351199865341, 0.03683896362781525, 0.01761440373957157, 0.04366885498166084, -0.014349855482578278, 0.04101475328207016, 0.018614115193486214, 0.03319399431347847, -0.02213522605597973, -0.015880389139056206, -0.03744056075811386, -0.024258509278297424, 0.058744166046381, -0.031459979712963104, 0.04986176639795303, 0.03715745359659195, 0.058461062610149384, 0.006909517105668783, 0.033087827265262604, -0.014367548748850822, 0.030380642041563988, 0.012748545967042446, -0.052197378128767014, 0.09915731847286224, 0.023922322317957878, 0.006294649560004473, 0.0018313316395506263, 0.054108332842588425, -0.010961448773741722, -0.03338862583041191, 0.0011285471264272928, 0.027018778026103973, -0.05000331625342369, -0.04929555580019951, 0.04423506557941437, -0.02777962014079094, -0.06890054047107697, 0.04536748304963112, 0.02232986129820347, 0.0006408555200323462, -0.01628735102713108, -0.06454780697822571, -0.06631720811128616, 0.10538561642169952, 0.020259659737348557, 0.03945767879486084, 0.028345828875899315, 0.033724814653396606, -0.0697498470544815, -0.03627275303006172, -0.030451418831944466, -0.02466547302901745, 0.060372017323970795, -0.01320859044790268, 0.041191693395376205, 0.026558732613921165, 0.026487957686185837, -0.00698471674695611, -0.04688916727900505, -0.01907416060566902, -0.03367173299193382, -0.016119258478283882, -0.0023311879485845566, -0.014818746596574783, -0.018773362040519714, -0.0013358989963307977, -0.009192046709358692, 0.021232830360531807, 0.029743658378720284, 0.020825868472456932, 0.01632273942232132, 0.021179748699069023, -0.0662110447883606, 0.0019540840294212103, -0.10212992131710052, -0.02284298837184906, -0.04211178049445152, -0.024930883198976517, 0.005020679906010628, 0.08755004405975342, 0.02144515886902809, 0.059168823063373566, 0.028045032173395157, 0.021533628925681114, 0.050569526851177216, 0.005759405437856913, 0.04136863350868225, -0.000658549543004483, -0.03105301596224308, 0.023126091808080673, 0.06270762532949448, 0.05163116753101349, 0.032468538731336594, -0.04614602029323578, -0.03154844790697098, 0.05778868868947029, -0.035618074238300323, 0.014712582342326641, 0.008586025796830654, -0.026558732613921165, -0.04968482628464699, -0.0395992286503315, 0.00014625219046138227, -0.008749695494771004, 0.03618428483605385, 0.022630659863352776, -0.01567690633237362, -0.03303474560379982, 0.0541791096329689, 0.019357264041900635, -0.02024196647107601, -0.08578063547611237, 0.004772963467985392, -0.016119258478283882, 0.04798619821667671, 0.09236281365156174, -0.014110986143350601, -0.03751133382320404, 0.07254550606012344, 0.047490764409303665, 0.010784508660435677, -0.017481697723269463, 0.0033176299184560776, 0.026629509404301643, 0.00472872843965888, -0.014960299246013165, 0.0027093978133052588, 0.0010815473506227136, -0.02163979411125183, -0.03988233581185341, -0.0668480321764946, 0.023674607276916504, -0.01505761593580246, -0.02063123509287834, -0.05286974832415581, 0.02066662162542343, 0.05520536005496979, 0.02540862187743187, 0.03404330462217331, 0.00029858670313842595, 0.06221219524741173, -0.0035410169512033463, -0.013412071391940117, -0.017118969932198524, -0.004693340510129929, 0.015287638641893864, -0.006232720799744129, 0.05343595892190933, -0.03988233581185341, 0.022046755999326706, -0.04062548279762268, 0.017738260328769684, 0.049826376140117645, 0.002877491060644388, -0.07028067111968994, 0.001582509488798678, 0.02349766716361046, 0.04618140682578087, -0.0181717649102211, -0.03255700692534447, -0.019056465476751328, 0.04179329052567482, 0.006657377351075411, 0.017959436401724815, 0.00472872843965888, -0.003987791016697884, -0.08330347388982773, 0.043916571885347366, -0.01220003142952919, 0.007188198156654835, -0.05463915318250656, 0.017809037119150162, -0.004301859997212887, 0.03719284385442734, -0.050251033157110214, 0.028009643778204918, -0.004980868194252253, 0.013305907137691975, 0.07693362236022949, -0.06376927345991135, 0.035971954464912415, 0.08542675524950027, 0.010890672914683819, -0.05895649641752243, -0.010696038603782654, 0.015225709415972233, -0.04175790026783943, 0.00473757553845644, 0.047101497650146484, -0.015384955331683159, 0.021427465602755547, -0.0018081082962453365, -0.0028730675112456083, -0.009307057596743107, -0.027602680027484894, 0.0460752435028553, 0.0032579125836491585, 0.05244509503245354, 0.07742905616760254, 0.06185831502079964, -0.012633534148335457, -0.012253113090991974, -0.0003820803831331432, 0.05513458698987961, -0.08769159018993378, 0.020047331228852272, 0.023940017446875572, 0.044695109128952026, -0.009492845274508, -0.00947515107691288, 0.022559883072972298, 0.029708269983530045, 0.08026010543107986, -0.0006414084346033633, 0.053365182131528854, 0.021958285942673683, -0.0477030947804451, 0.05931037664413452, 0.011890385299921036, 0.011987702921032906, -0.10347466170787811, -0.010722579434514046, -0.027638068422675133, -0.007736712694168091, -0.03222082182765007, 0.0006154203438200057, -0.010731426998972893, 0.01891491375863552, -0.04568597674369812, 0.001915378263220191, -0.007736712694168091, -0.018844136968255043, 0.023869240656495094, -0.019428040832281113, -0.014553336426615715, -0.0687943696975708, -0.023143786936998367, 0.046676840633153915, 0.040802422910928726, -0.0454382598400116, -0.021268218755722046, -0.05092340707778931, -0.017242828384041786, 0.01992347277700901, -0.062955342233181, 0.0285581573843956, 0.03043372556567192, 0.00861699040979147, -0.009590161964297295, 0.001448698341846466, 0.0018689314601942897, -0.017543626949191093, -0.02264835312962532, 0.00223055318929255, -0.03190232813358307, -0.015190321020781994, -0.09576006978750229, -0.0026563156861811876, -0.00984672550112009, 0.03715745359659195, 0.03832526132464409, -0.027054166421294212, 0.03644969314336777, -0.04384579509496689, 0.010890672914683819, -0.02248910628259182, 0.008771813474595547, -0.0038971093017607927, -0.026841837912797928, 0.022931458428502083, 0.0441289022564888, -0.045544423162937164, 0.0010245946468785405, -0.05747019499540329, 0.02793886698782444, 0.035423438996076584, -0.009802490472793579, 0.02708955481648445, -0.08847013115882874, 0.058425672352313995, 0.023533055558800697, -0.03425563499331474, 0.041580960154533386, 0.0280627254396677, -0.024329286068677902, 0.06019507721066475, -0.035741932690143585, 0.01895030215382576, -0.009368986822664738, 0.005409948527812958, -0.01356247067451477, 0.03956384211778641, 0.03913918510079384, 0.07926923781633377, 0.07346559315919876, 0.003952403087168932, -0.01025368832051754, -0.017304757609963417, -0.04112091660499573, -0.01286355685442686, -0.0005827969871461391, 0.0067945062182843685, -0.014394090510904789, 0.00947515107691288, 0.026841837912797928, -0.01247428823262453, 0.018631810322403908, -0.012845862656831741, -0.0007116316119208932, -0.06444164365530014, -0.016075022518634796, -0.056514717638492584, 0.04526131972670555, -0.0068077766336500645, -0.024258509278297424, 0.0120850196108222, 0.058744166046381, 0.0016090505523607135, 0.04338575154542923, -0.03423793986439705, 0.00024273991584777832, -0.05113573372364044, 0.016720853745937347, -0.020224271342158318, -0.01683586649596691, -0.0314776711165905, 0.004865857306867838, -0.023515360429883003, -0.004127131775021553, -0.022559883072972298, -0.02358613722026348, -0.026240240782499313, -0.019251100718975067, -0.008431203663349152, -0.015632672235369682, 0.02930130623281002, -0.0017461791867390275, -0.02615177072584629, 0.01546457875519991, -0.024913188070058823, 0.016623537987470627, 0.032981663942337036, -0.05506381019949913, -0.01774710789322853, 0.021816734224557877, 0.008400239050388336, 0.010209453292191029, 0.008851436898112297, 0.006011545192450285, -0.020525069907307625, -0.1301572620868683, 0.05665627121925354, -0.04759693145751953, 0.006073474418371916, -0.009952889755368233, -0.005834605079144239, 0.030062150210142136, 0.04179329052567482, -0.004631411284208298, -0.008395815268158913, -0.00045976819819770753, -0.01429677288979292, 0.007811912335455418, 0.00752880796790123, -0.0015592860290780663, 0.005785946734249592, 0.017534779384732246, 0.032273903489112854, -0.03338862583041191, 0.02494857646524906, -0.04519054293632507, 0.021622098982334137, 0.031459979712963104, -0.02641718089580536, -0.026169463992118835, -0.06698958575725555, -0.009749408811330795, -0.04957865923643112, 0.014509101398289204, -0.03533497080206871, -0.011111848056316376, 0.046252183616161346, 0.02194059267640114, -0.027018778026103973, -0.022436024621129036, 0.03199080005288124, -0.035777319222688675, 0.009404375217854977, -0.004105014260858297, -0.025426315143704414, -0.03400791808962822, 0.019445734098553658, 0.04172251373529434, 0.048198528587818146, -0.007338597439229488, -0.02186981588602066, -0.04918939247727394, -0.0010179594391956925, -0.061150554567575455, -0.06047818064689636, 0.0015205803792923689, -0.0017682967009022832, 0.0033286886755377054, 0.09554774314165115, 0.05541769042611122, -0.06713113188743591, -0.0077942186035215855, 0.009112423285841942, 0.0015548625960946083, 0.02427620440721512, -0.030805299058556557, 0.002435140311717987, -0.03544113412499428, 0.013712869957089424, -0.03489261865615845, -0.026240240782499313, 0.011722291819751263, 0.00970517285168171, 0.03544113412499428, -0.06249529868364334, 0.029000509530305862, 0.006533518899232149, -0.016827018931508064, 0.009873266331851482, -0.028398912400007248, 0.011952314525842667, 0.032468538731336594, -0.01703934744000435, 0.026487957686185837, -0.03910379856824875, -0.039245348423719406, 0.05704554170370102, -0.013394378125667572, 0.04108553007245064, -0.09915731847286224, -0.031265344470739365, 0.0142790786921978, 0.022471413016319275, -0.05276358500123024, 0.025497091934084892, -0.006330037955194712, 0.0386083647608757, 0.03560037910938263, 0.031690001487731934, -0.00196293112821877, 0.06044279411435127, 0.03630814328789711, 0.04108553007245064, 0.040767036378383636, 0.059239599853754044, 0.0006795611698180437, -0.028858955949544907, -0.08365735411643982, -0.0030809722375124693, 0.013102426193654537, -0.0045915995724499226, 0.04773848131299019, 0.01603078842163086, -0.084365114569664, -0.0402362160384655, 0.010262534953653812, 0.026080993935465813, -0.014845287427306175, -0.03662663325667381, 0.025744808837771416, -0.02781500853598118, 0.09526463598012924, -0.030380642041563988, -0.009714020416140556, 0.028540464118123055, -0.023833852261304855, 0.050994183868169785, -0.013721717521548271, 0.0005366266123019159, 0.034963395446538925, 0.02553248032927513, -0.04342113807797432, 0.0025855395942926407, 0.05035719648003578, -0.03289319574832916, -0.04717227444052696, 0.12145179510116577, 0.014482560567557812, 0.028416605666279793, 0.03390175476670265, 0.02264835312962532, 0.031530752778053284, -0.04462433233857155, 0.035281889140605927, 0.013049344532191753, 0.012545064091682434, 0.01465065311640501, 0.03974078223109245, -0.03747594729065895, -0.016234269365668297, 0.06486629694700241, -0.033830977976322174, 0.008869130164384842, 0.04522592946887016, 0.0028000795282423496, -0.00953708030283451, 0.0073562911711633205, -0.023479972034692764, -0.00970517285168171, -0.013792493380606174, 0.020719705149531364, 0.0030101961456239223, -0.035618074238300323, 0.05478070303797722, 0.02657642774283886, -0.03046911209821701, -0.02638179250061512, 0.04763231799006462, -0.04062548279762268, 0.07141309231519699, -0.003771039191633463, 0.035511910915374756, -0.0288766510784626, -0.012775086797773838, 0.040837813168764114, 0.005206467118114233, -0.036945126950740814, -0.09420299530029297, 0.0032689713407307863, -0.0030411607585847378, 0.00760843139141798, -0.06706035882234573, -0.01335014309734106, 0.047101497650146484, -0.07325326651334763, 0.00799770001322031, 0.006551213096827269, 0.026452569290995598, 0.11203857511281967, -0.012606993317604065, -0.011120695620775223, -0.05421449616551399, -0.025390926748514175, 0.001252958201803267, -0.0029947138391435146, -0.06334461271762848, -0.04271337762475014, 0.06734346598386765, -0.028611240908503532, -0.01278393343091011, 0.02135668881237507, 0.01661469042301178, -0.007643819320946932, 0.030221397057175636, -0.022595271468162537, -0.022011367604136467, -0.034538738429546356, -0.026682591065764427, 0.005179926287382841, 0.011147236451506615, 0.015827305614948273, -0.03758211061358452, -0.026753367856144905, -0.007555349264293909, 0.030734524130821228, -0.05563001707196236, 0.0402362160384655, -0.02517859824001789, -0.013456306420266628, -0.06309689581394196, 0.058036405593156815, -0.011386105790734291, 0.009236281737685204, 0.012766240164637566, -0.03128303959965706, 0.07537654787302017, -0.012633534148335457, -0.0008957600803114474, -0.059558093547821045, -0.0691128671169281, -0.005759405437856913, 0.019038772210478783, -0.001993895508348942, -0.01988808438181877, -0.025744808837771416, -0.027018778026103973, 0.005520536098629236, -0.024116957560181618, 0.06727268546819687, -0.009669785387814045, 0.021657487377524376, 0.05053413659334183, -0.07650896906852722, -0.031459979712963104, -0.003492358373478055, 0.004200119525194168, 0.0011556410463526845, -0.02670028619468212, 0.04649990051984787, 0.03062835894525051, 0.02034812979400158, -0.07081149518489838, -0.013279366306960583, 0.016623537987470627, -0.002386481733992696, -0.004675646312534809, 0.05502841994166374, -0.0011069824686273932, 0.04299648478627205, 0.023957710713148117, 0.015323026105761528, -0.013102426193654537, 0.018985690549016, -0.021338995546102524, 0.06061973422765732, 0.02758498676121235, 0.01628735102713108, 0.02443544939160347, -0.01634928025305271, 0.006816623732447624, -0.05665627121925354, -0.02440006285905838, -0.003965673502534628, 0.03804215416312218, -0.025744808837771416, -0.10354544222354889, -0.04798619821667671, 0.010793356224894524, -0.06691880524158478, 0.02307301014661789, -0.026098689064383507, -0.020011942833662033, -0.02310839854180813, 0.07247473299503326, -0.08493132144212723, 0.0024085992481559515, -0.039316125214099884, 0.0076924776658415794, -0.003675933927297592, -0.024736247956752777, -0.024541614577174187, 0.026682591065764427, -0.005573618225753307, 0.03349479287862778, -0.0001738990977173671, -0.040873199701309204, 0.06766195595264435, 0.04448278248310089, 0.03291088715195656, 0.0014719218015670776, 0.0017295910511165857, 0.0314776711165905, -0.010227147489786148, -0.023674607276916504, 0.008833742700517178, 0.008816048502922058, 0.03814832121133804, 0.036095812916755676, 0.031459979712963104, 0.03547652065753937, -0.006997987162321806, 0.007975582033395767, 0.015588437207043171, 0.02540862187743187, -0.01953420415520668, -0.023763077333569527, -0.011722291819751263, -0.004098378587514162, 0.020383518189191818, -0.017853273078799248, -0.0028509499970823526, -0.047915421426296234, -0.06302612274885178, -0.00488355103880167, -0.03250392526388168, 0.007157233543694019, -0.01941034570336342, -0.008718730881810188, -0.02494857646524906, 0.03590117767453194, -0.021781345829367638, 0.019675757735967636, 0.049755603075027466, -0.032008491456508636, -0.018773362040519714, -0.013305907137691975, 0.0723685696721077, -0.0055470773950219154, -0.04214717075228691, 0.030734524130821228, 0.028699710965156555, -0.032946277409791946, 0.02638179250061512, 0.012845862656831741, -0.009360140189528465, 0.017985977232456207, -0.01025368832051754, -0.007811912335455418, 0.009510538540780544, 0.011943467892706394, -0.01390750426799059, -0.0032667594496160746, -0.0029394200537353754, -0.04384579509496689, -0.01511954516172409, -0.04260721430182457, -0.028469687327742577, -0.012465441599488258, 0.004284166265279055, 0.03583040460944176, -0.033370934426784515, 0.028009643778204918, -0.004887974821031094, 0.017269369214773178, 0.027655763551592827, 0.012164643034338951 ]
728,935
tables.table
where
Iterate over values fulfilling a condition. This method returns a Row iterator (see :ref:`RowClassDescr`) which only selects rows in the table that satisfy the given condition (an expression-like string). The condvars mapping may be used to define the variable names appearing in the condition. condvars should consist of identifier-like strings pointing to Column (see :ref:`ColumnClassDescr`) instances *of this table*, or to other values (which will be converted to arrays). A default set of condition variables is provided where each top-level, non-nested column with an identifier-like name appears. Variables in condvars override the default ones. When condvars is not provided or None, the current local and global namespace is sought instead of condvars. The previous mechanism is mostly intended for interactive usage. To disable it, just specify a (maybe empty) mapping as condvars. If a range is supplied (by setting some of the start, stop or step parameters), only the rows in that range and fulfilling the condition are used. The meaning of the start, stop and step parameters is the same as for Python slices. When possible, indexed columns participating in the condition will be used to speed up the search. It is recommended that you place the indexed columns as left and out in the condition as possible. Anyway, this method has always better performance than regular Python selections on the table. You can mix this method with regular Python selections in order to support even more complex queries. It is strongly recommended that you pass the most restrictive condition as the parameter to this method if you want to achieve maximum performance. .. warning:: When in the middle of a table row iterator, you should not use methods that can change the number of rows in the table (like :meth:`Table.append` or :meth:`Table.remove_rows`) or unexpected errors will happen. Examples -------- :: passvalues = [ row['col3'] for row in table.where('(col1 > 0) & (col2 <= 20)', step=5) if your_function(row['col2']) ] print("Values that pass the cuts:", passvalues) .. note:: A special care should be taken when the query condition includes string literals. Let's assume that the table ``table`` has the following structure:: class Record(IsDescription): col1 = StringCol(4) # 4-character String of bytes col2 = IntCol() col3 = FloatCol() The type of "col1" corresponds to strings of bytes. Any condition involving "col1" should be written using the appropriate type for string literals in order to avoid :exc:`TypeError`\ s. The code below will fail with a :exc:`TypeError`:: condition = 'col1 == "AAAA"' for record in table.where(condition): # TypeError in Python3 # do something with "record" The reason is that in Python 3 "condition" implies a comparison between a string of bytes ("col1" contents) and a unicode literal ("AAAA"). The correct way to write the condition is:: condition = 'col1 == b"AAAA"' .. versionchanged:: 3.0 The start, stop and step parameters now behave like in slice.
def where(self, condition, condvars=None, start=None, stop=None, step=None): r"""Iterate over values fulfilling a condition. This method returns a Row iterator (see :ref:`RowClassDescr`) which only selects rows in the table that satisfy the given condition (an expression-like string). The condvars mapping may be used to define the variable names appearing in the condition. condvars should consist of identifier-like strings pointing to Column (see :ref:`ColumnClassDescr`) instances *of this table*, or to other values (which will be converted to arrays). A default set of condition variables is provided where each top-level, non-nested column with an identifier-like name appears. Variables in condvars override the default ones. When condvars is not provided or None, the current local and global namespace is sought instead of condvars. The previous mechanism is mostly intended for interactive usage. To disable it, just specify a (maybe empty) mapping as condvars. If a range is supplied (by setting some of the start, stop or step parameters), only the rows in that range and fulfilling the condition are used. The meaning of the start, stop and step parameters is the same as for Python slices. When possible, indexed columns participating in the condition will be used to speed up the search. It is recommended that you place the indexed columns as left and out in the condition as possible. Anyway, this method has always better performance than regular Python selections on the table. You can mix this method with regular Python selections in order to support even more complex queries. It is strongly recommended that you pass the most restrictive condition as the parameter to this method if you want to achieve maximum performance. .. warning:: When in the middle of a table row iterator, you should not use methods that can change the number of rows in the table (like :meth:`Table.append` or :meth:`Table.remove_rows`) or unexpected errors will happen. Examples -------- :: passvalues = [ row['col3'] for row in table.where('(col1 > 0) & (col2 <= 20)', step=5) if your_function(row['col2']) ] print("Values that pass the cuts:", passvalues) .. note:: A special care should be taken when the query condition includes string literals. Let's assume that the table ``table`` has the following structure:: class Record(IsDescription): col1 = StringCol(4) # 4-character String of bytes col2 = IntCol() col3 = FloatCol() The type of "col1" corresponds to strings of bytes. Any condition involving "col1" should be written using the appropriate type for string literals in order to avoid :exc:`TypeError`\ s. The code below will fail with a :exc:`TypeError`:: condition = 'col1 == "AAAA"' for record in table.where(condition): # TypeError in Python3 # do something with "record" The reason is that in Python 3 "condition" implies a comparison between a string of bytes ("col1" contents) and a unicode literal ("AAAA"). The correct way to write the condition is:: condition = 'col1 == b"AAAA"' .. versionchanged:: 3.0 The start, stop and step parameters now behave like in slice. """ return self._where(condition, condvars, start, stop, step)
(self, condition, condvars=None, start=None, stop=None, step=None)
[ 0.08468981832265854, -0.031818490475416183, -0.026335982605814934, 0.015520486049354076, -0.01649736985564232, 0.01716523803770542, -0.0037754555232822895, 0.048684682697057724, -0.08492905646562576, -0.0462125726044178, 0.00925547257065773, 0.030203644186258316, 0.0030976177658885717, 0.03092135302722454, -0.04230503737926483, 0.019647320732474327, 0.016836287453770638, -0.011094605550169945, -0.00803436804562807, -0.0006077486323192716, -0.0038826134987175465, 0.021272137761116028, 0.01491242554038763, 0.05382827669382095, 0.046013206243515015, 0.03267575800418854, -0.042544275522232056, 0.02024541236460209, 0.028229940682649612, -0.0017244984628632665, -0.01969716139137745, -0.028170131146907806, 0.01752409338951111, -0.03462952375411987, -0.04358096793293953, -0.01739450730383396, 0.02559833601117134, -0.05673898756504059, 0.10614138096570969, 0.04808659106492996, -0.028329622000455856, -0.005397779867053032, 0.01475293468683958, 0.010725782252848148, -0.06347749382257462, -0.024242660030722618, -0.009968198835849762, -0.10566291213035583, -0.004400959704071283, 0.021431628614664078, -0.01819196343421936, 0.05964970216155052, 0.05295107513666153, -0.07819055020809174, 0.014922394417226315, -0.026654964312911034, -0.05119667202234268, -0.017813172191381454, 0.013427164405584335, 0.01707552559673786, 0.020434807986021042, 0.0002421960816718638, 0.013018468394875526, 0.05259221792221069, -0.0000850411961437203, -0.000722694443538785, 0.0008342136861756444, 0.02218921110033989, -0.044617660343647, 0.03562634438276291, -0.05829402804374695, 0.015281248837709427, 0.05482509359717369, 0.02515973523259163, -0.06798312067985535, -0.01375611498951912, -0.03325391188263893, 0.018590690568089485, 0.03269569203257561, -0.05362891033291817, 0.0898732841014862, -0.005046400707215071, -0.03855699300765991, -0.0277913399040699, -0.00012047502968925983, 0.020893344655632973, -0.07073434442281723, 0.021471500396728516, 0.0659097358584404, 0.016028864309191704, -0.05713771656155586, 0.022707557305693626, -0.0034440127201378345, -0.020534489303827286, 0.0917871743440628, 0.03528742492198944, 0.018979450687766075, 0.03203779086470604, 0.014463856816291809, 0.031340017914772034, 0.04932264983654022, -0.017882948741316795, 0.04752837494015694, -0.04326198250055313, 0.057735808193683624, -0.06894006580114365, -0.09394031018018723, -0.019776906818151474, -0.007062469143420458, -0.040829744189977646, -0.0368424654006958, 0.03269569203257561, -0.06048703193664551, -0.03385200351476669, -0.015909245237708092, -0.007057485170662403, -0.006025776267051697, -0.024123040959239006, -0.03903546929359436, -0.020893344655632973, 0.009718993678689003, 0.001482769614085555, 0.02920682355761528, 0.042863257229328156, 0.018949545919895172, 0.008647412993013859, 0.0020596792455762625, -0.01766364835202694, -0.015261312946677208, -0.07288747280836105, 0.012430344708263874, -0.059410467743873596, 0.02232876606285572, 0.012041584588587284, -0.03169887140393257, 0.022528130561113358, 0.027552101761102676, 0.03578583523631096, -0.03141976520419121, 0.03259601071476936, 0.021132582798600197, 0.006349742878228426, -0.02218921110033989, -0.010596195235848427, 0.0049417344853281975, -0.04808659106492996, -0.0006320461397990584, 0.017155271023511887, 0.007032564375549555, 0.040670253336429596, -0.04736888036131859, -0.019228655844926834, 0.012729390524327755, 0.00585631700232625, -0.028628667816519737, 0.010446672327816486, -0.004909337963908911, -0.0182617399841547, 0.019138941541314125, -0.01186215691268444, -0.019069164991378784, 0.01773342676460743, -0.04736888036131859, 0.03504818677902222, -0.006449424661695957, 0.09250488877296448, -0.0921061560511589, 0.018800023943185806, 0.017653681337833405, -0.05697822570800781, 0.06423507630825043, 0.010646036826074123, 0.12352592498064041, -0.003932454623281956, -0.0901922658085823, 0.06690654903650284, 0.02214933931827545, 0.011742538772523403, 0.022109465673565865, -0.042863257229328156, 0.0351877436041832, 0.02547871693968773, -0.05598140507936478, 0.03488869592547417, 0.05307069048285484, -0.03291499242186546, -0.0025194622576236725, -0.024461960420012474, 0.02498030662536621, 0.01022737193852663, -0.0736849308013916, -0.061164870858192444, 0.08676320314407349, 0.03383206948637962, -0.049721378833055496, 0.0006180283380672336, 0.07216975837945938, 0.02093321830034256, -0.007765226997435093, 0.06618884205818176, 0.005332986358553171, -0.07300709187984467, 0.008253668434917927, 0.030582435429096222, 0.0029779993928968906, -0.021989846602082253, 0.007630656473338604, -0.021989846602082253, -0.039613623172044754, -0.031778618693351746, -0.052871327847242355, -0.05857313796877861, -0.018540849909186363, 0.013417196460068226, 0.031001098453998566, 0.09186692535877228, -0.016058769077062607, -0.030243515968322754, 0.004114374052733183, 0.04076993465423584, 0.010102769359946251, -0.024780942127108574, -0.016626955941319466, -0.05330992862582207, 0.056459881365299225, -0.047408755868673325, 0.01645749621093273, -0.039254769682884216, -0.0030502688605338335, 0.025498652830719948, 0.0329548679292202, 0.030024215579032898, 0.06754451990127563, -0.0032172363717108965, 0.018500978127121925, 0.05454598367214203, -0.01672663725912571, 0.06826222687959671, 0.05889211967587471, -0.0019001879263669252, 0.0013170483289286494, 0.010018040426075459, 0.02466132491827011, -0.05135616287589073, 0.04445816949009895, -0.05243272706866264, -0.0063048857264220715, 0.00261665228754282, 0.015101822093129158, -0.030841607600450516, -0.050199851393699646, -0.022428447380661964, 0.04916315898299217, -0.05315043777227402, 0.046770788729190826, 0.05323018506169319, 0.07827030122280121, -0.04828595742583275, 0.024023359641432762, 0.04150757938623428, 0.0002917255915235728, -0.02783121168613434, 0.00289077777415514, -0.023983487859368324, -0.031938109546899796, -0.013427164405584335, -0.05841364711523056, -0.004799687769263983, 0.024900561198592186, 0.058054789900779724, 0.015101822093129158, 0.07807093858718872, -0.01858072355389595, 0.01914891041815281, 0.019208719953894615, 0.008532778359949589, 0.005686857737600803, -0.06355723738670349, -0.0659097358584404, -0.07723360508680344, 0.013387291692197323, 0.025339161977171898, -0.023166093975305557, -0.0018092280952259898, -0.01037689484655857, -0.0655907467007637, -0.040072161704301834, 0.0015164122451096773, 0.030721990391612053, -0.04860493913292885, 0.007281769532710314, -0.031958047300577164, 0.015819532796740532, -0.0292267594486475, 0.038636740297079086, -0.011224192567169666, -0.00009415275417268276, -0.033353593200445175, 0.01725495234131813, -0.0684615895152092, 0.018959514796733856, -0.08333414793014526, 0.022408511489629745, 0.08317465335130692, -0.04206579923629761, 0.03674278035759926, 0.03530736267566681, 0.02563820779323578, -0.027093565091490746, -0.06630846112966537, 0.0668666809797287, -0.07791144400835037, 0.003394171828404069, -0.06897994130849838, -0.014523666352033615, -0.07045523077249527, -0.015739785507321358, -0.014952298253774643, -0.06834197044372559, 0.04027152433991432, -0.010955050587654114, 0.02657521888613701, 0.038955722004175186, -0.012639676220715046, -0.0355665348470211, -0.004318722058087587, 0.05949021130800247, -0.023006603121757507, -0.03417098522186279, -0.0029904597904533148, 0.004400959704071283, 0.07484123855829239, 0.049123283475637436, 0.030123896896839142, 0.06714578717947006, -0.04314236715435982, 0.0008927768212743104, 0.04218541830778122, -0.016307974234223366, 0.018341487273573875, 0.07089383155107498, -0.03608487918972969, 0.060247793793678284, -0.03415105119347572, 0.015061948448419571, -0.043182238936424255, -0.023006603121757507, 0.0004065156099386513, 0.05107705295085907, -0.021989846602082253, 0.04274363815784454, 0.06734514981508255, -0.028369493782520294, -0.01062610000371933, -0.046611297875642776, -0.03261594846844673, -0.009051124565303326, -0.0004610292089637369, -0.025079989805817604, 0.020713917911052704, 0.09713013470172882, 0.04346134886145592, -0.020056016743183136, 0.030403006821870804, -0.02232876606285572, 0.0063896155916154385, -0.018949545919895172, 0.00788484513759613, -0.06072627007961273, 0.04218541830778122, 0.004161722958087921, 0.025099925696849823, 0.051475781947374344, 0.020993027836084366, 0.023365458473563194, -0.040351271629333496, -0.03626430779695511, 0.003394171828404069, 0.007456212770193815, 0.03999241441488266, 0.03624437376856804, -0.0061154901050031185, -0.026814455166459084, -0.006384631618857384, -0.021292073652148247, -0.01805240847170353, 0.009155791252851486, -0.009195663966238499, -0.023485077545046806, 0.017534062266349792, -0.025538526475429535, 0.016377750784158707, 0.00964423269033432, 0.0026864297688007355, 0.026196427643299103, -0.009215599857270718, -0.022707557305693626, 0.030024215579032898, -0.015899278223514557, -0.06479329615831375, -0.0555826798081398, 0.011224192567169666, -0.005313050001859665, 0.0032919978257268667, -0.01743438094854355, -0.04182656481862068, 0.031958047300577164, -0.04027152433991432, -0.019527701660990715, -0.00503394054248929, 0.0007214483921416104, -0.0012049060314893723, -0.05370865762233734, 0.014015288092195988, 0.022069592028856277, -0.015032044611871243, -0.0009158282773569226, 0.004602815955877304, 0.016607020050287247, 0.04370058327913284, 0.011892061680555344, -0.05434662103652954, 0.03514787182211876, -0.007780179381370544, -0.024780942127108574, -0.0020384967792779207, 0.021949974820017815, -0.015520486049354076, 0.00990839023143053, -0.0226278118789196, -0.06200219690799713, -0.018221868202090263, -0.0484454482793808, 0.0013943018857389688, -0.010905209928750992, 0.02844924107193947, -0.023804059252142906, 0.006778375245630741, 0.06419520080089569, -0.02657521888613701, 0.013696305453777313, -0.005990887526422739, -0.0019986238330602646, 0.024900561198592186, -0.0720900148153305, 0.014553571119904518, 0.02749229222536087, -0.01334741897881031, -0.00310260197147727, 0.006544122938066721, 0.031120717525482178, 0.017773298546671867, 0.02438221499323845, 0.006992691662162542, 0.030662180855870247, 0.03578583523631096, -0.10255283117294312, -0.0012659613275900483, -0.003922486212104559, 0.02153130993247032, 0.03337353095412254, 0.024142978712916374, -0.050997305661439896, -0.0697375237941742, -0.022727493196725845, -0.005916126072406769, -0.039593685418367386, -0.030243515968322754, 0.015211472287774086, -0.015251345001161098, -0.01849100925028324, -0.004283833783119917, -0.0559016615152359, 0.049083411693573, 0.06674706190824509, 0.06347749382257462, -0.07185077667236328, 0.007874877192080021, -0.016626955941319466, -0.0017419428331777453, 0.0033169181551784277, 0.016995780169963837, -0.021491438150405884, -0.0323169007897377, 0.01514169480651617, -0.009604359976947308, 0.012689517810940742, 0.01092514581978321, 0.025179671123623848, -0.005771587137132883, 0.05338967591524124, 0.016746575012803078, 0.05689848214387894, -0.00647932942956686, 0.001541332807391882, -0.006628852337598801, 0.007630656473338604, 0.02639579214155674, 0.02689420059323311, 0.023485077545046806, -0.0007040040800347924, 0.026674900203943253, -0.007022596430033445, 0.02579769864678383, -0.0019537669140845537, 0.011293970048427582, 0.07049510627985, -0.01514169480651617, -0.009419947862625122, -0.013257704675197601, 0.07093370705842972, -0.008667348884046078, -0.019388146698474884, -0.027412546798586845, 0.008378271013498306, -0.06981726735830307, 0.01830161362886429, 0.0242227241396904, -0.06212181597948074, -0.028927713632583618, 0.004513102117925882, 0.015061948448419571, -0.024003423750400543, 0.030123896896839142, -0.025518590584397316, 0.021650929003953934, 0.01578962802886963, -0.06702616810798645, 0.016965875402092934, -0.024481896311044693, -0.0036583291366696358, 0.03714150935411453, 0.03369251266121864, -0.03660322725772858, 0.0008890387834981084, 0.05953008681535721, -0.021172454580664635, 0.008054304867982864, -0.017215080559253693, 0.03450990468263626, 0.031818490475416183, 0.06275977939367294, 0.01780320331454277, 0.014224620535969734, -0.014772871509194374, -0.03722125664353371, -0.018042439594864845, -0.038337692618370056, -0.023166093975305557, 0.011602983810007572, 0.005422700196504593, -0.062241435050964355, 0.04625244438648224, 0.03979305177927017, -0.03126027062535286, -0.0073415786027908325, 0.015291217714548111, 0.02563820779323578, -0.0662287175655365, 0.02024541236460209, -0.020873408764600754, -0.009489725343883038, -0.005911142099648714, 0.005651968996971846, 0.009898421354591846, -0.009090997278690338, 0.06064652279019356, -0.049601759761571884, -0.0029854755848646164, 0.0335928313434124, -0.009888453409075737, 0.09832631796598434, -0.011612951755523682, 0.040829744189977646, 0.012829071842133999, 0.00030200526816770434, 0.004869465250521898, -0.0060855853371322155, -0.035367172211408615, 0.005661936942487955, -0.026635028421878815, -0.012430344708263874, -0.02529929019510746, -0.0049741314724087715, -0.004635212477296591, 0.0021768053993582726, 0.0355665348470211, 0.04250440001487732, -0.0377994105219841, 0.018640533089637756, 0.06886032223701477, -0.019627384841442108, -0.08445058017969131, -0.0021867735777050257, -0.004186643753200769, -0.0003150885459035635, -0.030084025114774704, -0.061802834272384644, -0.028788158670067787, 0.05901173874735832, -0.04354109242558479, 0.006638820748776197, 0.015331090427935123, 0.00881188828498125, -0.017404476180672646, -0.016836287453770638, 0.01172260195016861, 0.02372431382536888, -0.024262595921754837, -0.009006268344819546, -0.004979115445166826, -0.013177959248423576, 0.008323445916175842, 0.02045474387705326, -0.01992643065750599, -0.011941902339458466, -0.03823801130056381, 0.02918688766658306, 0.016517305746674538, -0.030881481245160103, -0.035387106239795685, -0.03857693076133728, 0.0652717649936676, 0.04453791305422783, 0.019896525889635086, -0.023485077545046806, 0.031140653416514397, -0.012370535172522068, -0.0032047759741544724, 0.0000901810490177013, -0.035387106239795685, 0.06535151600837708, 0.05486496910452843, 0.01500213984400034, -0.020374998450279236, -0.0007862417260184884, -0.020674044266343117, -0.056778863072395325, 0.0071771033108234406, -0.02950586937367916, -0.0010497759794816375, 0.07193052768707275, 0.04150757938623428, -0.007321642246097326, 0.03718138113617897, 0.013706273399293423, 0.01076565496623516, -0.024103105068206787, 0.00028954504523426294, -0.05311056599020958, -0.0019687192980200052, 0.03291499242186546, -0.021052837371826172, 0.019876588135957718, -0.02797076664865017, -0.0016397687140852213, -0.0031225383281707764, -0.020674044266343117, 0.009066076949238777, 0.013018468394875526, 0.032237157225608826, 0.04342147707939148, -0.0051386067643761635, -0.03401149436831474, -0.01919875107705593, -0.0075857993215322495, 0.04872455820441246, 0.004585371818393469, 0.03309442102909088, 0.02751222997903824, -0.0047797514125704765, 0.01741444319486618, -0.04445816949009895, -0.0026465568225830793, 0.02735273912549019, -0.020674044266343117, -0.03441022336483002, -0.10382876545190811, -0.03752030059695244, -0.036304179579019547, -0.02701381966471672, 0.0022652733605355024, 0.006564059294760227, 0.018909674137830734, 0.024880625307559967, 0.013945510610938072, -0.025717953220009804, -0.0007189563475549221, -0.02061423659324646, -0.033971622586250305, -0.028170131146907806, 0.012051552534103394, 0.0007768965442664921, -0.03435041382908821, 0.008602555841207504, -0.012749326415359974, -0.020853472873568535, 0.0003158673061989248, 0.059410467743873596, 0.061284489929676056, -0.003897565882652998, -0.0014092541532590985, 0.0036907256580889225, 0.024721134454011917, 0.024940434843301773, -0.018590690568089485, 0.007815067656338215, -0.013795987702906132, 0.07835004478693008, 0.031120717525482178, -0.0023176062386482954, 0.04457778483629227, -0.018311582505702972, -0.058174408972263336, 0.012310725636780262, 0.02015569806098938, -0.09059099107980728, -0.03169887140393257, 0.010147626511752605, 0.0008497889502905309, 0.015101822093129158, -0.03514787182211876, 0.016507336869835854, -0.05215361714363098, -0.01898941956460476, 0.018271708860993385, -0.01914891041815281, 0.0348687618970871, -0.013576687313616276, -0.0021356865763664246, -0.01086533721536398, 0.008094177581369877, -0.020056016743183136, 0.038198139518499374, 0.03903546929359436, -0.021770546212792397, -0.038218073546886444, -0.04142783582210541, -0.05103718116879463, 0.0024820815306156874, 0.0008846776909194887, 0.04964163154363632, 0.003110078163444996, -0.07543933391571045, -0.0052731772884726524, 0.027711592614650726, -0.01461337972432375, -0.013088245876133442, 0.022568002343177795, 0.01461337972432375, -0.01460341177880764, 0.028768222779035568, 0.034270670264959335, 0.005567239131778479, 0.03823801130056381, 0.04593346267938614, -0.0006821986171416938, -0.025518590584397316, -0.04274363815784454, 0.03658328950405121, -0.0930631086230278, 0.08572651445865631, 0.006494281813502312, 0.03698201850056648, 0.004226516466587782, 0.002222908427938819, 0.02001614309847355, 0.05091756209731102 ]
728,936
tables.table
will_query_use_indexing
Will a query for the condition use indexing? The meaning of the condition and *condvars* arguments is the same as in the :meth:`Table.where` method. If condition can use indexing, this method returns a frozenset with the path names of the columns whose index is usable. Otherwise, it returns an empty list. This method is mainly intended for testing. Keep in mind that changing the set of indexed columns or their dirtiness may make this method return different values for the same arguments at different times.
def will_query_use_indexing(self, condition, condvars=None): """Will a query for the condition use indexing? The meaning of the condition and *condvars* arguments is the same as in the :meth:`Table.where` method. If condition can use indexing, this method returns a frozenset with the path names of the columns whose index is usable. Otherwise, it returns an empty list. This method is mainly intended for testing. Keep in mind that changing the set of indexed columns or their dirtiness may make this method return different values for the same arguments at different times. """ # Compile the condition and extract usable index conditions. condvars = self._required_expr_vars(condition, condvars, depth=2) compiled = self._compile_condition(condition, condvars) # Return the columns in indexed expressions idxcols = [condvars[var].pathname for var in compiled.index_variables] return frozenset(idxcols)
(self, condition, condvars=None)
[ 0.03235352411866188, -0.01755603402853012, -0.026178767904639244, 0.043807875365018845, 0.05758232995867729, 0.01879829168319702, -0.012294704094529152, -0.004660752601921558, -0.037176407873630524, -0.07113756239414215, -0.014377313666045666, -0.0055627599358558655, 0.007672772277146578, -0.04680391028523445, -0.007905695587396622, -0.009335205890238285, 0.020570337772369385, 0.030544940382242203, 0.01306198164820671, -0.0397157296538353, -0.011490889824926853, -0.01306198164820671, -0.0013473022263497114, 0.02884596958756447, 0.0459270216524601, 0.04797309637069702, -0.03967919200658798, 0.00528873223811388, 0.003879773896187544, -0.0015528229996562004, -0.0605783648788929, -0.051005665212869644, 0.026050888001918793, -0.013920601457357407, -0.028261378407478333, 0.0017549182521179318, 0.04581741243600845, 0.006709108594805002, 0.09886915236711502, -0.028535405173897743, 0.01985786482691765, -0.07055296748876572, 0.003062258241698146, -0.03396115079522133, -0.04680391028523445, -0.04216371104121208, -0.032883308827877045, -0.06514549255371094, 0.05539010837674141, -0.0026101127732545137, 0.0015356962103396654, 0.012614402920007706, 0.046511612832546234, -0.01755603402853012, 0.01292496733367443, -0.013610036112368107, -0.006037740968167782, 0.02813349850475788, 0.02890077605843544, -0.005238493904471397, -0.037742730230093, 0.023529835045337677, -0.022506797686219215, -0.008896762505173683, 0.012751416303217411, -0.007147552911192179, -0.020131893455982208, 0.024297112599015236, -0.030928580090403557, -0.016058016568422318, -0.08513123542070389, -0.006996837444603443, 0.04508667066693306, 0.005868757143616676, -0.04212717339396477, -0.06744731962680817, -0.041798342019319534, 0.015372946858406067, 0.03209776431322098, -0.036811038851737976, -0.006549259182065725, -0.044502079486846924, -0.038692694157361984, -0.003708506701514125, 0.012294704094529152, -0.010449585504829884, -0.03518513962626457, 0.04472130164504051, 0.05831306800246239, -0.07694694399833679, -0.005823086015880108, 0.0436982661485672, 0.0072617307305336, 0.009545293636620045, -0.006435080897063017, 0.028170036152005196, 0.011454353109002113, -0.0194924958050251, 0.011993274092674255, 0.0013849810929968953, -0.012203361839056015, -0.003726775059476495, 0.031220875680446625, -0.0011029610177502036, -0.018780022859573364, 0.01251392625272274, -0.05385555326938629, -0.06518203020095825, -0.010979372076690197, -0.10690729320049286, 0.004156085196882486, -0.02440672367811203, -0.022926975041627884, -0.058751512318849564, 0.010687075555324554, -0.057143885642290115, 0.017464691773056984, -0.036409132182598114, -0.04578087478876114, -0.025009583681821823, 0.030965115875005722, 0.020643411204218864, 0.000700482982210815, 0.03788888081908226, 0.022652946412563324, 0.02378559485077858, 0.0015128606464713812, 0.017793525010347366, -0.039240747690200806, 0.006183889228850603, -0.004409560468047857, -0.05042107403278351, 0.021136660128831863, 0.07723923772573471, 0.032116033136844635, 0.02115492895245552, 0.023146197199821472, 0.02088090218603611, -0.05429399758577347, 0.023968279361724854, -0.004800049588084221, -0.003601179225370288, -0.0474250391125679, -0.0033796734642237425, 0.02247026190161705, -0.0005971517530269921, -0.010175557807087898, -0.028444062918424606, -0.04077530279755592, -0.03671969473361969, 0.005142584443092346, -0.008143186569213867, -0.09338860213756561, -0.07358554005622864, -0.0635743960738182, -0.005718042142689228, -0.02917480282485485, -0.036884114146232605, 0.055207423865795135, -0.01735508069396019, -0.03207949548959732, -0.015089785680174828, -0.048923056572675705, -0.014295105822384357, 0.0012022959999740124, 0.062478289008140564, -0.08388897776603699, -0.0409579873085022, -0.023621177300810814, 0.028681553900241852, 0.00537550775334239, 0.021794326603412628, 0.010394779965281487, -0.02115492895245552, -0.04410017281770706, -0.0033933748491108418, -0.017729584127664566, 0.04033685848116875, 0.0036354325711727142, -0.015482557937502861, 0.02813349850475788, -0.04011763632297516, -0.07106448709964752, -0.03480150178074837, 0.04209063574671745, 0.0027882305439561605, -0.018021879717707634, 0.0001929610880324617, 0.04673083499073982, 0.052649833261966705, -0.019675180315971375, -0.0670454129576683, 0.07022413611412048, 0.00445979880169034, -0.02172125317156315, -0.010312571190297604, 0.017464691773056984, 0.0020631994120776653, 0.037030261009931564, 0.0427117645740509, 0.018706949427723885, -0.03162278234958649, 0.025119194760918617, 0.033084262162446976, 0.011828857474029064, 0.037742730230093, -0.01133560761809349, -0.05042107403278351, -0.030234375968575478, -0.04322328418493271, -0.059774547815322876, -0.07533931732177734, 0.0032654954120516777, -0.0018142908811569214, 0.019894402474164963, 0.10712651908397675, 0.00923472922295332, 0.024845167994499207, 0.08447356522083282, 0.04508667066693306, 0.059080347418785095, -0.009088581427931786, 0.04325982183218002, -0.018031014129519463, 0.01943768933415413, -0.0652916356921196, 0.012495657429099083, 0.010065946727991104, -0.019474226981401443, -0.05593816190958023, 0.006677138619124889, 0.05750925466418266, 0.014505193568766117, -0.020935706794261932, -0.01057746447622776, 0.0854235291481018, 0.04720581695437431, 0.06061490252614021, 0.10149981826543808, 0.010897163301706314, -0.03374192863702774, 0.05641314387321472, 0.044355932623147964, -0.06393976509571075, -0.03131221979856491, -0.04285791516304016, 0.020131893455982208, 0.011445218697190285, -0.011947602964937687, -0.0409579873085022, -0.09463085979223251, -0.05151718482375145, 0.0027676785830408335, -0.03522167727351189, 0.052028704434633255, 0.1030343696475029, -0.004446097649633884, 0.0035189709160476923, -0.02038765139877796, 0.010285168886184692, -0.05096913129091263, 0.0009602383361198008, 0.0163229089230299, -0.04680391028523445, -0.02046072669327259, -0.03410729765892029, 0.018907902762293816, 0.04431939497590065, -0.020223235711455345, 0.016496460884809494, 0.03803502768278122, 0.07062604278326035, -0.050384536385536194, 0.002870438853278756, 0.004758945666253567, 0.010440451093018055, -0.0007370199891738594, -0.04797309637069702, -0.05886112526059151, -0.0046287826262414455, -0.035367827862501144, 0.0033362857066094875, -0.037176407873630524, 0.03428998589515686, -0.016980575397610664, -0.028517136350274086, -0.04874037206172943, -0.004578544292598963, -0.0053481049835681915, -0.048996131867170334, 0.00912968534976244, -0.029887273907661438, 0.04852114990353584, -0.016441654413938522, -0.008983537554740906, -0.02557590790092945, 0.01983959600329399, -0.041725266724824905, 0.0015254202298820019, 0.006987703498452902, 0.01597580872476101, -0.01020296011120081, -0.00646705087274313, 0.029540173709392548, -0.00960923358798027, 0.04486744850873947, 0.030745893716812134, 0.04439246654510498, 0.016350312158465385, -0.0811852365732193, 0.034874577075242996, -0.0027996485587209463, -0.003950564190745354, -0.03445440158247948, 0.023968279361724854, -0.07738538831472397, -0.05688812583684921, -0.03355924412608147, -0.04461168870329857, 0.08907723426818848, -0.048776909708976746, 0.0605783648788929, 0.016697414219379425, -0.06741078197956085, -0.06196676939725876, 0.01901751384139061, 0.04903266951441765, -0.059336107224226, -0.007786950562149286, 0.0315314419567585, -0.015957539901137352, 0.014085018076002598, 0.027548905462026596, 0.004656185396015644, 0.030252644792199135, -0.11436084657907486, 0.008800852112472057, 0.026781629770994186, 0.02413269504904747, 0.038838841021060944, 0.008759748190641403, -0.052174851298332214, 0.06467051059007645, -0.005969234276562929, 0.015327275730669498, -0.07113756239414215, -0.028645016252994537, 0.03175066411495209, 0.004121831618249416, 0.012431717477738857, -0.006220425944775343, 0.048228852450847626, -0.02462594583630562, 0.03339482843875885, -0.013847527094185352, 0.009147954173386097, 0.004941630642861128, 0.02281736396253109, -0.0188713651150465, 0.0673011764883995, 0.11260706931352615, 0.020278040319681168, 0.03905806317925453, -0.0034321954008191824, -0.01894444040954113, -0.00470414012670517, 0.03566012158989906, -0.02398654818534851, 0.018350712954998016, -0.06832420825958252, -0.03270062431693077, -0.032262180000543594, 0.05593816190958023, 0.046913523226976395, 0.021337613463401794, -0.030892042443156242, -0.0580938458442688, -0.006124516483396292, -0.00724346237257123, -0.030197840183973312, 0.02877289615571499, -0.025192268192768097, 0.010230363346636295, -0.01804928295314312, -0.03818117454648018, 0.0140302125364542, 0.017619973048567772, -0.01330860611051321, -0.0032175404485315084, 0.05283251777291298, -0.009837590157985687, 0.0004789773665834218, -0.03200642019510269, 0.000593155506066978, -0.020168429240584373, -0.010641404427587986, 0.03355924412608147, 0.029284413903951645, 0.01749209314584732, -0.03560531511902809, -0.025119194760918617, 0.028188303112983704, -0.01631377451121807, 0.03472843021154404, -0.018643010407686234, 0.01624983549118042, 0.03671969473361969, -0.04731542989611626, -0.004357038531452417, -0.016359446570277214, -0.0035281050950288773, 0.02170298434793949, -0.037706196308135986, 0.04315020889043808, 0.0008614741964265704, 0.017373349517583847, 0.08264672011137009, -0.035861074924468994, 0.05619392171502113, 0.07376822829246521, 0.04881344735622406, -0.04771733656525612, 0.025630712509155273, 0.012422583997249603, 0.0017126724123954773, 0.01431337371468544, -0.010632270015776157, -0.005211091134697199, -0.061857160180807114, 0.011408681981265545, -0.04260215535759926, -0.04030032455921173, -0.01976652257144451, 0.006677138619124889, -0.014706146903336048, 0.0046630362048745155, -0.020204966887831688, 0.02427884377539158, 0.01943768933415413, 0.021008780226111412, 0.053124815225601196, -0.011180325411260128, -0.039167676120996475, 0.024808630347251892, -0.010075081139802933, -0.000523506838362664, 0.00313761574216187, 0.057363107800483704, 0.038546547293663025, -0.021228002384305, 0.021684715524315834, 0.045598190277814865, 0.031988151371479034, 0.0017001128289848566, 0.02033284679055214, 0.06810498982667923, -0.0767277255654335, 0.005946398712694645, 0.010303436778485775, 0.032591015100479126, 0.0005728889373131096, 0.021611642092466354, -0.06478012353181839, -0.02785946987569332, 0.024443259462714195, 0.024845167994499207, -0.052942126989364624, -0.026781629770994186, 0.03339482843875885, 0.03162278234958649, -0.027841202914714813, -0.018999245017766953, -0.092365562915802, -0.03655527904629707, 0.021136660128831863, 0.0374869741499424, -0.05392862856388092, 0.0742432028055191, 0.03699372336268425, -0.001516285934485495, 0.014559999108314514, 0.053124815225601196, -0.01390233263373375, -0.020570337772369385, 0.008654704317450523, -0.008147753775119781, 0.03436305746436119, 0.017994478344917297, 0.01673395000398159, -0.026361452415585518, 0.057911161333322525, -0.017245469614863396, 0.07555853575468063, -0.036062028259038925, 0.08827342092990875, 0.031239144504070282, -0.0297959316521883, 0.037030261009931564, 0.03408903256058693, 0.03629951924085617, -0.004288531839847565, 0.019894402474164963, -0.02981420047581196, 0.037706196308135986, -0.04420978203415871, -0.030672820284962654, 0.06565700471401215, -0.03540436178445816, 0.014322508126497269, -0.046986594796180725, 0.003676536725834012, -0.030800700187683105, -0.02004055120050907, -0.005517088808119297, 0.07241635769605637, 0.04340596869587898, -0.018624741584062576, -0.018286773934960365, 0.0006154202856123447, 0.006425946950912476, -0.01971171796321869, 0.013500425033271313, -0.033303484320640564, 0.00027702475199475884, 0.004624215420335531, 0.0618206225335598, -0.015738317742943764, -0.017601704224944115, 0.01503498014062643, 0.013162458315491676, -0.017126724123954773, 0.012778819538652897, 0.06028606742620468, -0.00724346237257123, 0.02378559485077858, 0.07519316673278809, 0.03843693435192108, 0.00086832488887012, 0.017537765204906464, 0.005485118832439184, 0.007444415707141161, 0.038473471999168396, 0.05027492716908455, -0.0309103112667799, 0.003290614578872919, -0.00028587356791831553, 0.010175557807087898, -0.05250368267297745, 0.0021876534447073936, -0.026708554476499557, 0.03244486451148987, 0.014879697933793068, 0.05418438836932182, -0.0034207776188850403, -0.0003205551765859127, -0.0038523711264133453, -0.0016635757638141513, 0.01569264568388462, -0.057765014469623566, 0.027695054188370705, 0.00868210755288601, -0.030307451263070107, 0.06920109689235687, 0.009563562460243702, -0.061857160180807114, 0.006686273030936718, 0.047534652054309845, -0.08103909343481064, 0.03573319688439369, 0.007316536270081997, -0.020570337772369385, 0.004046474117785692, 0.024589408189058304, 0.06079758703708649, 0.034947652369737625, 0.019656911492347717, 0.04680391028523445, -0.05151718482375145, 0.015372946858406067, 0.018378116190433502, 0.0017435004701837897, -0.018131490796804428, -0.020168429240584373, 0.04384441301226616, 0.01231297291815281, -0.00028858528821729124, 0.11428777128458023, 0.016222432255744934, 0.020095355808734894, -0.05911688506603241, 0.0065903631038963795, -0.030727626755833626, 0.020204966887831688, -0.013052847236394882, 0.024845167994499207, 0.005302433855831623, -0.07614313066005707, -0.06624159961938858, 0.01791226863861084, 0.01929154247045517, -0.01963864266872406, -0.008166021667420864, -0.039021529257297516, -0.005407477729022503, -0.00432050134986639, -0.04735196754336357, -0.004978167824447155, 0.03547743707895279, -0.00435475492849946, -0.0326458178460598, -0.026452796533703804, -0.04793655872344971, -0.03326694667339325, 0.039459969848394394, -0.012988907285034657, -0.029668053612113, -0.0409579873085022, 0.04143296927213669, 0.03566012158989906, -0.004240576643496752, -0.062112919986248016, -0.005439447239041328, 0.08155060559511185, 0.02711046114563942, 0.015436886809766293, -0.008974403142929077, 0.08505816012620926, -0.009453951381146908, -0.04486744850873947, 0.029923811554908752, -0.014176360331475735, 0.06244175136089325, 0.02614223025739193, 0.053417108952999115, -0.024808630347251892, -0.03602549433708191, 0.005713474936783314, 0.0062478287145495415, 0.014039346016943455, 0.020168429240584373, -0.04150604456663132, 0.041725266724824905, 0.06565700471401215, -0.034125566482543945, 0.04969033598899841, 0.03511206805706024, 0.020643411204218864, -0.060322605073451996, 0.03531302139163017, -0.0008694666903465986, -0.04402709752321243, 0.003256361000239849, -0.019656911492347717, 0.008033575490117073, -0.05246714875102043, 0.048923056572675705, -0.04300406202673912, -0.04479437693953514, 0.004169786348938942, -0.00958183128386736, 0.035093799233436584, 0.0055490583181381226, -0.001821141573600471, -0.04406363517045975, 0.005425746086984873, -0.003203839063644409, -0.01978479139506817, -0.013801855966448784, 0.02661721222102642, 0.015217664651572704, 0.05126142501831055, 0.016816159710288048, -0.04285791516304016, -0.017044516280293465, 0.03609856590628624, 0.010266900062561035, 0.02053380012512207, -0.08483894169330597, -0.0027905141469091177, -0.0911233052611351, 0.009919798001646996, -0.008595331571996212, 0.012660074047744274, 0.0006730802706442773, 0.033084262162446976, 0.00027274308376945555, 0.023950010538101196, -0.027896007522940636, 0.015866197645664215, -0.05849575251340866, -0.041104137897491455, -0.004041906911879778, 0.021684715524315834, 0.02696431428194046, 0.015729183331131935, 0.004416411276906729, -0.02177605777978897, 0.03438132628798485, 0.009252998046576977, 0.0020723335910588503, -0.001058431575074792, -0.03228044882416725, 0.028023887425661087, 0.030179571360349655, 0.013473022729158401, 0.0017229483928531408, -0.0005880175158381462, -0.00527046388015151, 0.05911688506603241, -0.002902408828958869, -0.013820123858749866, 0.01113465428352356, 0.01390233263373375, -0.004012220539152622, 0.037998490035533905, -0.027914276346564293, -0.02911999821662903, 0.02510092593729496, -0.01309851836413145, 0.02219623327255249, 0.03956958279013634, -0.008768882602453232, 0.007165821269154549, -0.016551265493035316, -0.024150963872671127, -0.05688812583684921, 0.02004055120050907, -0.015372946858406067, -0.013664841651916504, -0.013975406996905804, -0.003461881773546338, -0.018569935113191605, 0.016140224412083626, -0.010056812316179276, 0.00615191925317049, -0.008092948235571384, -0.007572295609861612, -0.04600009694695473, -0.05126142501831055, 0.04446554183959961, 0.020150162279605865, 0.031768929213285446, -0.02793254517018795, -0.04479437693953514, 0.033011190593242645, 0.013957138173282146, 0.015217664651572704, -0.010668806731700897, 0.01413982268422842, 0.009855858981609344, 0.04578087478876114, 0.03582453727722168, 0.020278040319681168, -0.01728200539946556, 0.030745893716812134, 0.04066569358110428, 0.05750925466418266, 0.002284704940393567, -0.021940475329756737, 0.02289043739438057, -0.07234328240156174, 0.020862633362412453, -0.054878588765859604, 0.005937264300882816, -0.028645016252994537, -0.044136710464954376, 0.01846032403409481, 0.03615337237715721 ]
728,937
tables.atom
Time32Atom
Defines an atom of type time32.
class Time32Atom(TimeAtom): """Defines an atom of type time32.""" itemsize = 4 type = 'time32' _defvalue = 0 def __init__(self, shape=(), dflt=_defvalue): Atom.__init__(self, 'int32', shape, dflt)
(shape=(), dflt=0)
[ 0.053975269198417664, 0.04149985313415527, -0.03218875825405121, 0.02744227834045887, 0.03411644324660301, -0.03138858452439308, -0.039390310645103455, -0.004575986415147781, -0.01938599720597267, -0.030570225790143013, 0.03169774264097214, 0.026205649599432945, -0.0010871661361306906, 0.008688236586749554, -0.004237276967614889, 0.03742624819278717, -0.002212977036833763, 0.07310666888952255, -0.06194062530994415, -0.01878586784005165, 0.022132042795419693, 0.011284250766038895, -0.035844091325998306, 0.0401541106402874, 0.048301320523023605, 0.04550071805715561, -0.029788238927721977, 0.013684768229722977, -0.049610693007707596, -0.06772369146347046, -0.03340720012784004, 0.019877010956406593, -0.0034530169796198606, 0.016312606632709503, 0.012902781367301941, -0.05746693164110184, -0.029133552685379982, 0.026096533983945847, -0.11587952077388763, 0.046737346798181534, 0.09602069854736328, -0.04262737184762955, -0.02493264712393284, -0.016821807250380516, 0.03342538699507713, -0.03287981450557709, 0.09129240363836288, -0.003612142289057374, -0.02662392146885395, -0.018458524718880653, 0.021531913429498672, -0.05892179161310196, 0.012448137626051903, 0.025132689625024796, -0.12395399063825607, 0.07088800519704819, 0.023495974019169807, 0.07041517645120621, -0.0695786327123642, 0.06263168156147003, -0.026987634599208832, 0.0803082212805748, 0.027587763965129852, -0.03540763258934021, -0.013884810730814934, -0.014848655089735985, -0.03373454511165619, -0.019295068457722664, -0.02211385779082775, 0.05823073536157608, -0.00831997487694025, -0.009161065332591534, 0.01936781033873558, 0.014975955709815025, 0.056848619133234024, -0.034752946346998215, -0.04539160430431366, 0.022513944655656815, 0.011047836393117905, 0.010729585774242878, -0.0005251131951808929, 0.02258668653666973, -0.002618746366351843, 0.04419134557247162, -0.023459602147340775, 0.0061467792838811874, 0.026460248976945877, 0.01644900068640709, -0.0648503452539444, -0.029133552685379982, -0.01627623476088047, -0.027260420843958855, -0.05081095173954964, -0.0012445864267647266, -0.00036144154728390276, -0.0048828707076609135, 0.01971334032714367, -0.06212248280644417, -0.048410434275865555, 0.0036712458822876215, -0.02078629843890667, -0.07630735635757446, -0.053538814187049866, -0.04953794926404953, -0.015530620701611042, 0.02104089967906475, -0.011647965759038925, -0.03311622887849808, -0.049974408000707626, 0.0016048913821578026, -0.011820729821920395, 0.05219306796789169, -0.03055204078555107, 0.03133402764797211, 0.01515781320631504, 0.01911321096122265, 0.027533207088708878, 0.05441172793507576, 0.022623058408498764, 0.030570225790143013, 0.05124741047620773, 0.01028403453528881, -0.016048913821578026, 0.035444002598524094, 0.01949511095881462, 0.039135709404945374, 0.03680793568491936, -0.006074036471545696, -0.04677371680736542, -0.007342491764575243, -0.004619177430868149, 0.0200770553201437, 0.020768113434314728, 0.027133122086524963, 0.018931353464722633, -0.012657273560762405, 0.024296145886182785, -0.026205649599432945, -0.06372282654047012, 0.03398914635181427, -0.005742146633565426, 0.07521621137857437, 0.0712880939245224, -0.040808796882629395, -0.019440554082393646, 0.0444459430873394, -0.040699683129787445, 0.0127754807472229, 0.0012786847073584795, 0.05266589671373367, -0.00974755547940731, -0.011738893575966358, 0.01206623762845993, 0.09951236099004745, -0.035007547587156296, 0.00038218466215766966, 0.012648181058466434, -0.058994535356760025, 0.007728938944637775, -0.0037144371308386326, -0.061722394078969955, -0.006733269430696964, -0.010056713595986366, -0.07001509517431259, 0.0008967841858975589, 0.007442513480782509, -0.0420817993581295, -0.0732157826423645, -0.02184107154607773, 0.009756648913025856, -0.0056512183509767056, -0.05172023922204971, 0.05062909424304962, -0.009356562048196793, 0.06757820397615433, -0.03578953444957733, -0.03458927571773529, -0.004489603918045759, 0.0659051164984703, -0.001709459349513054, 0.0397176519036293, 0.016103470697999, -0.03782633692026138, -0.0023220914881676435, -0.016485372558236122, 0.05535738542675972, -0.018040252849459648, 0.008047189563512802, 0.04713743180036545, 0.012757295742630959, 0.029133552685379982, 0.04731928929686546, -0.03899022191762924, 0.020877227187156677, 0.01752195879817009, 0.006746908649802208, 0.021822886541485786, -0.008710968308150768, 0.0032961650285869837, 0.05997656285762787, -0.004298653919249773, 0.019531482830643654, 0.02125912718474865, -0.022077485918998718, 0.0444459430873394, -0.051029182970523834, 0.04706469178199768, -0.017312822863459587, -0.05575747415423393, 0.0052511319518089294, -0.03204327076673508, -0.05182935297489166, 0.02709675021469593, 0.05619392916560173, -0.016330793499946594, -0.0762346163392067, -0.09631166607141495, 0.0012377668172121048, 0.013812067918479443, 0.027151307091116905, 0.10016704350709915, -0.002725587459281087, -0.03551674634218216, -0.0536842979490757, 0.035953205078840256, 0.0012457231059670448, -0.003718983381986618, -0.0074561526998877525, -0.035444002598524094, 0.02353234589099884, 0.012266280129551888, 0.03187960013747215, -0.054120756685733795, -0.009070136584341526, 0.04226365685462952, 0.02886076644062996, 0.027842365205287933, -0.018713124096393585, -0.05746693164110184, -0.02080448530614376, -0.0058876327238976955, 0.028351565822958946, 0.0255509614944458, -0.026405692100524902, 0.021186385303735733, -0.05037449300289154, 0.0025823747273534536, 0.04753752052783966, -0.08758251368999481, -0.008024456910789013, -0.09136515110731125, -0.006460483651608229, 0.008920104242861271, 0.008738246746361256, 0.019458739086985588, -0.004000862594693899, -0.0012673186138272285, -0.05230218172073364, -0.01971334032714367, -0.008219953626394272, -0.026678478345274925, 0.0037939995527267456, 0.04622814804315567, 0.041281625628471375, 0.03704435005784035, 0.020149797201156616, -0.03218875825405121, 0.0442277155816555, -0.03204327076673508, 0.021895628422498703, 0.12853679060935974, -0.022022929042577744, -0.02600560523569584, -0.018440337851643562, -0.030970312654972076, -0.04870140552520752, 0.013121009804308414, -0.010920535773038864, -0.017640165984630585, -0.0063104513101279736, -0.027387721464037895, -0.0060058399103581905, 0.003819005098193884, -0.022532129660248756, -0.026332948356866837, -0.010156734846532345, 0.011829822324216366, 0.022895844653248787, -0.020986340939998627, -0.014985048212110996, -0.02067718468606472, 0.006892394740134478, 0.017658350989222527, 0.006910580676048994, 0.07470700889825821, 0.019913382828235626, -0.013557467609643936, 0.03982676565647125, 0.013993925414979458, 0.008292696438729763, 0.04135436937212944, 0.015903428196907043, -0.03171592578291893, 0.011320621706545353, -0.00924290157854557, 0.026060162112116814, -0.01938599720597267, 0.05757604539394379, 0.03160681203007698, 0.03064296953380108, 0.025023575872182846, 0.00888827908784151, -0.06194062530994415, 0.0017992514185607433, 0.0397176519036293, 0.0886736586689949, -0.00023343099746853113, -0.023914245888590813, 0.016330793499946594, 0.053975269198417664, -0.009947598911821842, -0.02696944959461689, 0.028224265202879906, -0.034043703228235245, -0.028006037697196007, -0.10031253099441528, -0.02686033584177494, -0.0267330352216959, -0.0403723381459713, 0.02567826211452484, -0.030588410794734955, -0.0008325658272951841, 0.017658350989222527, 0.014093946665525436, -0.013775696977972984, -0.019804269075393677, 0.018440337851643562, 0.009847577661275864, 0.007201552391052246, -0.011247878894209862, 0.07798044383525848, 0.024423446506261826, -0.03335264325141907, 0.03424374386668205, 0.01958603970706463, -0.03775359317660332, 0.003300711512565613, -0.014175782911479473, 0.0575396753847599, 0.0054784538224339485, 0.0042395503260195255, -0.019167767837643623, -0.04826495051383972, 0.026060162112116814, 0.04066330939531326, -0.008001725189387798, 0.0025096319150179625, -0.07718027383089066, 0.003880381816998124, 0.01653083600103855, 0.009042858146131039, 0.006592330057173967, 0.030588410794734955, -0.009061044082045555, -0.024205217137932777, 0.0002969390188809484, 0.006515040528029203, 0.02031346969306469, 0.03171592578291893, 0.01962241157889366, -0.0356440469622612, -0.04535523056983948, -0.011093299835920334, 0.02198655717074871, 0.007374316919595003, -0.0017162790754809976, -0.05062909424304962, 0.028806209564208984, -0.07950804382562637, -0.11886198818683624, 0.01711278036236763, -0.0030165594071149826, 0.006983323488384485, 0.013166474178433418, 0.016176214441657066, 0.029897352680563927, 0.03989950940012932, 0.01973152533173561, -0.01117513608187437, 0.07121535390615463, 0.02338685840368271, -0.024041546508669853, 0.007492524106055498, -0.084163598716259, -0.03899022191762924, 0.10271304845809937, 0.0006569597753696144, 0.0515383817255497, 0.01973152533173561, -0.011684336699545383, 0.03377091512084007, -0.04801034927368164, -0.002054988406598568, 0.05513915792107582, 0.01003852766007185, -0.007442513480782509, 0.03066115453839302, -0.017676537856459618, -0.03377091512084007, 0.03957216814160347, 0.003077936125919223, 0.005455721635371447, 0.025932863354682922, -0.0006535499705933034, 0.01080232858657837, -0.046046290546655655, -0.021586470305919647, -0.04797397553920746, 0.012329930439591408, 0.017840208485722542, 0.013912090100347996, 0.019877010956406593, 0.03171592578291893, 0.016539929434657097, 0.026460248976945877, 0.006774187553673983, 0.024787161499261856, 0.045209746807813644, -0.030715711414813995, 0.03431648761034012, 0.01247541606426239, 0.008979207836091518, -0.01093872170895338, -0.04019048064947128, 0.014821376651525497, -0.023714203387498856, -0.01653083600103855, -0.066559799015522, 0.014248525723814964, 0.004485057666897774, 0.010602285154163837, 0.06284990906715393, 0.05521190166473389, -0.02958819642663002, 0.01081142108887434, -0.043172940611839294, -0.023241372779011726, 0.04731928929686546, 0.04968343675136566, 0.01063865702599287, -0.05528464540839195, 0.03768084943294525, 0.051611125469207764, -0.0077062067575752735, 0.042336396872997284, -0.1064956858754158, -0.05361155793070793, -0.025860119611024857, -0.011093299835920334, -0.09172886610031128, -0.04335479810833931, -0.029788238927721977, -0.04120888188481331, -0.07819867134094238, -0.0013514276361092925, -0.00974755547940731, 0.011066021397709846, -0.06601423025131226, -0.03293437138199806, -0.03235242888331413, -0.025096319615840912, 0.035243961960077286, 0.0560484454035759, -0.035207588225603104, 0.006651433650404215, -0.017421936616301537, 0.0065695978701114655, 0.019222324714064598, -0.03200690075755119, -0.04430045932531357, 0.059721965342760086, -0.03184322640299797, 0.018076622858643532, 0.03746262192726135, -0.01473954040557146, 0.08125387877225876, -0.009088322520256042, -0.004269102122634649, 0.03291618451476097, -0.0028187893331050873, -0.05895816162228584, 0.0222229715436697, -0.01360293198376894, 0.02933359518647194, 0.03358905762434006, -0.017658350989222527, -0.004914695862680674, 0.022604873403906822, 0.007615278009325266, 0.07270658016204834, -0.024314332753419876, -0.02576919086277485, -0.014521311968564987, -0.039608538150787354, 0.035353075712919235, 0.005869446787983179, -0.05644853040575981, -0.08059918880462646, -0.0008229046361520886, -0.011356993578374386, -0.0256600771099329, -0.02957000955939293, -0.0023755121510475874, -0.014566776342689991, 0.02849705144762993, -0.007451606448739767, -0.01313010323792696, -0.02755139395594597, -0.00012225646059960127, -0.019276881590485573, -0.04288196936249733, -0.0007473201840184629, 0.031297653913497925, 0.0000683385951560922, -0.013757511042058468, -0.015085069462656975, -0.04750114679336548, -0.046737346798181534, 0.028697093948721886, 0.03468020260334015, 0.059358250349760056, -0.05528464540839195, -0.01694001443684101, 0.018158460035920143, 0.0111660435795784, 0.027896922081708908, -0.0014980501728132367, -0.012884595431387424, 0.00377354072406888, -0.0382264219224453, -0.01003852766007185, -0.04451868683099747, 0.08278147876262665, 0.005232946015894413, -0.006328636780381203, 0.03277070075273514, -0.02636932022869587, 0.007510710041970015, -0.018140273168683052, -0.003523486666381359, -0.03164318576455116, -0.04550071805715561, -0.0026278391014784575, -0.0071651809848845005, -0.026205649599432945, -0.017294637858867645, 0.02982461079955101, -0.014157596975564957, 0.035716790705919266, 0.014121226035058498, 0.02613290585577488, 0.04026322439312935, 0.015776127576828003, 0.010684121400117874, -0.06746909022331238, -0.03782633692026138, -0.046410005539655685, -0.03315259888768196, -0.02033165469765663, 0.09929413348436356, -0.012266280129551888, 0.014021203853189945, 0.07303392142057419, -0.016549021005630493, 0.013857532292604446, -0.006633248180150986, -0.03637147694826126, -0.002802876988425851, 0.013784789480268955, -0.07790770381689072, 0.009151972830295563, 0.019404182210564613, 0.007428874261677265, -0.0794353038072586, 0.062086109071969986, 0.01709459349513054, -0.03140677139163017, 0.025623705238103867, -0.0003031903470400721, -0.013020988553762436, 0.023568715900182724, 0.025223618373274803, 0.008747340179979801, 0.042481884360313416, -0.012484509497880936, -0.00326661323197186, -0.002898351987823844, -0.023350488394498825, 0.001345744589343667, 0.03375272825360298, -0.018749495968222618, 0.04026322439312935, -0.03538944572210312, 0.040226854383945465, 0.021822886541485786, -0.05212032422423363, 0.025114504620432854, -0.010684121400117874, -0.015794314444065094, -0.041899941861629486, 0.053647927939891815, -0.03077026829123497, 0.009529327042400837, -0.01911321096122265, 0.05273864045739174, -0.030806640163064003, -0.03282525762915611, 0.020513512194156647, 0.020458955317735672, -0.02304133027791977, -0.018140273168683052, 0.011284250766038895, -0.03859013691544533, -0.03917207941412926, 0.016821807250380516, 0.01747649349272251, -0.016367163509130478, -0.011075114831328392, 0.01466679759323597, -0.09238354861736298, 0.04404585808515549, 0.009692998602986336, -0.03746262192726135, -0.04648274555802345, -0.03244335576891899, -0.019549667835235596, -0.06186788156628609, 0.04433682933449745, 0.03917207941412926, 0.05430261418223381, -0.017212800681591034, 0.030497482046484947, -0.01580340601503849, -0.0006336593069136143, -0.02256850153207779, -0.01747649349272251, -0.00015401047130580992, -0.05059272423386574, -0.011848008260130882, 0.05361155793070793, -0.0021879717241972685, 0.036753375083208084, 0.03246154263615608, 0.01818573847413063, -0.012711831368505955, 0.02600560523569584, -0.0715063214302063, -0.04575531557202339, 0.05277501046657562, -0.021586470305919647, -0.021477356553077698, 0.0200770553201437, -0.04535523056983948, -0.0018492622766643763, 0.01306645292788744, -0.060194794088602066, 0.012202630750834942, 0.04382763057947159, 0.030952125787734985, 0.028988067060709, -0.04982892423868179, -0.007901703007519245, 0.024768974632024765, -0.005969468504190445, -0.014112132601439953, -0.03077026829123497, 0.030970312654972076, 0.05670313164591789, 0.05022900924086571, 0.02304133027791977, 0.02744227834045887, -0.04255462810397148, -0.024914462119340897, -0.04120888188481331, -0.020768113434314728, -0.020968155935406685, -0.012657273560762405, 0.030261067673563957, -0.003916753455996513, -0.04171808436512947, 0.018203923478722572, -0.0014128045877441764, 0.023586902767419815, -0.001361657166853547, -0.03255246952176094, 0.0036689727567136288, -0.033934585750103, 0.029515452682971954, 0.030206510797142982, -0.02686033584177494, -0.017058221623301506, 0.004425954073667526, -0.03304348513484001, 0.018376687541604042, 0.0046464563347399235, 0.0183585025370121, -0.0356440469622612, -0.001706049544736743, 0.027478650212287903, 0.01865856721997261, 0.03708072006702423, 0.051392897963523865, -0.01739465817809105, 0.013448353856801987, -0.013721139170229435, -0.011557037010788918, 0.026642106473445892, 0.06535954028367996, -0.006633248180150986, 0.005387525074183941, -0.034352857619524, 0.05215669795870781, 0.041281625628471375, 0.041390739381313324, -0.025041760876774788, 0.014675891026854515, -0.018822239711880684, 0.026423877105116844, -0.034643832594156265, -0.01687636412680149, 0.0425182543694973, 0.04088154062628746, -0.01575794257223606, 0.04433682933449745, 0.03811730816960335, 0.046264518052339554, 0.0013275588862597942, 0.028606167063117027, 0.03600776195526123, 0.05670313164591789, -0.06535954028367996, 0.013020988553762436, -0.01539422757923603, 0.01051135640591383, -0.03315259888768196, -0.0003017695853486657, -0.012711831368505955, 0.029860982671380043, 0.00546936085447669, 0.04582805931568146, 0.02435070276260376, -0.0030506576877087355, -0.04360939934849739, -0.05408438667654991, 0.0706334039568901, -0.048046719282865524, -0.01057500671595335, -0.02220478653907776, -0.023914245888590813, -0.02507813274860382, -0.029497267678380013, -0.07499798387289047, 0.027878737077116966, 0.03946305066347122, -0.03240698575973511, 0.0063195438124239445, -0.024259774014353752, 0.017576515674591064 ]
728,939
tables.atom
__init__
null
def __init__(self, shape=(), dflt=_defvalue): Atom.__init__(self, 'int32', shape, dflt)
(self, shape=(), dflt=0)
[ 0.024723412469029427, 0.00290478253737092, 0.03595815226435661, -0.01631920039653778, 0.04147941991686821, 0.015506734140217304, -0.03517189249396324, -0.018311049789190292, -0.018066437914967537, -0.021525967866182327, 0.013532355427742004, 0.043366439640522, -0.02257431112229824, 0.01969136856496334, -0.03868384286761284, 0.004267627838999033, 0.011881215497851372, 0.06649986654520035, -0.032306425273418427, 0.047664642333984375, -0.012833460234105587, 0.006901588756591082, -0.03279564902186394, 0.02692493237555027, 0.05461864918470383, 0.019499171525239944, 0.019673895090818405, -0.004007726442068815, -0.014467127621173859, -0.054269202053546906, -0.029825346544384956, 0.0045559220016002655, 0.0172364991158247, 0.028235360980033875, 0.019673895090818405, -0.06859654933214188, -0.005228608846664429, 0.07177652418613434, -0.05035538971424103, 0.017192818224430084, 0.08638343214988708, -0.05619116127490997, -0.00679675443097949, -0.007054471876472235, 0.03560870140790939, -0.02461857907474041, 0.06412362307310104, -0.05150856450200081, -0.05594654753804207, -0.002308537717908621, -0.02040773630142212, -0.046511467546224594, 0.04053591191768646, -0.005368387792259455, -0.09595829248428345, 0.07820636034011841, 0.03393135592341423, 0.08743177354335785, -0.07422265410423279, 0.0376005545258522, -0.062481217086315155, 0.0958883985877037, 0.04357610642910004, -0.06960994750261307, -0.015987224876880646, -0.02692493237555027, -0.04822375997900963, 0.003153763944283128, -0.02709965594112873, 0.07443232089281082, 0.014117680490016937, 0.023657597601413727, -0.01792665757238865, 0.020792128518223763, 0.06450801342725754, -0.03141533210873604, -0.00366483093239367, 0.02937106415629387, 0.016415297985076904, 0.014388501644134521, -0.0016839002491906285, 0.02453121729195118, 0.006237638182938099, 0.03700649365782738, -0.0026579853147268295, 0.0032323896884918213, 0.007744630798697472, 0.03595815226435661, -0.026889987289905548, -0.014239986427128315, 0.0000035576078971644165, -0.00518929585814476, -0.046686191111803055, -0.0330926813185215, 0.005237344652414322, 0.016887051984667778, 0.051613401621580124, -0.03655221313238144, 0.015672720968723297, 0.008557096123695374, -0.02404198981821537, -0.0649273544549942, -0.053395580500364304, -0.04577762633562088, -0.03216664493083954, 0.03557375818490982, 0.013715815730392933, -0.02750151976943016, -0.08330829441547394, 0.00259464792907238, 0.004507873207330704, 0.061502765864133835, 0.02603384107351303, 0.051263950765132904, -0.010527106933295727, -0.0012427227338775992, 0.03283059597015381, 0.03620276227593422, 0.04018646478652954, 0.026697790250182152, 0.02239958569407463, 0.038124725222587585, -0.017367541790008545, 0.04266754165291786, 0.038124725222587585, 0.0698196142911911, 0.036971546709537506, -0.015620304271578789, -0.043541163206100464, -0.027396686375141144, 0.02781602367758751, -0.012518957257270813, -0.03655221313238144, 0.03029710054397583, -0.017280180007219315, -0.014886464923620224, -0.0012525509810075164, -0.03756560757756233, -0.06237638369202614, 0.010605732910335064, 0.024985497817397118, 0.04343632608652115, 0.05598149448633194, -0.028637224808335304, -0.0909961387515068, 0.07659889757633209, -0.027973273769021034, 0.008736188523471355, 0.03012237697839737, 0.042387984693050385, 0.0008916372316889465, -0.01568145863711834, 0.005075725261121988, 0.054723482578992844, -0.0028523653745651245, 0.006665711756795645, 0.040745582431554794, -0.08666298538446426, 0.04483411833643913, 0.016991885378956795, -0.06719876080751419, 0.0006999870529398322, 0.017620891332626343, -0.05800829082727432, -0.02496802620589733, 0.02053004316985607, -0.026645373553037643, -0.08330829441547394, -0.040605802088975906, 0.0020038632210344076, 0.00274971523322165, -0.08952845633029938, 0.03307520970702171, 0.0060104974545538425, 0.03700649365782738, -0.000007827590707165655, -0.011418198235332966, 0.021770581603050232, 0.03153764083981514, 0.018573137000203133, 0.0169831495732069, 0.006560877431184053, -0.007914986461400986, -0.037286050617694855, 0.03024468384683132, 0.03560870140790939, -0.018922584131360054, 0.014100207947194576, 0.06999433785676956, 0.010885290801525116, 0.03312762454152107, 0.05336063727736473, -0.03265587240457535, 0.02536989003419876, 0.004835480358451605, -0.0022735928650945425, 0.00206174049526453, -0.020302901044487953, 0.010666885413229465, 0.023797376081347466, 0.04892265424132347, 0.03256851062178612, 0.034175969660282135, 0.022469475865364075, 0.0516483448445797, -0.01836346834897995, -0.0013366368366405368, -0.002481077564880252, 0.005560583900660276, -0.013654662296175957, -0.005595528520643711, -0.04752486199140549, 0.02568439394235611, 0.029510844498872757, -0.01062320452183485, -0.0734538733959198, -0.05136878788471222, -0.026051312685012817, 0.009085635654628277, 0.024863190948963165, 0.12852680683135986, -0.015043715946376324, -0.009644751437008381, -0.03312762454152107, 0.010212603956460953, 0.006783650256693363, -0.010859081521630287, -0.04112997278571129, -0.01845083013176918, 0.022783977910876274, -0.0035818370524793863, -0.02723943442106247, -0.042422931641340256, -0.015166022814810276, 0.03087368980050087, 0.01020386815071106, 0.039906907826662064, -0.012178245931863785, -0.08778122067451477, -0.0007240116246975958, -0.00006163107900647447, 0.029510844498872757, 0.05863729491829872, -0.03980207443237305, 0.005058253183960915, 0.007469440810382366, 0.019446754828095436, 0.03517189249396324, -0.058043234050273895, -0.02931864745914936, -0.1032966896891594, -0.041584257036447525, 0.014851519837975502, -0.012789779342710972, 0.025736810639500618, 0.0036145979538559914, -0.013689607381820679, -0.04119986295700073, -0.003750008763745427, -0.0016391272656619549, -0.03157258406281471, 0.01126968301832676, 0.06670953333377838, 0.058043234050273895, 0.033651795238256454, 0.0017658020369708538, -0.018695442005991936, 0.021193992346525192, -0.007229195907711983, -0.011549240909516811, 0.09036713093519211, 0.009618543088436127, 0.014336084946990013, 0.004020830616354942, -0.021228937432169914, -0.03567859157919884, 0.014510808512568474, -0.0004944136599078774, -0.0065914541482925415, -0.020827073603868484, 0.01783929578959942, -0.06496229767799377, -0.018608080223202705, 0.024775829166173935, -0.03833439201116562, 0.012859668582677841, 0.03337223827838898, -0.02980787493288517, -0.049481768161058426, -0.063180111348629, 0.03527672961354256, 0.05224240571260452, 0.0004065057437401265, 0.025439780205488205, 0.08841022104024887, 0.008578936569392681, 0.02320331521332264, 0.06779281795024872, -0.02617361955344677, 0.0039072600193321705, 0.04151436686515808, -0.029021617025136948, 0.000869796727783978, 0.018223688006401062, 0.015594095923006535, -0.02142113260924816, 0.0018411516211926937, 0.053395580500364304, 0.010483426041901112, 0.06412362307310104, 0.05108922719955444, 0.047175414860248566, -0.05633094161748886, -0.006364312954246998, 0.0090244822204113, 0.03345960006117821, 0.04315676912665367, -0.06747831404209137, 0.012361706234514713, 0.06796754151582718, -0.0011455327039584517, -0.04364599660038948, -0.0010554407490417361, -0.06999433785676956, -0.058672238141298294, -0.05224240571260452, -0.027379214763641357, -0.05049516633152962, -0.024950552731752396, 0.0467560775578022, -0.02813052572309971, -0.005285393912345171, 0.02785096876323223, 0.005071357358247042, -0.012562639079988003, -0.04843342676758766, 0.021211465820670128, 0.01934192143380642, -0.04647652059793472, -0.060524310916662216, 0.048643097281455994, 0.017140401527285576, -0.0006344656576402485, 0.028200415894389153, 0.008980801329016685, -0.015873653814196587, -0.00167953222990036, -0.041584257036447525, 0.035102006047964096, -0.007788311690092087, -0.0012427227338775992, 0.009513708762824535, -0.03815966844558716, 0.020477624610066414, 0.05884696543216705, 0.0461270734667778, -0.039767127484083176, -0.017551003023982048, -0.0059973932802677155, 0.015375691466033459, 0.028497446328401566, -0.018608080223202705, 0.022469475865364075, -0.016817161813378334, -0.04039613530039787, -0.011741437017917633, -0.028951726853847504, 0.0012842196738347411, 0.01486025657504797, 0.026942403987050056, -0.028182942420244217, -0.05762389674782753, -0.09700663387775421, 0.007351502310484648, -0.0026012000162154436, 0.03104841336607933, -0.08889944851398468, 0.0014676796272397041, -0.021718163043260574, -0.09260359406471252, -0.00879297312349081, 0.00032460398506373167, 0.08868978172540665, 0.008439158089458942, -0.038579005748033524, 0.011706491932272911, 0.005892558954656124, 0.023972099646925926, -0.02138618938624859, 0.07981381565332413, 0.010500898584723473, -0.007146202027797699, 0.024601105600595474, -0.08365774154663086, 0.00496652303263545, 0.07659889757633209, 0.04022141173481941, 0.03903328999876976, 0.010439745150506496, -0.005848878063261509, 0.02821788750588894, -0.021193992346525192, 0.02758888155221939, 0.041933704167604446, 0.020337846130132675, -0.02825283259153366, 0.0070282635278999805, -0.023482874035835266, -0.01916719600558281, 0.056715331971645355, 0.034228384494781494, 0.033739157021045685, 0.055562157183885574, -0.00572220329195261, 0.021351244300603867, -0.04133964329957962, -0.006626398768275976, -0.030366990715265274, 0.03034951724112034, -0.026540540158748627, 0.002238648245111108, 0.026400761678814888, 0.03854406252503395, 0.023675069212913513, -0.008430421352386475, 0.0198660921305418, 0.022469475865364075, 0.027221962809562683, -0.035416506230831146, 0.009583598002791405, -0.011785117909312248, 0.029475899413228035, 0.004669492598623037, -0.018817748874425888, -0.016651174053549767, -0.03232389688491821, -0.03490980714559555, -0.04556795582175255, 0.018957529217004776, 0.010125242173671722, 0.030000070109963417, 0.0467560775578022, 0.06992445141077042, -0.04137458652257919, -0.04119986295700073, -0.02435649186372757, 0.022259807214140892, 0.04790925607085228, 0.0029397273901849985, -0.014991299249231815, -0.0038089780136942863, 0.006801122333854437, 0.07013411819934845, -0.017201554030179977, 0.014528281055390835, -0.07590000331401825, -0.05077472701668739, -0.028445029631257057, -0.035067059099674225, -0.04647652059793472, -0.02825283259153366, -0.06244627386331558, -0.08834033459424973, -0.07701823860406876, -0.017053039744496346, -0.026558011770248413, 0.044065333902835846, -0.029685568064451218, -0.02723943442106247, -0.0227490346878767, -0.008775501511991024, 0.02758888155221939, 0.04581256955862045, -0.02461857907474041, -0.02182299830019474, -0.009522445499897003, 0.008273170329630375, -0.032533563673496246, -0.04857320711016655, -0.03118819184601307, -0.00005705823059543036, -0.020442679524421692, 0.00563484150916338, 0.03557375818490982, -0.03840428218245506, 0.04591740667819977, 0.0012165141524747014, -0.0009320420795120299, 0.03637748584151268, 0.028287777677178383, -0.02524758316576481, 0.06080387160181999, -0.038613952696323395, 0.028008218854665756, 0.07198619097471237, 0.006774913985282183, -0.007229195907711983, 0.008810445666313171, -0.007491281256079674, 0.04846837371587753, -0.05119406431913376, -0.04441478103399277, -0.054059531539678574, -0.030506769195199013, 0.02577175572514534, -0.006504091899842024, -0.028811948373913765, -0.055736880749464035, -0.013174171559512615, -0.012981975451111794, -0.04095524922013283, -0.04427500069141388, -0.0029790401458740234, 0.0037827694322913885, 0.015270857140421867, 0.013610981404781342, -0.017245234921574593, 0.004778694827109575, -0.023570235818624496, -0.010142714716494083, -0.0010925695532932878, -0.002719138516113162, -0.018555663526058197, -0.009321512654423714, -0.04151436686515808, -0.0099330460652709, 0.012291816994547844, -0.06517196446657181, 0.03627265244722366, 0.028497446328401566, 0.008945857174694538, -0.08631353825330734, -0.03952251374721527, 0.021613329648971558, -0.047175414860248566, 0.04885276407003403, 0.00156596174929291, 0.029353592544794083, 0.0241293516010046, -0.010160187259316444, -0.017856769263744354, -0.02954578772187233, 0.039242956787347794, 0.013619717210531235, -0.010631941258907318, 0.022277280688285828, -0.03110083006322384, -0.002736611058935523, -0.007609219755977392, -0.009548653848469257, -0.0029135188087821007, -0.04661630094051361, -0.012073412537574768, 0.00893712043762207, -0.004883529152721167, 0.002181862946599722, 0.0360979288816452, -0.026243509724736214, 0.032673344016075134, 0.03260345384478569, 0.012536429800093174, 0.044869061559438705, 0.017288915812969208, -0.018153799697756767, -0.03781022131443024, 0.006185221020132303, -0.030262155458331108, -0.08253950625658035, -0.029248757287859917, 0.06772293150424957, -0.012475276365876198, -0.012606319971382618, 0.019953453913331032, 0.021980250254273415, 0.009164261631667614, -0.005460117477923632, -0.044205110520124435, 0.01512234192341566, -0.0030139849986881018, -0.047035638242959976, 0.007259772624820471, 0.019708840176463127, -0.02591153420507908, -0.06545152515172958, 0.05601643770933151, 0.05073978006839752, -0.059860359877347946, -0.008233857341110706, -0.0068579078651964664, -0.06178232282400131, 0.009321512654423714, -0.0075568025931715965, -0.010902763344347477, 0.020966852083802223, -0.02666284702718258, -0.008836654014885426, -0.03513694927096367, -0.05388480797410011, 0.034263331443071365, 0.00034726347075775266, -0.019796201959252357, 0.025002971291542053, -0.0497613288462162, 0.0437508299946785, 0.03658715635538101, -0.04563784599304199, 0.015008771792054176, 0.00746507290750742, -0.01570766605436802, -0.03337223827838898, 0.05898674204945564, -0.04794419929385185, 0.02138618938624859, -0.030629076063632965, -0.02484571933746338, -0.02084454521536827, 0.0033721686340868473, 0.0388585664331913, -0.005455749575048685, 0.0006792386411689222, 0.00297248805873096, -0.027711188420653343, -0.032848067581653595, -0.0424928180873394, 0.015200967900454998, 0.05559710040688515, -0.0152621204033494, -0.01680842600762844, 0.01749858446419239, -0.0031493958085775375, 0.06695414334535599, 0.010404800064861774, -0.008875967003405094, -0.07422265410423279, -0.00710688903927803, -0.03658715635538101, -0.018031492829322815, 0.023185843601822853, 0.03620276227593422, 0.08386740833520889, -0.04577762633562088, 0.030629076063632965, -0.007229195907711983, -0.01668611913919449, -0.0021851391065865755, -0.028549863025546074, -0.009478764608502388, -0.043051935732364655, 0.008766764774918556, 0.055911604315042496, -0.005949344020336866, 0.023500345647335052, 0.016188155859708786, 0.024007044732570648, -0.0065914541482925415, 0.04755980893969536, -0.07317431271076202, -0.015026243403553963, 0.029912708327174187, -0.013279005885124207, -0.0397321842610836, 0.005652313586324453, -0.044729284942150116, 0.01588238961994648, 0.01620562933385372, -0.013759496621787548, -0.014720477163791656, -0.02847997285425663, 0.023185843601822853, 0.003968413453549147, -0.043226659297943115, 0.05206768214702606, 0.01611826755106449, -0.022417059168219566, -0.019411809742450714, -0.049307044595479965, 0.028811948373913765, 0.0665697529911995, 0.056890059262514114, 0.02164827473461628, -0.00420210650190711, -0.020564986392855644, 0.011575449258089066, -0.062341440469026566, -0.017620891332626343, -0.043226659297943115, -0.049307044595479965, 0.03913812339305878, -0.0015124526107683778, -0.020075760781764984, -0.008701243437826633, -0.00541206868365407, 0.08177071809768677, -0.006014865357428789, -0.052941299974918365, 0.01645897887647152, -0.05199779197573662, -0.02208508364856243, 0.01357603631913662, -0.03429827466607094, 0.002369691152125597, -0.00746507290750742, -0.06276077777147293, 0.054269202053546906, 0.012326761148869991, 0.023919682949781418, -0.02510780468583107, 0.015891125425696373, 0.004717541858553886, 0.04497389867901802, 0.001987482886761427, 0.0649273544549942, -0.007347134407609701, -0.040431078523397446, -0.003201812971383333, 0.047489918768405914, 0.031520165503025055, 0.04955165833234787, -0.028375139459967613, -0.0090244822204113, -0.012536429800093174, 0.0031384755857288837, 0.054059531539678574, 0.05751906335353851, 0.012335497885942459, -0.022958703339099884, 0.020163122564554214, 0.005796460900455713, -0.027955802157521248, -0.04368093982338905, 0.04046602547168732, 0.04892265424132347, -0.0172364991158247, 0.027973273769021034, 0.010579523630440235, 0.030768854543566704, 0.04574268311262131, 0.0329703725874424, 0.02311595343053341, 0.06548646837472916, -0.04315676912665367, -0.02418176829814911, -0.047350138425827026, 0.02568439394235611, 0.042737431824207306, 0.018171271309256554, 0.015926070511341095, -0.009775795042514801, 0.0026274085976183414, 0.05283646658062935, 0.019638951867818832, 0.03456036001443863, -0.006220166105777025, -0.02205013856291771, 0.0518929585814476, -0.0668143704533577, 0.01836346834897995, -0.008194544352591038, -0.03165994584560394, -0.06055925786495209, -0.06209682673215866, -0.05461864918470383, -0.007989244535565376, 0.015725139528512955, 0.007198619190603495, 0.03389640897512436, 0.03412355110049248, 0.005018940195441246 ]
728,945
tables.description
Time32Col
Defines a non-nested column of a particular type. The constructor accepts the same arguments as the equivalent `Atom` class, plus an additional ``pos`` argument for position information, which is assigned to the `_v_pos` attribute and an ``attrs`` argument for storing additional metadata similar to `table.attrs`, which is assigned to the `_v_col_attrs` attribute.
from tables.description import Time32Col
(*args, **kwargs)
[ 0.02193531021475792, 0.011939366348087788, -0.0019328591879457235, 0.038327645510435104, 0.0051247174851596355, -0.040118973702192307, -0.001603322452865541, 0.029573801904916763, -0.03366343677043915, -0.01889343373477459, -0.011694326065480709, 0.023371752351522446, -0.007651164662092924, 0.0028559842612594366, -0.003747423179447651, 0.019958091899752617, 0.019299017265439034, 0.03006388060748577, -0.03011457994580269, -0.03900361806154251, 0.013975733891129494, -0.029016124084591866, -0.012792780995368958, -0.006345692556351423, 0.014508062042295933, 0.06499476730823517, -0.05499036982655525, -0.019197622314095497, 0.03271707519888878, -0.07935918122529984, -0.02960759960114956, -0.0077652353793382645, -0.052861057221889496, 0.03200730308890343, -0.032750871032476425, -0.038530439138412476, 0.024825094267725945, -0.05958698317408562, 0.008052523247897625, 0.02163112349808216, 0.07942678034305573, -0.010629668831825256, -0.005927434656769037, -0.048839021474123, -0.013620847836136818, -0.05407780781388283, 0.05458478629589081, -0.04478318616747856, 0.0008829892030917108, -0.04076114669442177, 0.009852300398051739, -0.03290296718478203, 0.019738400354981422, 0.01325751282274723, -0.07341062277555466, -0.002661642152816057, -0.002644742839038372, 0.09389259666204453, -0.05874202027916908, 0.04698009416460991, -0.035218171775341034, 0.043465036898851395, -0.02861054055392742, 0.04877142235636711, 0.0313144288957119, -0.01667117513716221, 0.012159056961536407, -0.02186771295964718, 0.029776593670248985, 0.02879643253982067, -0.035420965403318405, 0.008711596950888634, 0.06127691641449928, 0.05144151672720909, 0.008065198548138142, -0.06634671241044998, -0.09362220764160156, -0.0398147851228714, 0.02112414315342903, -0.023557644337415695, 0.007989151403307915, 0.002353229559957981, 0.013206814415752888, 0.03964579477906227, 0.04907561093568802, -0.04089634120464325, 0.04393821954727173, 0.04914320632815361, -0.059316594153642654, -0.000786874326877296, -0.026869911700487137, -0.07793964445590973, -0.07902120053768158, 0.053300440311431885, -0.03119613602757454, -0.021732518449425697, -0.0033988747745752335, 0.0008079985273070633, -0.05688309296965599, -0.008677798323333263, 0.044546592980623245, -0.06289924681186676, -0.0020934026688337326, -0.007254031021147966, 0.01603744924068451, -0.007942678406834602, -0.03602933883666992, -0.00014390822616405785, -0.02771487645804882, -0.02676851488649845, -0.02573765628039837, 0.053368035703897476, 0.007630040869116783, -0.06570453941822052, 0.07685808092355728, -0.014153175987303257, 0.05167810618877411, 0.006886471062898636, 0.031415827572345734, 0.018149863928556442, 0.05103592947125435, -0.03280157223343849, -0.009970596060156822, 0.015141786076128483, -0.006425964646041393, 0.05130631849169731, -0.001953983213752508, 0.011745023541152477, 0.011609829030930996, -0.0053401836194098, 0.032446686178445816, 0.004351573530584574, -0.0021525502670556307, 0.05407780781388283, 0.044411398470401764, -0.02288167178630829, 0.05333423987030983, 0.0314665250480175, 0.017262650653719902, 0.030013183131814003, -0.026295334100723267, 0.03050326369702816, 0.037584077566862106, -0.0398147851228714, -0.012547741644084454, 0.003620678326115012, -0.03209180012345314, 0.03204110264778137, -0.017406294122338295, 0.043160852044820786, -0.020955150946974754, -0.0343732051551342, -0.0056316968984901905, 0.004765606950968504, -0.007537094410508871, -0.00675550103187561, 0.004051610827445984, -0.07151789963245392, 0.03239598870277405, -0.02942170761525631, 0.011559131555259228, -0.015158685855567455, -0.03406902030110359, -0.04542535915970802, -0.014415116049349308, 0.010545172728598118, -0.018116066232323647, -0.036434922367334366, 0.003950214944779873, -0.024081524461507797, 0.01820056140422821, -0.02200290746986866, 0.03856423869729042, 0.0408625453710556, 0.027106501162052155, -0.022408491000533104, -0.03271707519888878, 0.021918412297964096, 0.054010212421417236, -0.025585561990737915, 0.041876502335071564, 0.04992057755589485, -0.06029675528407097, 0.08699767291545868, -0.029016124084591866, 0.017009161412715912, 0.0018483626190572977, -0.0311285387724638, 0.007477947045117617, -0.028559843078255653, 0.03886842355132103, 0.021343834698200226, -0.0146517064422369, 0.005986582487821579, 0.006172474939376116, -0.015158685855567455, 0.02288167178630829, 0.0008502468117512763, -0.005910535342991352, 0.02447020821273327, 0.001132254139520228, 0.023692838847637177, -0.010612769983708858, 0.025703858584165573, 0.07976476848125458, -0.04877142235636711, 0.049616388976573944, -0.027292393147945404, -0.09240545332431793, -0.028965426608920097, 0.039476800709962845, -0.05073174461722374, -0.005923209711909294, 0.0433974415063858, 0.018623044714331627, -0.040355563163757324, -0.11464495211839676, -0.01877513900399208, -0.007266705390065908, 0.021394532173871994, 0.07848042249679565, -0.0039164163172245026, -0.0452563650906086, -0.05705208703875542, 0.06739446520805359, -0.017338696867227554, -0.004049498587846756, -0.00521766347810626, 0.01005509216338396, -0.03589414432644844, -0.03657011687755585, 0.010046643204987049, -0.08571332693099976, 0.0008586964686401188, 0.03467739373445511, 0.059012409299612045, -0.015614966861903667, -0.005365532357245684, 0.016265591606497765, -0.04400581493973732, -0.01518403459340334, 0.0045374659821391106, -0.0007303672609850764, -0.028897829353809357, 0.015936054289340973, -0.05847163125872612, -0.02061716467142105, -0.0028940076008439064, -0.07185588777065277, 0.009311522357165813, -0.04836583882570267, -0.03913881257176399, 0.09213506430387497, 0.011922466568648815, 0.0036671513225883245, -0.03450839966535568, -0.03481258824467659, -0.023118263110518456, -0.00865244958549738, -0.0463041216135025, -0.05580153688788414, -0.037009499967098236, -0.01100145373493433, 0.008200393058359623, 0.05688309296965599, 0.013333559967577457, -0.034018322825431824, 0.057863254100084305, -0.0069751921109855175, -0.033714134246110916, 0.0796295702457428, -0.0040178121998906136, -0.09308142960071564, -0.006789299659430981, -0.010976104997098446, -0.05958698317408562, 0.004579714499413967, -0.030908847227692604, -0.010359279811382294, -0.003605891251936555, -0.00942136812955141, 0.010393078438937664, -0.024554705247282982, 0.016628926619887352, -0.015995200723409653, -0.013705344870686531, -0.04265386983752251, -0.006683679297566414, -0.04319464787840843, 0.005821813829243183, -0.02575455605983734, 0.02092135138809681, 0.04133572429418564, 0.0238956306129694, 0.025399670004844666, 0.08476696163415909, 0.03101024217903614, 0.027106501162052155, 0.013781391084194183, 0.0024588503874838352, -0.016535980626940727, -0.017211953178048134, 0.037584077566862106, 0.05512556433677673, -0.06462298333644867, 0.009759354405105114, -0.0097678042948246, -0.01543752383440733, 0.009691757149994373, -0.006624531466513872, 0.02548416703939438, -0.0072582559660077095, -0.039341606199741364, 0.036434922367334366, 0.007951127365231514, 0.04285666346549988, -0.08287423849105835, 0.04542535915970802, -0.010993004776537418, 0.06164870038628578, -0.020380573347210884, -0.028627440333366394, 0.044411398470401764, 0.002885557943955064, 0.041065335273742676, -0.10355900228023529, -0.0009109787060879171, -0.04126812890172005, 0.013029372319579124, 0.009404468350112438, -0.04887281730771065, -0.015614966861903667, 0.07827762514352798, 0.04147091880440712, 0.010697266086935997, 0.005893636029213667, -0.009438266977667809, -0.043600231409072876, -0.03873322904109955, 0.02529827505350113, 0.0832122266292572, -0.0037305238656699657, -0.012201305478811264, 0.004049498587846756, 0.05333423987030983, -0.03248048201203346, -0.017980871722102165, -0.01461790781468153, 0.05715348199009895, -0.0038467065896838903, 0.03457599878311157, -0.05046135559678078, -0.013747592456638813, 0.08436138182878494, 0.007875081151723862, 0.015057289972901344, 0.020819956436753273, -0.05884341523051262, -0.01781187765300274, 0.042451079934835434, 0.0437692254781723, -0.01559806801378727, 0.025720758363604546, -0.03640112280845642, -0.028019065037369728, 0.01208300981670618, -0.027495184913277626, 0.021597323939204216, 0.021732518449425697, 0.06063474342226982, -0.02193531021475792, 0.0006025662296451628, 0.05759286507964134, 0.03298746421933174, -0.02105654589831829, -0.03812485560774803, -0.020127084106206894, 0.047723665833473206, -0.10261263698339462, -0.05444959178566933, 0.021073445677757263, 0.010697266086935997, -0.027157198637723923, 0.03873322904109955, 0.004858552943915129, 0.002021580468863249, -0.0029954034835100174, -0.004258627537637949, -0.06273026019334793, -0.008804542943835258, -0.007718761917203665, -0.012944875285029411, 0.006235847249627113, -0.011474634520709515, -0.01889343373477459, 0.03880082815885544, -0.006552709266543388, 0.01882583647966385, 0.04735188186168671, -0.012285801582038403, -0.0015388939063996077, -0.05657890811562538, 0.017262650653719902, 0.04775746539235115, -0.054888974875211716, 0.003544631414115429, 0.03329164907336235, 0.0011533782817423344, -0.02866123802959919, -0.015293880365788937, -0.020025689154863358, 0.008872140198946, 0.005082468967884779, -0.005610572639852762, 0.006637205835431814, 0.006510461214929819, -0.011491534300148487, -0.05657890811562538, 0.01131409127265215, 0.028492245823144913, 0.01757528819143772, -0.054179202765226364, 0.0027862745337188244, 0.049683984369039536, 0.01100145373493433, -0.01781187765300274, -0.013832089491188526, 0.05982357636094093, 0.002270845463499427, 0.010426877066493034, -0.007828607223927975, -0.006075303535908461, -0.0025729206390678883, -0.0647919774055481, 0.05948558822274208, -0.021157942712306976, 0.020583365112543106, -0.05813364312052727, 0.03741508349776268, -0.024368811398744583, 0.05282725766301155, 0.038530439138412476, 0.05056275054812431, -0.045053575187921524, 0.045560553669929504, -0.054821379482746124, -0.05921519920229912, 0.04856863245368004, 0.018656844273209572, 0.004197367466986179, -0.01983979530632496, 0.0643525943160057, 0.056409914046525955, -0.05117112398147583, 0.044985976070165634, -0.0521174892783165, -0.02910062111914158, -0.021462129428982735, -0.005479603074491024, 0.00446986872702837, -0.05478757992386818, 0.013004022650420666, -0.007308953907340765, -0.05022476240992546, 0.02447020821273327, -0.03657011687755585, -0.04319464787840843, -0.06022915989160538, -0.02144523151218891, 0.0019212408224120736, -0.020701661705970764, 0.02066786214709282, 0.026092542335391045, -0.02803596295416355, 0.02034677565097809, 0.010562071576714516, -0.008736945688724518, 0.0365363173186779, -0.02651502564549446, 0.0016455708537250757, 0.041504718363285065, -0.04927840083837509, 0.023557644337415695, -0.0146517064422369, 0.019451111555099487, 0.08044073730707169, -0.024571603164076805, -0.02681921236217022, -0.037516478449106216, -0.08848481625318527, -0.02960759960114956, 0.06631290912628174, -0.005526076070964336, 0.003189745591953397, 0.054821379482746124, -0.0195356085896492, 0.04711528867483139, -0.018910333514213562, -0.030722955241799355, 0.05847163125872612, 0.006434414070099592, -0.008259540423750877, -0.03697570040822029, -0.020955150946974754, 0.03531956672668457, -0.0005439466913230717, 0.04062595218420029, -0.032125599682331085, -0.014440464787185192, -0.0452563650906086, 0.005880961660295725, -0.006197823677212, -0.029692096635699272, 0.02511238120496273, 0.0018356881337240338, -0.03599553927779198, -0.0204312726855278, -0.02213810198009014, 0.0019096225732937455, 0.04539155960083008, -0.03971339017152786, -0.0024694125168025494, 0.008018724620342255, -0.02707270346581936, -0.024706797674298286, 0.036806706339120865, -0.039544396102428436, 0.015276980586349964, 0.009590361267328262, 0.03778686746954918, 0.04373542591929436, 0.008166594430804253, 0.015699462965130806, -0.0010197680676355958, -0.003432673402130604, 0.070977121591568, -0.044107213616371155, -0.019772198051214218, 0.020972050726413727, -0.0492108054459095, 0.017845677211880684, -0.043160852044820786, 0.035353366285562515, 0.0213607344776392, 0.018352655693888664, 0.049582589417696, -0.06614392250776291, 0.020786156877875328, -0.01176192332059145, 0.007718761917203665, -0.036874305456876755, 0.0271403007209301, 0.04373542591929436, -0.05958698317408562, -0.025585561990737915, 0.041065335273742676, 0.030046982690691948, -0.017963971942663193, 0.05877581611275673, -0.01344340480864048, 0.00852992944419384, -0.021952209994196892, 0.047149088233709335, 0.0868624821305275, -0.04870382696390152, 0.006480887532234192, -0.013198365457355976, 0.024199819192290306, -0.061986688524484634, 0.0499543733894825, 0.0017775966553017497, 0.022983068600296974, 0.06445398926734924, -0.02511238120496273, 0.002277182647958398, -0.04292425885796547, -0.02460540272295475, 0.009243925102055073, 0.022983068600296974, -0.06158110499382019, -0.029151318594813347, 0.01787947490811348, 0.03222699463367462, -0.017220402136445045, 0.03406902030110359, 0.016248691827058792, -0.029911788180470467, 0.02575455605983734, 0.046506915241479874, -0.008348261937499046, 0.010942306369543076, -0.0014227110659703612, 0.0006173531292006373, 0.026734717190265656, 0.021918412297964096, 0.011871769092977047, -0.04204549640417099, 0.006430189590901136, -0.011170446872711182, 0.02555176429450512, -0.01635853759944439, 0.03342684358358383, 0.002283519832417369, 0.013764492236077785, 0.03488018736243248, -0.021952209994196892, 0.048534832894802094, -0.012513943016529083, -0.01661202684044838, -0.0006844222662039101, -0.025163080543279648, 0.015429074876010418, 0.004520566668361425, 0.0021007962059229612, 0.0293034128844738, -0.07145030051469803, -0.012125258333981037, -0.019366614520549774, 0.012116808444261551, -0.05421300232410431, -0.08530773967504501, 0.09504174441099167, 0.027106501162052155, 0.0038572687190026045, 0.007731436751782894, 0.021664921194314957, -0.0452563650906086, -0.01122959516942501, 0.039544396102428436, -0.11667287349700928, 0.010764863342046738, -0.0017374608432874084, -0.00004627507587429136, -0.03417041525244713, -0.02776557393372059, -0.017076758667826653, -0.030199075117707253, -0.02619393914937973, 0.025315172970294952, 0.0752357468008995, 0.011246494017541409, 0.0419778972864151, -0.010105790570378304, 0.01667117513716221, -0.03006388060748577, 0.037448883056640625, -0.03504917770624161, -0.07543854415416718, -0.009641059674322605, 0.008922838605940342, -0.03200730308890343, 0.019163822755217552, 0.04552675411105156, 0.024774394929409027, -0.007477947045117617, -0.029202016070485115, -0.05779565870761871, -0.0691182017326355, 0.03082435019314289, -0.01674722135066986, 0.008166594430804253, -0.0398147851228714, -0.006324568763375282, -0.02365904115140438, 0.04349883645772934, -0.039544396102428436, 0.040051378309726715, 0.04887281730771065, 0.001072050305083394, 0.06921959668397903, -0.012454794719815254, -0.03101024217903614, 0.030655357986688614, -0.03670531138777733, 0.014719303697347641, -0.0007720874273218215, 0.017085207626223564, 0.029438607394695282, 0.08071112632751465, -0.0043029882945120335, 0.032683275640010834, -0.012285801582038403, -0.010900057852268219, -0.03241288661956787, -0.042586274445056915, 0.0550241693854332, -0.030334269627928734, 0.02651502564549446, 0.018673742190003395, -0.06337243318557739, -0.0063541424460709095, -0.020819956436753273, -0.043667830526828766, 0.044614192098379135, -0.013130768202245235, -0.005821813829243183, 0.02746138721704483, 0.016062799841165543, 0.022492988035082817, 0.041639912873506546, 0.005128941964358091, 0.01315611694008112, -0.01179572194814682, 0.05414540693163872, 0.040186572819948196, 0.030604658648371696, 0.02460540272295475, -0.02879643253982067, -0.004269189666956663, -0.014043331146240234, 0.026971306651830673, 0.05549735203385353, -0.015124887228012085, -0.0001787630608305335, 0.04471558704972267, -0.02861054055392742, -0.03329164907336235, 0.06651570647954941, 0.0021525502670556307, -0.001561074168421328, 0.034339409321546555, 0.025146180763840675, 0.03254808112978935, 0.036299727857112885, -0.04282286390662193, 0.062933050096035, -0.060026366263628006, 0.028627440333366394, -0.026227736845612526, 0.018217461183667183, 0.009074931964278221, -0.007968027144670486, 0.002644742839038372, 0.058505427092313766, 0.0011058489326387644, 0.033443745225667953, -0.0006580170593224466, 0.04299185797572136, 0.034711193293333054, -0.024571603164076805, -0.0839557945728302, 0.018487850204110146, 0.02688680961728096, 0.025957347825169563, -0.058235038071870804, 0.03575894981622696, -0.024436408653855324, 0.021191740408539772, -0.0171866025775671, 0.07503295689821243, 0.03602933883666992, -0.00016754087118897587, -0.05090073496103287, -0.04052455723285675, 0.049041811376810074, -0.03873322904109955, -0.006599182728677988, -0.0025454594288021326, -0.06462298333644867, -0.027359990403056145, 0.025095483288168907, 0.007832832634449005, 0.02428431622684002, 0.020904453471302986, 0.029523102566599846, -0.012488593347370625, 0.008728495799005032, 0.024639200419187546 ]
728,953
tables.atom
Time64Atom
Defines an atom of type time64.
class Time64Atom(TimeAtom): """Defines an atom of type time64.""" itemsize = 8 type = 'time64' _defvalue = 0.0 def __init__(self, shape=(), dflt=_defvalue): Atom.__init__(self, 'float64', shape, dflt)
(shape=(), dflt=0.0)
[ 0.07294519245624542, 0.06526483595371246, 0.017371801659464836, 0.05030451714992523, 0.03370621055364609, -0.04251496121287346, -0.06450043618679047, -0.031030826270580292, -0.01617060974240303, -0.010865339078009129, 0.0536532998085022, 0.05245210602879524, -0.01690770499408245, 0.0526341050863266, 0.010446741245687008, 0.0511053130030632, -0.0023455119226127863, 0.067885622382164, -0.05605568364262581, 0.02833724021911621, 0.013941122218966484, 0.015105915255844593, -0.027682045474648476, 0.02868303842842579, 0.033942811191082, 0.021221080794930458, -0.014796516858041286, -0.0022772622760385275, -0.047210536897182465, -0.043242957442998886, -0.026135053485631943, 0.0010476316092535853, -0.01905529387295246, 0.0038356285076588392, 0.041350167244672775, -0.04600934311747551, -0.02087528258562088, 0.03630879521369934, -0.11101938039064407, 0.030921626836061478, 0.06770361959934235, -0.04833892732858658, -0.030848827213048935, -0.0177995003759861, 0.02234947495162487, -0.03341501206159592, 0.06599283218383789, -0.011347636580467224, -0.02109368145465851, -0.029338235035538673, 0.010637840256094933, -0.043716154992580414, 0.02234947495162487, 0.05190610885620117, -0.1243417039513588, 0.10082743316888809, 0.025953054428100586, 0.07978834956884384, -0.04317015781998634, 0.07236279547214508, -0.043242957442998886, 0.06177045404911041, 0.032960016280412674, -0.04149576649069786, -0.010601440444588661, 0.01469641737639904, -0.04047657176852226, -0.004327025730162859, -0.011647935025393963, 0.057802874594926834, -0.012294030748307705, -0.013094826601445675, 0.011074637994170189, 0.021239280700683594, 0.04979491978883743, -0.004320200532674789, -0.06406363844871521, 0.0064882636070251465, 0.010783439502120018, -0.000006998251592449378, -0.0032850815914571285, 0.0345798060297966, -0.0024660860653966665, 0.04608214274048805, -0.017362702637910843, 0.011174737475812435, 0.02442426234483719, 0.0428425595164299, -0.049831319600343704, -0.006269864737987518, -0.02116648107767105, -0.018709495663642883, -0.01248512975871563, 0.00805345457047224, -0.02484286017715931, -0.0012728553265333176, 0.0026321602053940296, -0.037382591515779495, -0.06220725178718567, 0.01956488937139511, 0.02074788324534893, -0.07724037021398544, -0.024151263758540154, -0.021221080794930458, -0.02538885734975338, 0.04469894990324974, -0.000857101462315768, -0.04808412864804268, -0.03150402382016182, -0.012721728533506393, -0.04204176366329193, 0.06857721507549286, -0.03465260565280914, 0.01965588890016079, -0.019128093495965004, 0.055218491703271866, 0.017744900658726692, 0.028774037957191467, 0.04946732148528099, 0.046992138028144836, 0.049066923558712006, 0.042915359139442444, -0.014013920910656452, 0.04389815405011177, 0.007634857203811407, 0.00949124712496996, 0.025825655087828636, -0.003080332651734352, -0.05925886705517769, -0.0000901463718037121, 0.008713200688362122, 0.005673818290233612, 0.034561604261398315, 0.046955738216638565, 0.030939826741814613, -0.0009623196092434227, 0.0363633967936039, -0.014132220298051834, -0.0345798060297966, 0.039748575538396835, -0.02952023409307003, 0.057329677045345306, 0.07079759985208511, -0.04633694142103195, -0.012785428203642368, 0.05216090753674507, -0.04968572035431862, 0.02276807278394699, -0.011957332491874695, 0.02677205018699169, -0.04033097252249718, -0.014969415962696075, -0.0017039654776453972, 0.060787659138441086, 0.029829632490873337, -0.013149426318705082, 0.006606562994420528, -0.02023828588426113, -0.0027572845574468374, 0.03912977874279022, -0.06799481809139252, -0.033123813569545746, -0.028191640973091125, -0.06632042676210403, -0.006752162240445614, 0.0057648178189992905, -0.03155862167477608, -0.06071485951542854, -0.027299847453832626, 0.029993431642651558, 0.007134359795600176, -0.049612920731306076, 0.030211830511689186, -0.0446261502802372, 0.04036737233400345, -0.02800964191555977, -0.03268701583147049, 0.03854738548398018, 0.03730979189276695, -0.008735951036214828, 0.02804604172706604, -0.009818844497203827, -0.03960297629237175, 0.004327025730162859, -0.02183987759053707, 0.056492481380701065, -0.01965588890016079, 0.0014423419488593936, 0.022203875705599785, 0.029119836166501045, 0.021439479663968086, 0.02238587476313114, -0.0539080984890461, -0.0006574713042937219, 0.017717599868774414, 0.006365414243191481, 0.024824660271406174, -0.005655618384480476, 0.027809444814920425, 0.06828601658344269, -0.03184982016682625, 0.020893482491374016, 0.035235002636909485, -0.03851098567247391, 0.030230030417442322, -0.04873932525515556, 0.03985777497291565, -0.008799650706350803, -0.061006058007478714, -0.005100521259009838, -0.03053942881524563, -0.02238587476313114, 0.013668123632669449, 0.026535451412200928, -0.027208847925066948, -0.0639544427394867, -0.09958983957767487, 0.0013786422787234187, 0.002365986816585064, 0.022786272689700127, 0.09711465239524841, -0.02711784839630127, -0.040258172899484634, -0.034943804144859314, 0.0338154099881649, 0.018909694626927376, 0.027008648961782455, -0.008508452214300632, -0.02298647165298462, -0.01838189736008644, 0.004195076413452625, 0.012121131643652916, -0.02782764472067356, -0.02497025951743126, 0.025407057255506516, 0.008394703269004822, 0.029829632490873337, -0.009090849198400974, -0.0521245077252388, -0.009295597672462463, -0.025843854993581772, 0.0022704373113811016, -0.009691445156931877, -0.018591195344924927, 0.030921626836061478, -0.05540049076080322, -0.0034443307667970657, 0.06748522073030472, -0.0797155499458313, 0.0009259197977371514, -0.060205262154340744, 0.0011437498033046722, 0.007675806991755962, 0.018709495663642883, 0.06260764598846436, 0.019200893118977547, -0.004072227049618959, -0.04408015310764313, 0.0009077198919840157, -0.014377919025719166, 0.006947811227291822, -0.012503329664468765, 0.013731823302805424, 0.04702853783965111, 0.015324314124882221, 0.01648910716176033, -0.05605568364262581, 0.018427396193146706, -0.029629433527588844, 0.03212282061576843, 0.11618814617395401, -0.01568831130862236, -0.011165637522935867, -0.03880218043923378, -0.03316021338105202, -0.03685479238629341, 0.021912677213549614, -0.01863669604063034, -0.0336880125105381, -0.00940024759620428, -0.0420781634747982, -0.01905529387295246, 0.023987464606761932, -0.003840178484097123, -0.05478169396519661, -0.0067749121226370335, 0.010737939737737179, 0.04397095367312431, -0.019346490502357483, 0.0010396691504865885, -0.019674088805913925, 0.025043059140443802, 0.03503480181097984, 0.03332401439547539, 0.07097960263490677, 0.005368969868868589, -0.015670111402869225, 0.015324314124882221, 0.04739253222942352, 0.023769065737724304, 0.031940821558237076, 0.02387826517224312, -0.034434206783771515, 0.030120830982923508, 0.0177995003759861, 0.03774658963084221, -0.030048031359910965, 0.03978497534990311, 0.044553350657224655, 0.03416121006011963, 0.022021876648068428, -0.01469641737639904, -0.09536746144294739, 0.018036099150776863, 0.034525204449892044, 0.08968909829854965, -0.02618965320289135, -0.03428860753774643, 0.02973863296210766, 0.04939452186226845, -0.003498930251225829, -0.015051315538585186, 0.022076476365327835, -0.04178696498274803, -0.0341976098716259, -0.0942026749253273, -0.019837887957692146, 0.008790550753474236, -0.01834549754858017, 0.03669099509716034, 0.013194926083087921, 0.0005505469162017107, 0.03858378529548645, 0.0006512150866910815, -0.008026154711842537, 0.005637418478727341, 0.018873294815421104, 0.0006574713042937219, 0.021439479663968086, -0.02910163626074791, 0.028828637674450874, 0.04255136102437973, -0.03181342035531998, 0.016853105276823044, 0.013795522972941399, -0.039238978177309036, 0.008426552638411522, -0.022677073255181313, 0.07527478039264679, -0.0017437777714803815, -0.002295462181791663, 0.0007877143216319382, -0.038438186049461365, 0.0167803056538105, 0.03210461884737015, 0.012203031219542027, -0.008117154240608215, -0.06406363844871521, -0.019128093495965004, 0.007402808405458927, -0.00840380322188139, 0.0255526565015316, 0.027463646605610847, -0.012721728533506393, 0.004574999213218689, 0.004452149849385023, -0.00046779424883425236, 0.027900444343686104, 0.03275981545448303, 0.01248512975871563, -0.04022177308797836, -0.06147925555706024, -0.022367674857378006, 0.009463947266340256, -0.0016186534194275737, 0.002016776241362095, -0.08903390169143677, 0.028646638616919518, -0.07774996012449265, -0.09733305126428604, 0.01898249424993992, -0.04044017195701599, -0.02158507890999317, 0.01885509490966797, 0.04273336008191109, 0.037892188876867294, 0.031522221863269806, 0.03953017666935921, 0.008494802750647068, 0.053362101316452026, -0.002784584416076541, -0.03803778812289238, -0.01231223065406084, -0.04626414179801941, -0.050632115453481674, 0.06988760828971863, -0.0006085590575821698, 0.040258172899484634, -0.01901889406144619, -0.001661878195591271, 0.02875583805143833, -0.018199898302555084, 0.007052460219711065, 0.058385271579027176, 0.025061259046196938, -0.019510289654135704, 0.01670750603079796, -0.02602585405111313, -0.03832898661494255, 0.041859764605760574, 0.01853659562766552, -0.0026389851700514555, 0.011202037334442139, 0.016370808705687523, 0.010028143413364887, -0.040003374218940735, -0.022404074668884277, -0.08604911714792252, 0.03956657648086548, 0.00424285139888525, -0.0015640537021681666, 0.018036099150776863, 0.025825655087828636, -0.0007848705863580108, 0.014377919025719166, 0.0024615360889583826, 0.035653598606586456, 0.04229656234383583, -0.030666828155517578, 0.048266127705574036, -0.007771356496959925, 0.030120830982923508, -0.05055931583046913, -0.014832916669547558, 0.0438617542386055, -0.0178631991147995, -0.013213125988841057, -0.0972602516412735, -0.007521107792854309, -0.0013968421844765544, -0.02276807278394699, 0.0727267935872078, 0.058094073086977005, -0.049576520919799805, 0.005200620740652084, -0.03201362118124962, -0.016052309423685074, 0.054890893399715424, 0.03487100452184677, -0.002143037971109152, -0.02820984087884426, 0.025661855936050415, 0.07203519344329834, -0.003726429073140025, 0.02331406995654106, -0.10563220828771591, -0.05682007968425751, -0.046446140855550766, 0.006347214337438345, -0.08888830244541168, -0.021876277402043343, -0.03319661319255829, -0.058385271579027176, -0.06624762713909149, 0.009149998426437378, 0.0040085273794829845, 0.0014264170313253999, -0.0430973581969738, -0.041896164417266846, -0.019928887486457825, 0.003938002977520227, 0.03272341564297676, 0.03785578906536102, -0.04764733090996742, 0.015324314124882221, -0.01799059845507145, -0.01668020710349083, 0.01931009255349636, -0.021530479192733765, -0.06482803821563721, 0.024933859705924988, -0.05769367516040802, -0.01077433954924345, 0.02071148343384266, -0.0018836894305422902, 0.05605568364262581, -0.00910904910415411, -0.015388013795018196, 0.04087696969509125, 0.004663723986595869, -0.07702197134494781, 0.05405369773507118, -0.0033442312851548195, 0.03390641137957573, 0.03669099509716034, -0.0005175595870241523, 0.01098363846540451, 0.015160514973104, 0.015315214172005653, 0.05139651149511337, -0.025953054428100586, -0.012421430088579655, 0.002666285028681159, -0.02433326281607151, 0.0446261502802372, -0.00006366409797919914, -0.07003320753574371, -0.06508283317089081, -0.010155542753636837, -0.023587068542838097, 0.007625757250934839, -0.045317746698856354, -0.013922922313213348, -0.019710488617420197, 0.027354447171092033, -0.010683340020477772, 0.0023386869579553604, -0.020565884187817574, 0.016079610213637352, -0.03019363060593605, -0.042442161589860916, 0.01690770499408245, -0.0054781693033874035, -0.0090589988976717, -0.011511435732245445, -0.027008648961782455, -0.04073137044906616, -0.013122126460075378, 0.034816402941942215, 0.025880254805088043, 0.05925886705517769, -0.05379889905452728, -0.0051323710940778255, 0.023477869108319283, 0.019619489088654518, 0.04964932054281235, -0.01077433954924345, 0.0033283063676208258, -0.00872685108333826, -0.046191342175006866, -0.01981968805193901, -0.030776027590036392, 0.0987890437245369, 0.0019758264534175396, -0.020729683339595795, 0.052270106971263885, -0.011302136816084385, 0.0343250073492527, 0.06177045404911041, 0.0029256336856633425, -0.02961123362183571, -0.024478862062096596, -0.0008110329508781433, -0.020529484376311302, -0.035198602825403214, -0.020311085507273674, 0.01670750603079796, 0.0072708590887486935, 0.041896164417266846, -0.0006074215634725988, 0.020602283999323845, 0.04844812676310539, 0.05001331865787506, 0.026408052071928978, -0.04382535442709923, -0.015606412664055824, -0.02711784839630127, -0.009864344261586666, -0.030939826741814613, 0.08786910772323608, -0.03121282532811165, 0.02948383428156376, 0.05394449830055237, -0.02251327410340309, 0.01834549754858017, -0.020893482491374016, -0.021239280700683594, -0.009536746889352798, -0.022840872406959534, -0.0761483758687973, 0.010592340491712093, 0.022076476365327835, 0.012994727119803429, -0.06653882563114166, 0.038474585860967636, -0.00802160520106554, -0.020547684282064438, 0.011138337664306164, -0.01577931083738804, -0.0013991171726956964, 0.026389852166175842, 0.02500665932893753, 0.0026822099462151527, 0.05055931583046913, -0.012375930324196815, -0.024242263287305832, -0.01892789453268051, 0.0070433602668344975, 0.0017517401138320565, 0.037637390196323395, -0.008144454099237919, 0.02344146929681301, -0.049321722239255905, 0.006674812640994787, -0.008745050989091396, -0.06304444372653961, 0.015233314596116543, 0.012166631408035755, -0.024406062439084053, -0.02109368145465851, 0.051978908479213715, 0.012630729004740715, -0.0007348209037445486, 0.018964294344186783, 0.041641365736722946, -0.03701859340071678, -0.049066923558712006, 0.01590671017765999, -0.00415412662550807, -0.023678066208958626, -0.05820327252149582, 0.01132033672183752, -0.034143008291721344, -0.059440866112709045, 0.01623430848121643, -0.01474191714078188, -0.006460963748395443, -0.018008798360824585, 0.0220582764595747, -0.07774996012449265, 0.036035798490047455, 0.019255492836236954, -0.021949077025055885, -0.07811395823955536, -0.028027841821312904, -0.027554646134376526, -0.06956000626087189, 0.021457679569721222, 0.022931871935725212, 0.07003320753574371, 0.0031281074043363333, 0.04022177308797836, -0.023987464606761932, -0.006897761486470699, -0.026262452825903893, -0.02897423692047596, -0.007198059465736151, -0.03465260565280914, -0.02724524773657322, 0.05183330923318863, -0.014159520156681538, 0.02429686300456524, 0.06555603444576263, 0.03568999841809273, -0.01362262386828661, 0.020656883716583252, -0.07898755371570587, -0.04218736290931702, 0.044043753296136856, -0.0252978578209877, -0.009027149528265, -0.018946094438433647, -0.04622774198651314, 0.0012728553265333176, -0.016034109517931938, -0.08779630810022354, 0.001126118702813983, 0.03887498006224632, 0.020820682868361473, 0.02171247825026512, -0.016789406538009644, -0.007639407180249691, 0.051978908479213715, -0.024952059611678123, -0.008977099321782589, -0.03345141187310219, 0.02311387099325657, 0.04491734877228737, 0.042660560458898544, 0.04790212959051132, 0.029629433527588844, -0.031940821558237076, -0.049066923558712006, -0.02993883192539215, -0.006652062758803368, -0.01048314105719328, 0.009873444214463234, 0.04855732619762421, -0.033942811191082, -0.03259601816534996, 0.022040076553821564, -0.009195498190820217, 0.007207159418612719, -0.009937143884599209, 0.00355807994492352, -0.035726398229599, -0.0443713515996933, 0.038474585860967636, 0.0430973581969738, -0.02695404924452305, -0.014523518271744251, 0.03730979189276695, -0.014223219826817513, 0.027299847453832626, 0.03643619641661644, 0.028118841350078583, -0.03756459057331085, 0.02695404924452305, 0.02395106479525566, 0.009818844497203827, 0.04600934311747551, 0.050158917903900146, -0.015952210873365402, 0.006861361674964428, -0.021949077025055885, -0.008203604258596897, 0.020183686167001724, 0.06741242110729218, -0.03423400968313217, 0.016889505088329315, -0.016925904899835587, 0.0511053130030632, 0.030211830511689186, 0.028482839465141296, -0.022131076082587242, 0.015042215585708618, -0.06275324523448944, -0.0014696418074890971, 0.008026154711842537, -0.018873294815421104, 0.01474191714078188, 0.07356398552656174, 0.03179522231221199, 0.029338235035538673, 0.0011943683493882418, 0.01863669604063034, -0.030648628249764442, 0.009791544638574123, 0.015697412192821503, 0.062098052352666855, -0.06002326309680939, 0.007088860031217337, 0.017617501318454742, 0.02176707796752453, -0.03934817761182785, -0.024952059611678123, -0.03252321854233742, 0.022040076553821564, -0.011593335308134556, 0.009336547926068306, 0.019291892647743225, -0.015251514501869678, -0.06118805706501007, -0.031522221863269806, 0.06431844085454941, -0.03760099038481712, 0.008995299227535725, -0.03277801722288132, -0.03239581733942032, -0.039748575538396835, -0.01269442867487669, -0.0691596120595932, 0.020820682868361473, 0.037892188876867294, -0.056201282888650894, 0.024114863947033882, -0.03285081684589386, 0.02724524773657322 ]
728,955
tables.atom
__init__
null
def __init__(self, shape=(), dflt=_defvalue): Atom.__init__(self, 'float64', shape, dflt)
(self, shape=(), dflt=0.0)
[ 0.03855642303824425, 0.016135599464178085, 0.07130297273397446, 0.008556356653571129, 0.03102119453251362, 0.006672549992799759, -0.052922651171684265, -0.04781700670719147, -0.02707752399146557, 0.019454268738627434, 0.023028219118714333, 0.03940149396657944, -0.04028178006410599, 0.05098602920770645, -0.024612730368971825, 0.03195429593324661, 0.002533016027882695, 0.07345086336135864, -0.013829255476593971, 0.07415509223937988, -0.02573949284851551, -0.01459510251879692, -0.0460212267935276, 0.018908493220806122, 0.04901419207453728, -0.002447188599035144, 0.02158455364406109, -0.013767636381089687, -0.026725411415100098, -0.022693712264299393, -0.009806359186768532, -0.01021128986030817, 0.0037015925627201796, 0.0006695657502859831, 0.03820430859923363, -0.06000013276934624, -0.00044729412184096873, 0.04827475547790527, -0.03802825137972832, 0.01657574065029621, 0.07436636090278625, -0.04823954403400421, -0.029542317613959312, 0.0005207427893765271, 0.01975356414914131, -0.008943681605160236, 0.04235924780368805, -0.01936624012887478, -0.04978884011507034, 0.005647019483149052, -0.01904933713376522, -0.029559923335909843, 0.03845078870654106, 0.007345966994762421, -0.09500020742416382, 0.09901430457830429, 0.05848604440689087, 0.09647908806800842, -0.05644378438591957, 0.04929588362574577, -0.035915572196245193, 0.08084525167942047, 0.03170781582593918, -0.07116212695837021, -0.024806393310427666, -0.013521156273782253, -0.04133811965584755, 0.007288748398423195, -0.026461325585842133, 0.06813395023345947, 0.005070433486253023, 0.018961308524012566, -0.026971889659762383, 0.010202486999332905, 0.0648593008518219, -0.0017572662327438593, -0.015378555282950401, 0.006034344434738159, 0.004564270377159119, -0.007667270489037037, -0.018433138728141785, 0.039049383252859116, -0.014551088213920593, 0.02056342549622059, 0.0007597947842441499, 0.005501772742718458, -0.00994720496237278, 0.04464798420667648, -0.006395260337740183, 0.01750003919005394, -0.040246568620204926, -0.019172577187418938, -0.01544897723942995, -0.01802820898592472, 0.009383823722600937, 0.01957750879228115, 0.03718318045139313, -0.05130292847752571, 0.014700736850500107, 0.027693722397089005, 0.021214835345745087, -0.05802829563617706, -0.0325704924762249, -0.012579252943396568, -0.02742963843047619, 0.028591612353920937, 0.0091637521982193, -0.04714798927307129, -0.04651418700814247, 0.0029071366880089045, -0.02829231508076191, 0.07253537327051163, 0.030404996126890182, 0.06193675473332405, -0.02917259931564331, 0.012139110825955868, 0.012632070109248161, 0.03271133825182915, 0.06774662435054779, 0.03102119453251362, 0.027376821264624596, 0.08746498078107834, -0.01751764491200447, 0.06341563165187836, 0.02026412822306156, 0.04140854254364967, 0.04626770690083504, -0.02332751639187336, -0.0366550087928772, -0.030281756073236465, 0.0401761457324028, -0.006408464629203081, -0.02746484987437725, 0.020827511325478554, 0.005246490240097046, -0.0020213513635098934, -0.0108803054317832, -0.04292263090610504, -0.032324016094207764, 0.010783474892377853, 0.009471851401031017, 0.03137330710887909, 0.05654941871762276, -0.04841560125350952, -0.09774669259786606, 0.10323966294527054, -0.04792264103889465, -0.001509686466306448, -0.004577474668622017, 0.014771158806979656, -0.012491224333643913, 0.00031002488685771823, 0.00409111799672246, -0.001092652091756463, 0.03774656355381012, -0.029964854940772057, 0.03367965295910835, -0.05401420220732689, 0.038838114589452744, 0.06278182566165924, -0.07978890836238861, -0.0211092010140419, 0.015545808710157871, -0.0480634868144989, -0.028415555134415627, 0.013662002049386501, -0.008125018328428268, -0.0847184956073761, -0.05535223335027695, 0.02536977455019951, 0.008226250298321247, -0.08147905021905899, 0.018309898674488068, 0.011109179817140102, 0.017359193414449692, 0.012887352146208286, -0.010378544218838215, 0.053767722100019455, 0.004647897556424141, 0.012306365184485912, 0.028010625392198563, -0.020827511325478554, -0.010123261250555515, -0.031795844435691833, 0.024119772017002106, 0.04154938831925392, -0.03517613559961319, 0.00578346336260438, 0.030070489272475243, 0.03427824378013611, 0.030616264790296555, 0.02658456563949585, -0.05295786261558533, 0.016179613769054413, 0.008679596707224846, 0.00022007091320119798, 0.014744751155376434, -0.02779935672879219, 0.0181866604834795, 0.035070501267910004, 0.01225354801863432, 0.009568682871758938, 0.03466556966304779, 0.00004824366988032125, 0.030228938907384872, -0.020017649978399277, 0.005977125838398933, 0.011003545485436916, -0.006901423446834087, -0.002212812891229987, 0.002223816467449069, -0.02591555006802082, 0.004388214088976383, 0.02193666808307171, -0.029102176427841187, -0.06778183579444885, -0.05397899076342583, -0.021831033751368523, 0.026338085532188416, 0.034542329609394073, 0.10880305618047714, -0.05359166860580444, -0.003426504088565707, 0.000966111256275326, 0.0018827066523954272, 0.03565148636698723, 0.033221904188394547, -0.03313387557864189, -0.018820464611053467, -0.02330991066992283, -0.005167264956980944, -0.044507138431072235, -0.02693667821586132, -0.03258809819817543, 0.032852184027433395, -0.013829255476593971, 0.042112767696380615, 0.011003545485436916, -0.0847184956073761, -0.002841115463525057, -0.005862689111381769, -0.012306365184485912, 0.0032086337450891733, -0.03299302980303764, 0.015140878036618233, -0.00514525780454278, 0.035105712711811066, 0.028362737968564034, -0.058767735958099365, -0.02144370973110199, -0.078873410820961, -0.006135576870292425, 0.012755310162901878, 0.008661990985274315, 0.03757050633430481, -0.004489446524530649, 0.016883840784430504, -0.017191939055919647, 0.030140912160277367, -0.012684887275099754, -0.011408476158976555, -0.016584543511271477, 0.053274765610694885, 0.08197201043367386, -0.00030892452923581004, 0.012112703174352646, -0.03343317285180092, -0.010272909887135029, -0.006866212468594313, 0.002500005532056093, 0.09429597854614258, 0.026197241619229317, 0.027359215542674065, -0.023609206080436707, -0.010528191924095154, -0.036302898079156876, -0.0012147914385423064, -0.03125006705522537, 0.005827477667480707, -0.00406691012904048, 0.005110046360641718, -0.09936641901731491, -0.013978904113173485, 0.04926067218184471, -0.06186633184552193, 0.030264150351285934, 0.02107398957014084, -0.015959542244672775, -0.024137377738952637, -0.04802827537059784, 0.01919018290936947, 0.0501057431101799, 0.026021184399724007, 0.032500073313713074, 0.0800705999135971, -0.0036223670467734337, 0.02369723469018936, 0.03207753598690033, 0.020140890032052994, 0.012790520675480366, 0.04154938831925392, -0.026285268366336823, 0.020862722769379616, 0.045563481748104095, 0.03926064819097519, -0.021390892565250397, 0.015149680897593498, 0.036373320966959, 0.024612730368971825, 0.06049308925867081, 0.05415504798293114, 0.0442606620490551, -0.09422556310892105, 0.002290938049554825, 0.022059908136725426, 0.06299309432506561, 0.010510586202144623, -0.08112693578004837, 0.03693670034408569, 0.048450812697410583, 0.00485036289319396, -0.032147958874702454, -0.01465672254562378, -0.04739446938037872, -0.08169031888246536, -0.05193673446774483, -0.023239487782120705, -0.018274687230587006, -0.006465683225542307, 0.05693674460053444, -0.004608284682035446, -0.004766735713928938, 0.0381338857114315, 0.02297540195286274, -0.025352168828248978, -0.024278221651911736, 0.035581063479185104, 0.0009138444438576698, -0.026461325585842133, -0.06373253464698792, 0.006531704682856798, 0.040739525109529495, -0.011980660259723663, 0.0211092010140419, -0.02401413768529892, -0.017825743183493614, 0.012843337841331959, -0.05735928192734718, 0.07556354999542236, -0.004828355740755796, -0.027200764045119286, 0.02061624266207218, -0.027904991060495377, 0.027711328119039536, 0.06109168380498886, 0.05887337028980255, -0.06658465415239334, -0.007561636157333851, -0.019665535539388657, -0.004192350897938013, 0.022218359634280205, 0.004469640087336302, 0.003556345822289586, -0.0083274831995368, -0.011646152473986149, -0.021919062361121178, -0.011408476158976555, 0.012931366451084614, 0.01669898070394993, 0.021408498287200928, -0.025352168828248978, -0.06545788794755936, -0.07992975413799286, -0.021690187975764275, -0.02455991320312023, 0.027887385338544846, -0.09246499091386795, -0.007539629470556974, -0.025845127180218697, -0.05633815377950668, -0.005171666387468576, -0.012385590933263302, 0.05468321964144707, 0.008912871591746807, -0.018662013113498688, 0.021831033751368523, -0.011514109559357166, 0.02507047727704048, 0.01381164975464344, 0.07549312710762024, 0.015765879303216934, -0.02281695231795311, 0.026373296976089478, -0.04278178513050079, -0.03390852361917496, 0.057887449860572815, 0.038697268813848495, 0.017429616302251816, -0.03380289301276207, 0.0030501827131956816, 0.01885567605495453, -0.014507073909044266, 0.024102166295051575, 0.05299307405948639, 0.01887328177690506, -0.04876771196722984, -0.011945448815822601, -0.02605639584362507, -0.017103910446166992, 0.072746641933918, 0.05489448830485344, 0.00707748020067811, 0.03957755118608475, 0.01622362807393074, 0.011628546752035618, -0.011478898115456104, -0.019806381314992905, -0.07190156728029251, 0.05302828550338745, -0.011311644688248634, -0.002757488517090678, 0.022570472210645676, 0.03360923007130623, 0.015827499330043793, 0.017843348905444145, 0.01777292601764202, 0.016593346372246742, 0.016434894874691963, -0.013389114290475845, 0.014524679630994797, -0.02332751639187336, 0.03742966055870056, -0.03838036581873894, 0.00664173997938633, 0.016514120623469353, -0.018573984503746033, -0.027904991060495377, -0.05633815377950668, 0.0012268952559679747, -0.011170798912644386, -0.011698969639837742, 0.04390854761004448, 0.06288745999336243, -0.08147905021905899, -0.06549309939146042, -0.015026441775262356, 0.026989495381712914, 0.041936710476875305, -0.022728923708200455, -0.03125006705522537, 0.018926097080111504, 0.013864466920495033, 0.07542270421981812, 0.0016813416732475162, 0.007570439018309116, -0.062183234840631485, -0.026021184399724007, -0.0582747757434845, -0.010281712748110294, -0.02005286142230034, -0.021901456639170647, -0.04595080390572548, -0.08654948323965073, -0.07239452749490738, -0.012649675831198692, -0.015369752421975136, 0.08450722694396973, -0.019524691626429558, -0.03700712323188782, -0.038873326033353806, 0.016610952094197273, 0.023890897631645203, 0.028591612353920937, -0.03445430099964142, -0.03500007838010788, 0.004775538574904203, -0.013952495530247688, -0.015897922217845917, -0.031478941440582275, -0.05862689018249512, -0.04876771196722984, -0.0452817901968956, -0.018045814707875252, 0.04359164461493492, -0.01217432226985693, 0.04873250052332878, 0.015299329534173012, -0.023292304947972298, 0.05080997198820114, 0.03908459469676018, -0.05679589882493019, 0.06862691044807434, -0.004214358050376177, 0.03139091283082962, 0.0607747808098793, 0.027535272762179375, 0.020105678588151932, 0.010501783341169357, 0.003688388504087925, 0.04257051646709442, -0.05246490240097046, -0.03718318045139313, -0.053274765610694885, -0.006236809305846691, 0.028714852407574654, -0.02181342802941799, -0.038873326033353806, -0.03809867426753044, -0.024436673149466515, -0.015721864998340607, -0.017552856355905533, -0.04940151795744896, -0.017684897407889366, 0.015026441775262356, 0.00558099802583456, -0.009137343615293503, -0.029436685144901276, 0.010079247877001762, -0.015915527939796448, -0.01869722455739975, -0.01346833910793066, 0.018257081508636475, -0.046760667115449905, -0.031320489943027496, -0.04169023409485817, -0.01975356414914131, 0.00809420831501484, -0.025510620325803757, 0.0470423586666584, 0.0025088083930313587, 0.03003527782857418, -0.07373255491256714, -0.02005286142230034, 0.024225406348705292, -0.03105640597641468, 0.06352126598358154, -0.016470106318593025, 0.03195429593324661, -0.018591590225696564, -0.03964797407388687, -0.008512342348694801, -0.01338031142950058, 0.04130290821194649, 0.004797545727342367, -0.005827477667480707, 0.00899649877101183, -0.009005301631987095, 0.007799312938004732, 0.04728883504867554, -0.009005301631987095, 0.005457758437842131, -0.03397894650697708, -0.007086283061653376, 0.017843348905444145, -0.010589811950922012, 0.0009848172776401043, 0.007108290214091539, -0.0024383857380598783, 0.029947249218821526, 0.007649664767086506, -0.0009160451591014862, 0.04771137237548828, 0.06785225868225098, 0.032147958874702454, -0.017843348905444145, 0.0048459614627063274, -0.01242960523813963, -0.0305282361805439, -0.03360923007130623, 0.038838114589452744, -0.02267610654234886, 0.0036399727687239647, 0.02640850841999054, 0.02244723215699196, 0.020827511325478554, -0.010378544218838215, -0.019084548577666283, 0.0010596413630992174, -0.055317021906375885, -0.06176069751381874, 0.00012152040289947763, -0.008441920392215252, -0.025123294442892075, -0.04542263597249985, 0.03394373506307602, 0.02815147116780281, -0.0521480031311512, -0.0020664657931774855, -0.01277291588485241, -0.035440217703580856, -0.0015735069755464792, -0.000863228109665215, 0.003532137954607606, 0.029577529057860374, -0.04052825644612312, -0.04728883504867554, -0.04362685605883598, -0.031989507377147675, 0.03554585203528404, 0.018644407391548157, -0.02536977455019951, 0.016848629340529442, -0.0445423498749733, 0.007165508810430765, 0.0018265885300934315, -0.05785223841667175, -0.015765879303216934, 0.03802825137972832, -0.008794033899903297, -0.04049304500222206, 0.06330999732017517, 0.0021302863024175167, 0.002321748062968254, -0.0018309899605810642, -0.008860054425895214, -0.02077469415962696, -0.016197219491004944, 0.02897893637418747, -0.008776428177952766, 0.009559880010783672, -0.014524679630994797, -0.030070489272475243, -0.028098654001951218, -0.040915582329034805, 0.007099487353116274, 0.006685754284262657, -0.0025418188888579607, -0.08197201043367386, 0.015044047497212887, -0.012896155007183552, 0.04926067218184471, 0.0028565204702317715, -0.0260740015655756, -0.09415514022111893, -0.012746507301926613, -0.0312676727771759, -0.03640853241086006, -0.005448955576866865, 0.02040497399866581, 0.06433112919330597, -0.022024696692824364, 0.03602120652794838, -0.009410232305526733, -0.03623247519135475, -0.0018397928215563297, -0.04901419207453728, -0.02593315578997135, -0.04654939845204353, 0.023556390777230263, 0.06366211175918579, -0.021232441067695618, 0.021320469677448273, 0.04080994799733162, 0.06334520876407623, 0.0026430515572428703, 0.0333099327981472, -0.07500016689300537, -0.020792299881577492, 0.037640929222106934, -0.015070456080138683, -0.04123248532414436, -0.027412032708525658, -0.03392612934112549, 0.03690148890018463, -0.0014106545131653547, -0.04728883504867554, -0.03174302726984024, -0.02420780062675476, 0.0006910226657055318, -0.003413299797102809, -0.049331095069646835, 0.05616209656000137, 0.020721876993775368, -0.033010635524988174, -0.02936626225709915, -0.03735923767089844, 0.02573949284851551, 0.04901419207453728, 0.05334518849849701, 0.03514092415571213, 0.037676140666007996, 0.009207766503095627, 0.00020975508959963918, -0.04260572791099548, -0.013309888541698456, -0.037147969007492065, -0.038662057369947433, 0.06563394516706467, -0.005933111533522606, 0.0014898800291121006, -0.010704249143600464, -0.00823065172880888, 0.06982409954071045, -0.011126784607768059, -0.021848639473319054, -0.014973624609410763, -0.05679589882493019, -0.014727145433425903, 0.021144412457942963, -0.027218369767069817, 0.00857396237552166, 0.031144434586167336, -0.06545788794755936, 0.06598605960607529, 0.04686630144715309, 0.021531738340854645, -0.021690187975764275, 0.031091617420315742, -0.010413755662739277, 0.031813450157642365, 0.008239454589784145, 0.04387333616614342, -0.0019916417077183723, -0.04531700164079666, 0.0013512353179976344, 0.04887334629893303, 0.03503528982400894, 0.030299361795186996, -0.02332751639187336, 0.0007531926967203617, -0.013556367717683315, -0.006786986719816923, 0.07457762956619263, 0.06880296766757965, 0.03137330710887909, -0.02038736827671528, -0.025440197438001633, -0.0015746073331683874, -0.020897934213280678, -0.04461277276277542, 0.021848639473319054, 0.10105656087398529, 0.017720108851790428, 0.02764090523123741, -0.019154971465468407, 0.007218325976282358, 0.014551088213920593, 0.0330810584127903, -0.0023019416257739067, 0.07267621904611588, -0.033345144242048264, -0.03725360333919525, -0.04010572284460068, 0.023538785055279732, 0.04084515944123268, -0.006465683225542307, -0.01013206411153078, -0.017649685963988304, -0.006879416760057211, 0.02850358374416828, 0.013353902846574783, 0.012033477425575256, -0.016610952094197273, 0.0031778239645063877, 0.06929592788219452, -0.06669028848409653, 0.02691907249391079, -0.0200880728662014, -0.041795868426561356, -0.09542274475097656, -0.04901419207453728, -0.050352223217487335, 0.013459536246955395, 0.034401483833789825, -0.010924319736659527, 0.03466556966304779, 0.018468350172042847, 0.0017605673056095839 ]
728,961
tables.description
Time64Col
Defines a non-nested column of a particular type. The constructor accepts the same arguments as the equivalent `Atom` class, plus an additional ``pos`` argument for position information, which is assigned to the `_v_pos` attribute and an ``attrs`` argument for storing additional metadata similar to `table.attrs`, which is assigned to the `_v_col_attrs` attribute.
from tables.description import Time64Col
(*args, **kwargs)
[ 0.03286629915237427, 0.027826689183712006, 0.02986932173371315, 0.055452462285757065, 0.011720025911927223, -0.04708101600408554, -0.021464388817548752, 0.01891946978867054, -0.03737013787031174, -0.009618792682886124, 0.003396714571863413, 0.03326813131570816, -0.010531280189752579, 0.02677188627421856, 0.0072329300455749035, 0.01850089803338051, 0.01609829254448414, 0.02178250439465046, -0.02116301842033863, -0.018383696675300598, 0.011376796290278435, -0.027274174615740776, -0.00979459285736084, -0.008714675903320312, 0.00243190536275506, 0.0497598797082901, -0.04560764133930206, -0.028312232345342636, 0.027207201346755028, -0.06358951330184937, -0.018400439992547035, -0.017261924222111702, -0.054715774953365326, 0.026303086429834366, -0.02548268437385559, -0.034456875175237656, 0.02615240029990673, -0.05324240028858185, 0.006835286505520344, 0.009543449617922306, 0.04423472657799721, -0.013009228743612766, -0.003220914164558053, -0.0563230961561203, -0.022770335897803307, -0.054046060889959335, 0.044569581747055054, -0.05096536874771118, 0.0036541365552693605, -0.04440215229988098, 0.0027500202413648367, -0.02548268437385559, 0.0265877153724432, 0.026370057836174965, -0.07520908117294312, 0.010363850742578506, -0.0008716768934391439, 0.08793367445468903, -0.04065174609422684, 0.04289529472589493, -0.03931231424212456, 0.03917837142944336, -0.01331897173076868, 0.03552842140197754, 0.03102458268404007, 0.0023565622977912426, 0.0004151714383624494, -0.009149990975856781, 0.034758247435092926, 0.0215983334928751, -0.025951486080884933, 0.005935356020927429, 0.05230480059981346, 0.05381166189908981, -0.00243190536275506, -0.05176902562379837, -0.10715451836585999, -0.050463080406188965, 0.024076281115412712, -0.029300063848495483, 0.013997059315443039, 0.006579957436770201, 0.023707937449216843, 0.04199117794632912, 0.050161708146333694, -0.04118751734495163, 0.043062724173069, 0.06235053762793541, -0.05357725918292999, 0.011845597065985203, -0.014147745445370674, -0.07688336819410324, -0.06261841952800751, 0.05726069584488869, -0.05042959749698639, -0.02178250439465046, -0.018584612756967545, 0.023825136944651604, -0.057762984186410904, 0.0004604295827448368, 0.061714306473731995, -0.059403788298368454, 0.006471128202974796, 0.003760872408747673, 0.009016048163175583, 0.015788549557328224, -0.024377653375267982, -0.009618792682886124, -0.015001633204519749, -0.02986932173371315, -0.042192090302705765, 0.0676078051328659, -0.007927760481834412, -0.08070074766874313, 0.0641922578215599, 0.013143171556293964, 0.048085588961839676, -0.01545369066298008, 0.03372018784284592, 0.022050391882658005, 0.04959245026111603, -0.028663834556937218, -0.0022916835732758045, 0.022435477003455162, -0.019756615161895752, 0.032146356999874115, -0.009895049966871738, 0.01128470990806818, 0.010807537473738194, -0.0019421756733208895, 0.033117443323135376, -0.0032271926756948233, 0.002842106157913804, 0.06911466270685196, 0.053074974566698074, -0.018467411398887634, 0.06412528455257416, 0.03947974368929863, 0.031778011471033096, 0.038776542991399765, -0.03023766539990902, 0.017596781253814697, 0.03358624503016472, -0.04091963171958923, -0.005433069076389074, 0.0011604918399825692, -0.03331835940480232, 0.04239300638437271, -0.023808395490050316, 0.031911954283714294, -0.028211776167154312, -0.03298350051045418, -0.006579957436770201, 0.001734982361085713, 0.020024500787258148, -0.015922492370009422, 0.0010286414762958884, -0.04992730915546417, 0.03532750532031059, -0.010882880538702011, 0.012674370780587196, -0.028965206816792488, -0.043096207082271576, -0.05026216804981232, -0.01965615712106228, 0.017479581758379936, -0.01429005991667509, -0.02280382066965103, 0.005378654692322016, -0.022535935044288635, 0.024427881464362144, -0.022971250116825104, 0.02749183215200901, 0.026319829747080803, 0.008497018367052078, -0.02012495882809162, -0.037437111139297485, 0.053309373557567596, 0.035126589238643646, -0.028446177020668983, 0.026688173413276672, 0.03407178819179535, -0.06091064587235451, 0.09416203200817108, -0.027357887476682663, 0.013745916076004505, -0.002747927326709032, -0.033854130655527115, 0.00453313859179616, -0.02184947580099106, 0.03469127416610718, 0.014181231148540974, -0.027726231142878532, 0.00027494970709085464, 0.00628277100622654, -0.014758860692381859, 0.023573994636535645, -0.001482792547903955, -0.006332999560981989, 0.03356950357556343, -0.012364626862108707, 0.03298350051045418, -0.006563214119523764, 0.004633595701307058, 0.07353478670120239, -0.05444788932800293, 0.04262740910053253, -0.01716146618127823, -0.09697484225034714, -0.03783893957734108, 0.04560764133930206, -0.037437111139297485, -0.017931638285517693, 0.02968515083193779, 0.015001633204519749, -0.04128797724843025, -0.11378470808267593, -0.015001633204519749, -0.018517641350626945, 0.013478029519319534, 0.07782097160816193, -0.0030765067785978317, -0.051802512258291245, -0.05454834923148155, 0.07186049968004227, -0.009007676504552364, 0.016290836036205292, -0.008639332838356495, 0.013553372584283352, -0.06188173592090607, -0.039446257054805756, -0.0033213715068995953, -0.06653626263141632, -0.002040540101006627, 0.017931638285517693, 0.04929107800126076, -0.012205569073557854, -0.008413303643465042, 0.019505470991134644, -0.03706876561045647, -0.02682211622595787, -0.0001478083577239886, -0.0005598405259661376, -0.02858011983335018, 0.014549574814736843, -0.054113034158945084, -0.02280382066965103, 0.019974272698163986, -0.06663671880960464, 0.009719249792397022, -0.030271152034401894, -0.038475170731544495, 0.086125448346138, 0.013678943738341331, 0.025599883869290352, -0.017429351806640625, -0.028496405109763145, -0.011535854078829288, 0.001421053078956902, -0.04225906357169151, -0.03562887758016586, -0.05200342833995819, -0.024963654577732086, 0.011594453826546669, 0.047717247158288956, 0.00020091472833883017, -0.04460306838154793, 0.052907545119524, -0.008078446611762047, -0.025499427691102028, 0.07400359213352203, -0.0007042479701340199, -0.08887127786874771, -0.017261924222111702, -0.018517641350626945, -0.05695932358503342, 0.0038801655173301697, -0.027692746371030807, -0.023741424083709717, -0.0033695073798298836, -0.02511434070765972, 0.00906627718359232, -0.0019871722906827927, 0.01799861155450344, -0.028395947068929672, -0.01049779448658228, -0.03700179606676102, 0.003737851046025753, -0.04878879338502884, 0.01880227029323578, -0.029333550482988358, 0.033117443323135376, 0.027156973257660866, 0.03407178819179535, 0.02414325252175331, 0.07695034146308899, 0.02349027991294861, 0.00875653326511383, 0.027508573606610298, 0.006404156796634197, -0.027039773762226105, -0.006898072082549334, 0.035059619694948196, 0.05689235404133797, -0.05990607291460037, 0.023808395490050316, -0.02280382066965103, -0.028981948271393776, 0.007241301704198122, -0.0016052249120548368, 0.029517721384763718, -0.022100619971752167, -0.047482848167419434, 0.03432293236255646, 0.007153401151299477, 0.034758247435092926, -0.09724272787570953, 0.039680659770965576, -0.005094025284051895, 0.0628863051533699, -0.014306802302598953, -0.01947198621928692, 0.0416228324174881, -0.008450975641608238, 0.05109931156039238, -0.10052433609962463, 0.004729867447167635, -0.01831672526896, 0.025566399097442627, 0.01891946978867054, -0.026872344315052032, -0.009024419821798801, 0.09094739705324173, 0.027156973257660866, 0.022234562784433365, 0.017178209498524666, -0.011401910334825516, -0.04564112797379494, -0.03881002590060234, 0.0215983334928751, 0.05876755714416504, 0.0013457101304084063, 0.002616077195852995, 0.0019086898537352681, 0.04922410845756531, -0.037571053951978683, -0.0273076593875885, -0.018082324415445328, 0.05893498659133911, -0.0027751345187425613, 0.03174452483654022, -0.038039855659008026, -0.009593677707016468, 0.07319992780685425, -0.0022142475936561823, 0.016391292214393616, 0.019723128527402878, -0.040785688906908035, -0.04483747109770775, 0.044067297130823135, 0.04068523272871971, -0.014465860091149807, 0.030321380123496056, -0.04604295641183853, -0.012280912138521671, 0.025214798748493195, -0.037202708423137665, 0.017747467383742332, 0.03284955769777298, 0.05786344036459923, -0.02220107614994049, -0.007052944041788578, 0.051367197185754776, 0.027542060241103172, -0.024595310911536217, -0.034925676882267, -0.03569585084915161, 0.05096536874771118, -0.11016824096441269, -0.038039855659008026, 0.02402605302631855, -0.009535077959299088, -0.03326813131570816, 0.045775070786476135, 0.01438214536756277, 0.009476478211581707, -0.00262444862164557, 0.0018500897567719221, -0.062752366065979, -0.013084571808576584, -0.028178289532661438, -0.027391374111175537, -0.0004954850301146507, 0.0045080240815877914, -0.020275644958019257, 0.028563376516103745, -0.012406484223902225, 0.02019193023443222, 0.026621200144290924, -0.010263393633067608, -0.002419348107650876, -0.04259392246603966, 0.029969779774546623, 0.03529401868581772, -0.03984808549284935, 0.0014723282074555755, 0.027542060241103172, -0.014909546822309494, -0.03358624503016472, -0.017178209498524666, -0.01331897173076868, -0.0035222861915826797, -0.0009972485713660717, 0.00735850166529417, 0.007668245118111372, -0.008484461344778538, -0.011544224806129932, -0.07835674285888672, 0.022100619971752167, 0.023021478205919266, 0.012431598268449306, -0.05170205608010292, -0.009928535670042038, 0.04788467660546303, 0.003582979319617152, -0.017429351806640625, -0.00873141922056675, 0.06054230406880379, -0.002856756327673793, 0.01672615110874176, -0.010723823681473732, 0.0035369363613426685, -0.020828159525990486, -0.04158934950828552, 0.07112381607294083, -0.011577711440622807, 0.024528339505195618, -0.06797614693641663, 0.03273235633969307, -0.0173288956284523, 0.04932456463575363, 0.03971414268016815, 0.05551943555474281, -0.047114502638578415, 0.043029237538576126, -0.046746160835027695, -0.06194870546460152, 0.05511760711669922, 0.004403381142765284, 0.011334938928484917, 0.0024507411289960146, 0.05230480059981346, 0.06375694274902344, -0.05384514480829239, 0.02347353659570217, -0.04728193208575249, -0.022100619971752167, -0.025398969650268555, 0.0008303428767248988, 0.010907995514571667, -0.036097679287195206, 0.01225579809397459, -0.014281688258051872, -0.044134266674518585, 0.029601436108350754, -0.029902808368206024, -0.06412528455257416, -0.045842044055461884, -0.023272622376680374, 0.012264169752597809, -0.002390048000961542, 0.02688908763229847, 0.005600498057901859, -0.02598497085273266, 0.029768865555524826, 0.017261924222111702, -0.020459815859794617, 0.03629859536886215, -0.028027603402733803, 0.0014922104310244322, 0.02464553900063038, -0.06456059962511063, 0.007111544255167246, -0.02956794947385788, 0.022586163133382797, 0.06154687702655792, -0.024595310911536217, -0.023322850465774536, -0.03238075599074364, -0.08445115387439728, -0.038240768015384674, 0.08230806887149811, -0.008204017765820026, 0.011142395436763763, 0.06285282224416733, -0.010907995514571667, 0.05163508281111717, -0.02487993985414505, -0.033435557037591934, 0.04410078376531601, 0.005114953964948654, 0.0021409974433481693, -0.024411138147115707, -0.010757309384644032, 0.04356500878930092, -0.0015487176133319736, 0.03273235633969307, -0.021146275103092194, -0.014884432777762413, -0.05230480059981346, 0.014080774039030075, -0.01587226241827011, -0.03927882760763168, 0.016994036734104156, -0.005056353751569986, -0.0396471731364727, -0.0016742893494665623, -0.026353314518928528, 0.00915836263448, 0.0305892676115036, -0.03850865736603737, 0.013846373185515404, -0.006119527854025364, -0.04356500878930092, -0.021430904045701027, 0.03209612891077995, -0.034590817987918854, 0.03370344638824463, 0.009024419821798801, 0.033117443323135376, 0.038475170731544495, 0.007643131073564291, 0.026051942259073257, -0.0015215104212984443, -0.006253470666706562, 0.09175105392932892, -0.04359849542379379, -0.011937683448195457, 0.02426045387983322, -0.05957121402025223, 0.015922492370009422, -0.03576282039284706, 0.049358051270246506, 0.02025890164077282, 0.0003311953623779118, 0.06091064587235451, -0.05525154992938042, 0.0364995077252388, 0.024612054228782654, 0.009417877532541752, -0.03763802349567413, 0.03268212825059891, 0.049056679010391235, -0.06047533079981804, -0.028094574809074402, 0.04001551494002342, 0.029300063848495483, 0.0007293623057194054, 0.05849967151880264, -0.01128470990806818, 0.008538875728845596, -0.011837225407361984, 0.05846618488430977, 0.0862593874335289, -0.042493462562561035, 0.024528339505195618, -0.0020928618032485247, 0.025633370503783226, -0.06857889145612717, 0.03710225224494934, -0.010933109559118748, 0.033184416592121124, 0.04952548071742058, -0.02780994586646557, 0.002842106157913804, -0.045406728982925415, -0.03405504673719406, 0.015889005735516548, 0.01149399671703577, -0.06225007772445679, -0.01935478486120701, 0.03313418850302696, 0.034590817987918854, -0.014800718054175377, 0.020158443599939346, 0.000807321397587657, -0.02261964976787567, 0.018149297684431076, 0.02847966179251671, -0.009166734293103218, 0.009593677707016468, -0.012172083370387554, -0.015805291011929512, 0.03556190803647041, 0.026604458689689636, 0.012088369578123093, -0.041823748499155045, 0.015219290740787983, -0.02511434070765972, 0.01781443879008293, -0.01018805056810379, 0.028630347922444344, -0.005767927039414644, 0.0006236727931536734, 0.02282056398689747, -0.027960631996393204, 0.042928777635097504, 0.011929311789572239, -0.02714022994041443, 0.006412528455257416, -0.030086979269981384, 0.03412201628088951, 0.003934579901397228, 0.017077751457691193, 0.023088449612259865, -0.08076772093772888, -0.021548103541135788, -0.022100619971752167, -0.0018479968421161175, -0.05297451466321945, -0.1060829758644104, 0.09550146758556366, 0.03187847137451172, -0.00801566056907177, 0.010338736698031425, 0.004229673650115728, -0.03891048580408096, -0.004830325022339821, 0.039446257054805756, -0.11773602664470673, 0.007266415748745203, 0.0004996707430109382, 0.010631737299263477, -0.04061825945973396, -0.02390885166823864, -0.0231721643358469, -0.038408197462558746, -0.02950097806751728, 0.013754286803305149, 0.08592452853918076, 0.014281688258051872, 0.046679187566041946, -0.020057987421751022, 0.0132938576862216, -0.025817541405558586, 0.03187847137451172, -0.048822276294231415, -0.06553168594837189, -0.023272622376680374, 0.004240137990564108, -0.03120875358581543, 0.002069840207695961, 0.06456059962511063, 0.025532912462949753, -0.014440746046602726, -0.021447647362947464, -0.0644601434469223, -0.060073502361774445, 0.027357887476682663, -0.015219290740787983, 0.015646234154701233, -0.05726069584488869, -0.018835755065083504, -0.027943888679146767, 0.030405094847083092, -0.05250571295619011, 0.026922572404146194, 0.045105356723070145, -0.0027144416235387325, 0.06924860924482346, 0.006299513857811689, -0.03238075599074364, 0.05391211807727814, -0.049056679010391235, 0.02032587304711342, -0.00278978468850255, 0.016475006937980652, 0.019790099933743477, 0.08137046545743942, 0.006684600375592709, 0.029367035254836082, -0.014131002128124237, -0.022736849263310432, -0.02414325252175331, -0.034590817987918854, 0.059035442769527435, -0.01656709425151348, 0.02780994586646557, -0.004662896040827036, -0.06794266402721405, 0.0024256266187876463, -0.025599883869290352, -0.06107807531952858, 0.03971414268016815, 0.011452139355242252, -0.02464553900063038, 0.014507717452943325, 0.03380390256643295, 0.039747629314661026, 0.04061825945973396, 0.004566624294966459, 0.028965206816792488, 0.019120384007692337, 0.057696010917425156, 0.05163508281111717, 0.03556190803647041, 0.021246731281280518, -0.009710878133773804, 0.007802188396453857, -0.025415712967514992, 0.03286629915237427, 0.05491669103503227, -0.014583060517907143, -0.0016659179236739874, 0.0382072851061821, -0.027341146022081375, -0.03596373647451401, 0.0727311298251152, -0.014306802302598953, 0.005675841122865677, 0.043330609798431396, 0.022736849263310432, 0.02305496484041214, 0.025147825479507446, -0.04523929953575134, 0.07319992780685425, -0.07186049968004227, 0.017596781253814697, 0.0007518605561926961, 0.012883656658232212, -0.00529493996873498, 0.014951404184103012, 0.02591799944639206, 0.05123325437307358, -0.016918694600462914, 0.025583142414689064, -0.027324402704834938, 0.026621200144290924, 0.01806558296084404, -0.02287079207599163, -0.08398235589265823, 0.024712510406970978, 0.03365321457386017, 0.03157709911465645, -0.05250571295619011, 0.025030625984072685, -0.029367035254836082, 0.020710960030555725, -0.023875366896390915, 0.06107807531952858, 0.03340207412838936, -0.0021012332290410995, -0.06723946332931519, -0.028362462297081947, 0.05036262422800064, -0.02208387665450573, 0.0009532985277473927, -0.00348252197727561, -0.06422574073076248, -0.03393784537911415, 0.022535935044288635, 0.00419200211763382, 0.01593923568725586, 0.009928535670042038, 0.021129531785845757, -0.00492659630253911, 0.00701108667999506, 0.03197892755270004 ]
728,969
tables.atom
TimeAtom
Defines an atom of time type (time kind). There are two distinct supported types of time: a 32 bit integer value and a 64 bit floating point value. Both of them reflect the number of seconds since the Unix epoch. This atom has the property of being stored using the HDF5 time datatypes.
class TimeAtom(Atom): """Defines an atom of time type (time kind). There are two distinct supported types of time: a 32 bit integer value and a 64 bit floating point value. Both of them reflect the number of seconds since the Unix epoch. This atom has the property of being stored using the HDF5 time datatypes. """ kind = 'time' _deftype = 'time32' _defvalue = 0 __init__ = _abstract_atom_init(_deftype, _defvalue)
(itemsize=4, shape=(), dflt=0)
[ 0.06605794280767441, 0.04374257102608681, -0.0108431251719594, 0.052846357226371765, 0.058064378798007965, -0.04514884948730469, -0.04307644069194794, 0.02368464134633541, -0.03985681012272835, -0.0340096652507782, 0.043594542890787125, 0.012924782931804657, 0.01281376089900732, 0.05066292732954025, 0.020705558359622955, 0.02164924331009388, -0.007998192682862282, 0.055399857461452484, -0.07157202810049057, -0.03289944678544998, 0.024424785748124123, -0.007359817158430815, -0.052846357226371765, 0.032362841069698334, 0.03524940833449364, 0.013109819032251835, -0.027903467416763306, 0.006536405999213457, -0.061284009367227554, -0.04074498638510704, -0.017855999991297722, -0.017199121415615082, -0.01784674823284149, 0.0005238839075900614, 0.004327535629272461, -0.04807242006063461, -0.013304106891155243, 0.042336296290159225, -0.10147388279438019, 0.033806126564741135, 0.052920371294021606, -0.016921566799283028, -0.03402816876769066, -0.004972849506884813, 0.01646822690963745, -0.031678207218647, 0.06787130236625671, 0.022759459912776947, -0.041004035621881485, -0.03524940833449364, -0.0072534214705228806, -0.023092525079846382, -0.0006354838842526078, 0.03989381715655327, -0.11383430659770966, 0.03619309142231941, 0.03547145053744316, 0.06502174586057663, -0.0498487688601017, 0.07978763431310654, 0.009603382088243961, 0.06320838630199432, 0.027699928730726242, -0.020150449126958847, -0.02155672386288643, 0.0032196310348808765, -0.023740151897072792, -0.016125909984111786, -0.013886971399188042, 0.03952374681830406, -0.007461587432771921, -0.022093329578638077, 0.03214079886674881, 0.03199277073144913, 0.05643605813384056, -0.023758655413985252, -0.048849571496248245, 0.04340950772166252, -0.016625508666038513, 0.022000811994075775, -0.007637371774762869, 0.023185044527053833, 0.00035099065280519426, 0.029901860281825066, -0.03754385933279991, -0.003131738631054759, 0.020150449126958847, 0.025405479595065117, -0.05173613876104355, 0.014876915141940117, -0.021260665729641914, -0.02882864885032177, -0.00882160384207964, 0.017347149550914764, 0.010130735114216805, -0.00013892175047658384, -0.0001834460999816656, -0.025460990145802498, -0.062024153769016266, -0.025312960147857666, 0.0017404973041266203, -0.06727918237447739, -0.012684235349297523, -0.028625110164284706, -0.03029043599963188, 0.031252626329660416, 0.0008627315983176231, -0.017310142517089844, -0.01902172714471817, -0.015857607126235962, -0.052883364260196686, 0.05595496669411659, -0.052254240959882736, 0.0030669760890305042, 0.038450535386800766, 0.011268707923591137, 0.03893163055181503, 0.03088255226612091, 0.018845943734049797, 0.026016097515821457, 0.019965412095189095, 0.03745133802294731, 0.006277355365455151, 0.010380534455180168, 0.005379929207265377, 0.04189220815896988, 0.03591553866863251, -0.018068790435791016, -0.04988577589392662, -0.006281981244683266, -0.026108616963028908, 0.035804517567157745, 0.03413918986916542, 0.046925194561481476, 0.025405479595065117, -0.02031698077917099, 0.0315856896340847, 0.002754727378487587, -0.026497192680835724, 0.03495334833860397, -0.011222449131309986, 0.04677716642618179, 0.05303139239549637, -0.04640709608793259, 0.006522528361529112, 0.019872894510626793, -0.058693502098321915, -0.024813363328576088, -0.029864853248000145, 0.04259534925222397, -0.015524541959166527, -0.03460178151726723, 0.013840712606906891, 0.07778924703598022, -0.0028194901533424854, 0.019373295828700066, 0.01209212001413107, -0.054067596793174744, -0.00822948757559061, -0.0006840559071861207, -0.050144828855991364, -0.016135161742568016, -0.002056215424090624, -0.05784233659505844, -0.02174176089465618, 0.023314569145441055, -0.050070811063051224, -0.05181015282869339, -0.03019791841506958, -0.01212912704795599, -0.011879327706992626, -0.03737732395529747, 0.025201939046382904, -0.011537010781466961, 0.07249720394611359, -0.04344651475548744, -0.024794859811663628, 0.03345455601811409, 0.06043284386396408, -0.005736124236136675, 0.05310540646314621, -0.011074420064687729, -0.05780532956123352, 0.02362913079559803, -0.047554317861795425, 0.0500338040292263, -0.012082868255674839, -0.0065595353953540325, 0.03082704171538353, 0.0395977608859539, 0.0406709685921669, 0.01963234692811966, -0.05295737832784653, 0.04577797278761864, 0.02947627566754818, -0.0002432937762932852, 0.03276992216706276, -0.0034902465995401144, 0.038376521319150925, 0.0842285081744194, -0.023740151897072792, 0.05436365306377411, 0.02283347398042679, -0.04707322642207146, 0.04792439192533493, -0.06805633753538132, 0.058730509132146835, -0.006860219407826662, -0.09392440319061279, -0.004581960383802652, -0.0018179812468588352, -0.05325343459844589, 0.0354529470205307, 0.06257926672697067, 0.006513276603072882, -0.061913132667541504, -0.09710703045129776, 0.00229676254093647, -0.013794452883303165, -0.002297919010743499, 0.07382947206497192, -0.005712994374334812, -0.020131945610046387, 0.010991154238581657, 0.03615608438849449, 0.016153665259480476, 0.013683431781828403, -0.024461794644594193, -0.01511746272444725, -0.03165970370173454, 0.018124300986528397, 0.04215126112103462, -0.03933870792388916, -0.015191476792097092, 0.006897226441651583, 0.042299289256334305, 0.04381658509373665, 0.029846349731087685, -0.07823333144187927, -0.029809342697262764, -0.014941678382456303, 0.0049867271445691586, -0.013683431781828403, -0.037099771201610565, 0.011934839189052582, -0.08037975430488586, 0.024424785748124123, 0.04981176182627678, -0.09288820624351501, -0.009973454289138317, -0.04255833849310875, 0.02044650726020336, 0.021149644628167152, -0.015607808716595173, 0.03734031692147255, -0.023388583213090897, -0.024517305195331573, -0.03695174306631088, 0.006402254570275545, -0.01774497702717781, -0.015432024374604225, -0.023462597280740738, 0.0342872180044651, 0.05458569899201393, 0.033806126564741135, 0.01979888044297695, -0.05843445286154747, 0.04111505672335625, -0.031733717769384384, -0.007799278479069471, 0.10606278479099274, -0.03811746835708618, -0.041078049689531326, -0.05499277636408806, -0.04333549365401268, -0.050847966223955154, 0.01513596624135971, -0.010056721046566963, -0.014978685416281223, 0.004667539615184069, -0.03626710921525955, -0.01511746272444725, 0.017365653067827225, -0.029087699949741364, -0.02760741114616394, 0.00489420909434557, -0.029106203466653824, 0.05066292732954025, -0.03356557711958885, 0.005555713549256325, -0.03565648943185806, -0.009163920767605305, -0.01473813783377409, -0.01784674823284149, 0.06328240036964417, 0.023240555077791214, -0.017948517575860023, 0.006180210970342159, 0.04015287011861801, -0.015570801682770252, 0.05181015282869339, 0.02958729863166809, -0.0035642609000205994, 0.01020475011318922, -0.031289633363485336, 0.02364763431251049, -0.021371688693761826, 0.024424785748124123, 0.027163323014974594, 0.027810949832201004, 0.04126308485865593, -0.010084476321935654, -0.0615430623292923, 0.028680620715022087, 0.020835082978010178, 0.0926661565899849, 0.0057685053907334805, -0.03153017908334732, -0.003580451710149646, 0.049478694796562195, -0.023925188928842545, -0.024554312229156494, 0.034472256898880005, -0.02877313829958439, -0.02353661321103573, -0.12863720953464508, 0.00032988496241159737, 0.006776953116059303, -0.033102985471487045, 0.023351576179265976, -0.03684071823954582, -0.0006031025550328195, 0.06391152739524841, 0.026127120479941368, -0.004470938816666603, 0.014886166900396347, -0.003629023674875498, -0.006291233003139496, 0.03915367275476456, -0.02436927519738674, 0.0692775771021843, 0.030512480065226555, -0.034416746348142624, 0.012295659631490707, 0.021889789029955864, -0.02751489169895649, -0.02881014533340931, -0.017162112519145012, 0.08356237411499023, 0.010352779179811478, 0.02102012000977993, -0.023314569145441055, -0.07286728173494339, 0.003989844582974911, 0.036359626799821854, 0.004186445381492376, 0.0026691481471061707, -0.06842640787363052, -0.014035000465810299, -0.024406282231211662, 0.021334681659936905, 0.021334681659936905, 0.05266131833195686, -0.018503626808524132, -0.016930818557739258, -0.00017983211728278548, 0.024683836847543716, 0.0629863440990448, 0.04907161742448807, -0.001770565751940012, -0.05854547396302223, -0.05972970649600029, -0.010371282696723938, -0.00039493676740676165, 0.03339904546737671, -0.01580209657549858, -0.035138387233018875, 0.04315045475959778, -0.09755111485719681, -0.08252616971731186, 0.045518919825553894, 0.0004186445439700037, -0.030567990615963936, -0.005861023440957069, 0.0026136371307075024, 0.00391814298927784, 0.051514096558094025, 0.029698319733142853, -0.017587697133421898, 0.0579533576965332, 0.026404675096273422, -0.04207724705338478, 0.012563962489366531, -0.056769125163555145, -0.04792439192533493, 0.07434757053852081, -0.0019324724562466145, 0.03989381715655327, -0.025257449597120285, -0.0023222051095217466, 0.05310540646314621, -0.044186659157276154, 0.009367460384964943, 0.03819148615002632, -0.000025532835934427567, -0.004801691044121981, 0.0068833488039672375, -0.019225267693400383, -0.07149801403284073, 0.006744571961462498, 0.010898635722696781, -0.0392276868224144, 0.00068000826286152, 0.018771929666399956, 0.026404675096273422, -0.02098311297595501, 0.005083871074020863, -0.06472568213939667, 0.026682229712605476, 0.031252626329660416, -0.016699522733688354, -0.01637570932507515, 0.027126315981149673, 0.027403870597481728, 0.008983510546386242, 0.012573214247822762, 0.0444457083940506, 0.0341021828353405, -0.05047789216041565, 0.05910058319568634, 0.006314362399280071, 0.009751411154866219, -0.028384562581777573, -0.01904023066163063, 0.02161223627626896, -0.007299680728465319, -0.016681019216775894, -0.07149801403284073, 0.0041031790897250175, -0.011666536331176758, -0.015589305199682713, 0.07312633097171783, 0.04777636379003525, -0.016912315040826797, 0.0022169656585901976, -0.029642809182405472, -0.019909901544451714, 0.07542078197002411, 0.06106196716427803, 0.02945777215063572, -0.04070797935128212, 0.02353661321103573, 0.0552518293261528, -0.010001209564507008, 0.026053106412291527, -0.11257605999708176, -0.05588095262646675, -0.02631215564906597, 0.025183435529470444, -0.06894451379776001, -0.05991474166512489, 0.005523332394659519, -0.022093329578638077, -0.10080775618553162, -0.01701408438384533, -0.016782788559794426, -0.0031132351141422987, -0.058027371764183044, -0.054067596793174744, -0.03484232723712921, -0.011564766056835651, 0.041670165956020355, 0.04836848005652428, 0.004040729254484177, -0.0073875728994607925, -0.03162269666790962, -0.005597346927970648, 0.028347555547952652, -0.03665568307042122, -0.05262431129813194, 0.049552712589502335, -0.028495583683252335, 0.013063560239970684, 0.00984392873942852, 0.03674820065498352, 0.053549494594335556, 0.01022325363010168, -0.023203548043966293, 0.048960596323013306, -0.050736941397190094, -0.057361241430044174, 0.02172325737774372, -0.0005282207275740802, -0.0012513076653704047, 0.03354707360267639, 0.0018839004915207624, 0.014821404591202736, 0.02686726488173008, -0.024054713547229767, 0.053549494594335556, -0.03743283450603485, 0.003633649554103613, 0.028569599613547325, -0.032455358654260635, 0.03486083075404167, 0.0033283396624028683, -0.028643613681197166, -0.0946645513176918, 0.002465608296915889, -0.008197106420993805, -0.01111142709851265, -0.03726630285382271, 0.016940070316195488, 0.0030322817619889975, 0.01020475011318922, -0.008271120488643646, 0.003948211204260588, -0.036526158452034, -0.013267099857330322, -0.01848512329161167, -0.024794859811663628, -0.009520115330815315, 0.03532342240214348, -0.016190672293305397, -0.034398242831230164, -0.030012881383299828, -0.06920356303453445, -0.02634916454553604, -0.013239344581961632, 0.01646822690963745, 0.08748514205217361, -0.03230733051896095, -0.030401457101106644, 0.005273533519357443, 0.027052301913499832, 0.030586494132876396, -0.03819148615002632, -0.0008222548640333116, -0.02033548429608345, -0.02631215564906597, -0.006207966711372137, -0.03658166900277138, 0.0775671973824501, 0.03730330988764763, 0.007031377870589495, 0.014858411625027657, -0.012008853256702423, 0.02490588091313839, 0.02814401499927044, 0.01510821096599102, -0.02170475386083126, -0.0289766788482666, -0.01703258790075779, -0.03682221472263336, -0.03830250725150108, -0.018096545711159706, 0.04352052882313728, -0.001253620721399784, 0.024609822779893875, 0.005962793715298176, 0.0170048326253891, 0.01775422878563404, 0.04196622595191002, 0.03632261976599693, -0.04988577589392662, -0.017578445374965668, -0.02233387716114521, -0.008095336146652699, -0.04514884948730469, 0.04507483169436455, -0.012471443973481655, 0.06602093577384949, 0.07801128923892975, -0.020483514294028282, 0.02176026441156864, 0.011796061880886555, -0.01837410032749176, 0.034971851855516434, 0.000641844526398927, -0.04144812375307083, 0.010981902480125427, 0.02029847726225853, 0.010047469288110733, -0.06117298826575279, 0.044297680258750916, 0.027847956866025925, -0.0033028973266482353, 0.04281739145517349, -0.02298150397837162, 0.011287212371826172, -0.00392739474773407, 0.009890188463032246, 0.023240555077791214, 0.02634916454553604, 0.014599361456930637, -0.011611025780439377, 0.0061385780572891235, -0.029032189399003983, 0.009510863572359085, 0.04377957805991173, -0.009631137363612652, 0.017180616036057472, -0.03870958462357521, -0.006411506328731775, 0.00443855719640851, -0.054733727127313614, 0.01911424659192562, 0.012249400839209557, -0.021223658695816994, -0.018660906702280045, 0.04507483169436455, -0.0002535574894864112, -0.02107563056051731, 0.01978037692606449, 0.08082383871078491, -0.008613438345491886, -0.018623899668455124, 0.017809739336371422, -0.005601972807198763, -0.04566694796085358, -0.03748834505677223, 0.02633065916597843, -0.012425185181200504, -0.02218584716320038, 0.020502017810940742, 0.007322810124605894, -0.035138387233018875, -0.012600969523191452, 0.0011842320673167706, -0.1426999717950821, 0.017513683065772057, 0.026663726195693016, -0.05428963899612427, -0.048923589289188385, -0.007285802625119686, -0.02882864885032177, -0.042225275188684464, 0.011833068914711475, 0.03463878855109215, 0.046148043125867844, -0.005935037974268198, 0.04281739145517349, 0.008377516642212868, 0.0005256186123006046, -0.031012076884508133, 0.017162112519145012, 0.0013866154477000237, -0.03134514391422272, 0.005315166432410479, 0.02949478104710579, 0.0104823037981987, 0.010565570555627346, 0.04503782466053963, 0.019243771210312843, -0.030456969514489174, 0.034324225038290024, -0.08430252224206924, -0.05514080449938774, 0.03761787340044975, -0.02692277543246746, 0.004692982416599989, -0.007489342708140612, -0.030012881383299828, 0.006499398499727249, -0.005389180965721607, -0.054178617894649506, -0.015533794648945332, 0.05980372056365013, 0.04577797278761864, 0.044963810592889786, -0.06413356959819794, 0.00391814298927784, 0.05688014626502991, -0.0027686050161719322, -0.0007060290081426501, -0.02757040224969387, 0.022000811994075775, 0.044223666191101074, 0.011083671823143959, 0.04352052882313728, 0.026552703231573105, -0.023925188928842545, -0.027736935764551163, -0.015931623056530952, 0.0013102879747748375, 0.01444208063185215, 0.030604997649788857, 0.023185044527053833, -0.01018624659627676, -0.048923589289188385, -0.011990349739789963, 0.003416232066228986, 0.0005490373005159199, 0.006018304266035557, 0.01346138771623373, -0.01570957899093628, -0.04130009189248085, 0.04026389122009277, 0.044889796525239944, -0.02300000749528408, -0.011777558363974094, 0.03870958462357521, -0.012443688698112965, 0.018660906702280045, 0.01832784153521061, 0.017217624932527542, -0.0276259146630764, 0.002021521097049117, 0.04807242006063461, 0.0047554317861795425, 0.0028842526953667402, 0.038413528352975845, -0.032473862171173096, -0.017522934824228287, -0.004383046645671129, -0.04204024001955986, 0.019983915612101555, 0.05121803656220436, -0.01082462165504694, 0.03537893295288086, -0.018198316916823387, 0.04178118705749512, 0.07027677446603775, 0.018873699009418488, -0.03278842568397522, 0.02621963806450367, -0.04007885605096817, 0.0012374300276860595, -0.012018105015158653, -0.0189384613186121, 0.019983915612101555, 0.050218842923641205, 0.0009725968702696264, 0.05910058319568634, 0.046962201595306396, 0.03933870792388916, -0.0017335584852844477, 0.003131738631054759, 0.04522286355495453, 0.04862752929329872, -0.03739582747220993, 0.014849159866571426, -0.03408367931842804, -0.03565648943185806, -0.025775551795959473, -0.03537893295288086, -0.03484232723712921, 0.028551096096634865, 0.015940874814987183, 0.04270637035369873, 0.016079651191830635, -0.0417441800236702, -0.04311344772577286, -0.02423975057899952, 0.0804537683725357, -0.012980293482542038, -0.009991957806050777, -0.019854390993714333, -0.007174781057983637, -0.011749803088605404, -0.006943485699594021, -0.03948673978447914, 0.03282543271780014, 0.02098311297595501, -0.042262282222509384, -0.00822948757559061, -0.051514096558094025, 0.028366059064865112 ]
728,977
tables.description
TimeCol
Defines a non-nested column of a particular type. The constructor accepts the same arguments as the equivalent `Atom` class, plus an additional ``pos`` argument for position information, which is assigned to the `_v_pos` attribute and an ``attrs`` argument for storing additional metadata similar to `table.attrs`, which is assigned to the `_v_col_attrs` attribute.
from tables.description import TimeCol
(*args, **kwargs)
[ 0.03158324956893921, 0.01697370782494545, 0.012952961958944798, 0.025123419240117073, 0.0049031456001102924, -0.04718341305851936, 0.005756409838795662, 0.03756026178598404, -0.03692759573459625, -0.009231898933649063, -0.008857295848429203, -0.00012460774451028556, -0.004153938498347998, 0.012553385458886623, 0.006293341517448425, 0.020128702744841576, 0.0327320359647274, 0.014492999762296677, -0.030900640413165092, -0.04055709019303322, 0.02450740523636341, -0.04125634953379631, -0.022426273673772812, -0.024024581536650658, 0.0004183074343018234, 0.062267452478408813, -0.05787210538983345, -0.032432351261377335, 0.043853603303432465, -0.07964906096458435, -0.006805299781262875, -0.013593951240181923, -0.05570772662758827, 0.02111099846661091, -0.04358721897006035, -0.011296381242573261, 0.023208778351545334, -0.043820302933454514, 0.04322093725204468, 0.02384144254028797, 0.059270624071359634, -0.0009713681065477431, -0.003358946181833744, -0.04565170034766197, -0.0002511665516067296, -0.047050219029188156, 0.04079017788171768, -0.03835941478610039, 0.02131078578531742, -0.04631766304373741, -0.004029070492833853, -0.013802063651382923, 0.029302330687642097, 0.01281976979225874, -0.06812792271375656, -0.006297504063695669, 0.0066179982386529446, 0.08617549389600754, -0.039991021156311035, 0.03569556772708893, -0.016957059502601624, 0.04398679360747337, -0.030933938920497894, 0.041489437222480774, 0.027554180473089218, -0.0016170392045751214, 0.024274317547678947, -0.01811416819691658, 0.030551010742783546, 0.018713533878326416, -0.016873814165592194, 0.009431688115000725, 0.05430920794606209, 0.05001375079154968, 0.0027616615407168865, -0.06446512788534164, -0.10408987104892731, -0.05247781053185463, 0.01649921014904976, -0.04238848760724068, -0.00228508235886693, 0.02202669531106949, -0.006597186904400587, 0.05018024146556854, 0.0545089952647686, -0.05244451388716698, 0.032349105924367905, 0.029269034042954445, -0.05687316134572029, 0.012453490868210793, -0.0368942990899086, -0.07858352363109589, -0.06110202148556709, 0.07085836678743362, -0.03885888680815697, -0.019712477922439575, -0.02558959275484085, 0.007954084314405918, -0.06566385924816132, -0.013419135473668575, 0.06086893379688263, -0.05630709230899811, 0.004695032723248005, -0.006126851309090853, 0.011621038429439068, 0.0009583610226400197, -0.025073472410440445, -0.012619981542229652, -0.005194504279643297, -0.02230972982943058, -0.03875899314880371, 0.06759515404701233, -0.02459064871072769, -0.0686606913805008, 0.07485413551330566, -0.013885308988392353, 0.05261100456118584, 0.0025681161787360907, 0.0238913893699646, 0.012794796377420425, 0.038992080837488174, -0.031050480902194977, 0.0030384520068764687, 0.018680235370993614, 0.0004810015088878572, 0.047882672399282455, -0.029385576024651527, 0.0001049670681823045, 0.027937108650803566, -0.00308423675596714, 0.01861364021897316, -0.014809331856667995, -0.008466042578220367, 0.03616173937916756, 0.04155603423714638, 0.00014307779201772064, 0.07272306084632874, 0.05304387956857681, 0.02605576626956463, 0.047549691051244736, -0.01952933706343174, 0.025772731751203537, 0.011371302418410778, -0.03902537748217583, -0.008257930167019367, -0.00791662372648716, -0.04848203808069229, 0.034130554646253586, -0.03214931860566139, 0.04628436267375946, -0.031233621761202812, -0.046550750732421875, 0.002453654073178768, -0.014734410680830479, 0.03178304061293602, -0.007791756186634302, -0.009689748287200928, -0.03549577668309212, 0.0217769593000412, -0.017814485356211662, 0.015317128039896488, -0.012878041714429855, -0.030551010742783546, -0.029768504202365875, -0.023874741047620773, 0.024990227073431015, -0.00020343060896266252, -0.030484413728117943, -0.003373514162376523, -0.028070300817489624, 0.020012160763144493, -0.02525661140680313, 0.02297569066286087, 0.026005819439888, 0.014801006764173508, -0.018596990033984184, -0.02758747898042202, 0.06103542447090149, 0.06220085918903351, -0.037660155445337296, 0.040157511830329895, 0.034796517342329025, -0.07958246767520905, 0.0922357439994812, -0.034963008016347885, 0.00413312716409564, -0.012303649447858334, -0.03789324313402176, 0.0015785382129251957, -0.0055857570841908455, 0.036994192749261856, 0.011562766507267952, -0.020744718611240387, 0.0009843751322478056, 0.010905128903687, -0.015217233449220657, 0.0044952440075576305, 0.016207851469516754, 0.008170521818101406, 0.037160683423280716, -0.0069842771627008915, 0.03792653977870941, -0.019829019904136658, 0.01799762435257435, 0.07765118032693863, -0.04162263125181198, 0.04358721897006035, -0.03161654993891716, -0.10488902777433395, -0.031766392290592194, 0.035129498690366745, -0.03859250247478485, 0.0009677261114120483, 0.01894662156701088, 0.018830077722668648, -0.028403282165527344, -0.1022251769900322, -0.02911919169127941, -0.008832322433590889, 0.0007887488463893533, 0.06553066521883011, -0.003768929047510028, -0.030933938920497894, -0.025190016254782677, 0.07019240409135818, -0.014909225516021252, -0.005985334049910307, -0.01672397181391716, -0.00016675065853632987, -0.06003648042678833, -0.03979123383760452, 0.004312104545533657, -0.06689588725566864, -0.01947939023375511, 0.013868659734725952, 0.049048107117414474, -0.010155921801924706, 0.017664644867181778, -0.0010905128438025713, -0.044686056673526764, -0.017764538526535034, -0.003662791335955262, -0.024740491062402725, -0.049381088465452194, -0.003358946181833744, -0.0586712583899498, -0.017481504008173943, -0.006838597822934389, -0.07438796013593674, -0.0008449393790215254, -0.027104657143354416, -0.029518768191337585, 0.09842919558286667, 0.009082057513296604, 0.008295389823615551, -0.0340140126645565, -0.029934994876384735, -0.003273619804531336, -0.005340183153748512, -0.0561739020049572, -0.0435539186000824, -0.0394582524895668, -0.028486527502536774, 0.026804974302649498, 0.054575592279434204, 0.008399446494877338, -0.03522939234972, 0.03476322069764137, -0.017414908856153488, -0.032765332609415054, 0.06240064650774002, 0.0015077796997502446, -0.0771850049495697, -0.032465651631355286, -0.0184471495449543, -0.03669451177120209, -0.01861364021897316, -0.023691600188612938, -0.03656131774187088, -0.005852141883224249, -0.01034738589078188, 0.00259100878611207, -0.013935256749391556, 0.023292023688554764, -0.035462480038404465, -0.01878013089299202, -0.046384260058403015, 0.013285943306982517, -0.05570772662758827, 0.029768504202365875, -0.02205999381840229, 0.022959042340517044, 0.025023525580763817, 0.02875291183590889, 0.03333140164613724, 0.08570931851863861, 0.024324264377355576, 0.022676007822155952, 0.0023641653824597597, -0.004769953433424234, 0.00729228463023901, -0.021427329629659653, 0.035462480038404465, 0.06270033121109009, -0.06619662791490555, 0.013852011412382126, -0.009964457713067532, -0.016157904639840126, 0.017348311841487885, -0.024623947218060493, 0.03566226735711098, -0.015092365443706512, -0.03902537748217583, 0.04818235710263252, -0.003154995385557413, 0.028203492984175682, -0.09376745671033859, 0.023741547018289566, -0.026155659928917885, 0.05297728255391121, -0.03203277662396431, -0.0339474156498909, 0.036494720727205276, -0.01389363408088684, 0.03852590546011925, -0.08471037447452545, 0.00396663649007678, -0.0238913893699646, 0.005835492629557848, 0.02580603025853634, -0.03193288296461105, -0.012345272116363049, 0.09090382605791092, 0.026788324117660522, 0.008257930167019367, 0.011596065014600754, -0.017964327707886696, -0.04092336818575859, -0.025689486414194107, 0.020245246589183807, 0.0721902921795845, 0.003854255424812436, -0.02164376713335514, 0.003423461224883795, 0.03995772451162338, -0.04072358086705208, -0.029402226209640503, -0.01236192137002945, 0.07345561683177948, 0.0035067065618932247, 0.041655927896499634, -0.029635312035679817, -0.02164376713335514, 0.07445456087589264, 0.011920721270143986, 0.015658432617783546, 0.01611628197133541, -0.04978066682815552, -0.03386417031288147, 0.021993396803736687, 0.04565170034766197, 0.005810519214719534, 0.04059038683772087, -0.03922516480088234, -0.021244190633296967, 0.01599973812699318, -0.01853039488196373, 0.03214931860566139, 0.02027854509651661, 0.051911745220422745, -0.02567283809185028, -0.006776164285838604, 0.0678948312997818, 0.03616173937916756, -0.023824792355298996, -0.03449683636426926, 0.0009037313284352422, 0.04615117236971855, -0.08823997527360916, -0.04142284020781517, 0.0272544976323843, -0.002395382383838296, -0.040490493178367615, 0.02210994064807892, -0.010405657812952995, -0.008012356236577034, 0.0008693926502019167, 0.0026097388472408056, -0.05301057919859886, -0.025323208421468735, 0.0012424355372786522, -0.041855715215206146, -0.015966441482305527, 0.007192390505224466, -0.030551010742783546, 0.012520086951553822, -0.011621038429439068, 0.0059104133397340775, 0.020711420103907585, -0.012020615860819817, 0.012353596277534962, -0.05227802321314812, 0.018480448052287102, 0.027637425810098648, -0.03652802109718323, 0.0035587348975241184, 0.022992340847849846, -0.0022226483561098576, -0.02900264784693718, -0.025106770917773247, -0.005860466044396162, -0.00922357477247715, -0.014842629432678223, -0.005644028540700674, 0.012411868199706078, -0.011179838329553604, -0.0023225427139550447, -0.05410941690206528, 0.025373155251145363, 0.022859148681163788, 0.0024682218208909035, -0.04455286264419556, 0.025656189769506454, 0.050080347806215286, 0.012053913436830044, -0.011454547755420208, -0.018979918211698532, 0.06566385924816132, 0.009506608359515667, 0.009107030928134918, -0.017548101022839546, 0.003702332964166999, -0.02044503577053547, -0.04358721897006035, 0.07059197872877121, -0.01977907307446003, 0.044719353318214417, -0.06689588725566864, 0.030817395076155663, -0.016016388311982155, 0.06166808679699898, 0.03636153042316437, 0.05214482918381691, -0.03609514608979225, 0.03552907705307007, -0.03955814614892006, -0.053743138909339905, 0.05231131985783577, 0.01666570082306862, 0.01221207994967699, -0.021660417318344116, 0.05823838338255882, 0.07931607961654663, -0.0511125884950161, 0.024207720533013344, -0.055774323642253876, -0.01708192750811577, -0.031017184257507324, 0.0022663522977381945, 0.018580341711640358, -0.04675053805112839, 0.03582875803112984, -0.008640858344733715, -0.07298944145441055, 0.028203492984175682, -0.02638874761760235, -0.056739967316389084, -0.053410157561302185, -0.008940541185438633, 0.008649182505905628, -0.0037210630252957344, 0.025872627273201942, -0.005673164501786232, -0.032798632979393005, 0.0066055115312337875, -0.0027200388722121716, -0.0069967638701200485, 0.04814905673265457, -0.020295193418860435, 0.0007871880079619586, 0.0443863719701767, -0.05064641684293747, 0.005086285527795553, -0.014859278686344624, 0.0393916554749012, 0.07065857946872711, -0.012253702618181705, -0.03344794362783432, -0.04212209954857826, -0.1056215837597847, -0.03559567406773567, 0.032432351261377335, -0.0021560522727668285, 0.001363141112960875, 0.038126327097415924, -0.0150840412825346, 0.06459832191467285, -0.008074790239334106, -0.022293079644441605, 0.03193288296461105, 0.014101746492087841, 0.007142443209886551, -0.0205282811075449, -0.0036794403567910194, 0.032432351261377335, 0.006372424773871899, 0.04891491308808327, -0.024607298895716667, -0.013385837897658348, -0.050579819828271866, 0.01589152030646801, 0.0044702705927193165, -0.034996308386325836, 0.03083404339849949, -0.0027991218958050013, -0.04901481047272682, -0.029352277517318726, -0.009631476365029812, 0.036461424082517624, 0.03619503974914551, -0.02297569066286087, 0.010813559405505657, 0.0004901064676232636, -0.03719398006796837, -0.016707323491573334, 0.04398679360747337, -0.032682087272405624, 0.031549952924251556, 0.0012091373791918159, 0.03409725800156593, 0.06523098796606064, 0.007741808891296387, 0.03303172066807747, 0.01952933706343174, -0.008923891931772232, 0.07092496007680893, -0.05237791687250137, -0.014234939590096474, 0.012012290768325329, -0.0411231592297554, 0.024990227073431015, -0.013827037997543812, 0.05467548593878746, 0.013352539390325546, 0.012012290768325329, 0.0528440922498703, -0.05903753638267517, 0.02169371396303177, 0.0035587348975241184, 0.023858090862631798, -0.04295455291867256, 0.032432351261377335, 0.030401168391108513, -0.06326639652252197, -0.035795461386442184, 0.032682087272405624, 0.011446223594248295, -0.0023787333630025387, 0.07525371760129929, -0.013935256749391556, 0.02322542667388916, -0.022859148681163788, 0.05890434607863426, 0.10089325159788132, -0.027454286813735962, 0.018830077722668648, -0.0023225427139550447, 0.050579819828271866, -0.057106249034404755, 0.021677065640687943, -0.004210128914564848, 0.012403544038534164, 0.06066914647817612, -0.02111099846661091, 0.014284886419773102, -0.022842498496174812, -0.016840515658259392, 0.039824530482292175, -0.00020395088358782232, -0.051412273198366165, -0.028686316683888435, 0.02044503577053547, 0.029651962220668793, -0.020494982600212097, 0.0047533041797578335, -0.002905259607359767, -0.014234939590096474, 0.019745774567127228, 0.0545089952647686, -0.0005535809905268252, 0.0012164213694632053, -0.0013683439465239644, -0.009007137268781662, 0.036627914756536484, 0.03158324956893921, 0.016132932156324387, -0.0339474156498909, 0.006280854810029268, -0.022576114162802696, 0.017065277323126793, -0.026871569454669952, 0.02563953958451748, 0.005877115298062563, -0.00895718950778246, 0.021593820303678513, -0.029135840013623238, 0.048881616443395615, -0.002491114428266883, -0.018397202715277672, 0.007308933883905411, -0.02367495186626911, 0.012794796377420425, -0.0069551412016153336, 0.032848577946424484, 0.022509519010782242, -0.07105815410614014, -0.0012351515470072627, -0.022176537662744522, 0.014409754425287247, -0.06003648042678833, -0.10515540838241577, 0.09916175156831741, 0.03739377111196518, 0.006414047442376614, -0.007762620225548744, 0.029901696369051933, -0.04565170034766197, -0.02866966649889946, 0.02787051349878311, -0.13132771849632263, 0.008915566839277744, -0.016440939158201218, -0.01433483324944973, -0.045884788036346436, -0.018380552530288696, -0.006131013389676809, -0.023042287677526474, -0.03872569277882576, 0.019928915426135063, 0.061934471130371094, 0.008574261330068111, 0.03294847533106804, 0.003017640672624111, 0.01808086968958378, -0.029402226209640503, 0.0335644893348217, -0.05234462022781372, -0.05737263336777687, -0.01115486491471529, -0.007508722599595785, -0.02489033341407776, -0.0001887326070573181, 0.045884788036346436, 0.028936052694916725, -0.022442921996116638, -0.02202669531106949, -0.05574102699756622, -0.0856427252292633, 0.033597785979509354, -0.010122623294591904, 0.01889667473733425, -0.05380973592400551, 0.0029385576490312815, -0.019712477922439575, 0.04851533845067024, -0.0477827787399292, 0.02580603025853634, 0.03341464698314667, -0.019845670089125633, 0.08158035576343536, -0.00011745385563699529, -0.027287796139717102, 0.04192231222987175, -0.02983510121703148, 0.015417021699249744, 0.0108884796500206, 0.005943711381405592, 0.013269294053316116, 0.06979282200336456, -0.01098837424069643, 0.03835941478610039, -0.014168343506753445, -0.011204811744391918, -0.028553124517202377, -0.027104657143354416, 0.07172411680221558, -0.029135840013623238, 0.00790413748472929, 0.022792551666498184, -0.08251269906759262, -0.020261896774172783, -0.007487911265343428, -0.06066914647817612, 0.06529758125543594, 0.026688430458307266, -0.01864693872630596, 0.007908299565315247, 0.013910282403230667, 0.029069244861602783, 0.05737263336777687, 0.02625555545091629, 0.028985999524593353, 0.013211023062467575, 0.05820508673787117, 0.038492608815431595, 0.03992442786693573, 0.018313957378268242, -0.022176537662744522, -0.0056814891286194324, -0.02144397795200348, 0.02778726816177368, 0.04458615928888321, -0.002493195468559861, -0.00785002764314413, 0.048881616443395615, -0.05547463893890381, -0.01275317370891571, 0.057272739708423615, -0.01211218535900116, 0.023042287677526474, 0.044686056673526764, 0.014076773077249527, 0.021260838955640793, 0.018347255885601044, -0.024157773703336716, 0.068028025329113, -0.07478754222393036, 0.020827963948249817, 0.0010488902917131782, 0.0150840412825346, -0.010905128903687, 0.001581659889779985, 0.006343288812786341, 0.04325423762202263, 0.002626387868076563, 0.034130554646253586, -0.009082057513296604, 0.038292817771434784, 0.039491549134254456, -0.022576114162802696, -0.07625265419483185, 0.009448337368667126, 0.04212209954857826, 0.020012160763144493, -0.04089007154107094, 0.023908037692308426, -0.03762685880064964, 0.01458456926047802, -0.01387698482722044, 0.09316809475421906, 0.031882934272289276, -0.02127748914062977, -0.042688168585300446, -0.02480708807706833, 0.031350165605545044, -0.01911311224102974, -0.003787659341469407, 0.0017595966346561909, -0.07145772874355316, -0.02533985674381256, 0.04425317794084549, 0.011537793092429638, 0.03576216474175453, 0.02314218133687973, 0.058138489723205566, -0.005581594537943602, -0.0006441102013923228, 0.03181633725762367 ]
728,985
tables.atom
UInt16Atom
Defines an atom of type ``uint16``.
from tables.atom import UInt16Atom
(shape=(), dflt=0)
[ 0.012896355241537094, 0.02422538585960865, 0.008258267305791378, -0.017061691731214523, 0.04558870196342468, 0.003530739340931177, -0.020732978358864784, 0.0014161288272589445, -0.07468642294406891, 0.0036223086062818766, 0.03175535798072815, 0.03402116522192955, 0.01862049661576748, 0.02974509447813034, -0.028297023847699165, 0.026934131979942322, 0.013143379241228104, 0.07475456595420837, -0.004638088401407003, 0.07611745595932007, -0.037649862468242645, 0.016124702990055084, -0.01011094730347395, 0.04463467746973038, -0.007691815961152315, -0.0037649862933903933, -0.03550330922007561, -0.035196658223867416, 0.0038565555587410927, -0.09744670242071152, -0.04916629195213318, -0.0347026102244854, 0.021652929484844208, 0.043612509965896606, 0.01023871824145317, -0.05383419245481491, 0.03393598273396492, 0.06398773193359375, -0.06276112794876099, 0.03972827270627022, 0.054481565952301025, -0.06732681393623352, 0.02395280823111534, -0.019029363989830017, 0.00841585174202919, -0.040818583220243454, 0.03672990947961807, -0.034447070211172104, -0.04640643671154976, -0.018416063860058784, 0.010145019739866257, -0.029711022973060608, 0.018467172980308533, 0.016133220866322517, -0.03672990947961807, 0.04095487296581268, -0.006414105650037527, 0.058672454208135605, -0.07271023094654083, 0.07271023094654083, -0.04947294294834137, 0.05986498296260834, 0.012317126616835594, -0.04262441396713257, 0.033561188727617264, -0.010570922866463661, 0.00012797066301573068, -0.007176472805440426, -0.010647585615515709, 0.0507676862180233, -0.037070631980895996, 0.04296513646841049, 0.004212184809148312, 0.02414020523428917, 0.029063649475574493, -0.04436210170388222, 0.00016117782797664404, 0.005017142277210951, -0.00015478927525691688, -0.010545368306338787, 0.04449838772416115, 0.01110756117850542, 0.06507804244756699, 0.0415000282227993, -0.009846886619925499, 0.03887646272778511, 0.044907256960868835, 0.021567748859524727, -0.06579355895519257, -0.022777315229177475, -0.011116079054772854, -0.04480503872036934, -0.04245405271649361, 0.05516301095485687, -0.005834877025336027, 0.00027217890601605177, 0.03717285022139549, -0.034174490720033646, -0.06412401795387268, -0.06388550996780396, -0.030443577095866203, -0.009029152803122997, -0.007828105241060257, -0.04862113296985626, -0.016329137608408928, 0.02645711973309517, -0.012973017990589142, 0.024702398106455803, -0.028109624981880188, -0.002710875356569886, -0.038672029972076416, 0.037649862468242645, 0.00609041890129447, -0.05219872295856476, 0.010783874429762363, -0.026116397231817245, 0.020647797733545303, 0.03526480495929718, 0.036763984709978104, 0.04616793245077133, 0.05178985744714737, 0.004625311121344566, -0.0008017632062546909, -0.024157242849469185, 0.028126662597060204, 0.061125658452510834, 0.03443003073334694, 0.04408952221274376, -0.025179410353302956, 0.03410634398460388, -0.02177218347787857, 0.01580953411757946, 0.014446644112467766, 0.03744542971253395, 0.017513148486614227, -0.03897868096828461, 0.0035328688099980354, -0.037649862468242645, -0.020273001864552498, 0.011661235243082047, -0.003181498497724533, 0.05458378046751022, 0.051278769969940186, -0.04821226745843887, -0.03180646896362305, 0.021312206983566284, -0.02596307173371315, 0.016465425491333008, -0.002985582919791341, -0.0049873292446136475, -0.015485848300158978, -0.003111224388703704, -0.008628803305327892, 0.08061499893665314, -0.02337357960641384, 0.022112905979156494, 0.054890431463718414, -0.09615195542573929, 0.030290251597762108, -0.03398709371685982, -0.018978256732225418, -0.02756446972489357, -0.011678271926939487, -0.035912174731492996, -0.03347600996494293, 0.01081794686615467, -0.03959198296070099, -0.020051533356308937, 0.01284524705260992, 0.012317126616835594, -0.018092377111315727, -0.02921697497367859, -0.025196446105837822, 0.04667901620268822, 0.04494132846593857, -0.042147401720285416, -0.04351029172539711, -0.0009934196714311838, 0.06006941944360733, -0.029813239350914955, 0.016107667237520218, 0.006073382683098316, -0.04368065297603607, -0.022300302982330322, 0.018024232238531113, 0.03206200897693634, 0.049949951469898224, 0.006742051336914301, 0.0357077419757843, -0.07666261494159698, 0.07618560642004013, -0.004060989245772362, -0.021874399855732918, 0.03172128647565842, 0.03219829872250557, -0.04494132846593857, 0.0404437892138958, -0.009761705994606018, -0.03741135820746422, -0.04422581195831299, 0.024685362353920937, -0.0019644794519990683, 0.008709724992513657, 0.0714154839515686, 0.04017120972275734, -0.05213057994842529, 0.058536164462566376, 0.007317020557820797, -0.01909750886261463, -0.03986455872654915, 0.05052918195724487, -0.034583356231451035, 0.042419981211423874, 0.06633871793746948, -0.011942331679165363, -0.050699543207883835, -0.08374965190887451, -0.011371620930731297, 0.0035371279809623957, 0.007687556557357311, 0.07182434946298599, -0.011754934675991535, 0.019710810855031013, -0.0071807317435741425, 0.011175706051290035, -0.011533464305102825, -0.04218147322535515, 0.033016033470630646, 0.007657743524760008, 0.0058519127778708935, 0.01843309961259365, 0.017870906740427017, -0.06122787669301033, 0.010051320306956768, 0.017155390232801437, 0.04180667921900749, 0.01189122349023819, 0.013782234862446785, 0.012674885801970959, 0.021312206983566284, -0.034174490720033646, 0.017870906740427017, 0.05785471946001053, 0.03281160071492195, 0.01458293292671442, -0.024838687852025032, 0.02943844348192215, 0.020290039479732513, -0.05151727795600891, -0.022777315229177475, -0.04095487296581268, -0.07802550494670868, 0.021363316103816032, 0.002551161451265216, 0.07298281043767929, -0.03986455872654915, -0.044600605964660645, -0.0006803807336837053, -0.014898101799190044, -0.003258161246776581, -0.0668838694691658, -0.0024489446077495813, 0.04885964095592499, 0.014736258424818516, 0.04368065297603607, -0.008633062243461609, -0.02141442336142063, 0.08041056245565414, -0.03219829872250557, -0.024872759357094765, 0.09213142842054367, 0.0017653696704655886, -0.058536164462566376, 0.010622031055390835, -0.04211333021521568, -0.019830062985420227, 0.06289741396903992, 0.004608274903148413, -0.000550480152014643, -0.0013682147255167365, -0.021669965237379074, -0.033288612961769104, -0.013194488361477852, 0.008539363741874695, -0.015059945173561573, 0.04180667921900749, 0.038229089230298996, 0.007972911931574345, -0.010715730488300323, -0.03700248897075653, 0.015042908489704132, 0.03371451422572136, -0.005924316588789225, 0.010741284117102623, 0.04017120972275734, 0.03645733371376991, 0.0028833660762757063, 0.07400497794151306, 0.02935326285660267, 0.009420983493328094, -0.03955790773034096, -0.0368661992251873, -0.009259140118956566, 0.03429374471306801, -0.028382204473018646, -0.005042696371674538, 0.05465192720293999, 0.03352711722254753, 0.0208011232316494, 0.00965948961675167, 0.024020953103899956, 0.010869055055081844, -0.005958389025181532, 0.029676949605345726, -0.01375668030232191, 0.02284546010196209, -0.03492407873272896, 0.02707042172551155, 0.02965991385281086, 0.07202878594398499, -0.017359822988510132, -0.010357971303164959, 0.0772077739238739, -0.025724565610289574, -0.016405800357460976, -0.06197746470570564, -0.030699118971824646, -0.07768478244543076, 0.015170679427683353, -0.0010232329368591309, -0.05311867594718933, 0.0044549498707056046, 0.038092803210020065, 0.0368661992251873, -0.023816518485546112, -0.0032155707012861967, -0.0005520773120224476, -0.004403841216117144, -0.05148320645093918, 0.012027512304484844, 0.041534099727869034, 0.027240782976150513, 0.011030898429453373, -0.012027512304484844, 0.040988944470882416, -0.019932279363274574, -0.05168763920664787, 0.003645733231678605, 0.016814667731523514, 0.021669965237379074, 0.030613938346505165, 0.0023339507170021534, 0.004067377652972937, 0.05962647870182991, 0.053902335464954376, -0.004727527964860201, 0.014949209988117218, -0.0461338572204113, 0.0005196021520532668, 0.04797375947237015, -0.043885089457035065, -0.019080473110079765, 0.03683212772011757, -0.052300941199064255, -0.0484507717192173, -0.0760493129491806, -0.03376562148332596, 0.035878103226423264, 0.02560531347990036, 0.022504737600684166, -0.03085244446992874, -0.0012745159910991788, -0.01945526897907257, 0.011337549425661564, 0.008875827305018902, 0.030477648600935936, -0.07679890096187592, 0.01572435349225998, -0.0966971144080162, -0.08708873391151428, 0.02190847136080265, 0.009702079929411411, -0.03495815396308899, 0.04541834071278572, 0.014012222178280354, -0.010145019739866257, -0.0173257514834404, 0.014259246177971363, -0.08961007744073868, 0.08327263593673706, -0.009139887057244778, 0.0438169427216053, -0.007176472805440426, -0.043748799711465836, -0.0035030555445700884, 0.07107476145029068, 0.00047115565394051373, 0.013594836927950382, 0.009557272307574749, -0.005302497651427984, 0.019557485356926918, -0.02301582135260105, -0.03112502209842205, 0.053595684468746185, -0.020681869238615036, 0.004060989245772362, 0.01549436617642641, -0.02916586585342884, -0.029898419976234436, -0.056491829454898834, -0.0415000282227993, 0.02908068522810936, 0.014608487486839294, 0.00809642393141985, -0.04102301597595215, -0.011294959113001823, 0.02356097660958767, -0.07645817846059799, 0.028756998479366302, 0.006822972558438778, 0.030085816979408264, -0.03189164772629738, -0.02279435098171234, 0.06575948745012283, 0.018944183364510536, -0.038229089230298996, 0.02488979510962963, 0.045759063214063644, -0.04609978571534157, 0.02979620359838009, 0.02293064072728157, -0.0018249962013214827, 0.03262420371174812, -0.08354521542787552, 0.014361463487148285, -0.023356543853878975, -0.019983388483524323, -0.0636129379272461, 0.029625842347741127, 0.04102301597595215, 0.044021379202604294, 0.043612509965896606, 0.037479501217603683, -0.03642326220870018, 0.028654782101511955, -0.016175812110304832, -0.04017120972275734, 0.03897868096828461, 0.0040546003729105, -0.041125234216451645, -0.045043546706438065, -0.01226601842790842, 0.007691815961152315, -0.04058007895946503, 0.05305052921175957, -0.07618560642004013, -0.06552097946405411, -0.02524755522608757, -0.025843819603323936, -0.03184054046869278, -0.012487487867474556, -0.022964712232351303, -0.03710470721125603, -0.012104175053536892, -0.0051278769969940186, 0.005792286712676287, 0.05465192720293999, -0.05662811920046806, -0.020068569108843803, -0.027360035106539726, -0.02110777422785759, -0.004403841216117144, 0.03826316446065903, -0.0254349522292614, 0.016218401491642, 0.005328051745891571, -0.023748375475406647, 0.001276645460166037, -0.07959283143281937, -0.062318187206983566, -0.003624438075348735, -0.012376753613352776, 0.00464234733954072, 0.0032539020758122206, -0.03931940346956253, 0.0413978137075901, 0.01771758310496807, -0.0104005616158247, 0.0024681102950125933, -0.07427755743265152, 0.005293979309499264, 0.007031665649265051, -0.04218147322535515, -0.028160734102129936, 0.1028982624411583, 0.028927359730005264, 0.004983069840818644, 0.02565642260015011, -0.048961855471134186, 0.019693773239850998, -0.005898762494325638, -0.04817819595336914, -0.07400497794151306, -0.08368150144815445, -0.0049106664955616, 0.029625842347741127, 0.023833556100726128, -0.04167038947343826, -0.004286718089133501, -0.03322046622633934, -0.010306863114237785, -0.035741813480854034, -0.048791494220495224, 0.01333929505199194, 0.08231861144304276, 0.03357822448015213, -0.019932279363274574, -0.06248854845762253, -0.013228559866547585, 0.010673139244318008, -0.053902335464954376, -0.013305222615599632, 0.01449775230139494, -0.027274854481220245, -0.022232158109545708, -0.01856938935816288, -0.07529972493648529, -0.008424369618296623, 0.0021039629355072975, -0.004224962089210749, -0.02356097660958767, -0.031022805720567703, -0.04930257797241211, -0.023543940857052803, 0.010255753993988037, 0.009702079929411411, 0.0333397202193737, 0.010707211680710316, 0.02587789110839367, 0.008841754868626595, -0.036763984709978104, -0.06167081370949745, 0.015766944736242294, -0.043305858969688416, 0.036184754222631454, 0.02783704735338688, -0.060137562453746796, -0.03063097409904003, 0.04320364445447922, 0.011780488304793835, -0.1015353724360466, 0.018824931234121323, 0.015417703427374363, 0.008258267305791378, 0.0052258349023759365, 0.02538384310901165, 0.010315380990505219, -0.027632614597678185, 0.014037776738405228, 0.015059945173561573, -0.009071743115782738, -0.016542088240385056, -0.0021209989208728075, 0.010604995302855968, -0.0518239289522171, 0.016652824357151985, -0.043578438460826874, -0.04453246295452118, -0.010613513179123402, 0.03184054046869278, -0.02845034748315811, 0.03206200897693634, 0.03914904221892357, -0.022368447855114937, 0.008667134679853916, -0.030801335349678993, -0.005063991528004408, -0.03015396185219288, 0.08518068492412567, -0.04746267572045326, -0.05512893944978714, 0.04494132846593857, 0.007393683306872845, 0.0032155707012861967, 0.10126280039548874, 0.05035882070660591, -0.007121105212718248, 0.04221554845571518, 0.054924506694078445, -0.03860388696193695, -0.004369769245386124, -0.06715644896030426, 0.004523094277828932, 0.0007554462063126266, -0.016201365739107132, 0.002312655560672283, -0.053186818957328796, -0.01184863317757845, 0.027445215731859207, 0.021669965237379074, 0.04310142621397972, 0.02163589373230934, -0.022862495854496956, -0.02190847136080265, 0.04425988346338272, -0.008087906055152416, 0.04449838772416115, -0.013024126179516315, -0.013841860927641392, -0.006086159963160753, 0.009293212555348873, -0.01597137749195099, -0.00729146646335721, -0.03197683021426201, -0.009438020177185535, -0.015605101361870766, 0.009702079929411411, -0.018637534230947495, -0.02524755522608757, 0.04061415046453476, -0.042147401720285416, 0.07018887996673584, -0.028109624981880188, -0.036184754222631454, 0.009565791115164757, 0.03615068271756172, -0.020852230489253998, 0.05703698471188545, 0.010613513179123402, -0.029898419976234436, 0.005311015527695417, 0.0033816732466220856, 0.016985028982162476, -0.0014480716781690717, -0.045316122472286224, -0.017010582610964775, -0.032215334475040436, -0.02231733873486519, 0.04773525521159172, 0.10010433942079544, 0.029063649475574493, 0.028399240225553513, 0.00877360999584198, 0.008219935931265354, 0.04398730397224426, 0.041704460978507996, -0.0024233905132859945, -0.04204518720507622, -0.04088672995567322, 0.02756446972489357, -0.006848527118563652, 0.021039629355072975, 0.012862282805144787, -0.001305393991060555, 0.03161906823515892, -0.006473732180893421, -0.059694621711969376, -0.023407651111483574, -0.008739538490772247, 0.02502608485519886, -0.04347622022032738, -0.0003159671032335609, -0.01937008835375309, -0.018688641488552094, 0.010502777993679047, -0.0015321875689551234, 0.02930215559899807, 0.011346067301928997, -0.0021018334664404392, -0.005685810465365648, 0.018381992354989052, 0.03161906823515892, 0.0007229710463434458, -0.05734363570809364, 0.01986413635313511, 0.03710470721125603, 0.0155880656093359, 0.05148320645093918, 0.03536701947450638, -0.0038608144968748093, 0.013748162426054478, 0.021874399855732918, 0.021840326488018036, -0.036321043968200684, -0.019881172105669975, 0.004919184371829033, -0.06105751544237137, 0.02853552997112274, 0.003019655356183648, -0.05768435820937157, -0.03451521322131157, -0.009318767115473747, -0.036491405218839645, 0.018245702609419823, -0.0402393564581871, 0.02243659272789955, 0.015085498802363873, -0.0036861940752714872, 0.009165441617369652, 0.003424263559281826, 0.032351624220609665, -0.060716792941093445, -0.005762473214417696, 0.003624438075348735, 0.0019953574519604445, 0.05615110695362091, 0.005259907338768244, -0.0173513051122427, -0.028978468850255013, 0.04136373847723007, 0.026440083980560303, 0.0633062869310379, -0.06388550996780396, -0.02190847136080265, -0.013765198178589344, 0.052743878215551376, -0.06715644896030426, 0.09962733089923859, -0.02190847136080265, 0.012530078180134296, -0.012572668492794037, 0.009812815114855766, 0.06695201992988586, 0.07080218195915222, -0.019404159858822823, 0.012325644493103027, -0.01718946173787117, 0.061432309448719025, -0.047633036971092224, 0.016533570364117622, 0.041977040469646454, -0.030290251597762108, -0.05240315571427345, 0.0485529899597168, -0.03357822448015213, 0.044770967215299606, 0.0035435163881629705, 0.013407439924776554, 0.047224171459674835, 0.008356224745512009, -0.026371939107775688, 0.003094188403338194, -0.032266441732645035, 0.008739538490772247, -0.015400667674839497, 0.04436210170388222, 0.013773716986179352, -0.006371515337377787, -0.00577950943261385, 0.0413978137075901, 0.0496092289686203, 0.02538384310901165, -0.03727506846189499, 0.008807682432234287, 0.08013799041509628, -0.026559337973594666, 0.040682293474674225, 0.007666261401027441, -0.03523072972893715, -0.03727506846189499, -0.017019100487232208, 0.0011222554603591561, -0.03361229971051216, 0.014037776738405228, -0.045213907957077026, 0.013168933801352978, 0.016925401985645294, 0.0006133009446784854 ]
728,993
tables.description
UInt16Col
Defines a non-nested column of a particular type. The constructor accepts the same arguments as the equivalent `Atom` class, plus an additional ``pos`` argument for position information, which is assigned to the `_v_pos` attribute and an ``attrs`` argument for storing additional metadata similar to `table.attrs`, which is assigned to the `_v_col_attrs` attribute.
from tables.description import UInt16Col
(*args, **kwargs)
[ -0.0009515018318779767, -0.008620426058769226, 0.015198499895632267, -0.0025976160541176796, 0.03376688063144684, 0.008067289367318153, 0.010671287775039673, 0.003635811386629939, -0.06998458504676819, -0.01218603178858757, 0.009139523841440678, 0.046497538685798645, 0.01590481400489807, 0.01807481236755848, -0.0029380079358816147, 0.04071087762713432, 0.017870577052235603, 0.018602419644594193, 0.0370686836540699, 0.04813142120838165, -0.02923966757953167, 0.010296856053173542, 0.020934104919433594, 0.026550572365522385, -0.013224227353930473, 0.020883046090602875, -0.0375111922621727, -0.016594108194112778, 0.03117990307509899, -0.09068041294813156, -0.06664874404668808, -0.028865236788988113, -0.006233427673578262, 0.05735604465007782, -0.007543936371803284, -0.03880468010902405, 0.0472804419696331, -0.015479323454201221, -0.013224227353930473, 0.019981008023023605, 0.03245637193322182, -0.044455189257860184, 0.00830556359142065, -0.046225227415561676, -0.019912928342819214, -0.02583574876189232, 0.023044534027576447, -0.045135971158742905, -0.05293094739317894, -0.019538497552275658, 0.00793113186955452, -0.0021157485898584127, 0.00294651766307652, 0.010364934802055359, -0.017938654869794846, -0.013862461782991886, -0.011794581077992916, 0.04738255962729454, -0.06447023153305054, 0.07801783084869385, -0.06715933233499527, 0.03812389820814133, -0.008935288526117802, -0.020661791786551476, 0.046497538685798645, -0.009394817985594273, 0.001123293419368565, -0.008765093050897121, 0.01773441955447197, 0.035502880811691284, -0.032439351081848145, 0.043842483311891556, 0.024184847250580788, 0.05289690941572189, 0.019453398883342743, -0.04799526557326317, -0.029494961723685265, -0.013896501623094082, 0.009752228856086731, -0.011973286978900433, 0.05565408244729042, 0.016934499144554138, 0.07903900742530823, 0.032098960131406784, 0.02862696349620819, 0.02244884893298149, 0.059194158762693405, 0.046667736023664474, -0.04319573938846588, 0.007463093381375074, 0.009820307604968548, -0.05572216212749481, -0.0443190298974514, 0.07393313199281693, -0.011539286933839321, -0.031588371843099594, 0.02719731628894806, 0.004714428447186947, -0.03819197788834572, -0.04843777418136597, -0.025631513446569443, -0.005659016314893961, 0.028763119131326675, -0.026907984167337418, -0.017019597813487053, -0.011249953880906105, -0.014049677178263664, 0.04074491560459137, -0.021274495869874954, -0.028592923656105995, 0.001599842100404203, 0.01107975747436285, 0.030465079471468925, -0.07876669615507126, 0.023929553106427193, -0.0319628044962883, 0.017751440405845642, -0.008531073108315468, 0.025018807500600815, 0.030141707509756088, 0.044625382870435715, -0.029818333685398102, -0.007297152187675238, -0.019470419734716415, 0.0041421446949243546, 0.04850585386157036, 0.0029784294310957193, 0.054496750235557556, -0.011752031743526459, 0.019368302077054977, -0.0018157783197239041, 0.004773997236043215, 0.014296461828052998, 0.06334694474935532, 0.04380844160914421, -0.053237300366163254, 0.04391055926680565, -0.011547796428203583, 0.0027869590558111668, 0.018619438633322716, -0.02035543881356716, 0.029273707419633865, 0.04540828615427017, -0.033358410000801086, 0.010756385512650013, 0.02566555328667164, -0.0017211068188771605, 0.014636853709816933, -0.019504457712173462, -0.011717992834746838, -0.02872907929122448, -0.006067486479878426, -0.01858540065586567, 0.02447418123483658, -0.003391154808923602, 0.00782050471752882, 0.0268569253385067, -0.10177718847990036, 0.02913754992187023, -0.039927974343299866, 0.004497428424656391, -0.027741944417357445, -0.030805470421910286, -0.031367119401693344, -0.0443190298974514, 0.014585794880986214, -0.03281378373503685, -0.03223511576652527, 0.015845244750380516, 0.005556898657232523, -0.0005839849472977221, -0.02624421939253807, -0.008722543716430664, 0.07359273731708527, 0.028865236788988113, -0.01773441955447197, -0.02986939251422882, 0.007514152210205793, 0.03968970105051994, -0.0600791797041893, 0.028133394196629524, 0.03150327503681183, -0.031316060572862625, 0.02590382657945156, 0.021104300394654274, 0.008054524660110474, 0.04918663576245308, -0.0005331920692697167, 0.02447418123483658, -0.08155790716409683, 0.050684358924627304, -0.010960620827972889, -0.008943798020482063, 0.004365526605397463, 0.04064279794692993, -0.04237879812717438, 0.05286286771297455, 0.00030608681845478714, -0.03679636865854263, -0.03689848631620407, 0.03931526839733124, -0.016185637563467026, 0.01541124563664198, 0.0635511726140976, 0.02913754992187023, -0.0417320542037487, 0.06137266755104065, 0.00457401666790247, -0.04132358357310295, -0.0477229505777359, 0.05990898236632347, -0.04588483273983002, 0.013905011117458344, 0.06280231475830078, 0.021274495869874954, -0.03638789802789688, -0.1226772591471672, -0.021223437041044235, -0.022602025419473648, 0.012024345807731152, 0.08080904930830002, -0.005352663341909647, -0.0153346573933959, -0.041902247816324234, 0.03271166607737541, -0.016117557883262634, -0.01824500784277916, 0.002595488680526614, 0.02040649764239788, 0.001433901023119688, -0.00954799447208643, 0.012203050777316093, -0.06978034973144531, 0.03785158321261406, 0.0116158751770854, 0.06253000348806381, -0.0024635866284370422, 0.013564619235694408, 0.048880282789468765, -0.00590580003336072, -0.03475401923060417, 0.006990799680352211, 0.047518715262413025, 0.034549783915281296, -0.0038804681971669197, -0.03276272490620613, 0.005459035746753216, 0.027299433946609497, -0.05078647658228874, -0.004193203058093786, -0.03169048950076103, -0.09108888357877731, 0.030737392604351044, -0.011964776553213596, 0.06736356765031815, -0.029324766248464584, -0.06845282018184662, -0.00030582089675590396, -0.017955675721168518, -0.024865631014108658, -0.07372889667749405, -0.016721753403544426, 0.02374233864247799, 0.011428659781813622, 0.0575602762401104, -0.019878890365362167, -0.007986445911228657, 0.06801030784845352, -0.0327797457575798, -0.017479127272963524, 0.10123256593942642, 0.014339011162519455, -0.07454583793878555, 0.004399565979838371, -0.028814177960157394, -0.04459134489297867, 0.048199500888586044, -0.013266775757074356, 0.030533157289028168, -0.0026337825693190098, 0.012134972959756851, -0.02277222089469433, -0.02050861530005932, 0.032728686928749084, 0.012492384761571884, 0.044455189257860184, -0.008867209777235985, -0.003374135121703148, -0.029273707419633865, -0.014883637428283691, -0.009539484046399593, 0.04071087762713432, -0.011735012754797935, 0.02663566917181015, 0.018687518313527107, 0.05984090268611908, 0.015479323454201221, 0.09401625394821167, 0.027741944417357445, 0.003172027412801981, -0.0861191600561142, -0.01807481236755848, 0.00923313107341528, 0.05657314136624336, -0.06338097900152206, -0.010296856053173542, 0.023316849023103714, -0.0193853210657835, 0.003440086031332612, -0.013190187513828278, 0.014347520656883717, 0.021240457892417908, 0.002352959243580699, 0.04945895075798035, -0.01751316525042057, 0.011241444386541843, -0.05133110657334328, 0.04976530373096466, 0.0191640667617321, 0.0664445087313652, -0.014585794880986214, -0.023367907851934433, 0.06093015894293785, -0.019453398883342743, 0.03696656599640846, -0.03938334807753563, -0.01802375353872776, -0.0877530425786972, 0.025086887180805206, -0.006046211812645197, -0.04285534471273422, -0.002223184797912836, 0.050684358924627304, 0.03781754523515701, -0.01410924643278122, -0.00920760165899992, -0.010986150242388248, -0.016840891912579536, -0.08162599056959152, 0.03985989838838577, 0.03846428915858269, -0.0014658127911388874, 0.02493371069431305, -0.020695829764008522, 0.060998234897851944, -0.031316060572862625, -0.04401267692446709, -0.02187018282711506, 0.01541124563664198, 0.025546414777636528, 0.04414883628487587, -0.05555196478962898, 0.011488228105008602, 0.06324482709169388, 0.0296311192214489, -0.015138931572437286, 0.02306155487895012, -0.040438562631607056, 0.01761528290808201, 0.06698913127183914, -0.0002642026520334184, -0.034362565726041794, 0.024865631014108658, -0.06024937331676483, -0.04843777418136597, -0.0383281335234642, -0.0498674213886261, 0.013190187513828278, 0.0077524264343082905, 0.06215557083487511, -0.019759751856327057, 0.017411047592759132, 0.00648872135207057, 0.0027784493286162615, -0.0051739574410021305, -0.017402539029717445, -0.07012074440717697, 0.02777598239481449, -0.10007523000240326, -0.0869361013174057, 0.01286681555211544, 0.0004127252323087305, -0.034260448068380356, 0.0681464672088623, -0.008224720135331154, -0.007241838611662388, -0.029954491183161736, 0.017113205045461655, -0.0945608839392662, 0.0426170714199543, -0.04132358357310295, 0.0660019963979721, -0.018449243158102036, -0.011828619986772537, 0.004986742045730352, 0.02794617787003517, 0.011386110447347164, 0.016355833038687706, 0.03904295712709427, -0.01858540065586567, -0.028541864827275276, -0.042140521109104156, -0.03768138960003853, 0.05718584731221199, -0.04159589484333992, 0.020525634288787842, 0.02318069152534008, -0.005761133506894112, -0.024780534207820892, -0.06297250837087631, -0.026397395879030228, 0.032677628099918365, 0.011990305967628956, -0.0002567565825302154, -0.028541864827275276, -0.014543245546519756, 0.014245402999222279, -0.06218960881233215, 0.02617613971233368, 0.02312963269650936, 0.029511982575058937, -0.035843271762132645, -0.03485613688826561, 0.07372889667749405, 0.008522563613951206, -0.013581638224422932, 0.002331684809178114, 0.05102475360035896, -0.009760739281773567, 0.001557293115183711, 0.010552150197327137, 0.008722543716430664, 0.028763119131326675, -0.06726144999265671, 0.023418966680765152, -0.04268515110015869, -0.009820307604968548, -0.04745063558220863, 0.013802893459796906, 0.04363824799656868, 0.05367980897426605, 0.012517914175987244, 0.02539323829114437, -0.030465079471468925, 0.05807086452841759, -0.032167039811611176, -0.04183417186141014, 0.03774946555495262, -0.019912928342819214, -0.031588371843099594, -0.005433506332337856, 0.01824500784277916, 0.014024147763848305, -0.04928875342011452, 0.04591887444257736, -0.04676985368132591, -0.07120999693870544, -0.019198106601834297, -0.011828619986772537, -0.016568578779697418, -0.014185834676027298, -0.004688899032771587, -0.01848328299820423, -0.011173365637660027, 0.003969821147620678, -0.012390267103910446, 0.031145863234996796, -0.05180765315890312, -0.00971818994730711, -0.004552742466330528, -0.020729869604110718, -0.004020879976451397, 0.04659965634346008, -0.027044139802455902, 0.02415080927312374, 0.0036698507610708475, -0.03628578037023544, 0.02057669311761856, -0.08060481399297714, -0.04227668046951294, 0.004705918487161398, -0.020474575459957123, 0.003788987873122096, -0.0294098649173975, -0.01688344031572342, 0.03560499846935272, -0.009701170027256012, -0.007986445911228657, -0.03543480113148689, -0.07529469579458237, -0.003774095792323351, 0.023997632786631584, -0.05061628296971321, -0.013785873539745808, 0.10865310579538345, 0.003782605519518256, 0.03354562446475029, 0.009173562750220299, -0.06515102088451385, 0.034141313284635544, 0.004986742045730352, -0.028422728180885315, -0.06664874404668808, -0.08135367184877396, -0.004803781397640705, -0.006867407355457544, 0.05422443524003029, -0.0008366195834241807, -0.007514152210205793, -0.043774403631687164, -0.000001250707668987161, -0.015062343329191208, -0.05231824144721031, 0.0042314971797168255, 0.04125550389289856, 0.01899387128651142, -0.019640615209937096, -0.047586794942617416, -0.01595587283372879, 0.03400515392422676, -0.047076206654310226, 0.0038251543883234262, 0.010901052504777908, -0.010739365592598915, -0.014041167683899403, 0.024661395698785782, -0.054939258843660355, -0.0005063330172561109, 0.018398184329271317, 0.01999802701175213, -0.035843271762132645, -0.0089523084461689, -0.02583574876189232, -0.020049085840582848, -0.0021189397666603327, 0.034890174865722656, 0.021614888682961464, 0.025631513446569443, 0.021887201815843582, -0.024661395698785782, -0.01570908911526203, -0.03608154505491257, 0.0017721655312925577, -0.03563903644680977, 0.017445087432861328, 0.03441362455487251, -0.04663369804620743, -0.021665947511792183, 0.025137946009635925, -0.01581120677292347, -0.09224621951580048, 0.04966318607330322, 0.04268515110015869, -0.03526460379362106, 0.020661791786551476, 0.05572216212749481, 0.025597473606467247, -0.01726638153195381, 0.016934499144554138, 0.0034719977993518114, -0.02198931947350502, -0.04098318889737129, 0.018006734549999237, 0.020321398973464966, -0.03985989838838577, 0.03223511576652527, -0.025137946009635925, -0.023929553106427193, -0.03395409509539604, 0.014747480861842632, -0.03145221620798111, 0.04132358357310295, 0.02318069152534008, -0.008599151857197285, -0.005203742068260908, -0.06116843223571777, -0.010075601749122143, -0.009088465012609959, 0.07937940210103989, -0.05190977081656456, -0.07393313199281693, 0.042140521109104156, 0.010262817144393921, 0.029171589761972427, 0.06263212114572525, 0.010390464216470718, -0.0052335262298583984, 0.03412429243326187, 0.04159589484333992, -0.02420186810195446, 0.0042825560085475445, -0.06263212114572525, -0.009905405342578888, -0.010058581829071045, -0.005697309970855713, 0.0166111271828413, -0.05807086452841759, -0.009616072289645672, 0.026397395879030228, 0.04101723060011864, 0.02743559144437313, 0.01590481400489807, -0.0040400270372629166, -0.023725317791104317, 0.05728796496987343, 0.008365131914615631, 0.03846428915858269, -0.003852811409160495, -0.008497034199535847, 0.003948546480387449, -0.023844456300139427, 0.02804829552769661, 0.003301801858469844, -0.023197710514068604, -0.033137157559394836, -0.042072445154190063, -0.008450229652225971, -0.03710272163152695, -0.004023007117211819, 0.004305958282202482, -0.05844529718160629, 0.09163351356983185, 0.010960620827972889, -0.021155359223484993, -0.011556306853890419, 0.014024147763848305, -0.03917911276221275, 0.04013220965862274, 0.0023125377483665943, -0.03194578364491463, 0.0040464093908667564, -0.003852811409160495, 0.04006413370370865, 0.01649199053645134, -0.037034641951322556, -0.04067683592438698, -0.02634633705019951, -0.0255634356290102, 0.05082051828503609, 0.1030706837773323, 0.05572216212749481, 0.040881071239709854, -0.0002651334216352552, 0.008535328321158886, 0.035060372203588486, 0.06464043259620667, -0.007952407002449036, -0.06181517615914345, -0.04169801250100136, -0.014662383124232292, -0.025376219302415848, 0.023929553106427193, 0.03614962473511696, -0.022704143077135086, 0.027690885588526726, -0.029954491183161736, -0.044182874262332916, -0.017836537212133408, -0.017530186101794243, 0.01084999367594719, -0.03172452747821808, -0.026261238381266594, 0.012220070697367191, -0.04142570123076439, 0.030175745487213135, 0.011147836223244667, 0.06324482709169388, 0.027401551604270935, -0.03099268674850464, 0.004910153802484274, 0.031588371843099594, 0.033137157559394836, -0.019232144579291344, -0.06218960881233215, 0.02278923988342285, 0.0319628044962883, -0.002216802444308996, 0.02152979001402855, 0.04949298873543739, -0.005710074678063393, 0.034362565726041794, 0.03819197788834572, -0.0034209389705210924, -0.018908772617578506, -0.021682966500520706, 0.02670374885201454, -0.057390082627534866, -0.004650604911148548, 0.001307317870669067, -0.06399368494749069, -0.024116769433021545, -0.01722383312880993, -0.057832591235637665, 0.025342179462313652, -0.04806334152817726, 0.0036549584474414587, 0.05412231758236885, -0.009267170913517475, 0.02221057377755642, 0.034090254455804825, 0.02500178851187229, -0.03621770441532135, 0.00013063869846519083, 0.04472750052809715, 0.023929553106427193, 0.05218208581209183, 0.01899387128651142, -0.01989590935409069, -0.01538571622222662, 0.023044534027576447, 0.030141707509756088, 0.06709124892950058, -0.07120999693870544, -0.04227668046951294, -0.004327232483774424, 0.05088859423995018, -0.07992403209209442, 0.08965923637151718, -0.035400763154029846, 0.002608253387734294, 0.036694251000881195, 0.022295672446489334, 0.050854556262493134, 0.06154286488890648, -0.05017377436161041, 0.0349242128431797, -0.014687912538647652, 0.05521157383918762, -0.03614962473511696, 0.020253321155905724, 0.049731262028217316, -0.05289690941572189, -0.030856529250741005, 0.02923966757953167, -0.03996201604604721, 0.02602296508848667, -0.007794975768774748, 0.005978133529424667, 0.056641221046447754, -0.017938654869794846, -0.032898880541324615, 0.04220860078930855, 0.0013381658354774117, 0.022602025419473648, -0.04309362173080444, 0.05810490623116493, 0.008101328276097775, 0.008590641431510448, -0.0031082038767635822, 0.046225227415561676, 0.03245637193322182, 0.03371582180261612, -0.06253000348806381, 0.0008711906266398728, 0.06018129736185074, -0.043434012681245804, 0.021955279633402824, 0.014662383124232292, -0.049424909055233, -0.027793003246188164, -0.0006871662335470319, 0.004837820306420326, -0.01814289018511772, 0.014092226512730122, -0.02992045134305954, 0.012203050777316093, 0.03232021629810333, 0.007467348128557205 ]
729,001
tables.atom
UInt32Atom
Defines an atom of type ``uint32``.
from tables.atom import UInt32Atom
(shape=(), dflt=0)
[ -0.0024137268774211407, 0.017471587285399437, 0.006349471863359213, -0.003128358628600836, 0.05133543908596039, 0.008255156688392162, -0.03084511123597622, -0.012960342690348625, -0.06162276491522789, -0.029681462794542313, 0.015296071767807007, 0.027320437133312225, -0.003916772548109293, 0.025785770267248154, -0.04641101509332657, 0.013980643823742867, 0.0005212174146436155, 0.0829731822013855, -0.018061844632029533, 0.048772040754556656, -0.0367308109998703, 0.0394628532230854, 0.0030229557305574417, 0.04823237657546997, 0.008588230237364769, -0.009148973971605301, -0.0138710243627429, -0.04125048592686653, 0.0254653450101614, -0.07265212386846542, -0.043004389852285385, -0.01898938976228237, 0.026679586619138718, 0.007985325530171394, 0.002732043620198965, -0.06921177357435226, 0.04860339313745499, 0.07251720875501633, -0.04344286769628525, 0.013171149417757988, 0.053696464747190475, -0.04526422917842865, 0.024015001952648163, -0.013634921982884407, 0.0021396793890744448, -0.05012119561433792, 0.050964418798685074, -0.05649596452713013, -0.036764539778232574, -0.013845727778971195, 0.002767880680039525, -0.03329045698046684, 0.043847616761922836, 0.00022832908143755049, -0.04863712191581726, 0.045635249465703964, -0.017201757058501244, 0.034943174570798874, -0.08600877970457077, 0.07757654786109924, -0.053763922303915024, 0.07204500585794449, 0.001096190419048071, -0.04823237657546997, 0.040373533964157104, -0.04688321799039841, -0.01670425571501255, -0.0033307322300970554, -0.02322237193584442, 0.05082950368523598, -0.06280327588319778, 0.022783895954489708, 0.012344789691269398, 0.02345847338438034, 0.04931170120835304, -0.04566897824406624, 0.013946914114058018, 0.0025296700187027454, -0.0025676151271909475, 0.013643354177474976, 0.06658091396093369, 0.0047979410737752914, 0.05595630407333374, 0.05325798690319061, 0.00620612408965826, 0.03283511847257614, 0.04840102046728134, 0.05224611982703209, -0.04256591573357582, -0.026477213948965073, -0.000005060163857706357, -0.03288571164011955, -0.05693444237112999, 0.024706443771719933, 0.006471739150583744, 0.012943478301167488, 0.04782762750983238, -0.023610254749655724, -0.055247996002435684, -0.053763922303915024, -0.0005517842946574092, -0.019782019779086113, -0.0029175528325140476, -0.04512931406497955, 0.0059278602711856365, 0.025448480620980263, -0.0115605928003788, 0.0029702542815357447, -0.026106195524334908, 0.023138049989938736, -0.03148595988750458, 0.029917564243078232, -0.002348377136513591, -0.029276715591549873, 0.03649470582604408, -0.023256100714206696, 0.03376266360282898, 0.04189133644104004, 0.05349409207701683, 0.04526422917842865, 0.037911321967840195, 0.01427577156573534, 0.0004118619253858924, -0.010894445702433586, 0.05855343118309975, 0.07777892053127289, 0.048434749245643616, 0.03723674267530441, -0.006809028796851635, 0.022159909829497337, -0.0063747684471309185, -0.003760776249691844, 0.001776039251126349, 0.03165460377931595, 0.006792164407670498, -0.027337301522493362, 0.011265464127063751, -0.034352920949459076, 0.0049033439718186855, 0.00700718630105257, 0.007901002652943134, 0.07325924932956696, 0.03362774848937988, -0.050660859793424606, -0.043746426701545715, 0.02878764644265175, -0.02620738185942173, 0.033104948699474335, 0.006286230403929949, -0.0017264998750761151, -0.009359779767692089, -0.03044036403298378, -0.013811999000608921, 0.09322677552700043, -0.04216116666793823, 0.04722050949931145, 0.050154924392700195, -0.12398756295442581, 0.024116188287734985, -0.032480962574481964, -0.004873830825090408, -0.005131014157086611, 0.007884138263761997, -0.039395395666360855, -0.039564039558172226, 0.0018329567974433303, -0.035685211420059204, -0.033492833375930786, -0.0026371809653937817, -0.010498130694031715, -0.022800760343670845, -0.04330795258283615, -0.005919428076595068, 0.03460588678717613, 0.04253218695521355, -0.03720301389694214, -0.036933183670043945, -0.003585807280614972, 0.04000251740217209, -0.005295442882925272, 0.01865210011601448, 0.007260153070092201, -0.032076217234134674, -0.0018413889920338988, 0.022126181051135063, 0.03323986381292343, 0.028905697166919708, -0.013289200142025948, 0.05497816205024719, -0.06664837151765823, 0.041688963770866394, -0.00026482483372092247, -0.02558339759707451, 0.04647847265005112, 0.0063747684471309185, -0.02259838581085205, 0.028467221185564995, -0.011105251498520374, -0.044825755059719086, -0.0330880843102932, 0.010717368684709072, -0.0019204411655664444, 0.009570585563778877, 0.0924847424030304, 0.042431000620126724, -0.08567149192094803, 0.041688963770866394, -0.017758283764123917, -0.017943793907761574, -0.03919302299618721, 0.0339987650513649, -0.043173037469387054, 0.012260467745363712, 0.08162402361631393, -0.009638043120503426, -0.0545734167098999, -0.08459217101335526, -0.009511559270322323, 0.008600878529250622, 0.018837610259652138, 0.08695319294929504, -0.014326364733278751, 0.014258907176554203, -0.045803893357515335, 0.022227367386221886, -0.010489698499441147, -0.03689945489168167, 0.03652843460440636, 0.029108069837093353, 0.03534792363643646, 0.03629233315587044, 0.018331676721572876, -0.06266836076974869, 0.013913185335695744, 0.03804623708128929, 0.02345847338438034, -0.00887070968747139, 0.012850724160671234, -0.00840693712234497, 0.031266722828149796, -0.03649470582604408, 0.032076217234134674, 0.08027486503124237, 0.021198635920882225, 0.031030619516968727, -0.00456183822825551, 0.03875454515218735, 0.01946159452199936, -0.06664837151765823, -0.022227367386221886, -0.05531545355916023, -0.06793007254600525, 0.05349409207701683, -0.0051099336706101894, 0.06631108373403549, -0.03369520604610443, -0.030170531943440437, -0.001984736882150173, -0.014191449619829655, 0.008921302855014801, -0.05568647012114525, -0.023711441084742546, 0.06307310611009598, 0.00973079726099968, 0.03872081637382507, -0.01671268790960312, -0.03683199733495712, 0.10469461232423782, -0.022918811067938805, -0.007567929569631815, 0.08202876895666122, -0.012994072400033474, -0.041048113256692886, 0.011956906877458096, -0.02317177876830101, -0.04573643580079079, 0.057811394333839417, 0.033273592591285706, 0.008352127857506275, -0.016797009855508804, -0.014840731397271156, -0.00567910959944129, -0.02654467150568962, -0.008702064864337444, -0.027623998001217842, 0.020675836130976677, 0.0124712735414505, -0.018517185002565384, -0.04553406313061714, -0.04927797242999077, 0.027843235060572624, 0.026460349559783936, -0.016232049092650414, 0.004544973839074373, 0.05325798690319061, 0.04485948383808136, -0.008820116519927979, 0.05872207507491112, 0.03689945489168167, 0.029715191572904587, -0.02706746943295002, -0.026713315397500992, -0.00557792279869318, 0.021215500310063362, -0.021148042753338814, -0.006619303487241268, 0.037506576627492905, 0.025617126375436783, -0.009039354510605335, 0.029040612280368805, 0.0347745306789875, 0.016510313376784325, -0.01979888416826725, 0.024183645844459534, -0.0009328158339485526, 0.018297947943210602, -0.030187396332621574, 0.008052783086895943, -0.0005702297785319388, 0.06900940090417862, -0.015397259034216404, -0.021755162626504898, 0.07029110193252563, -0.01733667217195034, -0.026881961151957512, -0.08081452548503876, -0.025448480620980263, -0.06368023157119751, 0.00981512013822794, 0.005695973988622427, -0.05791258066892624, -0.013339793309569359, 0.040306076407432556, 0.04539914429187775, -0.015329800546169281, -0.01061618234962225, 0.026072466745972633, -0.0028121499344706535, -0.046782031655311584, -0.0042941151186823845, 0.05700189992785454, 0.027202386409044266, 0.0198663417249918, -0.005717054475098848, 0.03148595988750458, -0.031435366719961166, -0.035685211420059204, 0.0054387906566262245, 0.04550033435225487, 0.004511245060712099, 0.0245546642690897, 0.01513585913926363, -0.013744540512561798, 0.045230500400066376, 0.047692712396383286, 0.0044606514275074005, 0.002888039918616414, -0.06459090858697891, 0.00806964747607708, 0.0604422502219677, -0.017994387075304985, -0.0221430454403162, 0.024757038801908493, -0.03480825945734978, -0.062061239033937454, -0.05595630407333374, -0.04860339313745499, 0.02357652597129345, 0.05254967883229256, 0.02580263465642929, -0.03113180585205555, -0.01630794070661068, -0.030659601092338562, 0.018820745870471, 0.021957537159323692, 0.026055602356791496, -0.05970021337270737, 0.016409127041697502, -0.09005625545978546, -0.08155656605958939, 0.017353536561131477, 0.0007947380072437227, -0.011821991764008999, 0.02345847338438034, -0.004759995732456446, 0.00620612408965826, -0.022901946678757668, 0.00397579837590456, -0.08513183146715164, 0.08216368407011032, -0.003790288930758834, 0.034352920949459076, 0.027657726779580116, -0.058620888739824295, 0.004439570941030979, 0.07973520457744598, 0.007534200791269541, 0.008284669369459152, 0.01757277548313141, -0.009966900572180748, 0.026983147487044334, -0.025431616231799126, -0.019039982929825783, 0.06270208954811096, -0.02431856095790863, 0.006176610942929983, 0.004494380671530962, -0.04641101509332657, -0.027151793241500854, -0.03983387351036072, -0.05251595005393028, 0.03541538119316101, 0.026021873578429222, -0.014925053343176842, -0.014688950963318348, -0.014908188953995705, 0.006092288997024298, -0.08074706792831421, 0.02964773401618004, -0.0006566601805388927, 0.02678077481687069, -0.03740539029240608, -0.01974829100072384, 0.07352907955646515, 0.0022218935191631317, -0.026966283097863197, 0.02202499471604824, 0.04006997495889664, -0.05872207507491112, 0.04256591573357582, 0.021131178364157677, -0.00019183331460226327, 0.05082950368523598, -0.08108435571193695, 0.006534981075674295, -0.01767396181821823, -0.021839484572410583, -0.05892444774508476, 0.03153655305504799, 0.034083086997270584, 0.0734616219997406, 0.056327320635318756, 0.033222999423742294, -0.018179895356297493, 0.027421623468399048, -0.016232049092650414, -0.033155541867017746, 0.046545930206775665, 0.0032506261486560106, 0.001097244443371892, -0.04101438447833061, -0.01870269514620304, 0.009511559270322323, -0.04627609997987747, 0.04641101509332657, -0.07879079133272171, -0.09565525501966476, -0.023559661582112312, -0.042026251554489136, -0.03300376236438751, -0.01688976399600506, -0.023374151438474655, -0.038417257368564606, -0.020153038203716278, -0.003461431944742799, -0.03474080190062523, 0.008432233706116676, -0.041351672261953354, -0.012403815984725952, -0.018382269889116287, -0.036764539778232574, 0.0010255704401060939, 0.02556653320789337, -0.01915803551673889, 0.003503593150526285, 0.01293504610657692, -0.018618371337652206, -0.0138710243627429, -0.07899316400289536, -0.05308934301137924, 0.024925682693719864, -0.02568458393216133, 0.03666335344314575, 0.010321053676307201, -0.031890708953142166, 0.051976289600133896, 0.014958782121539116, -0.020119309425354004, 0.021721433848142624, -0.06546786427497864, -0.0001577091170474887, 0.033965036273002625, -0.029192393645644188, 0.0004519150243140757, 0.1000400185585022, 0.00034809313365258276, -0.0010677315294742584, 0.020642107352614403, -0.035955045372247696, 0.03571894019842148, 0.0020996262319386005, -0.03585385903716087, -0.04458964988589287, -0.05308934301137924, 0.018044980242848396, 0.033492833375930786, 0.04027234762907028, -0.05143662542104721, -0.012505002319812775, -0.03689945489168167, -0.01648501679301262, -0.03157028183341026, -0.022969404235482216, 0.011324489489197731, 0.04229608550667763, 0.008541852235794067, 0.000747306679841131, -0.05315680056810379, -0.02689882554113865, 0.025600261986255646, -0.04691694676876068, -0.01161961816251278, -0.00016363803297281265, -0.030575279146432877, -0.027607133612036705, 0.0005243795458227396, -0.06583888083696365, -0.024757038801908493, 0.020102445036172867, 0.011771398596465588, -0.017488453537225723, -0.023610254749655724, -0.05325798690319061, -0.036359790712594986, -0.005152094643563032, 0.019495323300361633, 0.016004379838705063, -0.001672744401730597, 0.04657965898513794, -0.0060880728997290134, -0.021788891404867172, -0.04266710206866264, 0.02209245227277279, 0.0006482279859483242, 0.05180764198303223, 0.04684948921203613, -0.07312432676553726, -0.011307625100016594, -0.0023462690878659487, 0.006522332783788443, -0.07352907955646515, -0.009174270555377007, 0.013407251797616482, -0.009941603057086468, -0.008600878529250622, 0.015599632635712624, 0.025667719542980194, -0.03534792363643646, 0.02323923632502556, 0.011847288347780704, 0.005000314675271511, -0.005624299868941307, -0.025111190974712372, 0.02111431397497654, -0.06459090858697891, -0.016375398263335228, -0.04577016457915306, -0.0679975301027298, -0.009106812067329884, 0.05595630407333374, -0.01232792530208826, 0.023610254749655724, 0.03592131659388542, -0.03243036940693855, 0.017977522686123848, -0.05389883741736412, -0.029141798615455627, -0.02082761749625206, 0.06685075163841248, -0.0583510585129261, -0.04698440432548523, 0.016915060579776764, 0.005337603855878115, -0.017252350226044655, 0.09997256100177765, 0.0507957749068737, -0.03770894929766655, 0.051402896642684937, 0.0330880843102932, -0.03706809878349304, -0.012968775816261768, -0.05143662542104721, -0.009199567139148712, -0.0011784046655520797, -0.0011531079653650522, 0.008820116519927979, -0.051301710307598114, -0.011518430896103382, 0.015835734084248543, 0.006058559753000736, 0.038079965859651566, 0.03460588678717613, -0.026106195524334908, 0.002947065746411681, 0.04553406313061714, -0.025077462196350098, 0.03797877952456474, -0.01670425571501255, -0.005759215448051691, -0.023391015827655792, 0.00650968449190259, -0.01939413696527481, -0.0024116188287734985, -0.023846356198191643, -0.015397259034216404, -0.024048730731010437, 0.015498445369303226, -0.02133355103433132, -0.02877078205347061, 0.030524685978889465, -0.05133543908596039, 0.04931170120835304, -0.007454094476997852, -0.04270083084702492, 0.03416740894317627, 0.04566897824406624, -0.02613992430269718, 0.06351158022880554, 0.043577782809734344, -0.041621506214141846, -0.00025823715259321034, 0.020186766982078552, 0.03227858990430832, -0.021502194926142693, -0.01682230643928051, -0.019191764295101166, -0.032480962574481964, -0.01898938976228237, 0.029141798615455627, 0.08081452548503876, 0.0008300479967147112, 0.032244861125946045, -0.015228614211082458, 0.0022050291299819946, 0.03801250830292702, 0.03555029630661011, -0.004667241126298904, -0.046714574098587036, 0.0007868328248150647, 0.026966283097863197, -0.015599632635712624, 0.020001258701086044, 0.03022112511098385, 0.0073950691148638725, 0.02453779987990856, 0.019191764295101166, -0.05453968793153763, -0.03362774848937988, -0.0008432233589701355, 0.00975609477609396, -0.04931170120835304, -0.004098065663129091, -0.04681576043367386, -0.013255471363663673, 0.013702379539608955, -0.004667241126298904, 0.01762336865067482, 0.011282328516244888, 0.011383515782654285, 0.008575581945478916, 0.0008990869391709566, 0.03202562406659126, 0.007960028946399689, -0.05875580385327339, 0.008390072733163834, 0.005219552665948868, 0.009579017758369446, 0.04853593558073044, 0.028467221185564995, -0.01261462178081274, -0.03541538119316101, -0.00417817197740078, 0.0003694372426252812, -0.041284214705228806, -0.045635249465703964, 0.005168959032744169, -0.06172395125031471, 0.05433731526136398, -0.007226424291729927, -0.04782762750983238, -0.03210994601249695, 0.00048696150770410895, -0.004418490454554558, 0.028973154723644257, -0.06698566675186157, 0.037169285118579865, 0.005118365865200758, 0.023846356198191643, 0.0132217425853014, 0.0037818567361682653, 0.022463470697402954, -0.04499439895153046, -0.012125551700592041, 0.019124306738376617, -0.008120240643620491, 0.04833356291055679, 0.017016246914863586, -0.02111431397497654, -0.053021885454654694, 0.03649470582604408, 0.009182702749967575, 0.05808122456073761, -0.04674830287694931, -0.030575279146432877, 0.001480911043472588, 0.046309828758239746, -0.04226235672831535, 0.09646475315093994, -0.027371030300855637, -0.006383201107382774, -0.0082720210775733, 0.04205998033285141, 0.06357904523611069, 0.05504561960697174, -0.011602753773331642, -0.002001601504161954, -0.012505002319812775, 0.03740539029240608, -0.05177391320466995, 0.021822620183229446, 0.05872207507491112, -0.022075587883591652, -0.040542177855968475, 0.06152157858014107, 0.004203468561172485, 0.058384787291288376, 0.014081830158829689, 0.019883206114172935, 0.01740412972867489, 0.01898938976228237, -0.030524685978889465, 0.008187699131667614, -0.05727173015475273, -0.0009201674838550389, -0.010439105331897736, 0.03703437000513077, 0.00915740616619587, -0.0035415380261838436, -0.008921302855014801, 0.04249845817685127, 0.04570270702242851, 0.03605623170733452, -0.009747661650180817, -0.024706443771719933, 0.08405250310897827, -0.03409995138645172, 0.036764539778232574, 0.004899127874523401, -0.0216202475130558, -0.03342537581920624, -0.03288571164011955, -0.01769082620739937, -0.04192506521940231, 0.015245478600263596, -0.01824735291302204, -0.005421926267445087, 0.004612431861460209, 0.003986338619142771 ]
729,009
tables.description
UInt32Col
Defines a non-nested column of a particular type. The constructor accepts the same arguments as the equivalent `Atom` class, plus an additional ``pos`` argument for position information, which is assigned to the `_v_pos` attribute and an ``attrs`` argument for storing additional metadata similar to `table.attrs`, which is assigned to the `_v_col_attrs` attribute.
from tables.description import UInt32Col
(*args, **kwargs)
[ -0.016494309529662132, -0.017347168177366257, 0.01086543407291174, 0.009381458163261414, 0.0435640811920166, 0.012545567937195301, 0.0067802355624735355, -0.009978460147976875, -0.061064764857292175, -0.04428048059344292, -0.004326131660491228, 0.04250653460621834, -0.008571241050958633, 0.008818570524454117, -0.01929168961942196, 0.03019123710691929, 0.01042194664478302, 0.026694511994719505, 0.024784106761217117, 0.021475009620189667, -0.02672862634062767, 0.03220398724079132, 0.03220398724079132, 0.028383174911141396, 0.0021033654920756817, 0.01895054616034031, -0.015487934462726116, -0.018370600417256355, 0.04250653460621834, -0.0745740607380867, -0.06543140858411789, -0.012835540808737278, 0.0013965580146759748, 0.02768382988870144, -0.016741639003157616, -0.05676634982228279, 0.06031424552202225, -0.011394207365810871, -0.0004280290158931166, -0.001522354781627655, 0.02869020402431488, -0.024170046672225, 0.009355871938169003, -0.04393933713436127, -0.027120942249894142, -0.0326133593916893, 0.03981149569153786, -0.07095793634653091, -0.045099228620529175, -0.019035831093788147, 0.003070295322686434, -0.004635293036699295, 0.022822529077529907, -0.003558557713404298, -0.027462085708975792, -0.011479493230581284, -0.015786435455083847, 0.03203341364860535, -0.07900893688201904, 0.0884927362203598, -0.07750789821147919, 0.04080081358551979, -0.020400406792759895, -0.024050647392868996, 0.049022383987903595, -0.037457603961229324, -0.016554009169340134, -0.005240823607891798, 0.004274959675967693, 0.03889040648937225, -0.05263850837945938, 0.02253255620598793, 0.02882666140794754, 0.0579262375831604, 0.03936801105737686, -0.04762369394302368, -0.013739571906626225, -0.006950807757675648, 0.008750341832637787, 0.010763091035187244, 0.07382354885339737, 0.004921001382172108, 0.07375531643629074, 0.0442463681101799, 0.04271122068166733, 0.016622237861156464, 0.05642520636320114, 0.07218605279922485, -0.027717944234609604, -0.006234405096620321, 0.014890932478010654, -0.04045967012643814, -0.06024601683020592, 0.05014815926551819, -0.0025265971198678017, -0.017031610012054443, 0.034284964203834534, 0.010089331306517124, -0.028792547062039375, -0.038753949105739594, 0.0028506838716566563, -0.01035371795296669, 0.034216735512018204, -0.020212776958942413, 0.007458259351551533, -0.01569262146949768, -0.015377062372863293, 0.02388007566332817, -0.021372666582465172, -0.007564866449683905, 0.013176684267818928, 0.004332527983933687, 0.023845961317420006, -0.05922258645296097, 0.04404168203473091, -0.031436413526535034, 0.03174344450235367, -0.0007377237780019641, 0.04168778657913208, 0.03479668125510216, 0.03024240955710411, -0.02193555422127247, -0.004771750885993242, -0.008144811727106571, 0.03106115572154522, 0.063862144947052, 0.012502925470471382, 0.04595208913087845, -0.0037078079767525196, 0.00892944261431694, 0.019121117889881134, -0.01035371795296669, 0.0005237092263996601, 0.061064764857292175, 0.034626107662916183, -0.042267732322216034, 0.051137473434209824, -0.007095793727785349, 0.0299865510314703, 0.011394207365810871, -0.01035371795296669, 0.046190887689590454, 0.03155581280589104, -0.03247690200805664, -0.00018443094450049102, 0.03402910754084587, -0.0030041986610740423, 0.021492067724466324, -0.0068442001938819885, -0.0019295953679829836, -0.02381184697151184, -0.03051532432436943, -0.017637141048908234, 0.03500136733055115, -0.023914190009236336, 0.02618279680609703, 0.026012225076556206, -0.12990760803222656, 0.02747914381325245, -0.04243830591440201, 0.013023169711232185, -0.00994434580206871, -0.012289710342884064, -0.034745510667562485, -0.046259116381406784, 0.005309052299708128, -0.0271380003541708, -0.042540647089481354, 0.0008853751351125538, -0.010345189832150936, 0.0009637316106818616, -0.037252917885780334, 0.016187280416488647, 0.06474912166595459, 0.0239483043551445, -0.010558404959738255, -0.020451579242944717, -0.00136990612372756, 0.022515499964356422, -0.03964092582464218, 0.03513782471418381, 0.03375619277358055, -0.02104858122766018, 0.03895863518118858, 0.021355610340833664, 0.011590365320444107, 0.025193478912115097, -0.02111680991947651, 0.04045967012643814, -0.0759386420249939, 0.02403358928859234, -0.009074428118765354, -0.010583990253508091, 0.02091212384402752, 0.019138174131512642, -0.023231901228427887, 0.04182424768805504, 0.00014498617383651435, -0.03582011163234711, -0.0239483043551445, 0.032374560832977295, -0.018251201137900352, 0.018711743876338005, 0.08398963510990143, 0.0348990224301815, -0.0665912926197052, 0.049772899597883224, -0.019240517169237137, -0.03582011163234711, -0.04779426380991936, 0.04383699595928192, -0.05216090753674507, -0.011172464117407799, 0.07259542495012283, 0.022651957347989082, -0.038344576954841614, -0.1251998245716095, -0.018660573288798332, -0.013287556357681751, 0.024170046672225, 0.09702133387327194, -0.011146877892315388, -0.01874585822224617, -0.07600686699151993, 0.046804945915937424, -0.01947931759059429, -0.015675563365221024, 0.005807975307106972, 0.040903158485889435, 0.03302273154258728, 0.003953005187213421, 0.017705369740724564, -0.07873602211475372, 0.04803306609392166, 0.030873525887727737, 0.0602119043469429, -0.021560296416282654, 0.012195895425975323, 0.032647475600242615, 0.0003667297132778913, -0.04383699595928192, 0.0213214959949255, 0.06287282705307007, 0.024886449798941612, 0.008447576314210892, -0.018319429829716682, 0.007718381471931934, 0.023641275241971016, -0.06038247421383858, -0.0010244979057461023, -0.0529114231467247, -0.085285983979702, 0.06277048587799072, -0.016963381320238113, 0.06184939295053482, -0.02084389328956604, -0.05178564786911011, -0.006191762164235115, -0.018285315483808517, -0.013688400387763977, -0.06768295913934708, -0.03419967740774155, 0.03334682062268257, 0.0026715833228081465, 0.054514799267053604, -0.028877833858132362, -0.018967602401971817, 0.08815158903598785, -0.01785888522863388, -0.0047163148410618305, 0.10609576106071472, 0.002281400142237544, -0.06802409887313843, 0.0026993013452738523, -0.005436981562525034, -0.06413505971431732, 0.047896608710289, 0.008085111156105995, 0.045781515538692474, -0.012255595996975899, 0.02173086814582348, 0.002044731518253684, -0.04148310050368309, 0.015095618553459644, -0.00034487518132664263, 0.030941754579544067, -0.03564954176545143, -0.027973802760243416, -0.06068950518965721, -0.026711570098996162, 0.0006966798682697117, 0.03310801833868027, -0.016767224296927452, 0.019718119874596596, 0.030464153736829758, 0.06921810656785965, 0.008439048193395138, 0.07791727036237717, 0.03228927403688431, 0.017551856115460396, -0.0786677896976471, -0.01377368625253439, 0.010669276118278503, 0.04438282549381256, -0.05263850837945938, -0.013134040869772434, 0.00985053088515997, -0.029884207993745804, -0.024255333468317986, 0.0038208120968192816, 0.02179909683763981, 0.022771356627345085, -0.011462436057627201, 0.042813561856746674, -0.0009237537742592394, 0.009210886433720589, -0.0456109419465065, 0.0399138405919075, -0.004443399608135223, 0.060791850090026855, -0.00985053088515997, -0.026575112715363503, 0.05454891547560692, -0.01078867632895708, 0.023163672536611557, -0.05649343505501747, -0.01285259798169136, -0.07293657213449478, 0.02214024029672146, -0.008451840840280056, -0.053150225430727005, -0.02212318405508995, 0.04980701208114624, 0.0462932325899601, -0.003950872924178839, -0.017756542190909386, 0.01589730754494667, -0.01617022231221199, -0.07648447155952454, 0.030293580144643784, 0.058506183326244354, -0.00692095747217536, 0.03582011163234711, -0.007309008855372667, 0.04752134904265404, -0.03943623974919319, -0.023231901228427887, -0.024118876084685326, 0.041926588863134384, 0.01400395855307579, 0.03582011163234711, -0.05014815926551819, -0.0021097620483487844, 0.05297965183854103, 0.017568912357091904, -0.010268432088196278, 0.013765157200396061, -0.060928307473659515, 0.026097510010004044, 0.07791727036237717, 0.020008090883493423, -0.04028909653425217, 0.01751773990690708, -0.04284767806529999, -0.06031424552202225, -0.022379042580723763, -0.05847207084298134, -0.004025498405098915, 0.03471139445900917, 0.06259991228580475, -0.02111680991947651, 0.0016620105598121881, -0.0004983899416401982, 0.011189521290361881, 0.009816416539251804, -0.022617843002080917, -0.06403271853923798, 0.026711570098996162, -0.0951109305024147, -0.0786677896976471, 0.0002392005262663588, -0.0009823879227042198, -0.009014728479087353, 0.051001016050577164, -0.023095443844795227, 0.007620302494615316, -0.03496725112199783, 0.0007659747498109937, -0.09313229471445084, 0.044826313853263855, -0.03622948378324509, 0.05867675691843033, 0.013492242433130741, -0.027564428746700287, 0.012417638674378395, 0.03912920877337456, 0.01238352432847023, 0.011215106584131718, 0.05318433791399002, -0.02239609882235527, -0.024528248235583305, -0.04066435620188713, -0.024801163002848625, 0.0683993548154831, -0.04346173629164696, 0.017278939485549927, 0.02207201160490513, -0.01888231746852398, -0.019445203244686127, -0.050386957824230194, -0.03582011163234711, 0.041244301944971085, 0.028110260143876076, -0.020929180085659027, -0.0032152815256267786, -0.011982680298388004, -0.0015415441012009978, -0.06341865658760071, 0.023129558190703392, 0.02043452113866806, 0.03578599914908409, -0.04080081358551979, -0.02531288005411625, 0.07559749484062195, -0.005040401592850685, -0.003650240134447813, -0.0003496725403238088, 0.04155132919549942, -0.024306505918502808, 0.009594673290848732, 0.004989230073988438, 0.011522136628627777, 0.04322293773293495, -0.06413505971431732, 0.016127578914165497, -0.03851515054702759, -0.010200203396379948, -0.04526979848742485, 0.017910055816173553, 0.031436413526535034, 0.07505166530609131, 0.02057097852230072, 0.018114741891622543, -0.009304700419306755, 0.06130356341600418, -0.03769640251994133, -0.037866976112127304, 0.04376876726746559, -0.016187280416488647, 0.005377280991524458, -0.004733372014015913, 0.011104234494268894, 0.02273724228143692, -0.055197086185216904, 0.041721902787685394, -0.04796483740210533, -0.09695310145616531, -0.010771619156002998, -0.02875843271613121, -0.022617843002080917, -0.01988869160413742, -0.011650064960122108, -0.016622237861156464, -0.02260078489780426, 0.011786522343754768, -0.045235686004161835, -0.005313316825777292, -0.044689856469631195, -0.0027675300370901823, 0.0018187236273661256, -0.03537662699818611, 0.0015959138981997967, 0.041517216712236404, -0.021031523123383522, 0.012289710342884064, 0.011198049411177635, -0.02841728925704956, 0.015232076868414879, -0.08016882091760635, -0.04028909653425217, 0.034216735512018204, -0.02766677364706993, 0.03513782471418381, -0.0220037829130888, -0.009262057952582836, 0.050864558666944504, -0.017892999574542046, -0.012093552388250828, -0.0169889684766531, -0.0652267187833786, -0.0019637097138911486, 0.04472396895289421, -0.03943623974919319, 0.002050061710178852, 0.10841554403305054, -0.023709503933787346, 0.02787145972251892, 0.006656570825725794, -0.05584526062011719, 0.05127393454313278, 0.007253572810441256, -0.018319429829716682, -0.04141487181186676, -0.06014367565512657, 0.01434510201215744, -0.005266409367322922, 0.06549963355064392, -0.010575462132692337, -0.017278939485549927, -0.04445105418562889, -0.013014640659093857, -0.00886121392250061, -0.03210164234042168, 0.0061747049912810326, 0.012400581501424313, 0.002490350743755698, -0.001653481973335147, -0.032374560832977295, -0.03051532432436943, 0.04448516666889191, -0.044553399085998535, 0.0010436872253194451, -0.0035948040895164013, -0.00656275637447834, -0.017705369740724564, 0.04175601527094841, -0.05332079529762268, -0.016690466552972794, 0.037389375269412994, 0.037866976112127304, -0.028980176895856857, 0.0024370469618588686, -0.02787145972251892, -0.03182872757315636, -0.015718206763267517, 0.0449286550283432, 0.010831319727003574, 0.01617022231221199, 0.04141487181186676, -0.03776463493704796, 0.0005423655384220183, -0.017176596447825432, 0.000990916509181261, 0.001653481973335147, 0.022993100807070732, 0.05096690356731415, -0.0606553889811039, -0.002656658412888646, -0.014626545831561089, -0.02889489009976387, -0.06621603667736053, 0.02599516697227955, 0.044553399085998535, -0.04854477941989899, 0.008302590809762478, 0.05001170188188553, 0.03582011163234711, -0.027325628325343132, 0.02111680991947651, 0.0030745596159249544, -0.012571154162287712, -0.03721880167722702, -0.0007446532254107296, 0.031027041375637054, -0.057960353791713715, 0.00291891279630363, -0.02957717888057232, -0.049499984830617905, -0.03228927403688431, 0.0405961275100708, -0.016289623454213142, 0.027700887992978096, 0.02510819397866726, -0.018848201259970665, 0.005121423397213221, -0.0805099681019783, -0.026984484866261482, -0.003780301194638014, 0.06369157135486603, -0.06348688900470734, -0.06621603667736053, 0.01472036074846983, 0.008008353412151337, 0.005564910359680653, 0.057141609489917755, 0.012477339245378971, -0.029526006430387497, 0.03776463493704796, 0.027120942249894142, -0.023112501949071884, -0.0005194449331611395, -0.042745333164930344, -0.02266901358962059, -0.011931508779525757, 0.007969975471496582, 0.02362421713769436, -0.06287282705307007, -0.011513607576489449, 0.024391790851950645, 0.029798923060297966, 0.01908700354397297, 0.02793968841433525, -0.0040702736005187035, 0.003023388097062707, 0.053013768047094345, -0.010831319727003574, 0.029389549046754837, -0.01066074799746275, 0.0007734372629784048, -0.015232076868414879, -0.022890757769346237, 0.0196157768368721, 0.007291951682418585, -0.020332178100943565, -0.03612714260816574, -0.05123981833457947, 0.0025692402850836515, -0.037048231810331345, -0.0011108499020338058, -0.004767486359924078, -0.06587488949298859, 0.07327771931886673, 0.026694511994719505, -0.030481209978461266, 0.012059438042342663, 0.021372666582465172, -0.05253616347908974, 0.05144450441002846, 0.029662463814020157, -0.0412784144282341, -0.0021769246086478233, 0.008132018148899078, 0.049568213522434235, -0.00025052757700905204, -0.011036005802452564, -0.04479219764471054, -0.032579246908426285, -0.02036629244685173, 0.032852161675691605, 0.08016882091760635, 0.034353192895650864, 0.04148310050368309, -0.026711570098996162, -0.0014146812027320266, 0.026779798790812492, 0.06212231144309044, -0.009159714914858341, -0.062224652618169785, -0.002940234262496233, -0.011308921501040459, -0.02985009364783764, 0.025688137859106064, 0.047146089375019073, -0.016059350222349167, 0.016946325078606606, -0.006839935667812824, -0.037116460502147675, -0.027922630310058594, -0.005991340149194002, -0.0036609007511287928, -0.03568365424871445, -0.02848551794886589, -0.004997758660465479, -0.03953858092427254, 0.02978186495602131, 0.0046822004951536655, 0.053150225430727005, 0.031436413526535034, -0.015052976086735725, 0.01610199362039566, 0.012835540808737278, 0.026438655331730843, -0.017551856115460396, -0.05622052028775215, 0.010575462132692337, 0.0026374689768999815, -0.007995560765266418, 0.014942103996872902, 0.04834009334445, -0.011428321711719036, -0.008503012359142303, 0.012528510764241219, -0.018507057800889015, -0.02971363626420498, -0.0433252789080143, 0.024732934311032295, -0.060791850090026855, 0.021270323544740677, -0.005014815833419561, -0.054037198424339294, -0.022242583334445953, -0.013799271546304226, -0.02869020402431488, 0.032852161675691605, -0.07307302951812744, 0.01908700354397297, 0.05219502002000809, 0.012775840237736702, 0.02166263945400715, 0.0399138405919075, 0.00964584480971098, -0.026967426761984825, -0.011820637620985508, 0.0592908151447773, 0.01472036074846983, 0.045099228620529175, 0.02944072149693966, -0.02435767650604248, -0.03288627415895462, 0.012374996207654476, 0.014890932478010654, 0.06010955944657326, -0.057209838181734085, -0.04810129478573799, 0.015675563365221024, 0.046736717224121094, -0.06321396678686142, 0.08474015444517136, -0.03912920877337456, -0.012741725891828537, 0.036638859659433365, 0.048613011837005615, 0.05103513225913048, 0.04834009334445, -0.04724843427538872, 0.011479493230581284, -0.013372842222452164, 0.03796932101249695, -0.03592245653271675, 0.02957717888057232, 0.06058716028928757, -0.049909356981515884, -0.015607334673404694, 0.03895863518118858, -0.008686377666890621, 0.04073258489370346, -0.0011172463418915868, 0.011598893441259861, 0.033875592052936554, -0.006520113442093134, -0.03998206928372383, 0.05536765977740288, -0.02239609882235527, 0.009679959155619144, -0.042950019240379333, 0.052809081971645355, 0.002439178992062807, 0.011581836268305779, -0.004515892826020718, 0.04871535301208496, 0.026643341407179832, 0.044962771236896515, -0.04168778657913208, -0.031027041375637054, 0.06833112984895706, -0.054924171417951584, 0.017841827124357224, 0.013603114522993565, -0.033602677285671234, -0.02816143073141575, -0.013014640659093857, -0.012647910974919796, -0.02273724228143692, 0.013219327665865421, -0.011564779095351696, -0.006950807757675648, 0.020246893167495728, 0.006183233577758074 ]
729,017
tables.atom
UInt64Atom
Defines an atom of type ``uint64``.
from tables.atom import UInt64Atom
(shape=(), dflt=0)
[ 0.017154013738036156, 0.04748794063925743, 0.03907023370265961, 0.03776230290532112, 0.04943307116627693, -0.01671803556382656, -0.047622088342905045, -0.030954357236623764, -0.0481586754322052, -0.01821041852235794, 0.0404452383518219, 0.06046663969755173, -0.017506148666143417, 0.06428982317447662, -0.03601839765906334, 0.021279023960232735, -0.007419990841299295, 0.0838417038321495, -0.014932207763195038, 0.06046663969755173, -0.040981825441122055, 0.03910377249121666, 0.0021610199473798275, 0.05627455189824104, -0.009071672335267067, -0.02114487811923027, -0.0005690755788236856, -0.044637322425842285, 0.018495479598641396, -0.05268612876534462, -0.026024464517831802, -0.03585071489214897, 0.011679149232804775, 0.007788894232362509, 0.01569516770541668, -0.08330512046813965, 0.04728672280907631, 0.07740266621112823, -0.0669727548956871, 0.0038944471161812544, 0.03281564265489578, -0.04255804792046547, 0.028271423652768135, -0.022704333066940308, -0.011402471922338009, -0.059091635048389435, 0.028472643345594406, -0.059561148285865784, -0.04835989698767662, -0.018814079463481903, -0.003240481950342655, -0.03450924530625343, 0.04393305256962776, 0.0243308637291193, -0.05007026717066765, 0.07458557933568954, -0.018327796831727028, 0.0476556271314621, -0.06224408373236656, 0.08565268665552139, -0.060634322464466095, 0.055436134338378906, 0.015267574228346348, -0.05030502378940582, 0.036554984748363495, -0.021128110587596893, -0.031038198620080948, 0.012425340712070465, -0.013464977964758873, 0.05171356350183487, -0.05671053007245064, 0.020054936408996582, -0.0012429532362148166, 0.026074770838022232, 0.03960682079195976, -0.02283848077058792, -0.01370811928063631, -0.0068456754088401794, 0.0017166589386761189, 0.012182199396193027, 0.06831422448158264, -0.005743156652897596, 0.06412213295698166, 0.04825928434729576, 0.010128078050911427, 0.03746047243475914, 0.06680507212877274, 0.07150020450353622, -0.039237916469573975, -0.01609760709106922, 0.004783169366419315, -0.04249097779393196, -0.04728672280907631, 0.027298860251903534, -0.014890287071466446, 0.005474863573908806, 0.024934522807598114, 0.006279743742197752, -0.07002459466457367, -0.03308393806219101, 0.026929955929517746, -0.04285987839102745, 0.007679900154471397, -0.029411669820547104, -0.0005811278242617846, 0.04688428342342377, -0.004443610552698374, -0.006975629832595587, -0.020943658426404, 0.011209635995328426, -0.05704589560627937, 0.041183046996593475, -0.011285093612968922, -0.04443610459566116, 0.017791209742426872, 0.026477210223674774, 0.036353763192892075, 0.020407071337103844, 0.07492094486951828, 0.0524849072098732, 0.04285987839102745, 0.018394870683550835, -0.0052736434154212475, 0.005692851729691029, 0.03268149867653847, 0.04285987839102745, 0.030753137543797493, 0.0351799800992012, -0.01836133375763893, 0.017455842345952988, 0.008912373334169388, -0.00003311092223157175, 0.01831102930009365, 0.05355808138847351, 0.017154013738036156, -0.037628158926963806, 0.019937558099627495, -0.021899454295635223, 0.02161439135670662, 0.018663164228200912, -0.00944057572633028, 0.06137212738394737, 0.04953368008136749, -0.061103835701942444, -0.04074706882238388, 0.03318454697728157, -0.0390031598508358, 0.047051966190338135, -0.002488002646714449, -0.014085406437516212, -0.020541217178106308, -0.02233543060719967, -0.014873518608510494, 0.08303682506084442, 0.0000747370213503018, 0.024666229262948036, 0.045978792011737823, -0.0886709913611412, 0.014445926062762737, -0.007302612531930208, -0.0016590177547186613, -0.030216550454497337, -0.006061755120754242, -0.05560382083058357, -0.03735986351966858, -0.0017386673716828227, -0.024112874642014503, -0.01867993175983429, -0.00954118650406599, -0.0008185046608559787, -0.01753968559205532, -0.039908651262521744, -0.013112843036651611, 0.015871234238147736, 0.026259222999215126, -0.03514644131064415, -0.040109872817993164, 0.024448242038488388, 0.007499640341848135, -0.003039261791855097, -0.000394842034438625, -0.00792723335325718, -0.025404036045074463, 0.0071181608363986015, 0.021698232740163803, 0.02768453024327755, 0.026661662384867668, -0.006996590178459883, 0.046079400926828384, -0.06117090955376625, 0.026058001443743706, -0.005219146143645048, -0.04151841253042221, 0.031876616179943085, 0.01093295868486166, -0.017011482268571854, 0.022972626611590385, -0.009348350577056408, -0.04876233637332916, -0.019015299156308174, -0.016994712874293327, 0.004766400903463364, 0.012551103718578815, 0.04996965825557709, 0.03142387047410011, -0.0963173508644104, 0.030317161232233047, 0.0011936962837353349, -0.021748539060354233, -0.043396465480327606, 0.0515458807349205, -0.01681864634156227, -0.0008986782631836832, 0.07103069126605988, -0.017925357446074486, -0.06190871447324753, -0.09041489660739899, -0.0007157985819503665, -0.006677991710603237, 0.011016800068318844, 0.09115270525217056, -0.02360982447862625, -0.00009681096707936376, -0.04681720957159996, 0.013934491202235222, -0.00013375372509472072, -0.004917316138744354, 0.04728672280907631, 0.04084767773747444, 0.0015426874160766602, 0.03209460526704788, 0.010413140058517456, -0.04101536050438881, 0.01525080669671297, 0.020155545324087143, 0.003148256102576852, -0.012274425476789474, 0.006510308478027582, -0.0010155326453968883, 0.0327318012714386, -0.053994059562683105, 0.013573972508311272, 0.06653677672147751, 0.035582419484853745, 0.035012297332286835, -0.00812845304608345, 0.02516927942633629, 0.03772876784205437, -0.06499408930540085, -0.018445175141096115, -0.03149094432592392, -0.05868919566273689, 0.04755501449108124, 0.007822430692613125, 0.0934331938624382, -0.021782075986266136, -0.019283592700958252, -0.011067105457186699, 0.004045362118631601, 0.006988205946981907, -0.010362834669649601, -0.040679994970560074, 0.0356159582734108, 0.003265634411945939, 0.01692764088511467, -0.025840014219284058, -0.04688428342342377, 0.08209779858589172, -0.019417738541960716, -0.003967808559536934, 0.07485387474298477, -0.01314637903124094, -0.03497875854372978, 0.00366597855463624, -0.031222650781273842, -0.044167809188365936, 0.06794531643390656, 0.03585071489214897, -0.00970048550516367, -0.025538183748722076, -0.03816474601626396, -0.006648647133260965, 0.008463820442557335, -0.0009626075625419617, -0.04047877714037895, 0.0197531059384346, 0.016030533239245415, -0.006715720519423485, -0.040679994970560074, -0.03236289694905281, 0.025387268513441086, 0.041283655911684036, -0.012760707177221775, 0.0325138121843338, 0.046079400926828384, 0.036085471510887146, -0.0024335056077688932, 0.04192085191607475, 0.06472579389810562, 0.040009260177612305, -0.0510428287088871, -0.007298420649021864, -0.006434850860387087, 0.015183732844889164, -0.007109776604920626, 0.006242014933377504, 0.026795808225870132, 0.0040872832760214806, 0.007591866422444582, 0.03977450355887413, 0.04111597314476967, -0.000027297679480398074, -0.040713533759117126, 0.028070202097296715, -0.003517159493640065, 0.030803442001342773, -0.0413842648267746, 0.0034773347433656454, 0.014571688137948513, 0.07237216085195541, -0.006015642546117306, -0.009633411653339863, 0.07357948273420334, -0.02371043525636196, -0.017472611740231514, -0.0875978171825409, -0.022150978446006775, -0.033888816833496094, 0.023240920156240463, 0.01129347737878561, -0.025135742500424385, -0.001045401208102703, 0.05704589560627937, 0.028489410877227783, -0.002072986215353012, 0.013540435582399368, 0.022704333066940308, -0.02464946173131466, -0.045609887689352036, -0.022704333066940308, 0.03524705395102501, 0.024263789877295494, 0.030266854912042618, -0.007906273007392883, 0.030216550454497337, -0.04215560853481293, -0.03227905556559563, -0.0029239794239401817, 0.050506241619586945, -0.007600250653922558, 0.017271392047405243, 0.02676227316260338, -0.0007042703218758106, 0.04024402052164078, 0.047152575105428696, 0.017053402960300446, -0.011352166533470154, -0.04507330060005188, -0.02753361687064171, 0.06160688400268555, -0.03528058901429176, -0.02619214914739132, 0.02813727594912052, -0.052551981061697006, -0.03776230290532112, -0.03803059831261635, -0.04594525322318077, 0.02017231471836567, 0.0654636025428772, 0.027248553931713104, -0.037426937371492386, -0.024833913892507553, -0.036152541637420654, 0.016323979943990707, 0.014873518608510494, 0.022771406918764114, -0.09182343631982803, 0.023324763402342796, -0.11254910379648209, -0.06526238471269608, 0.017422307282686234, -0.026058001443743706, -0.02875770442187786, 0.040411703288555145, 0.019317129626870155, 0.021279023960232735, -0.018814079463481903, 0.012920007109642029, -0.06378676742315292, 0.07814046740531921, -0.017304927110671997, 0.020608291029930115, 0.025689098984003067, -0.039338529109954834, -0.007537369150668383, 0.0741831436753273, 0.0017061787657439709, 0.006589957978576422, -0.01482321321964264, -0.0011999844573438168, 0.022922322154045105, -0.0018057407578453422, 0.004820898175239563, 0.06204286217689514, -0.019736338406801224, -0.007788894232362509, -0.0017994525842368603, -0.057750165462493896, -0.04269219562411308, -0.0361190065741539, -0.05265258997678757, 0.019568653777241707, 0.02860678918659687, 0.0022804944310337305, -0.009490881115198135, -0.027382701635360718, 0.0031524482183158398, -0.11623813956975937, 0.03920438140630722, -0.0023873925674706697, 0.021580854430794716, -0.031608324497938156, -0.033368997275829315, 0.06375323235988617, -0.01219058409333229, -0.029965026304125786, 0.01681864634156227, 0.039640359580516815, -0.05912517011165619, 0.05751540884375572, 0.019417738541960716, 0.021413171663880348, 0.017455842345952988, -0.05546967312693596, 0.025588488206267357, -0.011947442777454853, -0.018948225304484367, -0.07860998064279556, 0.028439106419682503, 0.027080871164798737, 0.045509278774261475, 0.06009773537516594, 0.04440256580710411, -0.02614184468984604, 0.036152541637420654, -0.0131212268024683, -0.04111597314476967, 0.05761602148413658, -0.006933709140866995, 0.00439749751240015, -0.022771406918764114, -0.028740936890244484, 0.02350921370089054, -0.043497078120708466, 0.018445175141096115, -0.07686607539653778, -0.07458557933568954, -0.03071960061788559, -0.029881183058023453, -0.023073237389326096, -0.010580822825431824, -0.03370436653494835, -0.02942843921482563, -0.0009798998944461346, 0.01324698980897665, -0.025336964055895805, -0.01018676720559597, -0.03224552050232887, -0.012634945102036, 0.0019231190672144294, -0.018126577138900757, -0.0022742063738405704, 0.019484812393784523, -0.010086157359182835, 0.026477210223674774, 0.014705834910273552, -0.024867448955774307, -0.01841163821518421, -0.0790124237537384, -0.07599411904811859, 0.0020310652907937765, -0.0413842648267746, 0.022654028609395027, -0.006011450197547674, -0.029143376275897026, 0.026879651471972466, 0.0073780701495707035, -0.026896419003605843, 0.038198281079530716, -0.05848797410726547, -0.03139033541083336, 0.07143313437700272, -0.03112204186618328, 0.006954669486731291, 0.10664664953947067, 0.005818614270538092, 0.007726013194769621, 0.014085406437516212, -0.04228975623846054, 0.02042383886873722, -0.00592760881409049, -0.01940097101032734, -0.028003130108118057, -0.053323324769735336, 0.0327318012714386, 0.04369829595088959, 0.005550320725888014, -0.039137307554483414, -0.013129611499607563, -0.035884249955415726, -0.007403222378343344, -0.053994059562683105, -0.023090004920959473, 0.00340187712572515, 0.03652144595980644, 0.008203910663723946, 0.02902599796652794, -0.050506241619586945, -0.019216518849134445, 0.012006131932139397, -0.05506723374128342, 0.0142027847468853, -0.021647928282618523, -0.0568111389875412, -0.02218451537191868, -0.012215736322104931, -0.06777763366699219, -0.0028170812875032425, 0.01237503532320261, -0.000016047826647991315, -0.021597623825073242, -0.021312560886144638, -0.03749401122331619, -0.04064645990729332, 0.0009835680248215795, 0.04131719097495079, 0.0018560457974672318, 0.002244861563667655, 0.05570442974567413, -0.023576287552714348, -0.028271423652768135, -0.033318694680929184, 0.033368997275829315, -0.0026682622265070677, 0.025186048820614815, 0.07002459466457367, -0.05483247712254524, 0.02330799400806427, 0.048494040966033936, 0.007323572877794504, -0.06107029691338539, 0.006170749664306641, 0.026359831914305687, -0.013909338973462582, -0.01898176223039627, 0.005529360380023718, 0.024682998657226562, -0.021379634737968445, 0.031876616179943085, 0.010941342450678349, 0.006409698165953159, 0.00822906382381916, -0.017422307282686234, 0.025605257600545883, -0.04275926947593689, 0.011813296005129814, -0.032597653567790985, -0.0635855495929718, -0.027718067169189453, 0.05724711716175079, -0.030216550454497337, 0.034240953624248505, 0.025990929454565048, -0.039640359580516815, 0.01883084699511528, -0.06375323235988617, -0.04148487746715546, -0.030367465689778328, 0.054664790630340576, -0.06190871447324753, -0.030904052779078484, 0.030082404613494873, 0.01847871206700802, -0.013817112892866135, 0.08940879255533218, 0.039640359580516815, -0.02079274319112301, 0.043396465480327606, 0.021128110587596893, -0.03410680592060089, -0.015443642623722553, -0.05406113341450691, -0.024347631260752678, 0.013993180356919765, -0.006359393242746592, 0.009298045188188553, -0.04742087051272392, -0.000777631823439151, -0.003028781618922949, 0.0020122008863836527, 0.05144527181982994, 0.03281564265489578, -0.03709157183766365, -0.006833098828792572, 0.03571656718850136, -0.02639336884021759, 0.019434507936239243, 0.006581573747098446, -0.014127327129244804, -0.004418457858264446, 0.00707624014467001, 0.009843016043305397, 0.0016621617833152413, -0.006669607479125261, -0.012073205783963203, -0.03330192714929581, 0.005797653924673796, -0.030317161232233047, -0.05218307673931122, 0.022402504459023476, -0.08156120777130127, 0.06526238471269608, -0.01703663542866707, -0.053591616451740265, 0.02691318839788437, 0.023140311241149902, -0.025336964055895805, 0.06807946413755417, 0.05375930294394493, -0.0385001115500927, -0.007759549655020237, 0.028841545805335045, 0.035683028399944305, -0.03340253606438637, 0.001959799788892269, -0.019333897158503532, -0.04567696154117584, -0.024431472644209862, 0.010287377052009106, 0.09859784692525864, 0.002762584248557687, 0.029814111068844795, -0.04151841253042221, 0.0005161504959687591, 0.023190615698695183, 0.035481810569763184, -0.012467261403799057, -0.03581717610359192, -0.02074243873357773, 0.028170812875032425, -0.017321696504950523, 0.007960770279169083, 0.06485994160175323, 0.015141812153160572, 0.02119518257677555, 0.014873518608510494, -0.06385384500026703, -0.028539717197418213, -0.006028218660503626, -0.004271734971553087, -0.03286594897508621, -0.03390558436512947, -0.06606726348400116, -0.0065857660956680775, -0.015762241557240486, -0.04074706882238388, 0.014085406437516212, 0.013490130193531513, 0.012827781029045582, 0.010773658752441406, 0.018143344670534134, 0.021111341193318367, 0.04084767773747444, -0.07425021380186081, 0.010069388896226883, -0.011318630538880825, 0.006715720519423485, 0.0452745221555233, 0.03425772115588188, 0.013154763728380203, -0.026661662384867668, -0.004095667507499456, -0.017472611740231514, -0.04594525322318077, -0.04346353933215141, 0.018596090376377106, -0.028522947803139687, 0.0761282667517662, -0.0413842648267746, -0.05406113341450691, -0.020507680252194405, -0.012433724477887154, -0.01753968559205532, 0.01645812764763832, -0.033838510513305664, 0.008937525562942028, -0.006715720519423485, 0.04822574928402901, 0.025957392528653145, -0.0009992882842198014, 0.016181448474526405, -0.027131175622344017, 0.015711935237050056, 0.02243603952229023, 0.011184483766555786, 0.054262351244688034, 0.004112435504794121, 0.006246207281947136, -0.03860072046518326, 0.031876616179943085, 0.018277492374181747, 0.053994059562683105, -0.040713533759117126, -0.030954357236623764, 0.004439418204128742, 0.05838736519217491, -0.0616404227912426, 0.10765275359153748, -0.04876233637332916, -0.006698952056467533, -0.002228093333542347, 0.04064645990729332, 0.0607013963162899, 0.042423903942108154, -0.016483278945088387, 0.018964994698762894, -0.030451307073235512, 0.021429939195513725, -0.01760675758123398, 0.02335829846560955, 0.03601839765906334, 0.011310245841741562, -0.0032069452572613955, 0.05546967312693596, -0.024247020483016968, 0.035481810569763184, -0.030317161232233047, -0.00493827648460865, 0.004001345485448837, 0.02062506042420864, -0.04312817379832268, 0.009608259424567223, -0.035112906247377396, 0.028740936890244484, -0.023140311241149902, 0.0216646958142519, -0.0011129986960440874, -0.002731143496930599, -0.014705834910273552, 0.012668482027947903, 0.04400012642145157, 0.03521351516246796, -0.04326232150197029, -0.003104239236563444, 0.08109169453382492, -0.02423025295138359, 0.05516784265637398, -0.003005725098773837, -0.024766840040683746, -0.044838543981313705, -0.021597623825073242, -0.024515314027667046, -0.04326232150197029, 0.00003086750439251773, -0.03719218075275421, 0.0011517754755914211, -0.0021463476587086916, 0.009784326888620853 ]
729,025
tables.description
UInt64Col
Defines a non-nested column of a particular type. The constructor accepts the same arguments as the equivalent `Atom` class, plus an additional ``pos`` argument for position information, which is assigned to the `_v_pos` attribute and an ``attrs`` argument for storing additional metadata similar to `table.attrs`, which is assigned to the `_v_col_attrs` attribute.
from tables.description import UInt64Col
(*args, **kwargs)
[ 0.0014708599774166942, 0.005134332459419966, 0.04720218852162361, 0.04723585769534111, 0.03999729081988335, -0.005664599593728781, -0.012945251539349556, -0.02545282058417797, -0.051343321800231934, -0.023769434541463852, 0.017860742285847664, 0.07083695381879807, -0.011968886479735374, 0.05029962211847305, -0.008888286538422108, 0.033718254417181015, 0.008168638683855534, 0.026378683745861053, 0.03248938173055649, 0.03410543501377106, -0.03021680936217308, 0.03147934749722481, 0.02764122560620308, 0.032725054770708084, -0.016387779265642166, 0.009822566993534565, -0.005327921826392412, -0.020453160628676414, 0.03461045026779175, -0.05242069065570831, -0.04730319231748581, -0.03494712710380554, -0.012347648851573467, 0.027927400544285774, -0.004073798190802336, -0.06794152408838272, 0.057639192789793015, -0.007360612507909536, -0.016522450372576714, -0.01164062600582838, 0.008240182884037495, -0.019796639680862427, 0.019291622564196587, -0.05905323848128319, -0.04289271682500839, -0.03504813089966774, 0.02338225394487381, -0.07110629230737686, -0.05205034464597702, -0.021412691101431847, -0.0036571596283465624, -0.0038844170048832893, 0.025368651375174522, 0.015983765944838524, -0.031142672523856163, 0.019426293671131134, -0.014502384699881077, 0.041141994297504425, -0.05683116614818573, 0.08592010289430618, -0.08282267302274704, 0.026294514536857605, -0.003669785102829337, -0.031681355088949203, 0.04504745453596115, -0.010554840788245201, -0.029004769399762154, 0.014409798197448254, 0.008046592585742474, 0.033802423626184464, -0.04285905137658119, 0.018887609243392944, 0.013483935035765171, 0.05514777824282646, 0.02168203331530094, -0.026412352919578552, -0.041647009551525116, -0.01910644955933094, 0.014258293434977531, 0.00279442360624671, 0.08228398859500885, -0.000757524452637881, 0.08652612566947937, 0.03659684956073761, 0.05376740172505379, 0.014325628988444805, 0.06309337168931961, 0.08666079491376877, -0.018483595922589302, 0.011573290452361107, 0.02388727106153965, -0.05568646267056465, -0.043296732008457184, 0.05104031413793564, -0.02291090600192547, -0.02185037173330784, 0.012423400767147541, 0.03602449595928192, -0.036967191845178604, -0.023752599954605103, 0.024207115173339844, -0.026294514536857605, 0.041647009551525116, -0.005891856737434864, 0.0010084544774144888, 0.005024912301450968, -0.011009355075657368, 0.012381316162645817, -0.015200990252196789, -0.018146919086575508, -0.014140455983579159, 0.01807958260178566, 0.01754090003669262, -0.07817652076482773, 0.031008001416921616, 0.018315257504582405, 0.03073865920305252, -0.025267649441957474, 0.05878389626741409, 0.03925659880042076, 0.03588982671499252, -0.018466763198375702, -0.00986465159803629, 0.00955322477966547, 0.013887948356568813, 0.033751923590898514, -0.0009763648267835379, 0.04353240504860878, -0.009410137310624123, 0.00859790202230215, 0.030435649678111076, -0.010933603160083294, 0.01376169454306364, 0.08268800377845764, 0.0478755459189415, -0.047505199909210205, 0.05908690765500069, 0.010285498574376106, 0.045417800545692444, 0.023028742522001266, -0.02597467228770256, 0.03656318038702011, 0.03986262157559395, -0.0424887053668499, 0.003629804588854313, 0.03514913469552994, -0.010150827467441559, 0.03491346165537834, -0.016051100566983223, -0.016455113887786865, -0.037169199436903, -0.022961407899856567, -0.01752406544983387, 0.028987934812903404, 0.017810242250561714, 0.010024573653936386, 0.025688495486974716, -0.0956164225935936, 0.023197082802653313, -0.01750723086297512, 0.026749029755592346, -0.03307856619358063, -0.026765864342451096, -0.05568646267056465, -0.044778112322092056, 0.007575244642794132, -0.015041069127619267, -0.02488046884536743, 0.0009384886361658573, -0.005651974119246006, 0.0036529512144625187, -0.03875158354640007, 0.008964039385318756, 0.04501378536224365, 0.007650997024029493, -0.007575244642794132, -0.02858392335474491, 0.029055271297693253, -0.004040130414068699, -0.03141201287508011, 0.0106053426861763, 0.018887609243392944, -0.016850709915161133, 0.0531950518488884, 0.022456390783190727, 0.007541576866060495, 0.02501513995230198, -0.010992521420121193, 0.03083966113626957, -0.0690862312912941, 0.013963700272142887, -0.014519218355417252, -0.028466084972023964, 0.011598541401326656, 0.021379023790359497, -0.021985042840242386, 0.0426233746111393, -0.006047570146620274, -0.04154600575566292, -0.010302332229912281, 0.006476833950728178, -0.007112313061952591, 0.019813472405076027, 0.040165629237890244, 0.029812796041369438, -0.07561777532100677, 0.04141133651137352, 0.0022178632207214832, -0.0425560399889946, -0.05460909754037857, 0.059154242277145386, -0.027691727504134178, -0.01969563588500023, 0.06777318567037582, 0.01434246264398098, -0.04494645074009895, -0.13076555728912354, -0.00880411732941866, -0.02558749169111252, 0.013416599482297897, 0.10228263586759567, -0.017810242250561714, -0.028903765603899956, -0.07056760787963867, 0.04285905137658119, -0.00903979130089283, 0.01807958260178566, 0.010765263810753822, 0.05407041311264038, -0.00009751812467584386, -0.0025755830574780703, 0.00786562915891409, -0.05460909754037857, 0.047572534531354904, 0.01279374584555626, 0.03824656829237938, -0.021328521892428398, 0.005866605788469315, 0.04073798283934593, -0.00036219137837179005, -0.0637667253613472, 0.006119114346802235, 0.0530603788793087, 0.0371355302631855, 0.007549993693828583, -0.018837107345461845, -0.0037834136746823788, 0.04733686149120331, -0.06167932227253914, -0.00037981432978995144, -0.02499830722808838, -0.07716649025678635, 0.05373373255133629, -0.007697290275245905, 0.0851120799779892, -0.0020726709626615047, -0.049020249396562576, -0.009132377803325653, -0.00043557657045312226, -0.015756508335471153, -0.023533759638667107, -0.0476398691534996, 0.0035477394703775644, 0.004410475492477417, 0.0370681956410408, -0.04343140125274658, -0.030031636357307434, 0.07002892345190048, -0.018769772723317146, -0.003154247533529997, 0.09144161641597748, 0.005858188960701227, -0.06215067207813263, -0.002977491822093725, -0.012558071874082088, -0.06033261492848396, 0.04740419611334801, 0.006750384345650673, 0.02437545359134674, -0.023617928847670555, -0.00033483633887954056, -0.0034719870891422033, -0.0027565471827983856, 0.02067200094461441, -0.003968586213886738, 0.03232104331254959, -0.03035147860646248, -0.023567426949739456, -0.05403674393892288, -0.008303309790790081, -0.0072175245732069016, 0.04602381959557533, -0.017322059720754623, 0.0478755459189415, 0.01813008449971676, 0.059625592082738876, 0.012978918850421906, 0.058514554053545, 0.05457542836666107, 0.026227179914712906, -0.095751091837883, -0.0003908615617547184, 0.01144703570753336, 0.03811189532279968, -0.046461500227451324, 0.005706684198230505, 0.0014245668426156044, -0.050164952874183655, -0.007987674325704575, 0.021059179678559303, 0.03075549192726612, 0.007486866787075996, -0.03605816513299942, 0.047000184655189514, 0.0006070716772228479, 0.012406567111611366, -0.057033173739910126, 0.037371207028627396, 0.008863035589456558, 0.06302603334188461, 0.001038439804688096, -0.01642986387014389, 0.04838056117296219, -0.01969563588500023, 0.03521646931767464, -0.0634637176990509, -0.004995452705770731, -0.037404872477054596, 0.03019997477531433, 0.0024198696482926607, -0.02222071774303913, -0.007752000354230404, 0.06807619333267212, 0.029055271297693253, 0.00806763581931591, 0.005967609118670225, 0.008543192408978939, -0.033263739198446274, -0.0745404064655304, 0.016387779265642166, 0.03568781912326813, -0.006720925215631723, 0.046528834849596024, -0.01011716015636921, 0.04343140125274658, -0.047841876745224, -0.021109681576490402, -0.03334790840744972, 0.044845446944236755, 0.002089504851028323, 0.03075549192726612, -0.039593279361724854, 0.01010032556951046, 0.03972794860601425, 0.015579752624034882, -0.00244512059725821, 0.0036908274050801992, -0.032674554735422134, -0.010723179206252098, 0.074338398873806, 0.00677984394133091, -0.04615848883986473, 0.023634763434529305, -0.05747085437178612, -0.03343207761645317, 0.0021905081812292337, -0.058110542595386505, -0.00476398691534996, 0.0476062037050724, 0.06410340219736099, -0.02232171967625618, -0.010916768573224545, -0.006077029276639223, 0.004134820774197578, -0.0016434071585536003, -0.026951037347316742, -0.0954144150018692, 0.02865125797688961, -0.10995887964963913, -0.06050095334649086, 0.0044904365204274654, -0.024594293907284737, -0.026850033551454544, 0.0636657178401947, -0.0026997330132871866, 0.022052377462387085, -0.03304490074515343, 0.00595498364418745, -0.07319369912147522, 0.03626016899943352, -0.04992927983403206, 0.0425560399889946, 0.014704391360282898, -0.001742306281812489, 0.000127306193462573, 0.033701419830322266, 0.008071843534708023, 0.008391687646508217, 0.021446358412504196, -0.010748430155217648, -0.027388717979192734, -0.02023432031273842, 0.002068462548777461, 0.06646014750003815, -0.03403809666633606, 0.00871994812041521, 0.017389394342899323, -0.030873330309987068, -0.03237154334783554, -0.04471077769994736, -0.03669784963130951, 0.0211601834744215, 0.027321381494402885, -0.0032300001475960016, 0.002154736313968897, -0.030923832207918167, -0.003495133714750409, -0.1005319133400917, 0.029492951929569244, 0.01745673082768917, 0.03134467825293541, -0.03784255310893059, -0.03929026797413826, 0.0742037296295166, -0.016589784994721413, -0.003455153200775385, 0.00231676222756505, 0.039088260382413864, -0.030031636357307434, 0.02445962280035019, -0.004646149929612875, 0.02971179224550724, 0.010832599364221096, -0.03787622228264809, 0.03881891816854477, -0.03511546552181244, -0.006241159979254007, -0.06474308669567108, 0.010218163020908833, 0.021042345091700554, 0.05609047785401344, 0.02067200094461441, 0.027691727504134178, -0.015781760215759277, 0.06565211713314056, -0.028449252247810364, -0.0478755459189415, 0.057033173739910126, -0.030620820820331573, 0.007440573535859585, 0.013088339008390903, 0.003528801491484046, 0.030082138255238533, -0.05201667919754982, 0.01385428011417389, -0.042758047580718994, -0.07366504520177841, -0.016615036875009537, -0.01760823465883732, -0.014695974066853523, -0.017658736556768417, -0.013913199305534363, -0.016833877190947533, -0.005416299682110548, 0.02013331651687622, -0.031075336039066315, -0.02328125201165676, -0.03343207761645317, -0.003968586213886738, 0.024240782484412193, -0.018365759402513504, -0.00020042834512423724, 0.031159505248069763, -0.011118775233626366, 0.032085370272397995, 0.016615036875009537, -0.03602449595928192, 0.008088678121566772, -0.07736849784851074, -0.051781006157398224, 0.013239843770861626, -0.04306105524301529, 0.018163753673434258, -0.038953591138124466, -0.0046335244551301, 0.025823166593909264, -0.02072250284254551, -0.019762970507144928, -0.005875023081898689, -0.06053461879491806, -0.032152704894542694, 0.07844586670398712, -0.043263062834739685, 0.017759740352630615, 0.11191160976886749, -0.014089955016970634, 0.038448575884103775, -0.002825987059623003, -0.06211700290441513, 0.03388659283518791, 0.0013688046019524336, -0.0009006123873405159, -0.030704990029335022, -0.05053529888391495, 0.029930632561445236, 0.0015613420400768518, 0.03464411944150925, 0.000046194523747544736, -0.016850709915161133, -0.048515234142541885, -0.003713974030688405, -0.02434178628027439, -0.037371207028627396, 0.0006512606050819159, 0.004957576747983694, -0.0052774203941226006, 0.025840001180768013, -0.036428507417440414, -0.020907673984766006, 0.029930632561445236, -0.047471530735492706, 0.02171570062637329, -0.031597185879945755, -0.03787622228264809, -0.008496899157762527, 0.02863442339003086, -0.050703637301921844, 0.004612482152879238, 0.02971179224550724, 0.027742229402065277, -0.03858324512839317, 0.005782436579465866, -0.009368052706122398, -0.031024834141135216, -0.01403103582561016, 0.06652747839689255, -0.004410475492477417, 0.022035544738173485, 0.05205034464597702, -0.05460909754037857, -0.011463870294392109, -0.009174462407827377, 0.01688437908887863, -0.0006875586695969105, -0.00032326302607543766, 0.07366504520177841, -0.04868357256054878, 0.03078916110098362, 0.03562048450112343, -0.023668430745601654, -0.058716561645269394, 0.041074659675359726, 0.052824705839157104, -0.058649227023124695, 0.00037218647776171565, 0.03615916520357132, 0.034812457859516144, -0.010420169681310654, 0.030671322718262672, 0.007987674325704575, -0.01089993491768837, -0.023112911731004715, 0.01516732294112444, 0.029492951929569244, -0.031597185879945755, 0.031193172559142113, -0.02025115303695202, -0.045889146625995636, -0.04875090718269348, 0.030603988096117973, -0.03289339318871498, 0.04363340884447098, 0.015243074856698513, -0.022591061890125275, -0.001192048890516162, -0.08942155539989471, -0.03929026797413826, -0.007642580196261406, 0.04814488813281059, -0.064036063849926, -0.05147799476981163, 0.031193172559142113, 0.024728965014219284, 0.014998983591794968, 0.041108325123786926, -0.003943335730582476, -0.019291622564196587, 0.03186652809381485, 0.003989628981798887, -0.021631531417369843, -0.007448990363627672, -0.04905391484498978, -0.03777521848678589, 0.0035919283982366323, 0.0029290944803506136, 0.028314581140875816, -0.06120797619223595, 0.0010805244091898203, 0.007810918614268303, 0.022624731063842773, 0.034256938844919205, 0.02543598785996437, -0.016901211813092232, -0.005327921826392412, 0.04393641650676727, -0.007844586856663227, 0.014704391360282898, 0.019931310787796974, -0.009469055570662022, 0.005218501668423414, -0.02819674275815487, 0.049626268446445465, 0.009570058435201645, -0.006295870058238506, -0.035351142287254333, -0.062319010496139526, -0.009376469068229198, -0.04339773207902908, -0.019779805094003677, -0.01850043050944805, -0.09642444550991058, 0.08928687870502472, 0.020032312721014023, -0.039020925760269165, 0.006746176164597273, 0.0026555440854281187, -0.04952526465058327, 0.05029962211847305, 0.0372365340590477, -0.04104099050164223, -0.008879870176315308, 0.014653889462351799, 0.055585458874702454, -0.00906504224985838, 0.0029501367826014757, -0.0425560399889946, -0.04289271682500839, -0.021429525688290596, 0.018820274621248245, 0.09514506906270981, 0.038414906710386276, 0.03615916520357132, -0.05043429508805275, 0.00023146580497268587, 0.01516732294112444, 0.05932258069515228, -0.022675231099128723, -0.05083830654621124, -0.026782697066664696, -0.01350918598473072, -0.032691389322280884, 0.007768834009766579, 0.07864787429571152, -0.010016156360507011, 0.01483064517378807, -0.013433433137834072, -0.043835416436195374, -0.023163413628935814, -0.008059218525886536, -0.02173253521323204, -0.023129746317863464, -0.05932258069515228, -0.023483257740736008, -0.02713620848953724, 0.007697290275245905, -0.026749029755592346, 0.05097297951579094, 0.021362189203500748, -0.01701904833316803, 0.014502384699881077, 0.0317486897110939, 0.01804591529071331, 0.011943635530769825, -0.07581978291273117, 0.011918384581804276, -0.011228195391595364, -0.007440573535859585, 0.013938450254499912, 0.056561823934316635, 0.011110358871519566, 0.003261563600972295, 0.007650997024029493, -0.035317473113536835, -0.0317823588848114, -0.03834757208824158, 0.03376875817775726, -0.03294389694929123, 0.0344252772629261, -0.03649584576487541, -0.058076873421669006, -0.01382061280310154, -0.029055271297693253, -0.04420575872063637, 0.019897641614079475, -0.04370074346661568, -0.008240182884037495, 0.03945860639214516, 0.03242204710841179, 0.034812457859516144, 0.03454311564564705, 0.005504677537828684, -0.004604065325111151, 0.013887948356568813, 0.05989493429660797, 0.03253988176584244, 0.04999661445617676, 0.021109681576490402, -0.0022578437346965075, -0.016455113887786865, 0.003345733042806387, 0.02063833363354206, 0.05683116614818573, -0.05514777824282646, -0.04838056117296219, 0.015057902783155441, 0.057571858167648315, -0.0799272432923317, 0.09420237690210342, -0.061948664486408234, -0.01112719252705574, 0.050164952874183655, 0.046528834849596024, 0.04423942789435387, 0.03875158354640007, -0.05205034464597702, 0.03026730939745903, -0.03304490074515343, 0.028011569753289223, 0.0021294853650033474, 0.02863442339003086, 0.03871791437268257, -0.011867882683873177, 0.01402261946350336, 0.03134467825293541, -0.03831390291452408, 0.014502384699881077, -0.036327507346868515, -0.011480703949928284, 0.015849094837903976, -0.006670423783361912, -0.05481110140681267, 0.0477745421230793, -0.0059213158674538136, 0.03656318038702011, -0.04572080820798874, 0.037505876272916794, 0.000800661277025938, 0.013896364718675613, -0.009511140175163746, 0.022052377462387085, 0.023769434541463852, 0.040670644491910934, -0.07555043697357178, -0.011320781894028187, 0.06672948598861694, -0.03605816513299942, 0.030486149713397026, 0.011337615549564362, -0.03444211184978485, -0.03777521848678589, -0.005361589603126049, -0.01536932960152626, -0.025621160864830017, -0.005454176105558872, -0.02442595548927784, 0.0023672638926655054, 0.019914476200938225, 0.015436665154993534 ]
729,033
tables.atom
UInt8Atom
Defines an atom of type ``uint8``.
from tables.atom import UInt8Atom
(shape=(), dflt=0)
[ 0.0001870414853328839, 0.010117243975400925, -0.006588960997760296, -0.0055177235044538975, 0.011919643729925156, -0.006435927469283342, -0.03931271657347679, 0.015626465901732445, -0.05774480476975441, -0.03645608574151993, 0.042101334780454636, 0.021900856867432594, -0.002004319569095969, 0.03873458877205849, -0.0282942745834589, 0.03011367842555046, 0.018092012032866478, 0.06719890236854553, -0.017785944044589996, 0.07583681493997574, -0.04342763125896454, 0.03856455162167549, 0.005543229170143604, 0.05947919189929962, -0.0013241686392575502, 0.004748302977532148, -0.03995886072516441, -0.06250586360692978, 0.015192869119346142, -0.07141583412885666, -0.04274747893214226, -0.04148920252919197, 0.005453959573060274, 0.027784161269664764, 0.018313061445951462, -0.03570791706442833, 0.05342584848403931, 0.08189015835523605, -0.02059156633913517, 0.003711072960868478, 0.021135687828063965, -0.059683237224817276, 0.005679259542375803, -0.01911223866045475, 0.021033665165305138, -0.05291573330760002, 0.024859512224793434, -0.04893685132265091, -0.03193308040499687, -0.006741994991898537, 0.020166471600532532, -0.021747823804616928, 0.043189577758312225, 0.008875967934727669, -0.03679616004228592, 0.04485594853758812, -0.027699142694473267, 0.04162523150444031, -0.07712910324335098, 0.07610888034105301, -0.05325581133365631, 0.06339006125926971, 0.016986766830086708, -0.031116900965571404, 0.022172916680574417, -0.012922866269946098, 0.0007492286385968328, -0.017097292467951775, -0.01342447753995657, 0.049855057150125504, -0.0697154626250267, 0.05067123845219612, -0.0058280425146222115, 0.02861734665930271, 0.031831059604883194, -0.03283428028225899, -0.005853548180311918, -0.024536442011594772, -0.022342955693602562, 0.0058280425146222115, 0.06359410285949707, 0.019945424050092697, 0.040605004876852036, 0.060057319700717926, 0.017054781317710876, 0.014470209367573261, 0.045434076339006424, 0.05121535807847977, -0.055330269038677216, -0.008684676140546799, -0.00485882768407464, -0.04642029479146004, -0.05036516860127449, 0.04475392401218414, 0.026695920154452324, -0.005109633319079876, 0.03628604859113693, -0.01560095977038145, -0.05913911387324333, -0.070463627576828, -0.0011923894053325057, -0.015014329925179482, 0.003893863409757614, -0.04784861207008362, -0.012030167505145073, 0.03921069577336311, 0.005377442575991154, 0.014419198036193848, -0.025607679039239883, -0.001938429893925786, -0.03713623434305191, 0.032562222331762314, -0.03019869700074196, -0.03092985972762108, 0.024111347272992134, -0.016638189554214478, 0.024808501824736595, 0.03703421354293823, 0.06383215636014938, 0.026627905666828156, 0.04216935113072395, 0.02718902938067913, -0.009011998772621155, -0.01175810769200325, 0.05482015758752823, 0.07678902894258499, 0.048766814172267914, 0.04019691422581673, -0.016799725592136383, 0.029110455885529518, -0.028532328084111214, 0.01766691729426384, -0.020387521013617516, 0.02540363371372223, 0.014368186704814434, -0.025811724364757538, 0.025216592475771904, -0.047576550394296646, 0.0041723004542291164, -0.0023167638573795557, -0.0026058279909193516, 0.05012711510062218, 0.05947919189929962, -0.05454809591174126, -0.04301954060792923, 0.007800479885190725, 0.00954761728644371, 0.010219266638159752, -0.011435035616159439, 0.003396503161638975, -0.024026328697800636, -0.014461707323789597, -0.053901951760053635, 0.07032759487628937, 0.006848268676549196, 0.043495647609233856, 0.0558403842151165, -0.09535714983940125, 0.03014768660068512, -0.017496880143880844, -0.01941830664873123, -0.007048062980175018, -0.017190812155604362, -0.04642029479146004, -0.030334727838635445, 0.020438533276319504, -0.039924852550029755, -0.00993870384991169, 0.002082961844280362, -0.01104394905269146, -0.03383750468492508, -0.03849653899669647, -0.021186698228120804, 0.03560589626431465, 0.03084484115242958, -0.042033322155475616, -0.03893863409757614, 0.033684469759464264, 0.037680357694625854, -0.026202810928225517, 0.0165786761790514, 0.0002553222584538162, -0.0419653058052063, 0.00016405982023570687, 0.033701471984386444, 0.024723483249545097, 0.04890284314751625, 0.005942817777395248, 0.026746932417154312, -0.06648474186658859, 0.033684469759464264, -0.013866575434803963, -0.026559889316558838, 0.058288928121328354, 0.010380801744759083, -0.05441206693649292, 0.054582104086875916, 0.011817621067166328, -0.03242618963122368, -0.03336139768362045, 0.0031988343689590693, -0.004829070996493101, 0.010168255306780338, 0.04145519435405731, 0.03019869700074196, -0.0876714438199997, 0.038428522646427155, -0.018602125346660614, -0.00902050081640482, -0.042781487107276917, 0.025216592475771904, -0.03152498975396156, 0.03274926170706749, 0.033701471984386444, -0.004956599324941635, -0.06274391710758209, -0.09399684518575668, -0.011494548991322517, 0.008697428740561008, 0.020506547763943672, 0.06828714162111282, 0.007128830999135971, -0.007570928893983364, -0.023448200896382332, 0.018942201510071754, -0.009386081248521805, -0.0492769293487072, 0.04563812166452408, 0.018126020208001137, 0.006486938800662756, 0.017097292467951775, 0.012769832275807858, -0.027631128206849098, -0.01880617067217827, 0.023431196808815002, 0.051351387053728104, 0.015532944351434708, 0.012591292150318623, -0.02424737811088562, 0.024060335010290146, -0.025964757427573204, 0.01764991506934166, 0.06100952997803688, 0.004922591615468264, 0.02938251569867134, -0.010006719268858433, 0.05839094892144203, 0.018551113083958626, -0.06213177740573883, -0.029841618612408638, -0.043869730085134506, -0.07488460838794708, 0.04849475622177124, -0.02057456225156784, 0.08637915551662445, -0.054582104086875916, -0.0014538223622366786, -0.009037503972649574, 0.023295165970921516, 0.026729928329586983, -0.04523003101348877, -0.006631470751017332, 0.06927336007356644, 0.03125293180346489, 0.03608200326561928, -0.015873020514845848, -0.06944339722394943, 0.08127802610397339, -0.008365855552256107, -0.02540363371372223, 0.08325046300888062, -0.009207542054355145, -0.04448186606168747, 0.01576249487698078, -0.03164401650428772, -0.04451587051153183, 0.03761234134435654, 0.023363180458545685, 0.007099074311554432, -0.034058552235364914, -0.02502955123782158, -0.027104010805487633, 0.008467878215014935, -0.007932258769869804, -0.029161466285586357, 0.006095851771533489, 0.00902050081640482, -0.029603565111756325, -0.017615906894207, -0.05012711510062218, 0.030300719663500786, 0.04414178803563118, -0.03965279459953308, 0.005343434866517782, 0.06393417716026306, 0.04410777986049652, 0.013858073391020298, 0.05665656551718712, 0.05985327437520027, 0.021883852779865265, -0.012701816856861115, -0.04155721515417099, 0.011511553078889847, 0.017717929556965828, -0.04604621231555939, 0.0034730201587080956, 0.026202810928225517, 0.03492574393749237, -0.01546492986381054, 0.013050394132733345, 0.042067330330610275, 0.004374220035970211, -0.020336510613560677, 0.02091463841497898, -0.024519437924027443, 0.021798834204673767, -0.016391634941101074, 0.005207404959946871, 0.018670139834284782, 0.05448008328676224, -0.020863626152276993, -0.0520995557308197, 0.05264367535710335, -0.02946753427386284, -0.014053616672754288, -0.07814933359622955, 0.007298868615180254, -0.05325581133365631, 0.013688035309314728, 0.011273500509560108, -0.008591155521571636, -0.025658689439296722, 0.044617895036935806, 0.039924852550029755, -0.016714707016944885, 0.003035173052921891, -0.003285978687927127, -0.023312170058488846, -0.05322180315852165, -0.012055673636496067, 0.06900130212306976, 0.028379293158650398, 0.02681494690477848, -0.013356462121009827, 0.04475392401218414, -0.04971902444958687, -0.03965279459953308, -0.004480493720620871, 0.03907466679811478, 0.03354844078421593, 0.03392252326011658, 0.024859512224793434, 0.0021807337179780006, 0.053017757833004, 0.050943296402692795, 0.007073568645864725, 0.0017535138176754117, -0.06250586360692978, 0.01248076744377613, 0.03975481539964676, 0.0025803223252296448, -0.014461707323789597, 0.025913747027516365, -0.042781487107276917, -0.06019334867596626, -0.056758586317300797, -0.053017757833004, 0.064478300511837, 0.025233596563339233, 0.05158944055438042, -0.023244155570864677, 0.017114294692873955, -0.034721698611974716, 0.00921604409813881, -0.005662255920469761, 0.019928419962525368, -0.07481659203767776, 0.02647487074136734, -0.10188659280538559, -0.07168789952993393, 0.025539664551615715, -0.003660061629489064, -0.06345807015895844, 0.029688583686947823, 0.011060953140258789, 0.003972506150603294, -0.006567706353962421, 0.004812067374587059, -0.05587439239025116, 0.06512444466352463, -0.011418032459914684, 0.029688583686947823, 0.04567212983965874, -0.042849503457546234, 0.0035984229762107134, 0.06291395425796509, 0.011358519084751606, 0.0213567353785038, 0.028600342571735382, 0.024791497737169266, 0.026950975880026817, 0.005568734835833311, -0.0033391155302524567, 0.05577236786484718, -0.012115187011659145, 0.0025378128048032522, 0.0009564621141180396, -0.051725469529628754, -0.049514979124069214, -0.03210311755537987, -0.036252040416002274, 0.01943531073629856, 0.004633527714759111, -0.014096125960350037, -0.02718902938067913, -0.017734933644533157, 0.01989441178739071, -0.09834980964660645, 0.02610078826546669, 0.008731435984373093, 0.0013645526487380266, -0.01982639729976654, -0.015328899025917053, 0.07032759487628937, 0.013917586766183376, -0.025556666776537895, 0.02866835705935955, 0.05502420291304588, -0.0537659227848053, 0.043155569583177567, 0.025828728452324867, -0.011817621067166328, 0.023346178233623505, -0.08345450460910797, 0.014980321750044823, 0.004935344681143761, -0.02358422987163067, -0.07631292194128036, 0.05366390198469162, 0.04560411348938942, 0.055704351514577866, 0.057948850095272064, 0.045774150639772415, -0.025590674951672554, 0.03638806939125061, -0.00902900192886591, -0.048018649220466614, 0.053119778633117676, 0.024740487337112427, -0.003543160855770111, -0.03999286890029907, -0.03300431743264198, 0.011945148929953575, -0.04448186606168747, 0.056112442165613174, -0.0771971195936203, -0.03652409836649895, -0.01654466986656189, -0.04597819596529007, -0.030300719663500786, -0.014283167198300362, 0.003485772991552949, -0.024927528575062752, -0.010567843914031982, 0.0077749742195010185, -0.026712924242019653, 0.01527788769453764, -0.030334727838635445, -0.009845183230936527, -0.030963866040110588, -0.03666013106703758, -0.011817621067166328, 0.020642578601837158, -0.015116352587938309, 0.03859855979681015, -0.007005553692579269, -0.035537879914045334, -0.011919643729925156, -0.09080013632774353, -0.057472746819257736, 0.0073328763246536255, -0.037000205367803574, 0.003317860886454582, -0.011902639642357826, -0.03502776846289635, 0.011273500509560108, 0.03791840746998787, -0.01839808002114296, -0.0010303222807124257, -0.0805978775024414, -0.035435859113931656, 0.05414000526070595, -0.044277820736169815, 0.009607130661606789, 0.11358518898487091, 0.025080561637878418, 0.006202125456184149, 0.02167980745434761, -0.04488995671272278, 0.013671032153069973, 0.013245937414467335, -0.043189577758312225, -0.0655665397644043, -0.05427603796124458, -0.008374357596039772, 0.03346342220902443, 0.047950632870197296, -0.05437805876135826, 0.01047432329505682, -0.01688474416732788, -0.008892972022294998, -0.009785669855773449, -0.0455360971391201, 0.009683647193014622, 0.04410777986049652, 0.011035447008907795, 0.00262495712377131, -0.06883126497268677, -0.023703256621956825, 0.029960643500089645, -0.038394514471292496, 0.014215152710676193, 0.00972615648061037, -0.04965101182460785, -0.0123192323371768, 0.0026738429442048073, -0.059751249849796295, -0.023771271109580994, 0.0054029482416808605, 0.008867466822266579, -0.0217308197170496, -0.024791497737169266, -0.014920809306204319, -0.01542242057621479, -0.003968255128711462, 0.019401302561163902, 0.012030167505145073, 0.022547001019120216, 0.05291573330760002, -0.013245937414467335, -0.03159300610423088, -0.030436750501394272, 0.019690366461873055, -0.011919643729925156, 0.024553444236516953, 0.04954898729920387, -0.05692862346768379, 0.0015090847155079246, 0.01267631072551012, 0.03152498975396156, -0.09447295218706131, 0.012064175680279732, 0.020370516926050186, 0.014257661998271942, -0.015728488564491272, 0.0033199861645698547, 0.020642578601837158, -0.004591017961502075, 0.042407404631376266, 0.014555227942764759, 0.0008523139986209571, 0.0024421666748821735, -0.027767157182097435, 0.031388960778713226, -0.0700555369257927, 0.0223939660936594, -0.04363167658448219, -0.03341240808367729, -0.0008857902139425278, 0.045400068163871765, -0.01396859809756279, 0.030980870127677917, 0.024400411173701286, -0.03982283174991608, 0.03825848549604416, -0.050195131450891495, -0.03601398691534996, -0.008149057626724243, 0.05138539522886276, -0.05169146507978439, -0.04475392401218414, 0.02133973315358162, 0.030249709263443947, -0.02275104448199272, 0.07964566349983215, 0.029195474460721016, -0.02570970170199871, 0.052031539380550385, 0.003279602387920022, -0.03669413924217224, -0.0030075418762862682, -0.06284593790769577, -0.003115941071882844, 0.006584710441529751, -0.028838396072387695, 0.004063901025801897, -0.03798642382025719, -0.00016857644368428737, -0.004718546289950609, -0.018143024295568466, 0.03856455162167549, 0.03196708858013153, -0.03713623434305191, -0.0013071649009361863, 0.0676409974694252, -0.009819678030908108, 0.030232705175876617, -0.00679300632327795, 0.00780898192897439, 0.0005220688763074577, 0.023397188633680344, -0.002154165180400014, -0.002807747572660446, -0.02501254715025425, -0.0339055173099041, -0.03055577538907528, 0.008183064870536327, -0.018568117171525955, -0.05067123845219612, 0.04482194036245346, -0.04407377541065216, 0.07352430373430252, 0.00034166951081715524, -0.031184915453195572, 0.009165032766759396, 0.034364622086286545, -0.027121014893054962, 0.054242029786109924, 0.044277820736169815, -0.06111155077815056, 0.014283167198300362, 0.026389852166175842, 0.00432533398270607, -0.023431196808815002, -0.014300171285867691, -0.03273225948214531, -0.030980870127677917, -0.02057456225156784, 0.018840178847312927, 0.08773946017026901, 0.006078848149627447, 0.01952032931149006, -0.0039895097725093365, 0.014062118716537952, 0.03720425069332123, 0.035231813788414, -0.014555227942764759, -0.049140896648168564, -0.036592114716768265, 0.011299005709588528, -0.010644360445439816, 0.022700034081935883, 0.03751031681895256, 0.02132272906601429, 0.006440178025513887, 0.016476653516292572, -0.03856455162167549, -0.01727583073079586, -0.00809379480779171, 0.004463489633053541, -0.043869730085134506, -0.014036612585186958, -0.05587439239025116, -0.007434898987412453, 0.016748715192079544, 0.0014283166965469718, 0.021458758041262627, 0.0033901268616318703, -0.0004458176263142377, -0.00633815536275506, -0.005360438954085112, 0.04301954060792923, 0.011264998465776443, -0.07379636913537979, 0.030011655762791634, 0.004008639138191938, 0.004671785980463028, 0.018874185159802437, 0.04339362308382988, -0.007422145921736956, -0.007086321711540222, 0.012463764287531376, 0.005288172513246536, -0.0449579693377018, -0.04815467819571495, 0.01139252632856369, -0.04305354878306389, 0.042781487107276917, 0.004029893781989813, -0.06495440751314163, -0.02902543731033802, 0.009241549298167229, -0.022649023681879044, 0.01580500416457653, -0.04482194036245346, 0.03740829601883888, -0.016459649428725243, 0.006287144497036934, 0.005713266786187887, 0.009998217225074768, 0.03965279459953308, -0.04846074804663658, -0.01916324906051159, 0.011987658217549324, 0.02166280336678028, 0.08291038870811462, 0.0041765510104596615, -0.032511208206415176, -0.05801686644554138, 0.04890284314751625, 0.013152416795492172, 0.07406842708587646, -0.06893328577280045, -0.05652053281664848, -0.007243606261909008, 0.03164401650428772, -0.04312156140804291, 0.09671744704246521, -0.04223736748099327, 0.03717024251818657, -0.020166471600532532, 0.01912924274802208, 0.05502420291304588, 0.05026314780116081, -0.04305354878306389, 0.014232155866920948, -0.05118134990334511, 0.04597819596529007, -0.0637301355600357, 0.036932189017534256, 0.03713623434305191, 0.012191703543066978, -0.025862734764814377, 0.06403619796037674, -0.03188207000494003, 0.020387521013617516, -0.013254439458251, -0.011885635554790497, 0.03259623050689697, 0.006903531029820442, -0.03383750468492508, -0.02099965699017048, -0.04774658754467964, 0.025284606963396072, -0.015728488564491272, 0.02606678009033203, 0.023295165970921516, -0.003322111675515771, -0.010397805832326412, 0.05849297344684601, 0.03574192523956299, 0.013900582678616047, -0.021968871355056763, -0.007388138212263584, 0.058833047747612, -0.009309564717113972, 0.03261323273181915, 0.014708261936903, -0.03893863409757614, -0.009233047254383564, -0.036898184567689896, -0.0009182036155834794, -0.037374287843704224, 0.012174700386822224, -0.019367294386029243, 0.010440315119922161, 0.010814398527145386, 0.024026328697800636 ]
729,041
tables.description
UInt8Col
Defines a non-nested column of a particular type. The constructor accepts the same arguments as the equivalent `Atom` class, plus an additional ``pos`` argument for position information, which is assigned to the `_v_pos` attribute and an ``attrs`` argument for storing additional metadata similar to `table.attrs`, which is assigned to the `_v_col_attrs` attribute.
from tables.description import UInt8Col
(*args, **kwargs)
[ -0.010896371677517891, -0.02316324971616268, 0.005731592886149883, 0.006641034036874771, 0.002027207287028432, -0.0009966838406398892, 0.0014328982215374708, 0.011446266435086727, -0.053229790180921555, -0.04162278771400452, 0.019474726170301437, 0.028831394389271736, -0.0028996362816542387, 0.020422236993908882, -0.0009321770048700273, 0.045446667820215225, 0.024753713980317116, 0.005896561313420534, 0.02832379937171936, 0.04845839738845825, -0.03356894478201866, 0.027748525142669678, 0.03164008632302284, 0.03446569666266441, -0.008882911875844002, 0.0321815200150013, -0.03878025338053703, -0.037257470190525055, 0.04053991660475731, -0.06801772117614746, -0.06788236647844315, -0.03258759528398514, -0.020676035434007645, 0.04893215373158455, -0.0010701793944463134, -0.017562786117196083, 0.06253569573163986, -0.002681793412193656, 0.024736793711781502, -0.009635844267904758, -0.0028763713780790567, -0.035362448543310165, -0.006547974888235331, -0.050285741686820984, -0.011116329580545425, -0.034431856125593185, 0.013823502697050571, -0.06625805795192719, -0.04257029667496681, -0.015253228135406971, 0.020472995936870575, 0.004293407313525677, 0.024060001596808434, 0.006294177379459143, -0.017850423231720924, -0.012579894624650478, -0.025481266900897026, 0.035193249583244324, -0.0663934201002121, 0.07613924145698547, -0.07018346339464188, 0.03783274441957474, -0.006002310197800398, -0.008269567973911762, 0.032570675015449524, -0.004547204822301865, 0.0026352638378739357, -0.01582004316151142, 0.012148438952863216, 0.03715595230460167, -0.059490129351615906, 0.04998118430376053, 0.017258228734135628, 0.05583544448018074, 0.023010971024632454, -0.0399308018386364, -0.037054430693387985, -0.04324708878993988, -0.004390696529299021, -0.001719477935694158, 0.06666413694620132, 0.022486455738544464, 0.058271899819374084, 0.04656337574124336, 0.05813654139637947, -0.001378966262564063, 0.057865824550390244, 0.06713788956403732, -0.02622574009001255, 0.017241308465600014, 0.010033460333943367, -0.055936962366104126, -0.047747764736413956, 0.06382160633802414, 0.013155168853700161, -0.03153856843709946, 0.02690253220498562, 0.01976236328482628, -0.02856067568063736, -0.05800118297338486, -0.0038619516417384148, -0.01142088696360588, 0.04138590767979622, -0.024584515020251274, -0.015608544461429119, -0.006218038033694029, 0.002212268067523837, 0.03216459974646568, -0.02243569679558277, -0.030557217076420784, 0.008637574501335621, 0.002491445280611515, -0.00026754484861157835, -0.05881333723664284, 0.0374266691505909, -0.023653924465179443, 0.018138060346245766, -0.010676413774490356, 0.05380506440997124, 0.011615464463829994, 0.031572405248880386, -0.008383776992559433, -0.020845232531428337, -0.009373586624860764, 0.024466076865792274, 0.06080987676978111, 0.014982511289417744, 0.05813654139637947, -0.009593544527888298, 0.015244768932461739, -0.0047121732495725155, 0.0042066932655870914, -0.024279959499835968, 0.05224844068288803, 0.0479169636964798, -0.04121670871973038, 0.06551358848810196, -0.017215928062796593, 0.027376288548111916, 0.005295907147228718, -0.020642194896936417, 0.022824853658676147, 0.05160548537969589, -0.034550298005342484, 0.0023116720840334892, 0.013916561380028725, 0.03216459974646568, 0.0030519147403538227, -0.026733335107564926, -0.002163623459637165, -0.03776506334543228, -0.018104219809174538, -0.054244980216026306, 0.005388966295868158, 0.028340717777609825, 0.021369747817516327, 0.029745064675807953, -0.10436151921749115, 0.03162316605448723, -0.025921182706952095, 0.0029652004595845938, -0.007994620129466057, -0.036208439618349075, -0.04236725717782974, -0.03678371384739876, 0.021894263103604317, -0.030489537864923477, -0.022807933390140533, 0.011277067475020885, -0.004644494038075209, -0.011048650369048119, -0.03529476746916771, -0.001203423016704619, 0.06463375687599182, 0.015117869712412357, -0.012199198827147484, -0.01976236328482628, 0.03783274441957474, 0.020439157262444496, -0.05891485512256622, 0.0319446437060833, 0.027376288548111916, -0.03499021381139755, 0.044600676745176315, 0.03302751109004021, 0.0019817352294921875, 0.046055782586336136, -0.00126369995996356, 0.009263607673346996, -0.07349974662065506, 0.014348017051815987, -0.023180169984698296, -0.0171059500426054, 0.029474347829818726, 0.021657384932041168, -0.04872911423444748, 0.06598734110593796, 0.02223265916109085, -0.026564136147499084, -0.02937282808125019, 0.027139410376548767, -0.019694684073328972, 0.01839185692369938, 0.03311211243271828, 0.023027891293168068, -0.06517519056797028, 0.04202886298298836, -0.02162354439496994, -0.03729131072759628, -0.05333131179213524, 0.04033688083291054, -0.0419611819088459, 0.009602004662156105, 0.029237469658255577, 0.027968481183052063, -0.042705655097961426, -0.13014735281467438, -0.018831772729754448, -0.01742742769420147, 0.024313798174262047, 0.08013232052326202, 0.009458186104893684, -0.03823881968855858, -0.05055645853281021, 0.04324708878993988, -0.01274909358471632, -0.019390126690268517, 0.012089219875633717, 0.03529476746916771, -0.0027367828879505396, -0.01686907187104225, 0.007199388463050127, -0.03806962072849274, 0.01742742769420147, 0.017528945580124855, 0.08121519535779953, -0.0017935021314769983, 0.013485105708241463, 0.019305529072880745, -0.0020917141810059547, -0.02920362912118435, 0.001695155631750822, 0.045446667820215225, 0.011742363683879375, -0.0012954246485605836, -0.027139410376548767, 0.02605654112994671, 0.02642877772450447, -0.055936962366104126, -0.011911561712622643, -0.033704303205013275, -0.09319443255662918, 0.05224844068288803, -0.029880423098802567, 0.07857570052146912, -0.03553164750337601, -0.032215360552072525, -0.015752363950014114, 0.012596814893186092, -0.0032443776726722717, -0.053669705986976624, -0.019474726170301437, 0.03211384266614914, 0.024060001596808434, 0.054481860250234604, -0.024178439751267433, -0.04487139359116554, 0.06328017264604568, -0.010921751148998737, -0.022892532870173454, 0.09380354732275009, 0.007728133350610733, -0.06070835515856743, 0.0032824473455548286, -0.019660845398902893, -0.06598734110593796, 0.029271308332681656, -0.003997310064733028, 0.04121670871973038, -0.026597974821925163, 0.012199198827147484, -0.021285148337483406, -0.004830611869692802, 0.021522026509046555, 0.0008047494920901954, 0.017173629254102707, -0.036648355424404144, -0.03292599320411682, -0.03593772277235985, -0.026039620861411095, 0.002263027476146817, 0.05187620595097542, -0.040404558181762695, 0.021758904680609703, 0.03773122653365135, 0.06707021594047546, 0.028289958834648132, 0.07566548883914948, 0.0579335056245327, 0.01658143475651741, -0.06307713687419891, -0.024060001596808434, 0.030506456270813942, 0.04514211043715477, -0.0818919837474823, -0.003491830313578248, 0.0030180749017745256, -0.023856962099671364, -0.028019241988658905, -0.011344747617840767, 0.03162316605448723, 0.01609076000750065, -0.012495296075940132, 0.044194601476192474, -0.023992322385311127, 0.0070259603671729565, -0.03307827189564705, 0.034279581159353256, 0.007601234596222639, 0.049473587423563004, -0.01742742769420147, -0.06155434995889664, 0.04030304029583931, -0.025853503495454788, 0.0424349382519722, -0.05586928501725197, 0.018442615866661072, -0.06334785372018814, 0.027647005394101143, 0.004500675480812788, -0.007275527808815241, -0.031843122094869614, 0.06074219569563866, 0.03806962072849274, -0.00637454679235816, -0.002137186238542199, -0.008189198561012745, -0.03086177259683609, -0.08459915965795517, 0.02331552840769291, 0.06074219569563866, -0.002126611303538084, 0.032621435821056366, -0.020303798839449883, 0.06155434995889664, -0.05664759874343872, -0.028915992006659508, -0.034922532737255096, 0.03539628908038139, 0.04162278771400452, 0.04619114100933075, -0.03759586811065674, 0.009272067807614803, 0.04967662692070007, 0.021894263103604317, -0.006827152334153652, 0.012842152267694473, -0.05695215240120888, 0.027224009856581688, 0.05691831558942795, 0.03365354612469673, -0.029152870178222656, 0.01625995896756649, -0.045886583626270294, -0.05302675440907478, -0.022604895755648613, -0.06476911902427673, 0.0339750237762928, 0.007186698727309704, 0.08662953972816467, -0.01060873456299305, 0.0321815200150013, -0.004014230333268642, 0.0009787065209820867, -0.01903481036424637, -0.02348472736775875, -0.07410886138677597, 0.039558567106723785, -0.10733941197395325, -0.07201080769300461, 0.010625654831528664, -0.007965010590851307, -0.06064067780971527, 0.054684896022081375, -0.008337247185409069, 0.006818692199885845, -0.023907722905278206, 0.005575084593147039, -0.06524287164211273, 0.026716414839029312, -0.039321690797805786, 0.054684896022081375, 0.027325527742505074, -0.004274372477084398, 0.012013080529868603, 0.01807038113474846, 0.015473186038434505, 0.023653924465179443, 0.06280641257762909, 0.010033460333943367, -0.023501645773649216, -0.014432616531848907, -0.00909440964460373, 0.05776430666446686, -0.03082793392241001, 0.018611814826726913, 0.013984240591526031, -0.013282068073749542, -0.04345012828707695, -0.04135207086801529, -0.016446076333522797, 0.018781013786792755, 0.004115749150514603, -0.012884452007710934, -0.01625995896756649, -0.018814852461218834, 0.01490637194365263, -0.07241687923669815, 0.02537974715232849, 0.020676035434007645, 0.009077489376068115, -0.027173249050974846, -0.018510296940803528, 0.07911713421344757, 0.004970200825482607, -0.0028023470658808947, 0.0038408017717301846, 0.05641071870923042, -0.017613545060157776, 0.01158162485808134, 0.005482025444507599, 0.0061461287550628185, 0.0197285246104002, -0.06426151841878891, 0.02751164697110653, -0.02505827136337757, -0.008882911875844002, -0.059490129351615906, 0.03143704682588577, 0.04663105681538582, 0.06585198640823364, 0.0252105500549078, 0.029829664155840874, -0.022164979949593544, 0.06334785372018814, -0.024736793711781502, -0.04724017158150673, 0.04906751215457916, 0.0037054431159049273, -0.0006630459101870656, -0.0006783794960938394, 0.0014603929594159126, 0.02182658389210701, -0.05353434756398201, 0.04622498154640198, -0.048559918999671936, -0.039998482912778854, -0.011945401318371296, -0.02590426243841648, -0.024263039231300354, -0.017410507425665855, 0.0169875118881464, -0.003980390261858702, -0.010151899419724941, 0.014644114300608635, -0.033382829278707504, 0.0009253033204004169, -0.03077717497944832, -0.0008941073901951313, -0.01280831266194582, -0.03037109784781933, -0.008705253712832928, 0.030506456270813942, -0.015295527875423431, 0.04845839738845825, -0.006543744821101427, -0.046258822083473206, 0.014026540331542492, -0.09014886617660522, -0.03729131072759628, 0.01786734163761139, -0.042299579828977585, 0.00030059137498028576, -0.04487139359116554, -0.013366667553782463, 0.007013270165771246, 0.004115749150514603, -0.011251688003540039, -0.04473603516817093, -0.08324557542800903, -0.037460505962371826, 0.06273873895406723, -0.05285755544900894, 0.014348017051815987, 0.12452996522188187, 0.003202078165486455, 0.043314769864082336, 0.0022207279689610004, -0.062434177845716476, 0.027020972222089767, 0.020083840936422348, -0.025565866380929947, -0.05729055032134056, -0.054075781255960464, -0.007965010590851307, -0.003806962165981531, 0.07478565722703934, -0.014957131817936897, 0.005816192366182804, -0.029558945447206497, 0.000557296967599541, 0.009906561113893986, -0.05397426337003708, 0.004805232398211956, 0.00932282768189907, 0.000011946326594625134, 0.0027283229865133762, -0.044160760939121246, -0.020591435953974724, 0.04896599426865578, -0.03478717431426048, 0.025075191631913185, 0.005964240524917841, -0.029965022578835487, 0.0008058070088736713, 0.04730784893035889, -0.041081350296735764, -0.012723713181912899, 0.02433071844279766, 0.03553164750337601, -0.03485485538840294, -0.005118248984217644, 0.008045380003750324, -0.005511635448783636, -0.01500789076089859, 0.0419611819088459, -0.003438955871388316, 0.03884793445467949, 0.043145570904016495, -0.04030304029583931, -0.010236497968435287, -0.013248228468000889, 0.0042574526742100716, -0.004796772263944149, 0.006421076133847237, 0.0547187365591526, -0.04592042416334152, 0.004695253446698189, -0.00005340321877156384, -0.0006773220375180244, -0.08608810603618622, 0.04771392419934273, 0.044600676745176315, -0.032215360552072525, 0.00503364996984601, 0.04426227882504463, 0.03505789116024971, 0.004652953706681728, 0.04845839738845825, 0.005067489575594664, -0.017029810696840286, -0.030184980481863022, 0.0020081724505871534, 0.030692575499415398, -0.055497050285339355, 0.040235359221696854, -0.024381477385759354, -0.011953861452639103, -0.027782363817095757, 0.024432236328721046, -0.02101443149149418, 0.04429611936211586, 0.012672954238951206, -0.025971941649913788, 0.014009620994329453, -0.08020000159740448, -0.030557217076420784, 0.014094219543039799, 0.04998118430376053, -0.05522632971405983, -0.06571662425994873, 0.023569324985146523, 0.03570084646344185, 0.005520095117390156, 0.031047891825437546, -0.00929744727909565, -0.01864565536379814, 0.039389368146657944, -0.004301867447793484, -0.023180169984698296, 0.004581044428050518, -0.058035023510456085, -0.017681224271655083, -0.006903291214257479, -0.019982321187853813, 0.021488185971975327, -0.044837553054094315, -0.00042299579945392907, 0.002533744787797332, 0.007749283220618963, 0.023586245253682137, 0.02433071844279766, -0.013375126756727695, -0.001922515919432044, 0.07647763937711716, 0.006945590954273939, 0.0301003810018301, 0.00024110759841278195, 0.010228038765490055, 0.008392236195504665, -0.010016540065407753, 0.03752818703651428, 0.00508440937846899, -0.022080380469560623, -0.05830574035644531, -0.05417730286717415, -0.003658913541585207, -0.0343303382396698, -0.025075191631913185, 0.003654683707281947, -0.062061943113803864, 0.09448034316301346, 0.03674987331032753, -0.021471265703439713, -0.015041730366647243, 0.012723713181912899, -0.04717249050736427, 0.033670466393232346, 0.03280755504965782, -0.06300945580005646, 0.008849072270095348, 0.011403966695070267, 0.027004051953554153, -0.0043695466592907906, -0.014669493772089481, -0.055936962366104126, -0.030641814693808556, -0.025887342169880867, 0.024432236328721046, 0.08473451435565948, 0.042299579828977585, 0.030286498367786407, -0.013721983879804611, 0.018138060346245766, 0.028594516217708588, 0.059490129351615906, -0.02013459987938404, -0.06666413694620132, -0.04067527502775192, -0.030269579961895943, -0.029965022578835487, 0.023823123425245285, 0.0584072582423687, -0.008189198561012745, 0.0003558452008292079, -0.012994430959224701, -0.024956751614809036, -0.007816961966454983, -0.0126052750274539, -0.008679873310029507, -0.03383966535329819, -0.04216422140598297, -0.01333282794803381, -0.03082793392241001, 0.035802364349365234, 0.01079485286027193, 0.05576776713132858, 0.017613545060157776, -0.02651337720453739, -0.0045852744951844215, 0.011725443415343761, 0.045040592551231384, -0.009288988076150417, -0.0729583129286766, 0.029948102310299873, 0.0013229193864390254, -0.015862341970205307, -0.010270337574183941, 0.05962548777461052, -0.0062730275094509125, 0.011167089454829693, 0.03267219662666321, -0.014618734829127789, -0.026970211416482925, -0.04287485405802727, 0.03365354612469673, -0.04497291147708893, 0.005651223938912153, 0.004139014054089785, -0.05962548777461052, -0.02416151948273182, -0.0048390720039606094, -0.04382236301898956, 0.019153250381350517, -0.04656337574124336, 0.010456455871462822, 0.03118325024843216, -0.0017818697961047292, 0.02444915659725666, 0.03918633237481117, 0.028103841468691826, -0.023586245253682137, -0.013095949776470661, 0.05857645720243454, 0.041013672947883606, 0.07336439192295074, 0.013518945313990116, -0.03583620488643646, -0.03593772277235985, 0.023010971024632454, 0.019660845398902893, 0.07417654246091843, -0.07458262145519257, -0.07383814454078674, 0.0033712764270603657, 0.03658067807555199, -0.056579917669296265, 0.08135055005550385, -0.05583544448018074, 0.02368776500225067, 0.03153856843709946, 0.03062489628791809, 0.04162278771400452, 0.043517809361219406, -0.07410886138677597, 0.03634379804134369, -0.04473603516817093, 0.042705655097961426, -0.04368700459599495, 0.03471949324011803, 0.03962624445557594, -0.014297258108854294, -0.007884642109274864, 0.03573468327522278, -0.04554818570613861, 0.005592004396021366, -0.025430507957935333, -0.017055191099643707, 0.045209791511297226, -0.02202962152659893, -0.03668219596147537, 0.030811013653874397, -0.010574894957244396, 0.036614514887332916, -0.04724017158150673, 0.04368700459599495, 0.018933292478322983, 0.013095949776470661, -0.003603924298658967, 0.05739206820726395, 0.02170814387500286, 0.022571055218577385, -0.05211308225989342, -0.018442615866661072, 0.0371897891163826, -0.03279063478112221, 0.023450886830687523, 0.019948482513427734, -0.04967662692070007, -0.0074108862318098545, -0.014102679677307606, 0.0038746416103094816, -0.01920400932431221, 0.015177088789641857, -0.008975970558822155, 0.013112870045006275, 0.019982321187853813, 0.025362828746438026 ]
729,049
tables.atom
UIntAtom
Defines an atom of an unsigned integral type (uint kind).
class UIntAtom(Atom): """Defines an atom of an unsigned integral type (uint kind).""" kind = 'uint' signed = False _deftype = 'uint32' _defvalue = 0 __init__ = _abstract_atom_init(_deftype, _defvalue)
(itemsize=4, shape=(), dflt=0)
[ -0.005588284693658352, 0.016245529055595398, 0.005481756292283535, 0.0015047088963910937, 0.0575251542031765, 0.006582546513527632, -0.015366672538220882, -0.045771557837724686, -0.06459151208400726, -0.03884723410010338, 0.03169209882616997, 0.050813887268304825, -0.00011381025251466781, 0.03199392929673195, -0.0473339669406414, 0.061928313225507736, 0.015224635601043701, 0.041510432958602905, -0.01238388754427433, 0.06310012191534042, -0.03531405329704285, 0.034337546676397324, -0.00416569085791707, 0.06718369573354721, 0.017941100522875786, -0.038634177297353745, -0.0035065487027168274, -0.04310835525393486, -0.019902992993593216, -0.09168515354394913, -0.049748603254556656, 0.0017621517181396484, 0.044031597673892975, -0.0024057587143033743, 0.0040968917310237885, -0.06821347028017044, 0.010759334079921246, 0.14502020180225372, -0.0921112671494484, 0.023152098059654236, 0.03724931180477142, -0.034319791942834854, 0.035722408443689346, -0.0004280541616026312, 0.038989271968603134, -0.03053804486989975, 0.06856856495141983, -0.042930807918310165, -0.07655816525220871, -0.027111392468214035, 0.013546818867325783, 0.036823198199272156, 0.007434770930558443, 0.011185446754097939, -0.06302910298109055, 0.06455600261688232, 0.0061253635212779045, 0.04140390828251839, -0.10084656625986099, 0.08323392271995544, -0.08152947574853897, 0.08387309312820435, 0.018180789425969124, -0.09225330501794815, -0.0016600623494014144, -0.005481756292283535, -0.010084656067192554, 0.025406943634152412, -0.020222576335072517, 0.07670020312070847, -0.011576049029827118, 0.028496256098151207, 0.010155675001442432, 0.033911433070898056, 0.133444145321846, -0.056566402316093445, 0.02153642289340496, 0.02581530064344406, -0.022353138774633408, 0.024359416216611862, 0.0673612430691719, 0.03591771051287651, 0.04129737988114357, 0.04602012410759926, -0.010484136641025543, 0.020648689940571785, 0.02008054032921791, -0.029011141508817673, -0.016760414466261864, 0.00159459188580513, -0.002581086242571473, 0.009623034857213497, -0.0014181548031046987, -0.028212182223796844, 0.03902478143572807, 0.010004760697484016, 0.0037173854652792215, -0.00381503626704216, -0.04278877004981041, -0.07130277901887894, -0.024341661483049393, -0.02048889733850956, -0.019618917256593704, -0.05535908415913582, 0.0026521049439907074, 0.03945089131593704, 0.002261501969769597, -0.037213802337646484, -0.032171472907066345, 0.006085415370762348, 0.02047114260494709, 0.017514988780021667, -0.06412989646196365, 0.012792244553565979, -0.012161953374743462, 0.004358773119747639, 0.010084656067192554, 0.04285978898406029, 0.0652661919593811, 0.036059748381376266, 0.001157382968813181, 0.013804261572659016, -0.0395929291844368, 0.003422213951125741, 0.06459151208400726, 0.021021537482738495, 0.01977870985865593, 0.019938502460718155, -0.015402182005345821, 0.030307233333587646, -0.02041787840425968, -0.009032691828906536, 0.016369812190532684, -0.008997182361781597, -0.024963075295090675, -0.013165093027055264, 0.03510099649429321, 0.0020684199407696724, -0.014283637516200542, 0.07101871073246002, 0.011247588321566582, 0.08536448329687119, 0.0012883237795904279, -0.03162107989192009, -0.03131924942135811, 0.04527442529797554, -0.02952602691948414, 0.022157836705446243, -0.002297011436894536, -0.030005404725670815, -0.020595425739884377, -0.03884723410010338, 0.009436611086130142, 0.11639966070652008, -0.0010991254821419716, 0.015659624710679054, 0.043640997260808945, -0.05614028871059418, -0.01096351258456707, 0.0060987314209342, -0.023951059207320213, 0.014834032393991947, 0.031443532556295395, -0.03479916602373123, -0.027217919006943703, 0.005073398817330599, 0.02269047684967518, -0.03524303436279297, -0.007780987303704023, 0.0431438647210598, -0.0473339669406414, -0.05113346874713898, -0.0004793762636836618, 0.02336515486240387, 0.04502585902810097, -0.016671640798449516, -0.013750997371971607, 0.0004155703936703503, 0.02403983287513256, 0.011664822697639465, 0.030449271202087402, -0.030449271202087402, -0.024607982486486435, -0.06143118068575859, 0.027075883001089096, 0.016405321657657623, -0.027928106486797333, 0.018464863300323486, 0.06476905941963196, -0.062283407896757126, 0.05070735886693001, -0.024501454085111618, -0.04097779467701912, 0.02764403261244297, 0.02231762930750847, -0.006804479751735926, 0.001926382421515882, -0.02551347017288208, 0.011957774870097637, -0.04807966575026512, 0.006391683593392372, 0.02411085180938244, 0.025264905765652657, 0.025619998574256897, -0.0037639914080500603, -0.06530170142650604, 0.018109770491719246, -0.024572473019361496, 0.021731724962592125, -0.029969895258545876, 0.0010630612960085273, -0.013023055158555508, 0.022779250517487526, 0.10134369879961014, -0.017213160172104836, -0.0660829097032547, -0.06029488146305084, 0.006498211994767189, -0.009853845462203026, 0.03087538294494152, 0.08870236575603485, -0.02734220214188099, 0.05255384370684624, -0.006063221953809261, -0.005113346967846155, 0.020772971212863922, -0.013937421143054962, 0.003402239875867963, 0.014478938654065132, 0.03527854382991791, 0.045061368495225906, 0.009072639979422092, -0.03151455149054527, -0.004926922731101513, 0.006919885519891977, 0.021447649225592613, 0.003635270055383444, 0.03337879106402397, -0.005921184550970793, 0.03657463565468788, -0.03588220104575157, 0.016591746360063553, 0.06352623552083969, 0.031408023089170456, 0.017905591055750847, 0.005912307649850845, 0.0134491678327322, 0.060223862528800964, -0.048718832433223724, -0.049429021775722504, -0.04339243099093437, -0.02549571543931961, -0.02331189066171646, 0.005410737823694944, 0.0788307636976242, -0.012534801848232746, -0.034976713359355927, -0.010945758782327175, -0.029952140524983406, 0.014603221789002419, -0.010306590236723423, -0.03636157885193825, 0.061253637075424194, 0.06661555171012878, 0.014487816020846367, -0.03700074553489685, -0.02299230732023716, 0.042895298451185226, -0.05383218079805374, 0.03909580036997795, 0.10787741839885712, -0.03314798325300217, 0.010892494581639767, -0.015020457096397877, -0.04921596497297287, -0.0024035393726080656, 0.037497878074645996, 0.028638293966650963, 0.009773950092494488, -0.013600082136690617, -0.01420374121516943, -0.03263309597969055, 0.018855467438697815, -0.007013097405433655, -0.015704011544585228, 0.025584489107131958, 0.006138679571449757, 0.03520752489566803, -0.05113346874713898, -0.036432597786188126, 0.03550935536623001, 0.014239250682294369, -0.029969895258545876, -0.015908190980553627, 0.07158685475587845, 0.021003782749176025, -0.02011604979634285, 0.09140107780694962, 0.023578211665153503, 0.0036308313719928265, -0.02483879216015339, 0.0098982322961092, -0.06778735667467117, -0.011354115791618824, -0.00350211001932621, 0.013005300424993038, 0.03266860544681549, 0.012934282422065735, 0.017692536115646362, 0.04893188923597336, 0.05038777366280556, 0.0034044592175632715, -0.022832514718174934, 0.04783109948039055, -0.014700872823596, 0.03703625500202179, 0.03226024657487869, -0.06469804048538208, -0.0033733886666595936, 0.0366811640560627, -0.0014603221789002419, -0.042895298451185226, 0.0496065691113472, -0.04665929079055786, -0.04843476042151451, -0.050884902477264404, -0.06618943810462952, -0.020950518548488617, -0.03558037430047989, 0.017603762447834015, -0.04530993476510048, -0.016218896955251694, 0.017958855256438255, 0.009987005963921547, -0.042540207505226135, -0.04428016394376755, 0.031052930280566216, 0.008020675741136074, -0.0037617722991853952, -0.027945861220359802, 0.01668051816523075, 0.03746236860752106, -0.004665041342377663, 0.032952681183815, -0.010271080769598484, -0.009889354929327965, -0.02661425992846489, -0.019530145451426506, 0.06778735667467117, -0.00458070682361722, 0.03543833643198013, 0.05038777366280556, -0.040729228407144547, -0.0006158653413876891, 0.07279417663812637, -0.04744049534201622, 0.0007179547683335841, -0.04094228520989418, 0.02807014435529709, 0.019228314980864525, -0.04310835525393486, -0.03746236860752106, 0.03602423891425133, -0.03273962438106537, -0.04967758432030678, -0.036468107253313065, -0.02725342847406864, 0.019317088648676872, 0.04268224164843559, -0.0044098179787397385, -0.017710290849208832, -0.03820806369185448, -0.05035226419568062, -0.004869220312684774, 0.008979427628219128, 0.0039149061776697636, -0.0629935935139656, -0.0075634922832250595, -0.07961197197437286, -0.11121529340744019, -0.00300497910939157, -0.018606901168823242, -0.037888482213020325, 0.0036729988642036915, -0.015224635601043701, 0.0012117567239329219, 0.0034688201267272234, 0.004753814544528723, -0.04715642333030701, 0.10070452839136124, 0.036432597786188126, 0.010510768741369247, 0.015224635601043701, -0.05021022632718086, -0.021784989163279533, 0.05830635875463486, 0.009241309016942978, -0.002771948929876089, -0.009276818484067917, -0.01568625681102276, 0.039699457585811615, 0.008411278016865253, -0.013165093027055264, 0.06782286614179611, 0.027786068618297577, 0.03584669157862663, 0.011194324120879173, -0.0604369193315506, -0.009090394712984562, -0.01238388754427433, -0.0276262778788805, 0.0014791864668950438, -0.0008095023222267628, -0.020630935207009315, 0.012046548537909985, -0.05283791944384575, 0.021447649225592613, -0.09814785420894623, 0.02190927229821682, -0.0387762151658535, -0.004807078745216131, -0.0172930546104908, 0.020666444674134254, 0.04697887599468231, -0.0439605787396431, -0.0014614318497478962, 0.0567084364593029, 0.013573450967669487, -0.05319301038980484, 0.06732573360204697, 0.0041390592232346535, 0.025655508041381836, 0.004387624561786652, -0.04431567341089249, 0.00656923046335578, -0.04484831541776657, -0.031745363026857376, -0.049748603254556656, -0.006387244910001755, 0.03948640078306198, 0.034976713359355927, 0.04736947640776634, 0.03490569442510605, 0.021394385024905205, 0.02082623541355133, -0.000673013215418905, -0.01273898035287857, 0.04744049534201622, 0.013724365271627903, 0.006791164167225361, -0.027111392468214035, -0.0061253635212779045, 0.015996964648365974, -0.04214960336685181, 0.019547900184988976, -0.10837455093860626, -0.11497928947210312, -0.017878958955407143, -0.02556673437356949, -0.08508041501045227, -0.02510511316359043, -0.0054995110258460045, -0.06686411052942276, -0.05919409170746803, -0.032224737107753754, -0.005974448751658201, 0.05603376030921936, -0.08160049468278885, -0.015588606707751751, -0.0032335706055164337, -0.018447108566761017, 0.014656485989689827, 0.028158918023109436, -0.00229035341180861, -0.03339654579758644, -0.017399583011865616, -0.022548438981175423, -0.005588284693658352, -0.08642976731061935, -0.0785466879606247, 0.05127550661563873, 0.018766693770885468, -0.0028562836814671755, 0.06523068249225616, -0.008690914139151573, 0.029508274048566818, 0.03636157885193825, -0.026880580931901932, 0.0496065691113472, -0.010510768741369247, -0.021021537482738495, -0.004554074723273516, -0.022104572504758835, -0.013875280506908894, 0.0525183342397213, 0.01832282729446888, -0.012685717083513737, 0.04562951996922493, -0.027448730543255806, -0.0017810160061344504, -0.008766371756792068, -0.04740498587489128, -0.010359854437410831, -0.03483467549085617, -0.003291273256763816, 0.01381313893944025, 0.011780228465795517, -0.02510511316359043, 0.007812058087438345, -0.0408712662756443, -0.0054595633409917355, -0.025282660499215126, -0.0030538043938577175, -0.018606901168823242, 0.08131641894578934, 0.029916631057858467, 0.0042988513596355915, -0.03835010156035423, -0.009543138556182384, -0.012685717083513737, -0.025673262774944305, -0.026010600849986076, -0.011274219490587711, -0.008588825352489948, 0.002277037361636758, -0.005850166082382202, -0.052660372108221054, -0.04165247082710266, 0.007567930966615677, 0.020240331068634987, -0.0005148856434971094, -0.04932249337434769, -0.05436481907963753, -0.0331302285194397, 0.0018620217451825738, -0.00034150012652389705, 0.002532260725274682, 0.0066269333474338055, 0.027821578085422516, 0.02949051931500435, -0.03371613100171089, 0.007745477836579084, 0.07520881295204163, 0.00628959434106946, 0.011034531518816948, 0.029348481446504593, -0.05326402932405472, 0.005113346967846155, 0.050458792597055435, -0.008286995813250542, -0.07577696442604065, 0.002525602700188756, -0.003945976961404085, 0.019121786579489708, 0.009267941117286682, 0.020293595269322395, 0.02016931213438511, 0.003903809702023864, 0.022903533652424812, 0.04932249337434769, 0.0034910133108496666, 0.013822016306221485, 0.0032535444479435682, -0.0020650909282267094, -0.05521704629063606, 0.005455124657601118, -0.045061368495225906, -0.07478269934654236, 0.008575509302318096, 0.041545942425727844, -0.030467025935649872, 0.0036286120302975178, 0.023507192730903625, 0.0077232844196259975, 0.001448115799576044, -0.021074801683425903, -0.009409978985786438, 0.009205799549818039, 0.059478167444467545, -0.014505570754408836, -0.030964156612753868, 0.03513650596141815, -0.0031936224550008774, -0.053406067192554474, 0.03991251438856125, 0.009472120553255081, -0.00009924587357090786, 0.02006278559565544, 0.008659843355417252, -0.036787692457437515, 0.02735995687544346, -0.03884723410010338, 0.002778606954962015, 0.0012738980585709214, -0.030467025935649872, -0.01524239033460617, -0.018589146435260773, -0.04374752566218376, 0.051559582352638245, 0.005703689996153116, 0.03344980999827385, 0.01566850207746029, -0.04697887599468231, 0.007590124383568764, 0.01294315978884697, -0.012126443907618523, 0.009853845462203026, 0.001243937062099576, -0.03201168403029442, -0.050494302064180374, 0.03760440647602081, -0.04783109948039055, -0.019192805513739586, 0.03048478066921234, -0.010741579346358776, 0.0032779572065919638, 0.02080848067998886, -0.007727723103016615, -0.03389367833733559, 0.023453928530216217, -0.052234258502721786, 0.016147878021001816, -0.030964156612753868, -0.03568689897656441, -0.0005936719826422632, 0.0537966713309288, -0.023098833858966827, 0.05677945539355278, 0.012241849675774574, -0.015881558880209923, -0.016103491187095642, 0.031816381961107254, 0.004567390773445368, -0.030644573271274567, -0.03155006095767021, -0.01634318009018898, -0.026436714455485344, 0.002283695386722684, 0.051524072885513306, 0.036894217133522034, 0.029259707778692245, 0.023240871727466583, 0.0015269021969288588, 0.023152098059654236, 0.012987546622753143, 0.036894217133522034, 0.004656163975596428, -0.03197617456316948, -0.030822118744254112, -0.0024235134478658438, 0.001936369459144771, 0.03023621439933777, 0.06938527524471283, -0.020701954141259193, -0.007337120361626148, 0.02876257710158825, -0.05134652554988861, -0.008029553107917309, 0.027910351753234863, 0.009303450584411621, -0.04570053890347481, -0.008437910117208958, -0.019299333915114403, 0.0077943033538758755, -0.0011873439652845263, -0.006023274268954992, 0.017878958955407143, -0.04886087030172348, -0.0017699194140732288, -0.012339500710368156, 0.021092556416988373, 0.06363276392221451, 0.03980598598718643, -0.04431567341089249, -0.007798742037266493, 0.014230373315513134, 0.012250727042555809, 0.047262951731681824, -0.017452847212553024, 0.016369812190532684, -0.006467141211032867, -0.013635591603815556, -0.03842112049460411, -0.05507500842213631, -0.020559916272759438, -0.01078596618026495, -0.04172348976135254, 0.011620435863733292, -0.0039792670868337154, -0.052944447845220566, -0.013955175876617432, -0.0049491161480546, -0.035012222826480865, 0.042220622301101685, -0.011407379992306232, 0.007159573491662741, -0.01612124592065811, 0.060507938265800476, 0.03273962438106537, -0.004700550809502602, 0.03874070569872856, -0.038918253034353256, -0.02691609039902687, 0.005628232378512621, -0.0373203307390213, 0.05567866563796997, -0.008682036772370338, -0.0032357899472117424, 0.018092015758156776, 0.010013638064265251, 0.010271080769598484, 0.0648045688867569, -0.03595321998000145, -0.06572781503200531, 0.012898772954940796, 0.010022515431046486, -0.009152536280453205, 0.110505111515522, -0.04452873021364212, 0.0016001402400434017, -0.009285695850849152, 0.024341661483049393, 0.029579291120171547, 0.009773950092494488, 0.012046548537909985, -0.031106194481253624, -0.007665582001209259, 0.02831871062517166, -0.017142141237854958, 0.011460644192993641, 0.05535908415913582, 0.038598667830228806, -0.030396007001399994, 0.023152098059654236, -0.00019613369659055024, 0.027075883001089096, 0.02372024767100811, 0.004141278564929962, -0.002147206338122487, 0.042185112833976746, -0.0023902233224362135, 0.004594022873789072, -0.05028124526143074, -0.011016776785254478, 0.02089725434780121, -0.00141593546140939, 0.006618055980652571, 0.020737463608384132, 0.025691017508506775, 0.045061368495225906, 0.03133700415492058, -0.006041029002517462, -0.026862826198339462, 0.002130561275407672, 0.07144481688737869, -0.025264905765652657, 0.012126443907618523, 0.009995883330702782, -0.014114968478679657, -0.018890976905822754, -0.0381370447576046, -0.06221238896250725, -0.023542702198028564, -0.0043232636526227, -0.009014937095344067, 0.030271723866462708, -0.022122327238321304, 0.002077297307550907 ]
729,057
tables.description
UIntCol
Defines a non-nested column of a particular type. The constructor accepts the same arguments as the equivalent `Atom` class, plus an additional ``pos`` argument for position information, which is assigned to the `_v_pos` attribute and an ``attrs`` argument for storing additional metadata similar to `table.attrs`, which is assigned to the `_v_col_attrs` attribute.
from tables.description import UIntCol
(*args, **kwargs)
[ -0.0067915599793195724, -0.0185383353382349, 0.023818345740437508, 0.010326835326850414, 0.025134185329079628, 0.008711185306310654, 0.019204583019018173, -0.006645818240940571, -0.065192312002182, -0.03957509994506836, -0.007745126727968454, 0.051400989294052124, -0.010501725599169731, 0.02273569442331791, -0.023968251422047615, 0.039241973310709, 0.027249520644545555, 0.02201947756111622, 0.024451281875371933, 0.036976732313632965, -0.02924826182425022, 0.032396283000707626, 0.03186328336596489, 0.01634804718196392, -0.009519010782241821, 0.01978754997253418, -0.0167311392724514, -0.03366215154528618, 0.060994952917099, -0.07288747280836105, -0.06356000900268555, -0.028715264052152634, -0.010651631280779839, 0.02436799928545952, -0.019820861518383026, -0.037642981857061386, 0.06622499227523804, 0.004259819630533457, 0.04553801193833351, 0.009069293737411499, 0.01644798368215561, -0.026383398100733757, 0.027899112552404404, -0.04707038030028343, -0.03257950022816658, -0.029314886778593063, 0.04130734130740166, -0.0792834460735321, -0.05016843229532242, -0.02316875569522381, 0.0036352125462144613, 0.004480514209717512, 0.029115013778209686, -0.010143617168068886, -0.03277937322854996, -0.0074120028875768185, -0.014474225230515003, 0.04300627112388611, -0.06562536954879761, 0.0844801738858223, -0.07528596371412277, 0.04450532793998718, -0.012567092664539814, -0.03507792949676514, 0.04170709103345871, -0.018321804702281952, 0.0002057299279840663, 0.008719513192772865, 0.007062222808599472, 0.03534442558884621, -0.03754304349422455, 0.032163094729185104, 0.027132926508784294, 0.06176113709807396, 0.047037068754434586, -0.04383908212184906, -0.03109709918498993, -0.02405153214931488, 0.010293522849678993, -0.0043680849485099316, 0.07895032316446304, 0.01738905906677246, 0.061527952551841736, 0.04390570521354675, 0.060428641736507416, 0.00014209808432497084, 0.047303568571805954, 0.052067238837480545, -0.01880483329296112, 0.019221238791942596, 0.001013945322483778, -0.049435559660196304, -0.03777623176574707, 0.05566497519612312, -0.01243384275585413, -0.01606489159166813, 0.013574792072176933, 0.011134660802781582, -0.0236684400588274, -0.05529853701591492, 0.024068189784884453, -0.018721552565693855, 0.036643609404563904, -0.026499992236495018, -0.01006033644080162, -0.0036560327280312777, -0.004834458231925964, 0.02158641628921032, -0.008165694773197174, -0.013558135367929935, 0.001770760747604072, 0.020320547744631767, 0.004946887493133545, -0.06585855782032013, 0.03494467958807945, -0.024034876376390457, 0.0277158934623003, -0.014499209821224213, 0.037143293768167496, 0.03316246718168259, 0.028182266280055046, -0.021569760516285896, -0.006879004649817944, 0.0012211066205054522, 0.029448136687278748, 0.04996855929493904, -0.008594592101871967, 0.04513826593756676, 0.024351343512535095, 0.002098679542541504, 0.00964393187314272, -0.03212978318333626, -0.010701599530875683, 0.051467616111040115, 0.03481142967939377, -0.031147068366408348, 0.06709111481904984, 0.010560021735727787, 0.030314259231090546, 0.018888115882873535, -0.012117375619709492, 0.03914203867316246, 0.022435883060097694, -0.029598042368888855, -0.015823377296328545, 0.03269609436392784, 0.0012783622369170189, 0.03171337768435478, -0.025167496874928474, -0.007553580217063427, -0.05466560274362564, -0.031513504683971405, -0.020953482016921043, 0.013349933549761772, 0.007757618557661772, 0.021453168243169785, 0.02218603901565075, -0.10673283785581589, 0.022935567423701286, -0.02268572524189949, 0.03387868404388428, -0.0018779849633574486, -0.026983020827174187, -0.024834373965859413, -0.044738516211509705, 0.024634499102830887, -0.007878376170992851, -0.038775600492954254, -0.0017738838214427233, -0.0029273247346282005, -0.002681646030396223, -0.03874228894710541, -0.010626646690070629, 0.0690232366323471, 0.01952105015516281, 0.0031896596774458885, -0.032396283000707626, 0.03322909027338028, 0.008240647614002228, -0.04563795030117035, 0.03810935467481613, 0.01858830451965332, -0.03691010922193527, 0.04410558193922043, 0.01499889511615038, 0.0018467545742169023, 0.028248891234397888, -0.014149430207908154, 0.031247004866600037, -0.07295409590005875, 0.019121302291750908, -0.01952105015516281, -0.009360776282846928, 0.010118632577359676, 0.020587045699357986, -0.029548073187470436, 0.03487805277109146, 0.01120128482580185, -0.02591702528297901, -0.035777486860752106, 0.017339089885354042, -0.005871305707842112, 0.00761187681928277, 0.07108860462903976, 0.03534442558884621, -0.06219419836997986, 0.049002498388290405, -0.028082329779863358, -0.04963543266057968, -0.05579822510480881, 0.059329334646463394, -0.03661029785871506, -0.004951051436364651, 0.05986233428120613, 0.02754933200776577, -0.037243232131004333, -0.12125703692436218, -0.02251916378736496, -0.011784251779317856, 0.026883084326982498, 0.10206910967826843, -0.0009056801209226251, 0.00755774462595582, -0.05170080065727234, 0.04330608248710632, -0.021453168243169785, -0.005871305707842112, -0.0025130021385848522, 0.039974845945835114, 0.005159253720194101, -0.019054677337408066, 0.0014032836770638824, -0.06539218872785568, 0.038509100675582886, 0.0208868570625782, 0.05013512074947357, -0.01967095583677292, 0.012417186982929707, 0.03634379804134369, 0.000019437638911767863, -0.04973537102341652, 0.009277495555579662, 0.03607729822397232, 0.021936196833848953, -0.010543365962803364, -0.006554209161549807, 0.016597889363765717, 0.029781261458992958, -0.08094906061887741, -0.008902731351554394, -0.023535190150141716, -0.08494655042886734, 0.0614280141890049, -0.01973758079111576, 0.07062222808599472, -0.0068873330019414425, -0.058896273374557495, 0.004901082720607519, -0.01885480247437954, -0.014640787616372108, -0.04886924847960472, -0.05653109401464462, 0.015840033069252968, 0.02568383887410164, 0.05433247983455658, -0.028665296733379364, -0.02881520241498947, 0.07002260535955429, -0.02793242409825325, -0.011651001870632172, 0.08767816424369812, 0.014141102321445942, -0.05696415528655052, -0.010143617168068886, -0.018455054610967636, -0.04197358712553978, 0.03148019313812256, 0.009727212600409985, 0.02201947756111622, -0.012417186982929707, 0.01940445601940155, -0.011967469938099384, -0.015573534183204174, 0.029264919459819794, 0.008211500011384487, 0.016139844432473183, -0.036643609404563904, -0.016198141500353813, -0.06895661354064941, -0.01409946195781231, 0.004592943470925093, 0.03614392504096031, -0.02072029560804367, 0.035444363951683044, 0.033812057226896286, 0.07635195553302765, 0.00482196593657136, 0.08201505988836288, 0.033762089908123016, 0.011059707961976528, -0.07908356934785843, -0.02596699446439743, 0.007720142137259245, 0.04383908212184906, -0.06815711408853531, -0.015290378592908382, 0.021986166015267372, -0.038009416311979294, -0.012608733028173447, -0.00045101827709004283, 0.03301256150007248, 0.021253293380141258, -0.021952852606773376, 0.060928329825401306, -0.005546509753912687, 0.00356650585308671, -0.05263354629278183, 0.029164981096982956, -0.007757618557661772, 0.059162773191928864, -0.018271835520863533, -0.05426585301756859, 0.03897547721862793, -0.028981763869524002, 0.03178000450134277, -0.04350595921278, -0.01638968661427498, -0.05809677764773369, 0.016406342387199402, 0.004976035561412573, -0.039108723402023315, -0.020703639835119247, 0.06166120246052742, 0.04377245530486107, -0.016198141500353813, -0.016156500205397606, 0.009760525077581406, -0.021553104743361473, -0.07315397262573242, 0.02711627073585987, 0.04600438475608826, 0.0006516732973977923, 0.03028094582259655, -0.003300006967037916, 0.04963543266057968, -0.05000187084078789, -0.03444499149918556, -0.020087359473109245, 0.07295409590005875, 0.017938712611794472, 0.03601067513227463, -0.04160715267062187, 0.004971871618181467, 0.03554430231451988, 0.023801689967513084, -0.004026632755994797, 0.010709927417337894, -0.051034554839134216, 0.006445943843573332, 0.059829019010066986, 0.026816459372639656, -0.03744310513138771, 0.02470112405717373, -0.05210055038332939, -0.052333734929561615, -0.01656457781791687, -0.06082839146256447, 0.008186515420675278, 0.03296259045600891, 0.059829019010066986, -0.015590189956128597, 0.0021028434857726097, 0.0019154613837599754, -0.00021054460376035422, -0.0038080206140875816, -0.0196209866553545, -0.061527952551841736, 0.020320547744631767, -0.09747199714183807, -0.08134881407022476, 0.010493396781384945, -0.022036133334040642, -0.04607101157307625, 0.050701431930065155, -0.03417849540710449, 0.002550478558987379, -0.05186736211180687, 0.007349541876465082, -0.07648520916700363, 0.03307918459177017, -0.034028589725494385, 0.04880262538790703, 0.00814903900027275, -0.006716607138514519, -0.0009473206009715796, 0.019587675109505653, 0.012383874505758286, -0.01202576607465744, 0.03477811813354492, -0.01717252843081951, -0.020487109199166298, -0.02371840924024582, -0.009627275168895721, 0.07408671826124191, -0.04680388420820236, 0.017089247703552246, 0.0260169617831707, -0.017955368384718895, -0.026366742327809334, -0.05609803646802902, -0.016464639455080032, 0.021936196833848953, 0.0025588066782802343, -0.04117409139871597, 0.0005808845162391663, -0.030730662867426872, 0.010976426303386688, -0.0802161917090416, 0.032396283000707626, 0.0020705722272396088, 0.022585788741707802, -0.04197358712553978, -0.018388429656624794, 0.08774478733539581, -0.010510053485631943, -0.004313952289521694, -0.004734520800411701, 0.03940853476524353, -0.0038975474890321493, 0.0162980780005455, -0.018021993339061737, 0.021936196833848953, 0.022485850378870964, -0.06166120246052742, 0.038509100675582886, -0.04383908212184906, 0.00020612029766198248, -0.05689753219485283, 0.014490881934762001, 0.039541784673929214, 0.07801757752895355, 0.034411679953336716, 0.019004708155989647, 0.003364549484103918, 0.06982272863388062, -0.02984788455069065, -0.04100752994418144, 0.042773086577653885, -0.02666655369102955, -0.001866533886641264, 0.014382616616785526, 0.01978754997253418, 0.030197665095329285, -0.05423254147171974, 0.03717660903930664, -0.05150092765688896, -0.0860791727900505, -0.010493396781384945, -0.014490881934762001, -0.007049730978906155, -0.02126994915306568, 0.02241922728717327, -0.017955368384718895, -0.01995411142706871, -0.0006417836411856115, -0.028332171961665154, -0.010926458053290844, -0.05469891428947449, 0.0058379932306706905, 0.01249213982373476, -0.026599928736686707, -0.00601288303732872, 0.0287985447794199, -0.027782518416643143, 0.013150058686733246, 0.010834849439561367, -0.02590036951005459, 0.016539592295885086, -0.08408042788505554, -0.03770960494875908, 0.030031103640794754, -0.027516018599271774, 0.009843805804848671, -0.037309855222702026, 0.0037164115346968174, 0.048402875661849976, -0.019587675109505653, -0.01952105015516281, -0.034078557044267654, -0.08741166442632675, -0.01803864911198616, 0.049169059842824936, -0.038342539221048355, 0.017072590067982674, 0.09867124259471893, -0.00861124787479639, 0.047303568571805954, -0.0030689022969454527, -0.06419294327497482, 0.022585788741707802, 0.02361847274005413, -0.013100090436637402, -0.04810306429862976, -0.04683719575405121, -0.00160940398927778, -0.010951442644000053, 0.07541920989751816, -0.001556312432512641, -0.007795094978064299, -0.061527952551841736, -0.002858618041500449, -0.01245882734656334, -0.037143293768167496, 0.007566072512418032, 0.01528205070644617, -0.012283937074244022, -0.00016135680198203772, -0.03531111404299736, -0.016139844432473183, 0.04207352548837662, -0.01868824101984501, 0.000017241754903807305, -0.030380884185433388, -0.022119415923953056, -0.004996855743229389, 0.04933562129735947, -0.04860275238752365, 0.00000994654055830324, 0.040807656943798065, 0.032812684774398804, -0.029964478686451912, 0.0016843568300828338, -0.0019487737445160747, -0.02186957187950611, -0.012808606959879398, 0.04910243675112724, 0.007187144365161657, 0.02201947756111622, 0.038509100675582886, -0.024034876376390457, -0.0007994969491846859, 0.009610619395971298, 0.01928786374628544, -0.006125312298536301, 0.02340194210410118, 0.051900677382946014, -0.055565036833286285, -0.00009440674330107868, 0.01918792724609375, -0.01391624379903078, -0.07282084226608276, 0.03691010922193527, 0.04084096848964691, -0.04673725739121437, 0.0069497935473918915, 0.05859646201133728, 0.019004708155989647, -0.01563183031976223, 0.04963543266057968, 0.007832571864128113, -0.01569012738764286, -0.038076043128967285, 0.03399527445435524, 0.03767629340291023, -0.03481142967939377, 0.04104084149003029, -0.016581233590841293, -0.03121369332075119, -0.024900998920202255, 0.010068664327263832, -0.02256913296878338, 0.026150211691856384, 0.01777215115725994, -0.013483182527124882, 0.0020726541988551617, -0.07855057716369629, -0.03159678354859352, 0.013025137595832348, 0.04767000302672386, -0.05180073902010918, -0.0699559822678566, 0.026583272963762283, 0.020903512835502625, -0.00012492139649111778, 0.03844247758388519, 0.0075702364556491375, -0.025550588965415955, 0.029814573004841805, 0.02754933200776577, -0.02033720351755619, -0.0025858727749437094, -0.06036201864480972, -0.02881520241498947, -0.0004419094475451857, 0.0024422132410109043, 0.028332171961665154, -0.060761768370866776, -0.010976426303386688, 0.009510681964457035, 0.0160065945237875, 0.019820861518383026, 0.026549961417913437, -0.013533150777220726, -0.0012346397852525115, 0.06122814118862152, -0.002256913110613823, 0.033911995589733124, 0.007795094978064299, 0.011584377847611904, 0.0017999090487137437, -0.019970767199993134, 0.027249520644545555, -0.01079320814460516, -0.008357241749763489, -0.05849652364850044, -0.05799683928489685, 0.005833829287439585, -0.037143293768167496, -0.014582490548491478, -0.01445756945759058, -0.09074290096759796, 0.08701191842556, 0.030164353549480438, -0.020104017108678818, -0.00472619291394949, 0.019221238791942596, -0.057363905012607574, 0.03159678354859352, 0.0383758544921875, -0.061361391097307205, -0.004380576778203249, 0.011409487575292587, 0.042506586760282516, -0.011967469938099384, -0.012383874505758286, -0.022702381014823914, -0.028665296733379364, -0.026216836646199226, 0.025284091010689735, 0.10326835513114929, 0.05323316901922226, 0.03624385967850685, -0.01868824101984501, 0.01595662534236908, 0.01880483329296112, 0.04450532793998718, -0.016373030841350555, -0.05849652364850044, -0.019770892336964607, -0.028332171961665154, -0.03980828449130058, 0.012933528050780296, 0.061361391097307205, -0.01737240143120289, -0.0011315796291455626, -0.013349933549761772, -0.03514455258846283, -0.03477811813354492, -0.010518381372094154, -0.008432194590568542, -0.02733280137181282, -0.06036201864480972, -0.0011784251546487212, -0.0370766706764698, 0.039708346128463745, -0.0025254942011088133, 0.06282713264226913, 0.010235226713120937, -0.034411679953336716, 0.011442800052464008, 0.022236008197069168, 0.03780954331159592, -0.0027565988712012768, -0.078483946621418, 0.011592705734074116, 0.011492768302559853, -0.01085150521248579, 0.010268538258969784, 0.056331221014261246, -0.013433214277029037, 0.01847171038389206, 0.009827150031924248, -0.02630011737346649, -0.03257950022816658, -0.025017591193318367, 0.028348829597234726, -0.06732430309057236, 0.011367847211658955, -0.007840899750590324, -0.07268759608268738, -0.022002821788191795, -0.0200540479272604, -0.042706459760665894, 0.0417737141251564, -0.036810170859098434, 0.007482791785150766, 0.0388089120388031, 0.03056410141289234, 0.02431803196668625, 0.06465931236743927, 0.033911995589733124, -0.016697825863957405, 0.00622941367328167, 0.06116151437163353, 0.025117527693510056, 0.0652589350938797, 0.024451281875371933, -0.023951595649123192, -0.03421180695295334, 0.009285823442041874, 0.005729727912694216, 0.07382021844387054, -0.048669375479221344, -0.05226711183786392, 0.01748899556696415, 0.03890885040163994, -0.061694514006376266, 0.09154240041971207, -0.06289375573396683, 0.0009254593169316649, 0.052400361746549606, 0.027516018599271774, 0.04034128412604332, 0.053532980382442474, -0.04860275238752365, 0.026416711509227753, -0.03224637731909752, 0.040208034217357635, -0.02103676274418831, 0.023135442286729813, 0.06326019763946533, -0.02371840924024582, -0.01281693484634161, 0.01732243411242962, -0.024251407012343407, 0.021603073924779892, 0.0007396387518383563, -0.006171117071062326, 0.021236637607216835, -0.009693900123238564, -0.038942161947488785, 0.031946565955877304, -0.00784506369382143, 0.017572276294231415, -0.0571640320122242, 0.047803252935409546, -0.009502354077994823, 0.019487738609313965, 0.002396408701315522, 0.05749715492129326, 0.02438465692102909, 0.03717660903930664, -0.04087428003549576, -0.01046841312199831, 0.06549212336540222, -0.04240664839744568, 0.03204650059342384, 0.020853545516729355, -0.045671261847019196, -0.03434505686163902, 0.0013710123021155596, -0.0006017046980559826, -0.011825892142951488, 0.015515237115323544, 0.0021840424742549658, 0.005404932424426079, 0.012567092664539814, 0.008215663954615593 ]
729,065
tables.unimplemented
UnImplemented
This class represents datasets not supported by PyTables in an HDF5 file. When reading a generic HDF5 file (i.e. one that has not been created with PyTables, but with some other HDF5 library based tool), chances are that the specific combination of datatypes or dataspaces in some dataset might not be supported by PyTables yet. In such a case, this dataset will be mapped into an UnImplemented instance and the user will still be able to access the complete object tree of the generic HDF5 file. The user will also be able to *read and write the attributes* of the dataset, *access some of its metadata*, and perform *certain hierarchy manipulation operations* like deleting or moving (but not copying) the node. Of course, the user will not be able to read the actual data on it. This is an elegant way to allow users to work with generic HDF5 files despite the fact that some of its datasets are not supported by PyTables. However, if you are really interested in having full access to an unimplemented dataset, please get in contact with the developer team. This class does not have any public instance variables or methods, except those inherited from the Leaf class (see :ref:`LeafClassDescr`).
class UnImplemented(hdf5extension.UnImplemented, Leaf): """This class represents datasets not supported by PyTables in an HDF5 file. When reading a generic HDF5 file (i.e. one that has not been created with PyTables, but with some other HDF5 library based tool), chances are that the specific combination of datatypes or dataspaces in some dataset might not be supported by PyTables yet. In such a case, this dataset will be mapped into an UnImplemented instance and the user will still be able to access the complete object tree of the generic HDF5 file. The user will also be able to *read and write the attributes* of the dataset, *access some of its metadata*, and perform *certain hierarchy manipulation operations* like deleting or moving (but not copying) the node. Of course, the user will not be able to read the actual data on it. This is an elegant way to allow users to work with generic HDF5 files despite the fact that some of its datasets are not supported by PyTables. However, if you are really interested in having full access to an unimplemented dataset, please get in contact with the developer team. This class does not have any public instance variables or methods, except those inherited from the Leaf class (see :ref:`LeafClassDescr`). """ # Class identifier. _c_classid = 'UNIMPLEMENTED' def __init__(self, parentnode, name): """Create the `UnImplemented` instance.""" # UnImplemented objects always come from opening an existing node # (they can not be created). self._v_new = False """Is this the first time the node has been created?""" self.nrows = SizeType(0) """The length of the first dimension of the data.""" self.shape = (SizeType(0),) """The shape of the stored data.""" self.byteorder = None """The endianness of data in memory ('big', 'little' or 'irrelevant').""" super().__init__(parentnode, name) def _g_open(self): (self.shape, self.byteorder, object_id) = self._open_unimplemented() try: self.nrows = SizeType(self.shape[0]) except IndexError: self.nrows = SizeType(0) return object_id def _g_copy(self, newparent, newname, recursive, _log=True, **kwargs): """Do nothing. This method does nothing, but a ``UserWarning`` is issued. Please note that this method *does not return a new node*, but ``None``. """ warnings.warn( "UnImplemented node %r does not know how to copy itself; skipping" % (self._v_pathname,)) return None # Can you see it? def _f_copy(self, newparent=None, newname=None, overwrite=False, recursive=False, createparents=False, **kwargs): """Do nothing. This method does nothing, since `UnImplemented` nodes can not be copied. However, a ``UserWarning`` is issued. Please note that this method *does not return a new node*, but ``None``. """ # This also does nothing but warn. self._g_copy(newparent, newname, recursive, **kwargs) return None # Can you see it? def __repr__(self): return """{} NOTE: <The UnImplemented object represents a PyTables unimplemented dataset present in the '{}' HDF5 file. If you want to see this kind of HDF5 dataset implemented in PyTables, please contact the developers.> """.format(str(self), self._v_file.filename)
(parentnode, name)
[ 0.0017481514951214194, -0.058728475123643875, -0.011357687413692474, 0.026068059727549553, -0.024090351536870003, -0.0154732009395957, -0.017375566065311432, 0.015171836130321026, -0.03414840251207352, -0.05970790982246399, 0.008216900750994682, 0.0000754147840780206, -0.026482434943318367, 0.04972520098090172, -0.06569753587245941, 0.01718721352517605, 0.006672406103461981, 0.08483420312404633, 0.0010624288115650415, 0.008673656731843948, -0.04004385322332382, 0.0035598722752183676, 0.015209507197141647, 0.0505162812769413, -0.03418607637286186, 0.01613243669271469, -0.035881251096725464, -0.0027899793349206448, 0.06882419437170029, -0.06799544394016266, -0.09093683958053589, 0.003180811880156398, -0.028460143133997917, 0.020172609016299248, 0.02188662253320217, -0.004687636159360409, 0.036163780838251114, 0.040571242570877075, -0.023205094039440155, 0.014399589039385319, -0.02124622091650963, -0.04162601754069328, 0.019098997116088867, -0.07168716192245483, 0.03940345346927643, 0.04904712736606598, 0.033018287271261215, 0.010189899243414402, -0.04576978459954262, -0.02469308115541935, 0.009177501313388348, 0.04019453749060631, 0.010058051906526089, 0.02938307262957096, -0.049762871116399765, 0.0292135551571846, 0.02559717744588852, 0.006667697336524725, -0.035316191613674164, 0.03623912110924721, -0.02938307262957096, 0.04961218684911728, 0.029458412900567055, -0.04004385322332382, -0.030475519597530365, -0.011875658296048641, -0.014559688977897167, -0.05315322428941727, -0.04396159574389458, 0.0292135551571846, -0.018618697300553322, -0.008334621787071228, 0.04923548176884651, 0.08475886285305023, 0.06694066524505615, -0.030381344258785248, 0.002749954117462039, -0.053605273365974426, 0.015548542141914368, -0.020568151026964188, 0.014333665370941162, -0.02132156305015087, 0.014173565432429314, 0.0038306296337395906, 0.019777068868279457, -0.004037817940115929, 0.0817452147603035, 0.03294294327497482, -0.004167310893535614, 0.023581799119710922, -0.015209507197141647, 0.018637532368302345, -0.023148586973547935, 0.01510591246187687, 0.026990989223122597, -0.03226487338542938, -0.032453227788209915, -0.015039989724755287, -0.0059425379149615765, -0.037802454084157944, 0.014785712584853172, -0.0130528649315238, -0.021020198240876198, -0.012280617840588093, -0.039667148143053055, 0.005829526111483574, -0.01068903412669897, 0.03940345346927643, -0.036954864859580994, -0.06113939359784126, -0.06000927463173866, 0.04923548176884651, 0.010123975574970245, 0.03207651898264885, 0.05801273137331009, -0.06938925385475159, -0.008160394616425037, -0.021509915590286255, -0.010274657979607582, -0.017573338001966476, -0.005937829148024321, 0.039780158549547195, -0.06558452546596527, 0.005603502504527569, 0.010660781525075436, -0.00771305663511157, 0.048519741743803024, -0.007769562304019928, -0.005094949621707201, -0.09244366735219955, 0.01680109091103077, 0.006022587884217501, -0.024561235681176186, 0.047728657722473145, -0.013636759482324123, -0.03190700337290764, 0.016904683783650398, 0.0023414636962115765, -0.05349225923418999, 0.0019117832416668534, 0.019475704059004784, -0.05982092022895813, 0.0669783353805542, 0.02927006036043167, 0.011564875952899456, 0.010594857856631279, -0.0026557776145637035, -0.0550367534160614, -0.008150977082550526, -0.02081300877034664, -0.0459958091378212, -0.05029026046395302, -0.04980054125189781, 0.014870471321046352, 0.0090786162763834, -0.0030065851751714945, -0.014926977455615997, -0.07745076715946198, -0.048632752150297165, -0.03011764958500862, -0.04313284531235695, -0.06177979335188866, 0.016951773315668106, -0.008447633124887943, -0.0687488541007042, -0.0005353346350602806, 0.0016469118418172002, -0.10238870978355408, -0.04689990356564522, 0.029853954911231995, 0.0044686757028102875, 0.005820108577609062, 0.013655594550073147, 0.08325203508138657, 0.006620608735829592, 0.019089579582214355, 0.01240304671227932, 0.01820432022213936, -0.004892469849437475, -0.02474958822131157, 0.02768789604306221, 0.02262119948863983, -0.05970790982246399, 0.05571482703089714, 0.0190048199146986, 0.031078249216079712, 0.01203575823456049, -0.019070744514465332, 0.06562219560146332, 0.0471259281039238, -0.021001363173127174, -0.011404776014387608, 0.018420925363898277, 0.0806150957942009, 0.09455321729183197, -0.019758231937885284, 0.019193174317479134, 0.05209844931960106, -0.015153001062572002, 0.06494412571191788, 0.01663157157599926, 0.026463599875569344, 0.09447787702083588, -0.014785712584853172, -0.0606873445212841, 0.018741127103567123, 0.0195698793977499, 0.013599088415503502, -0.0698789730668068, 0.022300997748970985, 0.009719016030430794, -0.030758049339056015, -0.004346246365457773, 0.03360218182206154, 0.03671000525355339, -0.06392701715230942, -0.06592355668544769, 0.013853365555405617, -0.03817915916442871, -0.0022131481673568487, 0.032453227788209915, 0.0635126382112503, -0.05232447013258934, 0.01797829568386078, -0.021754775196313858, -0.02955259010195732, 0.02209381014108658, -0.01844917982816696, 0.06599890440702438, -0.003324430901557207, -0.013740353286266327, -0.01370268315076828, -0.0018941251328215003, -0.027989260852336884, 0.03298061713576317, 0.09282037615776062, 0.0065264324657619, -0.02599271759390831, -0.0073363506235182285, 0.018854137510061264, -0.0714234709739685, -0.06840982288122177, 0.031775154173374176, 0.00115601671859622, 0.004588750656694174, -0.021547585725784302, 0.015435530804097652, 0.0572969913482666, -0.035655226558446884, -0.003974249120801687, -0.00346805015578866, -0.05255049467086792, -0.022319834679365158, 0.012450135312974453, 0.04859508201479912, -0.04991355165839195, -0.013260053470730782, -0.06298525631427765, 0.028441308066248894, -0.0160194244235754, -0.02350645884871483, -0.08069043606519699, 0.03704904019832611, 0.06136541813611984, -0.015802819281816483, -0.023374611511826515, 0.001343192532658577, -0.003986021038144827, -0.044564325362443924, -0.0035433913581073284, 0.0355045460164547, 0.050892990082502365, -0.020059596747159958, -0.003531619207933545, -0.024598905816674232, -0.026520106941461563, -0.013552000746130943, -0.0014938749372959137, 0.01996542140841484, -0.023751316592097282, 0.026746129617094994, -0.03226487338542938, -0.024881435558199883, 0.006314535159617662, -0.026199907064437866, -0.02367597632110119, -0.06652628630399704, -0.03507133573293686, -0.01865636743605137, -0.030381344258785248, -0.023751316592097282, 0.01985240913927555, -0.048406727612018585, 0.00620152335613966, 0.06400235742330551, 0.011941581964492798, -0.07217688113451004, 0.023977341130375862, 0.025559505447745323, -0.01510591246187687, -0.01922142691910267, -0.05394430831074715, 0.03725622966885567, 0.01922142691910267, -0.009022110141813755, -0.07515285909175873, 0.008913806639611721, 0.018006550148129463, -0.042718466371297836, 0.012478387914597988, 0.04803002253174782, -0.0009517713915556669, 0.022960234433412552, 0.03478880599141121, 0.028667330741882324, -0.008800795301795006, 0.014004047960042953, -0.011715558357536793, 0.021924292668700218, 0.05831409618258476, -0.04471500962972641, 0.003736453130841255, -0.042605455964803696, -0.018797632306814194, 0.01797829568386078, -0.07737542688846588, 0.0839301124215126, -0.01630195416510105, -0.01968289166688919, 0.005914285313338041, -0.021622927859425545, -0.011762646958231926, 0.03981782868504524, 0.010980981402099133, -0.005815399810671806, 0.02881801314651966, 0.0027146381326019764, -0.009907369501888752, 0.01595350168645382, -0.029872789978981018, 0.022696539759635925, 0.020907185971736908, 0.008937351405620575, -0.014992901124060154, 0.03778361901640892, -0.05153338983654976, 0.01629253663122654, 0.0059943352825939655, 0.016499726101756096, 0.09440253674983978, 0.05831409618258476, 0.019946586340665817, -0.06313593685626984, 0.020662326365709305, 0.055225107818841934, -0.031379614025354385, 0.000784608069807291, -0.005886032246053219, -0.0011730862315744162, -0.004647611174732447, 0.06901255249977112, -0.06080035865306854, -0.015548542141914368, -0.026708459481596947, 0.006512306164950132, -0.054886072874069214, -0.01607593148946762, 0.01873170956969261, -0.005636464338749647, -0.014456095173954964, -0.03501482680439949, -0.08038907498121262, -0.032509732991456985, -0.05631755664944649, 0.03298061713576317, -0.02604922465980053, -0.01068903412669897, 0.05198543518781662, -0.0669783353805542, 0.009394107386469841, 0.05571482703089714, 0.004916014149785042, -0.021415740251541138, 0.003677592845633626, -0.012534894049167633, -0.011480117216706276, 0.027895083650946617, 0.04573211446404457, -0.01415473036468029, 0.03704904019832611, 0.030871061608195305, 0.009045653976500034, -0.0002769378188531846, 0.0016975316684693098, -0.019070744514465332, 0.026821471750736237, -0.0261057298630476, 0.036860689520835876, -0.020153773948550224, -0.026595447212457657, 0.005151455290615559, -0.0533415786921978, 0.010284075513482094, 0.05232447013258934, 0.010745540261268616, 0.010359416715800762, 0.07519052922725677, 0.005598793737590313, -0.005377478897571564, -0.0014420779189094901, 0.04708825796842575, 0.04290682077407837, -0.029288895428180695, 0.007703639101237059, 0.04241710156202316, 0.03390354663133621, 0.024316376075148582, -0.020624656230211258, 0.05096833035349846, 0.004007210489362478, -0.03469462692737579, 0.032001178711652756, 0.019645221531391144, 0.058841485530138016, -0.015501454472541809, -0.014597360044717789, -0.046711552888154984, 0.013580253347754478, -0.02531464770436287, 0.04339653626084328, 0.024655411019921303, 0.008791377767920494, -0.02435404621064663, -0.03377169743180275, 0.004963102284818888, -0.0371997244656086, -0.015972336754202843, -0.05104367062449455, 0.004009564872831106, 0.06072501465678215, -0.023016739636659622, 0.040119193494319916, 0.050440941005945206, -0.023073246702551842, 0.010397086851298809, -0.0012678513303399086, -0.037011370062828064, 0.05530044808983803, -0.018430344760417938, 0.03778361901640892, 0.02655777707695961, 0.027160506695508957, 0.02587970532476902, -0.009314057417213917, -0.08272465318441391, -0.030268331989645958, -0.0015998235903680325, -0.01787470281124115, 0.022074975073337555, 0.024711918085813522, 0.003244380932301283, 0.05763602629303932, 0.028780343011021614, -0.03714321553707123, 0.028215283527970314, 0.009803774766623974, 0.03697369992733002, -0.03736924007534981, -0.038084983825683594, -0.04268079623579979, 0.044225290417671204, 0.0018717582570388913, 0.019588714465498924, -0.0309464018791914, -0.006003752816468477, -0.016170106828212738, -0.028064601123332977, -0.01613243669271469, -0.02780090644955635, -0.05292719975113869, 0.05228679999709129, -0.05413265898823738, 0.02746187150478363, -0.03605077043175697, -0.016443219035863876, -0.0037835414987057447, 0.02898753061890602, 0.02328043431043625, 0.006474635563790798, -0.044903360307216644, -0.042040396481752396, -0.013881618157029152, -0.05891682580113411, -0.006827797275036573, 0.03017415478825569, 0.013523747213184834, 0.02531464770436287, 0.01962638646364212, 0.0014938749372959137, -0.08302601426839828, 0.024843763560056686, -0.03226487338542938, -0.023638304322957993, -0.039893172681331635, 0.02339344657957554, -0.003635213477537036, 0.07880690693855286, 0.02132156305015087, 0.01169672328978777, -0.0454307496547699, -0.0074258181266486645, 0.018750544637441635, -0.013147041201591492, 0.019758231937885284, 0.015181253664195538, 0.04701291769742966, -0.015275430865585804, 0.028384801000356674, 0.012610235251486301, 0.017940625548362732, 0.014710371382534504, 0.00511849345639348, 0.04494103416800499, 0.015774566680192947, -0.043848585337400436, 0.015237759798765182, -0.022470517084002495, 0.03028716705739498, 0.04983821138739586, 0.026746129617094994, -0.008635986596345901, -0.03237788379192352, -0.007887283340096474, 0.0010488908737897873, 0.016424383968114853, 0.03401655703783035, -0.000784019473940134, 0.021547585725784302, 0.009610713459551334, 0.005146746523678303, 0.0028041056357324123, 0.025804365053772926, 0.006776000373065472, -0.027593718841671944, -0.020775338634848595, -0.0380096398293972, -0.04900945723056793, 0.04912247136235237, 0.029759777709841728, 0.005259758327156305, 0.009841445833444595, 0.011037487536668777, 0.04878343269228935, -0.04803002253174782, 0.06498179584741592, -0.016998860985040665, 0.025691352784633636, -0.00004300482396502048, 0.0012678513303399086, 0.023525293916463852, -0.04019453749060631, -0.004113159142434597, 0.0067289117723703384, -0.038254499435424805, 0.06776942312717438, 0.030645037069916725, -0.012252364307641983, 0.013891035690903664, -0.032566238194704056, -0.04211573675274849, -0.01623603142797947, 0.08189589530229568, 0.03328198194503784, -0.004247360862791538, -0.020718833431601524, -0.015605048276484013, -0.05763602629303932, 0.042944490909576416, 0.017488578334450722, -0.08151919394731522, 0.006112055853009224, 0.026802636682987213, 0.026350589469075203, -0.004720597993582487, 0.0033597471192479134, -0.023242764174938202, -0.039441123604774475, 0.0675433948636055, -0.007548247464001179, -0.005019608419388533, 0.007618879899382591, -0.03849935904145241, -0.02166059799492359, -0.025107458233833313, 0.027198176831007004, 0.04934849217534065, -0.02188662253320217, -0.032961778342723846, 0.026708459481596947, -0.005980208516120911, -0.05160873010754585, 0.03288643807172775, -0.049310822039842606, -0.026068059727549553, 0.017224883660674095, -0.013457823544740677, 0.00479358434677124, -0.0016139500075951219, 0.01764867827296257, -0.029119377955794334, 0.01899540238082409, 0.07507751882076263, 0.018298497423529625, -0.06498179584741592, -0.02797042392194271, -0.05401964858174324, -0.0018905935576185584, -0.018392672762274742, 0.004859508015215397, 0.001465621986426413, -0.030908731743693352, -0.007543538697063923, -0.0038753636181354523, -0.02216915227472782, -0.038480523973703384, -0.02401501126587391, -0.0019117832416668534, 0.03186933323740959, 0.01951337419450283, 0.005980208516120911, 0.028064601123332977, -0.03597543016076088, -0.023920834064483643, 0.004873634781688452, -0.002684030681848526, -0.03725622966885567, -0.0224328450858593, -0.024655411019921303, 0.03117242641746998, 0.08551227301359177, 0.014079389162361622, -0.026143399998545647, 0.0016633926425129175, 0.001962403068318963, -0.03309362754225731, -0.020831845700740814, 0.015331936068832874, -0.023713646456599236, 0.008923225104808807, -0.0035645810421556234, -0.0037882502656430006, 0.05989626422524452, 0.05074230581521988, -0.05172174051403999, 0.0005732995341531932, 0.04870809242129326, -0.03635213524103165, -0.001878821407444775, 0.025691352784633636, 0.031097084283828735, -0.027706731110811234, -0.050440941005945206, 0.028158778324723244, 0.0261057298630476, 0.10766258835792542, 0.06599890440702438, 0.05138270556926727, 0.0072939712554216385, 0.028008095920085907, -0.0035245560575276613, -0.06441673636436462, 0.05364294350147247, 0.006163852754980326, -0.04358489066362381, -0.028799178078770638, -0.047728657722473145, 0.02081300877034664, -0.0071103270165622234, -0.014748042449355125, 0.008042674511671066, 0.03040017932653427, 0.0794849768280983, -0.054434023797512054, -0.02407151646912098, -0.002154287649318576, 0.07865622639656067, -0.0012749145971611142, -0.036785345524549484, 0.005881323479115963, -0.09568333625793457, -0.008362874388694763, 0.033244308084249496, 0.04155067726969719, 0.05880381539463997, -0.039215099066495895, -0.02103903330862522, 0.026199907064437866, -0.03399772197008133, -0.013994630426168442, -0.01375918835401535, 0.04072192311286926, 0.018053637817502022, -0.0297786146402359, 0.018468014895915985, 0.037293899804353714, 0.0710090920329094, -0.07387205958366394, 0.017375566065311432, 0.006192105822265148, -0.004522826988250017, -0.02780090644955635, 0.08031373471021652, -0.02627524733543396, -0.05936887487769127, -0.005514035001397133, -0.013627341948449612, 0.013825112022459507, 0.011093993671238422, -0.06543384492397308, 0.020097268745303154, 0.0075247036293148994, 0.006625317968428135, 0.0550367534160614, 0.059180520474910736, -0.05311555415391922, 0.06121473386883736, -0.011546040885150433, -0.07481382042169571, -0.02491910569369793, 0.06912556290626526, 0.04678689315915108, 0.07115977257490158, -0.036954864859580994, 0.009879115968942642, 0.018581027165055275, -0.06856050342321396, 0.015284848399460316, 0.002658132230862975, 0.022357504814863205, 0.04339653626084328, -0.01618894189596176, -0.04539307951927185, -0.03181282803416252, 0.050214916467666626, -0.016829343512654305, -0.021133210510015488, 0.004661737475544214, 0.07767678797245026, 0.023864328861236572, 0.10080654174089432, 0.021001363173127174, -0.015256594866514206, -0.06038597971200943, 0.0011048081796616316, 0.046146493405103683, -0.038141489028930664, 0.03164330869913101, -0.008325204253196716, -0.00028046942315995693, -0.057033296674489975, -0.050101906061172485, -0.0001307434868067503, 0.012045175768435001, 0.017121290788054466, 0.019362691789865494, 0.03328198194503784, -0.02226332761347294, 0.012158188037574291 ]
729,067
tables.unimplemented
__init__
Create the `UnImplemented` instance.
def __init__(self, parentnode, name): """Create the `UnImplemented` instance.""" # UnImplemented objects always come from opening an existing node # (they can not be created). self._v_new = False """Is this the first time the node has been created?""" self.nrows = SizeType(0) """The length of the first dimension of the data.""" self.shape = (SizeType(0),) """The shape of the stored data.""" self.byteorder = None """The endianness of data in memory ('big', 'little' or 'irrelevant').""" super().__init__(parentnode, name)
(self, parentnode, name)
[ 0.003770934185013175, -0.022745316848158836, 0.016814958304166794, 0.002518560504540801, -0.036816105246543884, -0.0026981288101524115, -0.03127250820398331, 0.017717404291033745, -0.00848575308918953, -0.04346473515033722, 0.016759706661105156, 0.025599991902709007, -0.01306704618036747, 0.0367424339056015, -0.05528861656785011, 0.034145601093769073, 0.018076540902256966, 0.02843625098466873, -0.05293120816349983, 0.021400857716798782, -0.060813795775175095, 0.0503527894616127, 0.02005639672279358, 0.028546754270792007, 0.011427910067141056, 0.05425725132226944, -0.03029639460146427, -0.00433266069740057, 0.024108193814754486, -0.06582328677177429, -0.07551077008247375, -0.0010394242126494646, 0.003347337245941162, 0.04836372658610344, 0.06781235337257385, 0.017625318840146065, -0.02572891302406788, 0.02979912795126438, -0.044164590537548065, 0.032598551362752914, 0.035637401044368744, -0.06549178063869476, -0.035545311868190765, -0.045748475939035416, 0.010921435430645943, 0.051199983805418015, 0.04873207211494446, -0.00948488898575306, -0.041438836604356766, -0.008025321178138256, -0.011068773455917835, 0.03827106952667236, 0.02784689888358116, 0.04368574172258377, -0.06906472891569138, 0.058235377073287964, 0.046116821467876434, 0.048105884343385696, -0.0301674734801054, 0.04188084974884987, -0.03444027900695801, 0.07543709874153137, 0.038676247000694275, -0.05915624275803566, -0.03388775885105133, 0.0009599997429177165, -0.03057265281677246, -0.027147041633725166, -0.03589524328708649, 0.07061177492141724, 0.021474525332450867, 0.015442873351275921, -0.011510788463056087, 0.09083393216133118, 0.06998559087514877, -0.012514528818428516, -0.008633091114461422, -0.020037980750203133, 0.011915967799723148, -0.0040149628184735775, 0.004084027372300625, 0.015396829694509506, -0.03375883772969246, 0.01618877239525318, 0.010065033100545406, -0.01097668707370758, 0.048658404499292374, 0.021437691524624825, -0.003989639226347208, 0.0240345261991024, -0.017266182228922844, 0.03248804807662964, -0.026207761839032173, 0.027239128947257996, 0.02994646690785885, -0.027478553354740143, 0.0037755384109914303, -0.04961610212922096, 0.029614955186843872, -0.027386466041207314, -0.021014094352722168, 0.04980027303099632, -0.053152214735746384, -0.06048228591680527, -0.021990209817886353, 0.014135248027741909, -0.001321438467130065, -0.01392344944179058, -0.018076540902256966, -0.03302215039730072, -0.02508430927991867, 0.044974952936172485, -0.03444027900695801, 0.0979798287153244, 0.01131740678101778, -0.03479020670056343, -0.0075280554592609406, -0.014752225950360298, 0.008310789242386818, -0.011741003952920437, 0.023168914020061493, 0.012542154639959335, -0.05326271802186966, 0.0005968343466520309, 0.009530932642519474, 0.029283445328474045, 0.047295525670051575, -0.01692546345293522, 0.007293235510587692, -0.04464343935251236, 0.050831638276576996, -0.0013835966819897294, -0.022708483040332794, 0.04438559710979462, -0.02930186130106449, -0.004459279123693705, 0.05212084949016571, -0.00943884626030922, -0.06519710272550583, 0.006731508765369654, 0.006501293275505304, -0.03897092491388321, 0.052010346204042435, 0.021603446453809738, -0.014245751313865185, 0.06423940509557724, -0.034863874316215515, -0.03687135502696037, -0.022376971319317818, -0.04195452108979225, -0.017312224954366684, -0.024126611649990082, -0.020516827702522278, 0.01438388042151928, 0.02504747547209263, -0.02558157593011856, -0.01864747703075409, -0.06132948026061058, -0.03941293805837631, 0.0005058991373516619, -0.055141277611255646, -0.033003732562065125, 0.029320279136300087, -0.06519710272550583, -0.06862271577119827, -0.0017899275990203023, -0.0024425892625004053, -0.1111665889620781, -0.034274522215127945, 0.038860421627759933, 0.012542154639959335, -0.036816105246543884, -0.034734953194856644, 0.05676199868321419, -0.006671652663499117, 0.004438559990376234, 0.012588197365403175, 0.0023010065779089928, -0.007827335968613625, -0.008973810821771622, 0.039854951202869415, 0.009259277954697609, -0.05410991236567497, 0.009705896489322186, 0.03707394748926163, -0.0026198553387075663, -0.006390789523720741, 0.002497840905562043, 0.09746414422988892, 0.04188084974884987, -0.0046296389773488045, 0.009521723724901676, -0.003480862360447645, 0.03501121327280998, 0.09473838657140732, -0.0027994236443191767, 0.024421287700533867, 0.03149351477622986, -0.033722005784511566, 0.05525178089737892, 0.028344163671135902, 0.023261001333594322, 0.05440459027886391, -0.027883732691407204, -0.04372257739305496, 0.033777255564928055, -0.012063305824995041, 0.015562585555016994, -0.020811505615711212, 0.014660139568150043, -0.023887187242507935, -0.013343305326998234, 0.02059049718081951, 0.06737034022808075, 0.008973810821771622, -0.06420256942510605, -0.0807412713766098, 0.007509638089686632, -0.01023078802973032, -0.007454386446624994, 0.09002356976270676, 0.03534272313117981, -0.015406038612127304, -0.034458696842193604, -0.04018646478652954, -0.012578989379107952, -0.023463590070605278, -0.0594140850007534, -0.019172368571162224, 0.006708487402647734, -0.04328056424856186, -0.024384453892707825, -0.02672344632446766, -0.008223307318985462, 0.011335823684930801, 0.045159123837947845, -0.005184459034353495, -0.002172085689380765, -0.05156832933425903, -0.019153950735926628, -0.05480976775288582, -0.04895307868719101, 0.013168341480195522, -0.05013178288936615, 0.0035107904113829136, -0.009862443432211876, 0.0181410014629364, 0.0748477503657341, -0.05329955369234085, -0.026889201253652573, -0.04607998579740524, -0.07646846771240234, -0.026281431317329407, 0.007537263911217451, 0.07558444142341614, -0.0435384064912796, -0.04442243278026581, -0.04228603094816208, 0.0217692032456398, 0.004357984289526939, -0.005469926632940769, -0.025471072643995285, 0.029504451900720596, 0.07794184982776642, 0.004445466212928295, -0.03819739818572998, 0.007753666955977678, -0.0017553952056914568, -0.034458696842193604, 0.00032028768328018486, 0.08648745715618134, 0.01669524610042572, -0.005723163951188326, 0.007656976114958525, -0.02018531784415245, -0.053962573409080505, -0.03346416354179382, -0.0010952515294775367, -0.0030250351410359144, -0.0018002872820943594, 0.009834817610681057, 0.0076661850325763226, 0.0017208628123626113, 0.018629059195518494, -0.048474229872226715, -0.052231352776288986, -0.015148197300732136, -0.025563158094882965, -0.06000343710184097, -0.04707451909780502, -0.04431192949414253, 0.06320803612470627, -0.047884877771139145, 0.04165984317660332, 0.08383537083864212, -0.015433664433658123, -0.04438559710979462, 0.062618687748909, 0.010157119482755661, -0.0136103555560112, 0.005193667486310005, -0.0598929338157177, -0.021842870861291885, -0.00796086061745882, 0.004972660448402166, -0.016759706661105156, -0.01946704462170601, 0.05856689065694809, -0.022929489612579346, 0.011096399277448654, 0.022082295268774033, 0.04427509382367134, 0.020608915016055107, 0.07558444142341614, 0.010810932144522667, -0.015323161147534847, 0.03339049220085144, -0.07749983668327332, 0.022340137511491776, 0.08376169949769974, -0.030241142958402634, -0.0033519414719194174, -0.04092315211892128, -0.053962573409080505, -0.03915509581565857, -0.026962870731949806, 0.03053581900894642, -0.002467912854626775, -0.019043447449803352, 0.03525063768029213, -0.025342151522636414, -0.011998845264315605, 0.0340166799724102, -0.03626358509063721, -0.05503077432513237, -0.00868834275752306, 0.0035982723347842693, -0.009779565967619419, -0.008909350261092186, -0.03819739818572998, 0.03816056624054909, -0.004183020442724228, -0.013481435365974903, -0.0006814386579208076, 0.022837404161691666, -0.050831638276576996, 0.0403706356883049, -0.053152214735746384, 0.04876890778541565, 0.04814272001385689, -0.013343305326998234, 0.0026728049851953983, -0.07057494670152664, 0.02920977585017681, 0.048253223299980164, -0.019430210813879967, -0.027183877304196358, 0.007261005230247974, -0.003750214818865061, 0.007514242548495531, 0.054957106709480286, -0.024715963751077652, -0.025471072643995285, -0.024697547778487206, -0.04291221871972084, -0.08471939712762833, 0.008858702145516872, 0.025507906451821327, -0.005562013015151024, 0.0032828766852617264, -0.02158503048121929, -0.09400170296430588, -0.05204717814922333, -0.0244949571788311, 0.02762589044868946, -0.013858988881111145, -0.03215653821825981, 0.023389920592308044, -0.0217692032456398, -0.07580544799566269, -0.014135248027741909, 0.010635968297719955, 0.007412947714328766, -0.014448340982198715, -0.014393089339137077, 0.012063305824995041, 0.010249205864965916, 0.07127480208873749, -0.0022169777657836676, 0.05407307669520378, -0.05425725132226944, 0.024605460464954376, -0.00891855824738741, 0.01136344950646162, -0.018546180799603462, 0.03838157281279564, 0.0421755276620388, 0.00311251706443727, -0.055730629712343216, -0.019172368571162224, 0.01919078640639782, -0.04479077830910683, -0.042028188705444336, 0.04755336791276932, 0.019338123500347137, 0.0044799987226724625, 0.062029335647821426, -0.020885173231363297, 0.007145897019654512, -0.0017680570017546415, 0.056909337639808655, 0.022579561918973923, -0.023205747827887535, -0.035379558801651, 0.01628085784614086, 0.0050785597413778305, 0.03919193148612976, 0.008310789242386818, 0.074405737221241, -0.011538414284586906, -0.04589581489562988, 0.09267565608024597, 0.0458221435546875, 0.07109062373638153, -0.009540141560137272, 0.024237114936113358, -0.005575825925916433, 0.0024425892625004053, 0.00017899274826049805, 0.04843739792704582, -0.01605985127389431, 0.03922876715660095, 0.001048632781021297, -0.011529205366969109, 0.011621291749179363, -0.02250589244067669, -0.015617837198078632, -0.061403147876262665, -0.05543595552444458, 0.08442472666501999, 0.008430501446127892, 0.006634818390011787, 0.02998330071568489, 0.012846039608120918, 0.0056725163012743, -0.0031654667109251022, -0.00889093242585659, 0.03075682558119297, 0.0067913648672401905, 0.0006566904485225677, 0.03261696919798851, -0.003761725500226021, 0.058088041841983795, -0.027110207825899124, -0.08015192300081253, -0.039670780301094055, -0.024715963751077652, -0.005810645874589682, 0.01891452632844448, -0.02173236757516861, -0.018813231959939003, 0.05267336592078209, -0.011741003952920437, -0.03116200491786003, 0.0025438840966671705, 0.032101284712553024, 0.026686610653996468, -0.022671647369861603, -0.02294790744781494, -0.025507906451821327, 0.03197236359119415, 0.02294790744781494, 0.008494962006807327, -0.05757235735654831, 0.007072228007018566, -0.039118263870477676, -0.05304171144962311, -0.038676247000694275, -0.024016108363866806, -0.07492141425609589, -0.0002880574611481279, -0.04777437448501587, 0.014871938154101372, 0.008715968579053879, -0.0016506470274180174, -0.020424742251634598, -0.004058703780174255, 0.007684601936489344, 0.019816972315311432, 0.0016771218506619334, -0.03589524328708649, -0.0005732372519560158, -0.049063581973314285, 0.0036235961597412825, 0.07477407902479172, 0.008191077038645744, 0.023168914020061493, 0.01692546345293522, -0.012026471085846424, -0.05031595751643181, 0.0022169777657836676, -0.02436603605747223, -0.021566612645983696, -0.04147567227482796, 0.011409493163228035, -0.017855534330010414, 0.019209202378988266, 0.005888919346034527, -0.004498416092246771, -0.010820141062140465, -0.007431364618241787, 0.005994818639010191, -0.018711937591433525, 0.008600860834121704, 0.024016108363866806, 0.07735249400138855, -0.02322416566312313, 0.026833949610590935, -0.0011349637061357498, -0.01111481711268425, 0.04913725331425667, 0.015755966305732727, 0.020130066201090813, -0.0033519414719194174, -0.026612941175699234, 0.02281898632645607, -0.03394301235675812, 0.0009364025900140405, 0.042617540806531906, 0.03819739818572998, 0.0012374097714200616, -0.0721219927072525, -0.012569780461490154, 0.04840056225657463, -0.0073945303447544575, 0.03952344134449959, 0.04342789947986603, 0.05341005697846413, -0.004394819028675556, -0.015562585555016994, 0.021842870861291885, 0.03158560395240784, 0.03237754479050636, -0.036908190697431564, -0.026023589074611664, -0.02712862566113472, -0.0075787026435136795, 0.029246609658002853, 0.016363736242055893, -0.021290354430675507, -0.014439132995903492, -0.034311357885599136, 0.023979274556040764, -0.03521380200982094, 0.07400055229663849, 0.009134961292147636, 0.027183877304196358, -0.02548948861658573, 0.02858358807861805, 0.016593951731920242, -0.006851220969110727, 0.021198267117142677, 0.024200281128287315, -0.012781579047441483, 0.03302215039730072, 0.034182436764240265, -0.028638841584324837, -0.0192828718572855, -0.0018094958504661918, 0.01116085983812809, 0.027110207825899124, 0.019706469029188156, 0.05366789922118187, 0.012238269671797752, -0.005124602932482958, -0.030885746702551842, -0.027773229405283928, 0.06762818247079849, -0.005617264658212662, -0.08744515478610992, 0.0005202876054681838, -0.006188199855387211, -0.04177034646272659, -0.028049487620592117, 0.0004886329406872392, -0.03567423298954964, -0.04033380001783371, 0.03941293805837631, 0.028141574934124947, -0.03922876715660095, 0.024126611649990082, -0.04641149565577507, -0.019522296264767647, -0.017864743247628212, 0.004843739792704582, 0.01941179297864437, 0.019246038049459457, -0.04563797265291214, 0.03134617954492569, -0.00943884626030922, -0.05849321931600571, 0.028104739263653755, -0.0331142358481884, 0.015912514179944992, -0.0010682011488825083, -0.024329202249646187, -0.016446614637970924, 0.04821638762950897, 0.019761720672249794, -0.026833949610590935, 0.0657864585518837, 0.019246038049459457, 0.0165571179240942, -0.04088632017374039, -0.029375530779361725, -0.031456682831048965, -0.0037410061340779066, -0.010553090833127499, 0.03466128557920456, 0.015866469591856003, -0.030719991773366928, -0.031088337302207947, 0.0077214366756379604, -0.02318733185529709, -0.07838386297225952, -0.01805812492966652, 0.021492943167686462, -0.009300717152655125, 0.010875392705202103, -0.02350042574107647, 0.051199983805418015, -0.046743009239435196, -0.026005173102021217, -0.04420142620801926, -0.012127766385674477, -0.042028188705444336, -0.018030498176813126, 0.005460717715322971, 0.047111354768276215, 0.08287767320871353, -0.004031077958643436, 0.02867567539215088, 0.011989637278020382, -0.01340776588767767, -0.041217830032110214, -0.047700706869363785, 0.03683452308177948, -0.04799538105726242, 0.019338123500347137, 0.0038860421627759933, -0.01512977946549654, 0.07002242654561996, 0.06420256942510605, -0.027202295139431953, 0.013831363059580326, 0.03707394748926163, -0.037000276148319244, 0.022616395726799965, 0.015074527822434902, 0.014871938154101372, -0.029725458472967148, -0.02245064079761505, 0.019485462456941605, 0.02195337414741516, 0.09024457633495331, 0.055325452238321304, 0.03515855222940445, 0.00961381010711193, -0.036816105246543884, -0.030093804001808167, -0.03933927044272423, 0.09989522397518158, 0.02989121526479721, -0.033279988914728165, -0.000036097113479627296, -0.01263424102216959, -0.012219852767884731, -0.006013235542923212, 0.021511361002922058, 0.03768171742558479, 0.011179277673363686, 0.04759020358324051, -0.0170175489038229, -0.07134846597909927, 0.003519999096170068, 0.04272804409265518, -0.04313322529196739, 0.0075280554592609406, 0.01057150773704052, -0.10107392817735672, -0.02073783613741398, -0.013481435365974903, 0.04235969856381416, 0.03786588832736015, -0.035176970064640045, -0.011925176717340946, 0.00602244446054101, -0.01023078802973032, 0.008163451217114925, 0.007353091612458229, 0.06132948026061058, 0.0210877638310194, -0.021253518760204315, 0.007845752872526646, 0.019264454022049904, 0.048253223299980164, -0.06074012815952301, 0.01950387842953205, 0.03239596262574196, 0.015000859275460243, 0.019448626786470413, 0.08317235112190247, -0.03351941332221031, -0.09017091244459152, -0.01306704618036747, 0.05469926446676254, 0.008154242299497128, 0.044569771736860275, -0.06265552341938019, 0.015092945657670498, 0.006206616759300232, 0.021014094352722168, 0.03941293805837631, 0.049247756600379944, -0.029320279136300087, 0.02024056948721409, -0.024052942171692848, -0.06641264259815216, 0.004238272085785866, 0.024052942171692848, 0.024329202249646187, 0.04700085148215294, -0.051642000675201416, -0.0010371219832450151, -0.012717118486762047, -0.042396534234285355, 0.02408977784216404, 0.024973805993795395, 0.05506760999560356, 0.06873321533203125, -0.019614383578300476, 0.022984741255640984, -0.004024171736091375, 0.05112631618976593, -0.010157119482755661, 0.003701869398355484, 0.014079996384680271, 0.062618687748909, 0.013628773391246796, 0.09643277525901794, 0.030701573938131332, -0.019338123500347137, -0.02799423597753048, 0.01737668551504612, 0.018546180799603462, -0.02880459651350975, 0.006289494689553976, 0.021474525332450867, 0.0030296393670141697, -0.06659681349992752, -0.03897092491388321, -0.055914804339408875, 0.0010336687555536628, 0.03589524328708649, -0.026797113940119743, 0.03320632129907608, 0.019559131935238838, 0.02464229427278042 ]
729,069
tables.unimplemented
__repr__
null
"""Here is defined the UnImplemented class.""" import warnings from . import hdf5extension from .utils import SizeType from .node import Node from .leaf import Leaf class UnImplemented(hdf5extension.UnImplemented, Leaf): """This class represents datasets not supported by PyTables in an HDF5 file. When reading a generic HDF5 file (i.e. one that has not been created with PyTables, but with some other HDF5 library based tool), chances are that the specific combination of datatypes or dataspaces in some dataset might not be supported by PyTables yet. In such a case, this dataset will be mapped into an UnImplemented instance and the user will still be able to access the complete object tree of the generic HDF5 file. The user will also be able to *read and write the attributes* of the dataset, *access some of its metadata*, and perform *certain hierarchy manipulation operations* like deleting or moving (but not copying) the node. Of course, the user will not be able to read the actual data on it. This is an elegant way to allow users to work with generic HDF5 files despite the fact that some of its datasets are not supported by PyTables. However, if you are really interested in having full access to an unimplemented dataset, please get in contact with the developer team. This class does not have any public instance variables or methods, except those inherited from the Leaf class (see :ref:`LeafClassDescr`). """ # Class identifier. _c_classid = 'UNIMPLEMENTED' def __init__(self, parentnode, name): """Create the `UnImplemented` instance.""" # UnImplemented objects always come from opening an existing node # (they can not be created). self._v_new = False """Is this the first time the node has been created?""" self.nrows = SizeType(0) """The length of the first dimension of the data.""" self.shape = (SizeType(0),) """The shape of the stored data.""" self.byteorder = None """The endianness of data in memory ('big', 'little' or 'irrelevant').""" super().__init__(parentnode, name) def _g_open(self): (self.shape, self.byteorder, object_id) = self._open_unimplemented() try: self.nrows = SizeType(self.shape[0]) except IndexError: self.nrows = SizeType(0) return object_id def _g_copy(self, newparent, newname, recursive, _log=True, **kwargs): """Do nothing. This method does nothing, but a ``UserWarning`` is issued. Please note that this method *does not return a new node*, but ``None``. """ warnings.warn( "UnImplemented node %r does not know how to copy itself; skipping" % (self._v_pathname,)) return None # Can you see it? def _f_copy(self, newparent=None, newname=None, overwrite=False, recursive=False, createparents=False, **kwargs): """Do nothing. This method does nothing, since `UnImplemented` nodes can not be copied. However, a ``UserWarning`` is issued. Please note that this method *does not return a new node*, but ``None``. """ # This also does nothing but warn. self._g_copy(newparent, newname, recursive, **kwargs) return None # Can you see it? def __repr__(self): return """{} NOTE: <The UnImplemented object represents a PyTables unimplemented dataset present in the '{}' HDF5 file. If you want to see this kind of HDF5 dataset implemented in PyTables, please contact the developers.> """.format(str(self), self._v_file.filename)
(self)
[ -0.008594569750130177, -0.07242604345083237, -0.012481816112995148, 0.020904958248138428, -0.031079445034265518, -0.010730470530688763, -0.02457444556057453, 0.008386075496673584, -0.03352576866745949, -0.05745156854391098, 0.01044321246445179, 0.000916213495656848, -0.023907264694571495, 0.050520315766334534, -0.06386390328407288, 0.015391460619866848, 0.02703930251300335, 0.08999510109424591, 0.003220067825168371, 0.007695730309933424, -0.043514929711818695, 0.001899608294479549, 0.018718091771006584, 0.05003846436738968, -0.03754737973213196, 0.010498810559511185, -0.03519371896982193, 0.0013355172704905272, 0.06653261929750443, -0.0699426531791687, -0.09147772192955017, 0.003259449964389205, -0.030875584110617638, 0.02457444556057453, 0.029318831861019135, -0.0008218122529797256, 0.03966011479496956, 0.03617595508694649, -0.018319636583328247, 0.013621581718325615, -0.012972935102880001, -0.04911182448267937, 0.016586823388934135, -0.07939436286687851, 0.037454716861248016, 0.04959367588162422, 0.02744702436029911, 0.00869186595082283, -0.033229246735572815, -0.02585320547223091, 0.004051725380122662, 0.03250646963715553, 0.015641652047634125, 0.034619204699993134, -0.043181341141462326, 0.028262464329600334, 0.023054758086800575, -0.004392264876514673, -0.027428491041064262, 0.033748164772987366, -0.028670186176896095, 0.04755507409572601, 0.022443177178502083, -0.02733582630753517, -0.03400762006640434, -0.009581439197063446, -0.016364431008696556, -0.04811105504631996, -0.045627664774656296, 0.031209174543619156, -0.00981309823691845, -0.007241677492856979, 0.049334216862916946, 0.08258199691772461, 0.07924609631299973, -0.030134273692965508, 0.010202286764979362, -0.06482760608196259, 0.006050947587937117, -0.01951500028371811, 0.017207670956850052, -0.023555142804980278, 0.01463161688297987, 0.008627001196146011, 0.035453177988529205, -0.013751311227679253, 0.08109937608242035, 0.03643541410565376, 0.0005753844161517918, 0.023907264694571495, -0.014761346392333508, 0.014511154033243656, -0.024833904579281807, 0.017411531880497932, 0.03452653810381889, -0.02683544158935547, -0.03135743737220764, -0.023036224767565727, -0.004424697253853083, -0.04155045747756958, 0.026446254923939705, -0.002206557197496295, -0.030189871788024902, -0.012083361856639385, -0.032376740127801895, 0.0039034634828567505, -0.018403034657239914, 0.04284774884581566, -0.026575984433293343, -0.07016504555940628, -0.06605076789855957, 0.054226867854595184, 0.016994545236229897, 0.02872578427195549, 0.06282606720924377, -0.07301908731460571, -0.002995358081534505, -0.022350512444972992, -0.002731266198679805, -0.018430834636092186, -0.00067876250250265, 0.03543464466929436, -0.057414501905441284, 0.00441311439499259, 0.008886460214853287, -0.006398436613380909, 0.04184697940945625, 0.004084157757461071, -0.0030231571290642023, -0.10052171349525452, 0.008010786958038807, 0.0062223756685853004, -0.022628504782915115, 0.04714735224843025, -0.007649398408830166, -0.03193195164203644, 0.007704996503889561, 0.004762920551002026, -0.04284774884581566, 0.00006848435441497713, 0.022387579083442688, -0.06267780810594559, 0.06504999846220016, 0.02479683794081211, 0.0113883838057518, 0.021368276327848434, 0.0006451718509197235, -0.04218057170510292, -0.020830826833844185, -0.03000454418361187, -0.04622071236371994, -0.050409119576215744, -0.05863766372203827, 0.008900360204279423, 0.011332784779369831, 0.0014026985736563802, -0.01276907417923212, -0.07591020315885544, -0.06193649768829346, -0.021813062950968742, -0.03734352067112923, -0.0699426531791687, 0.0222763828933239, -0.00787179172039032, -0.0720924511551857, -0.007264843676239252, 0.003940528724342585, -0.10363521426916122, -0.05641373246908188, 0.028225399553775787, 0.003338214010000229, 0.003317364724352956, 0.011471780948340893, 0.07909783720970154, 0.012972935102880001, 0.01251888182014227, 0.016901880502700806, 0.013843975029885769, -0.004654040560126305, -0.01639222912490368, 0.018208440393209457, 0.024537378922104836, -0.05259598419070244, 0.0551535040140152, 0.01717987284064293, 0.02533428743481636, 0.007088782265782356, -0.014974473044276237, 0.0625666081905365, 0.04622071236371994, -0.0344524085521698, -0.008474105969071388, 0.020645499229431152, 0.08658507466316223, 0.09451709687709808, -0.011740505695343018, 0.028114203363656998, 0.05070564150810242, -0.008710399270057678, 0.059416040778160095, 0.028243932873010635, 0.0381404273211956, 0.09874256700277328, -0.004519677720963955, -0.06545772403478622, 0.008066385984420776, 0.02533428743481636, 0.019533533602952957, -0.05563535913825035, 0.01899608224630356, 0.008988390676677227, -0.02798447385430336, -0.0019517317414283752, 0.02394433133304119, 0.029300300404429436, -0.05711797997355461, -0.059304844588041306, 0.01596597582101822, -0.04269948974251747, -0.005874886177480221, 0.026446254923939705, 0.06705153733491898, -0.045331139117479324, 0.009562905877828598, -0.021905727684497833, -0.028484858572483063, 0.018254771828651428, -0.025074830278754234, 0.06000908836722374, -0.00839997548609972, -0.01713353954255581, -0.015641652047634125, 0.004422380588948727, -0.019681794568896294, 0.038103364408016205, 0.08725225180387497, 0.00479998579248786, -0.031023846939206123, -0.009525841102004051, 0.010637806728482246, -0.08317504823207855, -0.07820826023817062, 0.03708406165242195, -0.008886460214853287, 0.006250174716114998, -0.012259423732757568, 0.02640918828547001, 0.0519658699631691, -0.042996011674404144, -0.012694943696260452, -0.001965631265193224, -0.049667809158563614, -0.020330442115664482, 0.015484124422073364, 0.047332677990198135, -0.04848171025514603, -0.008321210741996765, -0.05430099740624428, 0.029318831861019135, -0.010109622962772846, -0.016503427177667618, -0.09347926080226898, 0.03298832103610039, 0.05886005982756615, -0.015817714855074883, -0.030134273692965508, 0.0019065580563619733, 0.006398436613380909, -0.04295894503593445, -0.023388348519802094, 0.023406879976391792, 0.05055737867951393, -0.019329672679305077, -0.0020814610179513693, -0.023240085691213608, -0.024722706526517868, -0.02131267823278904, 0.0046077086590230465, 0.0014386058319360018, -0.02915203757584095, 0.026575984433293343, -0.03730645403265953, -0.01716133952140808, 0.02003391832113266, -0.023128889501094818, -0.023703405633568764, -0.059416040778160095, -0.03743618354201317, -0.013491852208971977, -0.024833904579281807, -0.027094900608062744, 0.021813062950968742, -0.04911182448267937, 0.016837015748023987, 0.05567242205142975, 0.010294950567185879, -0.06960906088352203, 0.030782921239733696, 0.025167493149638176, -0.01563238725066185, -0.017689522355794907, -0.048926498740911484, 0.03880760818719864, 0.006643996108323336, -0.004962147679179907, -0.069905586540699, 0.0100632905960083, 0.01790264993906021, -0.03528638184070587, 0.002865628572180867, 0.036509543657302856, -0.006959052756428719, 0.019867122173309326, 0.04177284985780716, 0.025816140696406364, -0.02609413117170334, 0.010396881029009819, -0.022072521969676018, 0.02205398865044117, 0.0551164411008358, -0.03839988633990288, 0.01357524935156107, -0.04963074252009392, -0.005735890474170446, 0.018226973712444305, -0.0795426219701767, 0.08436114341020584, -0.005527396686375141, -0.0182825718075037, 0.0006382220308296382, -0.01266714371740818, -0.00907178781926632, 0.04269948974251747, 0.004686472471803427, 0.0016135087935253978, 0.02248024195432663, 0.0036208387464284897, -0.015891844406723976, 0.013528917916119099, -0.0217389315366745, 0.02216518484055996, 0.014529687352478504, 0.012472550384700298, -0.002821613335981965, 0.04092034325003624, -0.04462689533829689, 0.015752850100398064, 0.008914259262382984, 0.01139764953404665, 0.08547310531139374, 0.05923071503639221, 0.026557451114058495, -0.05860060080885887, 0.021979857236146927, 0.056228406727313995, -0.02820686623454094, -0.0040077101439237595, -0.0037274020723998547, -0.002316595520824194, -0.00432276725769043, 0.06953492760658264, -0.07187005877494812, -0.013102663680911064, -0.021127350628376007, 0.01272274274379015, -0.05311490222811699, -0.013325056992471218, 0.02724316343665123, -0.0016656321240589023, -0.016132771968841553, -0.026446254923939705, -0.08710399270057678, -0.028225399553775787, -0.05848940461874008, 0.026019999757409096, -0.02110881730914116, -0.006792258005589247, 0.051150429993867874, -0.06315965950489044, 0.004925081972032785, 0.055487096309661865, 0.004860217217355967, -0.017948981374502182, -0.0006943995249457657, -0.010072557255625725, -0.018106510862708092, 0.03543464466929436, 0.039178263396024704, -0.009400744922459126, 0.0381404273211956, 0.02672424539923668, 0.011898034252226353, 0.006898821331560612, 0.003363696625456214, -0.022980626672506332, 0.01848643273115158, -0.018356703221797943, 0.027539687231183052, -0.022406112402677536, -0.028818447142839432, -0.002031654352322221, -0.05070564150810242, 0.020404573529958725, 0.05163228139281273, 0.023555142804980278, 0.007802293635904789, 0.07783760875463486, 0.003873347770422697, -0.0023467112332582474, 0.013769843615591526, 0.03791803494095802, 0.04963074252009392, -0.03636128455400467, 0.012166759930551052, 0.041068606078624725, 0.030912650749087334, 0.023925798013806343, -0.01713353954255581, 0.05626546964049339, 0.004654040560126305, -0.043811455368995667, 0.03378522768616676, 0.026446254923939705, 0.06219595670700073, -0.024722706526517868, -0.009150552563369274, -0.03825162351131439, 0.022183718159794807, -0.029207635670900345, 0.05396740883588791, 0.030875584110617638, 0.009572172537446022, -0.02892964519560337, -0.035564374178647995, 0.012824672274291515, -0.03686166927218437, -0.010239352472126484, -0.05341142416000366, 0.00402624299749732, 0.055931881070137024, -0.02142387442290783, 0.037454716861248016, 0.045627664774656296, -0.014863276854157448, 0.011823903769254684, -0.003713502548635006, -0.04069795086979866, 0.059527236968278885, -0.0259644016623497, 0.03571263700723648, 0.018523497506976128, 0.022647038102149963, 0.017059409990906715, -0.013074864633381367, -0.09125532954931259, -0.022202251479029655, 0.002536672167479992, -0.013769843615591526, 0.021979857236146927, 0.02097908966243267, 0.00882622878998518, 0.060565073043107986, 0.03825162351131439, -0.02479683794081211, 0.03198755159974098, 0.0044918786734342575, 0.03296978771686554, -0.042032308876514435, -0.03791803494095802, -0.03788096830248833, 0.05163228139281273, -0.009011556394398212, 0.01250961609184742, -0.03528638184070587, -0.0143165597692132, -0.026575984433293343, -0.034285612404346466, -0.014168297871947289, -0.032802991569042206, -0.04388558492064476, 0.051150429993867874, -0.054338064044713974, 0.035879429429769516, -0.03791803494095802, -0.014937407337129116, -0.012991467490792274, 0.03424854949116707, 0.024555912241339684, 0.001048259437084198, -0.05063151195645332, -0.044145043939352036, -0.03463773429393768, -0.055190570652484894, -0.006745926104485989, 0.025686411187052727, 0.0051938071846961975, 0.021998390555381775, 0.01817137561738491, -0.0044941953383386135, -0.08562137186527252, 0.026242394000291824, -0.023499544709920883, -0.028132734820246696, -0.027169032022356987, 0.023573676124215126, 0.006393803749233484, 0.07813413441181183, 0.02268410287797451, 0.008223913609981537, -0.04577592760324478, 0.010471011511981487, 0.012361353263258934, -0.013408455066382885, 0.017467129975557327, 0.016614623367786407, 0.043181341141462326, -0.017077941447496414, 0.03411881998181343, 0.015687985345721245, 0.01738373190164566, 0.016142036765813828, 0.007695730309933424, 0.04444156959652901, 0.023999929428100586, -0.03580529987812042, 0.021664801985025406, -0.022183718159794807, 0.03617595508694649, 0.046072449535131454, 0.032914187759160995, -0.016197634860873222, -0.026149729266762733, -0.009002289734780788, 0.0019563648384064436, 0.014918874949216843, 0.03940065577626228, 0.004021609667688608, 0.015613853931427002, 0.003919679671525955, 0.004686472471803427, 0.0074223717674613, 0.03686166927218437, -0.00641696946695447, -0.03521225228905678, -0.023703405633568764, -0.03836281970143318, -0.04577592760324478, 0.05207706615328789, 0.03250646963715553, 0.003516591852530837, 0.010211552493274212, 0.010897264815866947, 0.04940835013985634, -0.045627664774656296, 0.07090635597705841, -0.019459402188658714, 0.020163647830486298, 0.0022470976691693068, 0.006273340433835983, 0.022813832387328148, -0.04688789322972298, -0.009113486856222153, 0.007042450364679098, -0.030875584110617638, 0.069905586540699, 0.03762150928378105, -0.024203790351748466, 0.01027641724795103, -0.03128330409526825, -0.03932652622461319, -0.013019266538321972, 0.0773186907172203, 0.03198755159974098, -0.007477970328181982, -0.01572505012154579, -0.025278689339756966, -0.06375271081924438, 0.03628715127706528, 0.01938527077436447, -0.07620672881603241, 0.005161374807357788, 0.020293377339839935, 0.025482550263404846, -0.003472576616331935, 0.00734360795468092, -0.017346667125821114, -0.039289459586143494, 0.06701447814702988, 0.0026478685904294252, -0.011536645703017712, -0.006009248550981283, -0.05011259391903877, -0.0323026068508625, -0.02672424539923668, 0.026742778718471527, 0.05589481443166733, -0.026353590190410614, -0.025686411187052727, 0.036101825535297394, -0.016003042459487915, -0.06097279489040375, 0.02872578427195549, -0.043737322092056274, -0.02607559971511364, 0.017105741426348686, -0.011999964714050293, 0.010248618200421333, -0.0006631254800595343, 0.023666338995099068, -0.021238546818494797, 0.025204559788107872, 0.07468704134225845, 0.0259644016623497, -0.05574655532836914, -0.031227707862854004, -0.052855443209409714, 0.002337444806471467, -0.01702234335243702, 0.008437041193246841, -0.001574126654304564, -0.03094971552491188, -0.00659766374155879, -0.0021926576737314463, -0.022128120064735413, -0.04484928771853447, -0.01648489385843277, 0.001574126654304564, 0.02670571208000183, 0.017374467104673386, 0.0077698612585663795, 0.03728792071342468, -0.051891740411520004, -0.024111125618219376, 0.003120454028248787, -0.0049760472029447556, -0.03984544426202774, -0.008450940251350403, -0.030245469883084297, 0.019774459302425385, 0.07138820737600327, 0.021220015361905098, -0.017096474766731262, -0.0015359028475359082, 0.0003538599703460932, -0.026798376813530922, -0.017578326165676117, 0.01187950186431408, -0.021127350628376007, 0.003998443949967623, -0.0010945913381874561, -0.006963686086237431, 0.05133575573563576, 0.06386390328407288, -0.041921112686395645, 0.002536672167479992, 0.040438491851091385, -0.036194488406181335, -0.004570642951875925, 0.03246940299868584, 0.0323396734893322, -0.02205398865044117, -0.04900062829256058, 0.03966011479496956, 0.022980626672506332, 0.09874256700277328, 0.06315965950489044, 0.06308552622795105, 0.008534337393939495, 0.024018462747335434, 0.0030509561765938997, -0.05923071503639221, 0.04725854843854904, 0.006574498023837805, -0.043922651559114456, -0.023184487596154213, -0.04759213700890541, 0.02268410287797451, -0.012972935102880001, -0.022239316254854202, 0.002254047431051731, 0.027224630117416382, 0.07216658443212509, -0.06808937340974808, -0.020793762058019638, 0.002724316203966737, 0.08020979911088943, -0.004047092515975237, -0.03791803494095802, 0.006634729448705912, -0.08999510109424591, -0.01877368986606598, 0.021386809647083282, 0.03795510157942772, 0.0572291761636734, -0.036213021725416183, -0.020719630643725395, 0.02140534296631813, -0.025797607377171516, -0.02257290668785572, -0.014659415930509567, 0.04410797730088234, 0.019218476489186287, -0.0227952990680933, 0.015224665403366089, 0.028577521443367004, 0.07435344904661179, -0.07613259553909302, 0.014909608289599419, -0.0038177494425326586, -0.001289185369387269, -0.02140534296631813, 0.06560598313808441, -0.03189488500356674, -0.06301140040159225, -0.006931253708899021, -0.01145324856042862, 0.0029837749898433685, 0.01653122529387474, -0.07090635597705841, 0.013102663680911064, 0.007362140342593193, 0.006097279489040375, 0.05033498629927635, 0.05637666955590248, -0.0498160682618618, 0.05915658175945282, -0.01213895995169878, -0.07813413441181183, -0.019144345074892044, 0.07031330466270447, 0.042365897446870804, 0.07494650036096573, -0.027484089136123657, -0.007028550840914249, 0.012843205593526363, -0.07872717827558517, 0.030986782163381577, 0.0056941919028759, 0.018264038488268852, 0.04058675467967987, -0.007116581313312054, -0.042254701256752014, -0.03456360474228859, 0.051780544221401215, -0.0009133177809417248, -0.010989928618073463, -0.004304234404116869, 0.0731302872300148, 0.02935589849948883, 0.09170011430978775, 0.021664801985025406, -0.013028533197939396, -0.05893418937921524, -0.0055181304924190044, 0.044256240129470825, -0.03847401961684227, 0.027817679569125175, -0.006662528496235609, -0.0027081002481281757, -0.06108399108052254, -0.040883276611566544, -0.002179916249588132, 0.007547467947006226, 0.010211552493274212, 0.029114972800016403, 0.042440030723810196, -0.020274844020605087, 0.0108602000400424 ]
729,074
tables.unimplemented
_f_copy
Do nothing. This method does nothing, since `UnImplemented` nodes can not be copied. However, a ``UserWarning`` is issued. Please note that this method *does not return a new node*, but ``None``.
def _f_copy(self, newparent=None, newname=None, overwrite=False, recursive=False, createparents=False, **kwargs): """Do nothing. This method does nothing, since `UnImplemented` nodes can not be copied. However, a ``UserWarning`` is issued. Please note that this method *does not return a new node*, but ``None``. """ # This also does nothing but warn. self._g_copy(newparent, newname, recursive, **kwargs) return None # Can you see it?
(self, newparent=None, newname=None, overwrite=False, recursive=False, createparents=False, **kwargs)
[ -0.04438953846693039, -0.059853825718164444, 0.03363482654094696, 0.006778805982321501, -0.0963706374168396, -0.007420222740620375, 0.012837116606533527, 0.03131518512964249, 0.06002955883741379, -0.030137790367007256, 0.000590893963817507, -0.034952808171510696, -0.012072688899934292, 0.0277654267847538, -0.041402120143175125, 0.01943579874932766, -0.01670318841934204, 0.04027744382619858, -0.0312800370156765, 0.016448380425572395, -0.0402071513235569, -0.0052235908806324005, 0.03312521055340767, 0.01787179708480835, 0.002132929628714919, 0.036938562989234924, 0.0010406543733552098, 0.03630593419075012, -0.0052016242407262325, -0.0012191307032480836, -0.019453372806310654, -0.019769687205553055, 0.0060187713243067265, 0.02230020798742771, 0.013970579020678997, 0.0437217615544796, -0.0708194151520729, 0.03837955370545387, -0.0804143026471138, -0.05816681310534477, -0.020753778517246246, -0.039679959416389465, -0.042807962745428085, -0.011079811491072178, 0.035532716661691666, 0.017731212079524994, 0.01712494157254696, 0.052121683955192566, 0.00417579710483551, -0.011000732891261578, -0.02237049862742424, 0.07739173620939255, -0.03426745906472206, 0.008224190212786198, -0.045654796063899994, 0.04017200320959091, 0.02623657137155533, -0.0005617886199615896, -0.000736420857720077, 0.037325169891119, -0.0019099714700132608, 0.027677562087774277, 0.007038008887320757, -0.0516999289393425, -0.029505159705877304, -0.00989362969994545, -0.014374759048223495, -0.06245463714003563, -0.009436730295419693, 0.06277095526456833, -0.04684976488351822, 0.01600026711821556, 0.0298390481621027, 0.0609433576464653, 0.08667030930519104, 0.019066765904426575, 0.04445983096957207, -0.05433588847517967, 0.023846635594964027, -0.02077135071158409, -0.02917127124965191, -0.02377634309232235, -0.053597819060087204, 0.0183462705463171, 0.019769687205553055, 0.0561634860932827, 0.050118353217840195, -0.012274779379367828, 0.03166664391756058, 0.028310192748904228, -0.028925249353051186, 0.013891500420868397, -0.05440618097782135, -0.02722066268324852, 0.06252492964267731, 0.019066765904426575, -0.032211411744356155, -0.04059375822544098, 0.07359595596790314, 0.03739546239376068, -0.001314684166572988, 0.0628763884305954, -0.053246356546878815, -0.04379205405712128, 0.05820195749402046, -0.012678959406912327, -0.011018306016921997, 0.030998868867754936, 0.02323157899081707, -0.012951341457664967, -0.05303548276424408, -0.007736537605524063, 0.03820382058620453, 0.04614684358239174, -0.00907648354768753, -0.04966145381331444, -0.013566398993134499, -0.017318246886134148, 0.008355988189578056, 0.00279631232842803, 0.014568062499165535, 0.009858484379947186, -0.01904919184744358, -0.04572508856654167, 0.00698968255892396, 0.012951341457664967, 0.017942089587450027, -0.0051137590780854225, 0.026605606079101562, -0.020824071019887924, 0.007279638200998306, -0.010763496160507202, 0.014796512201428413, 0.0029830262064933777, -0.011976037174463272, -0.017230380326509476, -0.020788924768567085, 0.006277974229305983, -0.010051787830889225, -0.037325169891119, -0.028450775891542435, -0.10888265073299408, 0.09419157356023788, 0.05693669989705086, -0.015227052383124828, -0.01697557233273983, -0.020314451307058334, 0.00023476502974517643, -0.03507581725716591, 0.010517473332583904, 0.001487119821831584, 0.0641416534781456, -0.04952086880803108, 0.004140651319175959, -0.024531984701752663, 0.012626240029931068, -0.0035146111622452736, -0.049766894429922104, -0.05454676225781441, -0.011896958574652672, -0.02077135071158409, -0.05229741334915161, 0.07303361594676971, -0.03261559084057808, 0.008355988189578056, -0.03922306001186371, 0.08076576143503189, -0.04379205405712128, -0.01678226701915264, 0.04540877416729927, -0.022967983037233353, 0.0023767556995153427, 0.01564001850783825, 0.0159563347697258, -0.0031521667260676622, 0.01994541846215725, -0.011396126821637154, -0.038695868104696274, -0.02846834994852543, 0.029048260301351547, 0.019892698153853416, -0.025516076013445854, -0.012292352505028248, 0.047271519899368286, 0.05718272179365158, -0.0018243028316646814, -0.037992946803569794, 0.04326486214995384, 0.03911761939525604, 0.027115223929286003, -0.029153699055314064, -0.016676830127835274, 0.03883645310997963, 0.04365146905183792, 0.0654420554637909, -0.0437217615544796, -0.021685149520635605, 0.016246289014816284, -0.026693470776081085, 0.07696998119354248, 0.03347666934132576, -0.02240564487874508, 0.06874579191207886, -0.011738801375031471, -0.032475005835294724, 0.020015710964798927, -0.010192371904850006, 0.01732703298330307, -0.014664714224636555, -0.025762099772691727, 0.016316581517457962, 0.017116155475378036, 0.021931173279881477, 0.005276309791952372, -0.03964481130242348, -0.03813353180885315, -0.0641416534781456, -0.036587100476026535, -0.017353391274809837, 0.03266831114888191, -0.03848499059677124, 0.03442561626434326, -0.054195303469896317, -0.03855528309941292, 0.014735006727278233, 0.004929242189973593, -0.008711841888725758, -0.06618012487888336, 0.020665913820266724, -0.03711429238319397, -0.005970445461571217, -0.053527526557445526, 0.006036344449967146, -0.04815017059445381, 0.000593639793805778, -0.024584705010056496, -0.0019231511978432536, -0.01519190613180399, 0.0004209296021144837, 0.004254876170307398, -0.08863849192857742, -0.06846462190151215, 0.06002955883741379, 0.05468734726309776, 0.08090634644031525, -0.048044733703136444, -0.009568528272211552, 0.004779871087521315, 0.01908433809876442, 0.03704399988055229, -0.00827251560986042, -0.07025707513093948, -0.07865699380636215, 0.061927445232868195, 0.04062890261411667, 0.019681822508573532, 0.009612461552023888, -0.041788727045059204, 0.014893164858222008, 0.035497572273015976, 0.01571909710764885, -0.021263396367430687, 0.03047167882323265, 0.02224748767912388, -0.06899181753396988, -0.057323306798934937, -0.0022164015099406242, -0.0009758537053130567, -0.0628763884305954, 0.010051787830889225, 0.036165349185466766, 0.027132797986268997, 0.013583972118794918, 0.032369568943977356, -0.00556187191978097, -0.06902696192264557, -0.04948572441935539, 0.038977038115262985, 0.035603009164333344, -0.047341812402009964, 0.04512760788202286, 0.030102644115686417, 0.0030071891378611326, 0.01314464583992958, -0.07450975477695465, -0.04365146905183792, -0.004771084524691105, -0.021913599222898483, -0.058096520602703094, -0.03150848671793938, -0.026623178273439407, 0.05271916463971138, -0.014453837648034096, 0.03567330166697502, 0.032123543322086334, 0.0481853187084198, -0.042456500232219696, -0.014796512201428413, -0.0007375191780738533, 0.011721228249371052, 0.03739546239376068, -0.037606339901685715, -0.03168421983718872, 0.0070204357616603374, 0.017467616125941277, 0.0008407608838751912, -0.007314784452319145, 0.049380283802747726, -0.07057338953018188, 0.049450576305389404, -0.059432074427604675, -0.0488179475069046, 0.0315963551402092, 0.0510673001408577, -0.006400985177606344, -0.051805365830659866, 0.062243763357400894, -0.049696601927280426, 0.028380485251545906, 0.03813353180885315, -0.07711056619882584, 0.006119816564023495, -0.04161299392580986, 0.01588604226708412, -0.035567864775657654, -0.04270252585411072, 0.01120282243937254, 0.0523325577378273, -0.01693163812160492, 0.009788191877305508, -0.013970579020678997, 0.023530321195721626, 0.014216601848602295, 0.00550475949421525, -0.07837582379579544, 0.032088398933410645, 0.0050258939154446125, -0.04382719844579697, 0.006581109017133713, -0.02112281322479248, 0.0036310325376689434, 0.08308540284633636, -0.00938401184976101, -0.015894828364253044, 0.04045317322015762, 0.008584437891840935, 0.029909340664744377, -0.015279771760106087, 0.011527923867106438, -0.002969846362248063, -0.00846581906080246, 0.013012847863137722, -0.036270786076784134, 0.0081363245844841, 0.04217533394694328, -0.0004250482888892293, 0.023829063400626183, 0.005706849507987499, 0.01745004393160343, -0.052121683955192566, 0.0548982247710228, -0.02432110905647278, 0.007565200328826904, -0.02041989006102085, 0.04154270142316818, -0.01345217414200306, -0.021878454834222794, 0.06389562785625458, -0.08336657285690308, -0.07429888099431992, 0.00047392334090545774, -0.06470399349927902, 0.013654263690114021, -0.1017831340432167, -0.03347666934132576, -0.03019050881266594, -0.021526992321014404, 0.0018133196281269193, -0.046252280473709106, 0.01314464583992958, 0.031034015119075775, 0.0016222127014771104, -0.07605618238449097, -0.03490008786320686, 0.02354789339005947, 0.0015640018973499537, 0.02354789339005947, 0.05542541667819023, 0.02080649696290493, 0.016202356666326523, -0.02099980041384697, 0.012389004230499268, 0.00952459592372179, 0.009278573095798492, -0.02881981059908867, 0.004498702008277178, 0.04157784953713417, -0.020033283159136772, -0.08210131525993347, -0.0013575184857472777, 0.022985557094216347, -0.030418958514928818, -0.05577687919139862, 0.001235605450347066, -0.0035914932377636433, 0.0045426348224282265, 0.03704399988055229, -0.011387339793145657, 0.04238620772957802, 0.0054871863685548306, 0.05061040073633194, 0.008158290758728981, -0.05862371250987053, 0.03883645310997963, 0.011598216369748116, -0.011343407444655895, 0.0472363717854023, 0.005478399805724621, -0.004511882085353136, -0.03778206929564476, -0.022827398031949997, 0.0075695933774113655, 0.03296705335378647, 0.07226040214300156, 0.053878989070653915, -0.003826532745733857, -0.0007506989641115069, 0.017942089587450027, -0.02917127124965191, 0.008026492781937122, 0.010324169881641865, 0.012995274737477303, 0.023301871493458748, 0.02476043440401554, 0.028011450543999672, -0.0008522931602783501, 0.01462956890463829, -0.03598961606621742, -0.0033125209156423807, 0.09566771239042282, 0.007929841056466103, -0.02588511072099209, 0.036938562989234924, -0.025726953521370888, -0.03665739297866821, 0.0009055614937096834, -0.02549850381910801, 0.02374119684100151, -0.04164814203977585, 0.004287825431674719, 0.03150848671793938, 0.06108393892645836, 0.00979697797447443, 0.012292352505028248, -0.11021820455789566, 0.003141183638945222, -0.05447646975517273, -0.02166757732629776, -0.0012367037124931812, -0.0009912301320582628, 0.018486853688955307, 0.06990561634302139, 0.07886787503957748, 0.027519404888153076, 0.03704399988055229, 0.020507754758000374, 0.028890103101730347, -0.059783533215522766, -0.002613991964608431, -0.02936457470059395, 0.06073248013854027, -0.034987952560186386, -0.007477335166186094, -0.04923970252275467, 0.04684976488351822, -0.029751183465123177, -0.05208653584122658, -0.04512760788202286, 0.020982228219509125, -0.012195700779557228, 0.02026173286139965, -0.03672768548130989, 0.02103494666516781, 0.003334487322717905, -0.03289676085114479, -0.04168328642845154, 0.017731212079524994, 0.012090262025594711, 0.010684417560696602, 0.012951341457664967, -0.02936457470059395, -0.055987752974033356, -0.05901031941175461, -0.052894897758960724, -0.0074817282147705555, -0.01911948435008526, -0.02284497208893299, 0.02080649696290493, -0.008953471668064594, -0.0874435231089592, -0.03117460012435913, 0.01194967795163393, -0.0007836484583094716, 0.014717433601617813, -0.011861812323331833, 0.0007600346580147743, 0.014735006727278233, 0.007147840224206448, 0.007121480535715818, 0.008971044793725014, -0.009673967026174068, 0.030911004170775414, 0.00556187191978097, 0.031385477632284164, 0.043862346559762955, -0.022265061736106873, -0.02377634309232235, 0.04273767024278641, 0.030225655063986778, -0.07921933382749557, 0.05071583762764931, 0.002501963870599866, 0.030278373509645462, -0.0357435941696167, 0.007486121729016304, 0.010587765835225582, 0.0001795746647985652, 0.04635772109031677, 0.03718458488583565, -0.020367171615362167, -0.02620142512023449, -0.0012520801974460483, 0.024707715958356857, 0.011413699015974998, -0.01390028651803732, -0.0003586001694202423, 0.006405378691852093, 0.04544392228126526, -0.0328616127371788, -0.02635958231985569, 0.01763456128537655, 0.02584996446967125, 0.015692738816142082, 0.023653332144021988, -0.018750449642539024, 0.009006191045045853, -0.003187312977388501, -0.024531984701752663, 0.017414897680282593, -0.02022658661007881, 0.020279305055737495, -0.025709379464387894, -0.013118285685777664, 0.04098036512732506, 0.0775323212146759, 0.019506091251969337, -0.029434867203235626, -0.00955974217504263, 0.034548625349998474, 0.006638221442699432, -0.022669240832328796, -0.03370511904358864, 0.029663316905498505, -0.059467218816280365, 0.007389470003545284, -0.0016189176822081208, -0.049696601927280426, 0.04238620772957802, 0.015464289113879204, 0.007925448007881641, 0.03231684863567352, 0.06449311226606369, 0.06614498049020767, 0.001580476644448936, -0.01490195095539093, -0.017160087823867798, 0.0009110530954785645, 0.02300312928855419, -0.006137389689683914, -0.04368661716580391, -0.02855621464550495, -0.024004792794585228, 0.048009585589170456, -0.01673833467066288, -0.026623178273439407, -0.0475526861846447, -0.011703655123710632, 0.028925249353051186, 0.06009984761476517, -0.028679225593805313, 0.030331093817949295, 0.036938562989234924, 0.001885808538645506, -0.059186048805713654, -0.04101550951600075, -0.009656393900513649, 0.019892698153853416, -0.03437289595603943, 0.018012382090091705, -0.03382813185453415, -0.04298369213938713, 0.008588830940425396, 0.006739266682416201, 0.011237968690693378, -0.008742595091462135, 0.04393263906240463, -0.010060573928058147, -0.02189602702856064, 0.0708545595407486, 0.007499301340430975, 0.0299972053617239, -0.0063790190033614635, 0.04199960082769394, -0.0571124292910099, -0.02741396613419056, 0.006980896461755037, -0.02428596280515194, -0.03150848671793938, -0.0035585437435656786, 0.035374559462070465, -0.05345723405480385, -0.030295947566628456, -0.051489051431417465, -0.0162726491689682, -0.0826636552810669, -0.037992946803569794, -0.012090262025594711, 0.0320708267390728, -0.02862650714814663, 0.05475763976573944, 0.017397325485944748, -0.08428037166595459, -0.031157027930021286, -0.01787179708480835, -0.013487320393323898, 0.005908939987421036, 0.024883447214961052, -0.009120415896177292, -0.017766358330845833, 0.07528296858072281, 0.0004195566871203482, 0.002392132068052888, -0.013953005895018578, -0.0276072695851326, -0.08772469311952591, -0.044951874762773514, -0.003613459412008524, -0.031262464821338654, -0.01223963312804699, -0.039715103805065155, -0.04087492823600769, 0.06663702428340912, 0.012986487708985806, 0.030014779418706894, 0.036551956087350845, 0.04442468285560608, -0.014866804704070091, 0.014172669500112534, -0.0009313719347119331, 0.006194502115249634, 0.006936963647603989, -0.001797943259589374, 0.04656859487295151, 0.05851827561855316, 0.06041616573929787, 0.06677760928869247, 0.0650905966758728, -0.0453033372759819, -0.02597297541797161, -0.04930999502539635, -0.06322785466909409, 0.01940065249800682, -0.02910097874701023, 0.010139652527868748, -0.0485016331076622, -0.02182573452591896, 0.01343460101634264, 0.04344059154391289, 0.016017839312553406, -0.012626240029931068, 0.05988897383213043, 0.022616522386670113, -0.0015760833630338311, -0.06213832274079323, 0.017116155475378036, 0.09299661219120026, -0.024110231548547745, 0.0007215935620479286, -0.025867536664009094, -0.024303534999489784, 0.031543634831905365, 0.0033872064668685198, 0.011035879142582417, 0.057674769312143326, 0.02722066268324852, 0.06737509369850159, -0.024848300963640213, 0.00032345406361855567, 0.019383080303668976, 0.013179791159927845, 0.048044733703136444, 0.025094322860240936, -0.011607003398239613, -0.005276309791952372, 0.016325367614626884, 0.0017397324554622173, -0.04621713608503342, 0.031824804842472076, -0.006444917991757393, 0.02476043440401554, 0.013012847863137722, 0.003962724003940821, -0.021808162331581116, 0.05760447680950165, -0.048361048102378845, -0.05271916463971138, 0.0068974243476986885, -0.0071829864755272865, -0.0026667111087590456, -0.02542821131646633, 0.005618984345346689, -0.005680490285158157, 0.015517007559537888, 0.013829994946718216, 0.018803169950842857, 0.04266737774014473, -0.028380485251545906, -0.11373281478881836, 0.02613113261759281, 0.022001465782523155, 0.040382880717515945, 0.07197923213243484, 0.004090128466486931, -0.01681741327047348, 0.06737509369850159, -0.025990549474954605, 0.03368754684925079, 0.07046794891357422, -0.00676562637090683, -0.018117820844054222, 0.0015387407038360834, 0.002418491756543517, -0.009278573095798492, 0.056022901087999344, -0.021017374470829964, -0.011870598420500755, -0.01335552241653204, 0.041437264531850815, -0.002589829033240676, 0.06582866609096527, 0.022950410842895508, -0.010807429440319538, 0.02655288577079773, -0.0013706983299925923, -0.007266458589583635, -0.02150942012667656, -0.013364308513700962, 0.02839805744588375, 0.017397325485944748, 0.014673501253128052, -0.014761366881430149, 0.004002263303846121, 0.017072223126888275, 0.06354416906833649, 0.04684976488351822, 0.04048832133412361, 0.013408240862190723, 0.028415629640221596 ]
729,086
tables.unimplemented
_g_copy
Do nothing. This method does nothing, but a ``UserWarning`` is issued. Please note that this method *does not return a new node*, but ``None``.
def _g_copy(self, newparent, newname, recursive, _log=True, **kwargs): """Do nothing. This method does nothing, but a ``UserWarning`` is issued. Please note that this method *does not return a new node*, but ``None``. """ warnings.warn( "UnImplemented node %r does not know how to copy itself; skipping" % (self._v_pathname,)) return None # Can you see it?
(self, newparent, newname, recursive, _log=True, **kwargs)
[ -0.03771138936281204, -0.029121574014425278, 0.03200230374932289, 0.022644292563199997, -0.08303489536046982, -0.011191204190254211, 0.020234953612089157, 0.04172695428133011, 0.059884291142225266, -0.027777232229709625, -0.016812995076179504, -0.03194992616772652, 0.01253554504364729, 0.02650272659957409, -0.06197936832904816, 0.00006983590719755739, -0.024582238867878914, 0.03371328487992287, -0.02236494980752468, 0.006106276996433735, -0.05946527421474457, -0.022836342453956604, 0.04329826310276985, 0.0394572876393795, -0.02749788947403431, 0.05098021402955055, 0.0005821477388963103, 0.048920053988695145, -0.010763458907604218, -0.0018561074975878, -0.0172407403588295, -0.046964649111032486, 0.010169854387640953, 0.004770665429532528, 0.014490950852632523, 0.033364105969667435, -0.051084965467453, 0.004177060443907976, -0.0953260138630867, -0.06679804623126984, 0.0008058408857323229, -0.027009036391973495, -0.06309673935174942, -0.014010828919708729, 0.026136089116334915, 0.0079438341781497, 0.031391240656375885, 0.07084852457046509, -0.023953715339303017, -0.02192847430706024, -0.023691831156611443, 0.08128899335861206, -0.0475582517683506, 0.015512300655245781, -0.019100120291113853, 0.03607024624943733, 0.050002507865428925, -0.014037017710506916, 0.014490950852632523, 0.011793538928031921, 0.004718288313597441, 0.030273865908384323, -0.003509254427626729, -0.03528459370136261, -0.013844968751072884, -0.021195197477936745, -0.025263139978051186, -0.06351576000452042, -0.009279445745050907, 0.05730036273598671, -0.06051281467080116, -0.018576351925730705, 0.021893557161092758, 0.052656274288892746, 0.05181824415922165, 0.010187312960624695, 0.0298024732619524, -0.05118972063064575, 0.02849305048584938, -0.018244631588459015, -0.02934853918850422, -0.022609375417232513, -0.044974323362112045, 0.01725819893181324, 0.004019929561764002, 0.039806466549634933, 0.05880183354020119, -0.013574354350566864, 0.0016084082890301943, 0.012526815757155418, -0.036768604069948196, 0.013443412259221077, -0.025367893278598785, -0.003535442752763629, 0.05646233260631561, 0.021631672978401184, -0.024948878213763237, -0.04699956625699997, 0.06365542858839035, 0.025594860315322876, 0.0014665540074929595, 0.04284432902932167, -0.057579707354307175, -0.051119882613420486, 0.04724399000406265, -0.03420213609933853, 0.0004473862936720252, 0.026886824518442154, 0.019030284136533737, -0.001985958544537425, -0.06533148884773254, 0.008624734356999397, 0.01725819893181324, 0.033032383769750595, 0.005329352803528309, -0.04116826876997948, -0.036000411957502365, -0.027637559920549393, -0.0063332440331578255, 0.011741162277758121, 0.04577743634581566, 0.009707191027700901, -0.03802565112709999, -0.01615828275680542, 0.014927425421774387, 0.016856642439961433, 0.02147454209625721, -0.012369684875011444, 0.017039962112903595, -0.025228220969438553, 0.006699882447719574, -0.013862427324056625, 0.00042747214320115745, 0.010326985269784927, 0.014202877879142761, -0.0025184573605656624, -0.015922587364912033, -0.01123485155403614, -0.004600440617650747, -0.028510509058833122, -0.015154391527175903, -0.10251910984516144, 0.08492046594619751, 0.041028596460819244, 0.017520083114504814, -0.009506412781774998, -0.013172797858715057, 0.030326243489980698, -0.04808202385902405, -0.007817257195711136, 0.017834344878792763, 0.038514502346515656, -0.04633612558245659, 0.00072563870344311, -0.027445511892437935, 0.028562886640429497, -0.017616108059883118, -0.03311967849731445, -0.049339067190885544, -0.039736632257699966, -0.0028479956090450287, -0.06309673935174942, 0.06777574867010117, -0.0324038602411747, 0.009715920314192772, -0.0363495908677578, 0.08031129091978073, -0.016795536503195763, -0.027445511892437935, 0.03210705891251564, -0.03057066909968853, -0.002649399684742093, -0.009637354873120785, 0.029208868741989136, -0.02650272659957409, 0.04315859079360962, -0.012238742783665657, -0.007001049816608429, -0.026799529790878296, 0.04654563218355179, 0.009165963158011436, -0.011941940523684025, 0.013059314340353012, 0.06190953031182289, 0.06704246997833252, -0.0035485371481627226, -0.025332976132631302, 0.013068044558167458, 0.030972225591540337, 0.03174041956663132, -0.03484811633825302, 0.0035332604311406612, 0.03886368125677109, 0.012081611901521683, 0.06683296710252762, -0.015433735214173794, -0.02968026138842106, -0.0007752876845188439, -0.031059520319104195, 0.09378962218761444, 0.02487904205918312, -0.03638450801372528, 0.05272610858082771, -0.03844466805458069, -0.008541804738342762, 0.017310574650764465, -0.015433735214173794, 0.03645434230566025, 0.0005745094385929406, 0.01067616418004036, 0.029819931834936142, 0.04228564351797104, 0.04898988828063011, 0.01647254452109337, -0.04019056633114815, -0.07214049249887466, -0.08429194241762161, -0.028615262359380722, -0.011488006450235844, 0.02157929539680481, -0.03121665120124817, 0.025577401742339134, -0.048047102987766266, -0.03013419359922409, -0.007760515436530113, -0.017747050151228905, 0.011941940523684025, -0.05684642866253853, 0.01748516596853733, -0.05719560757279396, 0.02323789894580841, -0.05953511223196983, -0.0008767679682932794, -0.03743204474449158, -0.010361902415752411, -0.02323789894580841, -0.023063307628035545, -0.014691729098558426, 0.016193201765418053, 0.004892878234386444, -0.1046840250492096, -0.06072232127189636, 0.028301000595092773, 0.05311020836234093, 0.08883127570152283, -0.04857087507843971, -0.0166122168302536, 0.018593810498714447, 0.021422164514660835, 0.039282698184251785, 0.006512198597192764, -0.07035967707633972, -0.09567519277334213, 0.04228564351797104, 0.017057420685887337, -0.01709233783185482, 0.00249445135705173, -0.025123467668890953, 0.009349281899631023, 0.0015222044894471765, -0.004129047971218824, -0.025018714368343353, 0.008096600882709026, 0.010615058243274689, -0.049478739500045776, -0.04801218584179878, 0.011295958422124386, -0.01029206719249487, -0.044415637850761414, 0.016376519575715065, 0.06885820627212524, 0.029400916770100594, 0.016088446602225304, 0.04790743067860603, -0.0057570976205170155, -0.0805906355381012, -0.054157745093107224, 0.05098021402955055, 0.014761565253138542, -0.034341808408498764, 0.05908117815852165, 0.05764954164624214, 0.010457927361130714, 0.005163492634892464, -0.08401259779930115, -0.0645982176065445, 0.004395297262817621, -0.021753884851932526, -0.0596049465239048, -0.009008832275867462, -0.02386642061173916, 0.04965332895517349, -0.01829700730741024, 0.041447609663009644, 0.04116826876997948, 0.053180042654275894, -0.04001597315073013, 0.010972967371344566, -0.030204029753804207, 0.03210705891251564, 0.03264828771352768, -0.02868509851396084, -0.03921286016702652, -0.006115006748586893, 0.008594181388616562, 0.021317411214113235, -0.005407918244600296, 0.041482530534267426, -0.04518383368849754, 0.03229910880327225, -0.047174155712127686, -0.034010086208581924, 0.05908117815852165, 0.06700755655765533, -0.005957875866442919, -0.05181824415922165, 0.06547116488218307, -0.03617500141263008, 0.016254307702183723, 0.056497249752283096, -0.0955355241894722, 0.02683444693684578, -0.036628931760787964, 0.00711889797821641, -0.021998310461640358, -0.04186662659049034, 0.01971118524670601, 0.060861993581056595, -0.006154289469122887, 0.018052581697702408, -0.03254353255033493, 0.030099276453256607, 0.004349467810243368, -0.02629321999847889, -0.06676312536001205, 0.038304995745420456, -0.013233904726803303, -0.06662345677614212, 0.006180477794259787, -0.027777232229709625, 0.016481274738907814, 0.06777574867010117, -0.007572831120342016, 0.00037291282205842435, 0.032700665295124054, -0.0060320766642689705, 0.0359305739402771, 0.004827407188713551, -0.008323566988110542, -0.011269769631326199, -0.010187312960624695, 0.02301093190908432, -0.04710432142019272, 0.015608325600624084, 0.032159436494112015, 0.0014185418840497732, 0.01864618808031082, 0.0168217234313488, 0.02323789894580841, -0.0319848470389843, 0.051015131175518036, -0.004019929561764002, -0.0024398919194936752, -0.01463062223047018, 0.038828764110803604, -0.016769347712397575, -0.024844124913215637, 0.04207613319158554, -0.04273957386612892, -0.08519981056451797, -0.00413341261446476, -0.05569413676857948, 0.019204875454306602, -0.0795430988073349, -0.040923841297626495, -0.0015102014876902103, -0.012221284210681915, -0.004452039021998644, -0.05520528554916382, -0.002983302576467395, 0.021980851888656616, -0.005233328323811293, -0.05059611424803734, -0.005661073140799999, 0.01030079647898674, -0.008013670332729816, 0.057021018117666245, 0.04151744768023491, 0.035441722720861435, 0.01704869046807289, -0.02477428875863552, 0.008258095942437649, 0.016769347712397575, 0.027078872546553612, -0.024617157876491547, -0.01796528697013855, 0.05049136281013489, -0.023604536429047585, -0.102169930934906, -0.0012897818814963102, 0.01359181385487318, -0.007620843593031168, -0.09818928688764572, -0.011723702773451805, 0.0031862633768469095, 0.008847336284816265, 0.034551315009593964, -0.01692647859454155, 0.02903427928686142, -0.03573852404952049, 0.020793640986084938, -0.011418171226978302, -0.013818779960274696, 0.021945934742689133, 0.03837483003735542, -0.03317205607891083, 0.049793001264333725, 0.01133087556809187, -0.006935578770935535, -0.029942145571112633, -0.021649131551384926, 0.014595705084502697, 0.04375219717621803, 0.0442410483956337, 0.054297417402267456, -0.0019630438182502985, -0.015067096799612045, -0.005556319374591112, -0.02355216071009636, 0.010999155230820179, -0.017310574650764465, 0.02246970310807228, 0.03645434230566025, 0.0168217234313488, 0.03970171511173248, -0.010056370869278908, 0.009131045080721378, -0.016193201765418053, -0.018122417852282524, 0.1102708950638771, 0.004713923670351505, -0.027672478929162025, 0.01704869046807289, -0.03607024624943733, -0.017537541687488556, 0.00947149470448494, -0.01709233783185482, 0.02442510798573494, -0.03188009187579155, -0.012622840702533722, 0.0394572876393795, 0.05698610097169876, 0.0034023181069642305, -0.00728912279009819, -0.09609420597553253, -0.02016511745750904, -0.06100166589021683, -0.012500626966357231, 0.01798274554312229, 0.0024311626330018044, 0.0006874472019262612, 0.068543940782547, 0.06236346438527107, 0.031932469457387924, 0.041377775371074677, 0.0029614788945764303, 0.046720221638679504, -0.034987788647413254, -0.012884724885225296, -0.02629321999847889, 0.06386493891477585, -0.0280391164124012, -0.01150546595454216, -0.05426250025629997, 0.01676061749458313, -0.040469907224178314, -0.06124608963727951, -0.044555310159921646, 0.018366843461990356, -0.006320149637758732, 0.008947725407779217, -0.043822031468153, 0.05283086374402046, 0.006638776045292616, -0.052656274288892746, -0.04064449667930603, 0.0025424635969102383, 0.013574354350566864, 0.02267921157181263, 0.0021736426278948784, -0.027078872546553612, -0.04780267924070358, -0.0722801610827446, -0.0336434468626976, -0.008633463643491268, -0.004967079032212496, -0.03802565112709999, 0.013722755946218967, 0.014089394360780716, -0.05499577894806862, -0.03715270385146141, -0.0001213944487972185, 0.0044236681424081326, -0.00347870122641325, 0.0073851472698152065, -0.004174877889454365, 0.0033892239443957806, 0.025036172941327095, 0.00268213520757854, 0.023499783128499985, 0.0070228734984993935, 0.04221580550074577, -0.00013939902419224381, 0.05290069803595543, 0.05021201819181442, -0.026380514726042747, -0.03207214176654816, 0.0440315380692482, 0.03896843641996384, -0.0718611478805542, 0.03210705891251564, 0.01908266171813011, 0.04249515011906624, -0.05422758311033249, 0.022836342453956604, 0.00013796683924738318, -0.013626731000840664, 0.035668689757585526, 0.006080088671296835, 0.01523295696824789, -0.027532806620001793, -0.002466080477461219, 0.023202979937195778, 0.02159675396978855, 0.0014119948027655482, 0.02178880386054516, 0.01992069184780121, 0.030413538217544556, -0.030081817880272865, -0.037187620997428894, 0.007044697180390358, -0.03266574442386627, 0.024250518530607224, 0.009392929263412952, -0.013574354350566864, 0.038514502346515656, -0.0057309092953801155, 0.006669329013675451, -0.00227403175085783, -0.025367893278598785, 0.03596549108624458, -0.025804366916418076, -0.024250518530607224, 0.043333180248737335, 0.06662345677614212, 0.015136932954192162, -0.029610425233840942, -0.010318255051970482, 0.04518383368849754, 0.01123485155403614, -0.01337357610464096, -0.06016363576054573, 0.024058470502495766, -0.05869707837700844, 0.0032626462634652853, -0.010379361920058727, -0.054506924003362656, 0.0471392385661602, 0.024948878213763237, 0.011112638749182224, 0.0260662529617548, 0.03673368692398071, 0.031408701092004776, -0.003969735000282526, -0.021544378250837326, -0.006141195073723793, -0.0019532230217009783, 0.04183170944452286, -0.014813941903412342, -0.03582581877708435, 0.006455456838011742, 0.0013738032430410385, 0.047174155712127686, 0.01587020978331566, -0.012692675925791264, -0.049339067190885544, -0.00997780542820692, 0.016708241775631905, 0.07304836064577103, -0.0220157690346241, 0.032141976058483124, 0.061315927654504776, 0.011269769631326199, -0.06372526288032532, -0.036000411957502365, -0.0032495521008968353, 0.024704452604055405, -0.024372732266783714, 0.018803318962454796, -0.012963290326297283, -0.019100120291113853, -0.00909612700343132, 0.030378619208931923, 0.02136978693306446, -0.02037462592124939, 0.04106351360678673, -0.0010169853921979666, -0.028981901705265045, 0.05345938727259636, 0.02837083674967289, 0.012291119433939457, -0.012230013497173786, 0.031600747257471085, -0.05443708971142769, -0.034987788647413254, -0.010344443842768669, -0.03175788000226021, -0.019588971510529518, -0.011304687708616257, 0.043891869485378265, -0.05387840420007706, -0.013853698037564754, -0.03956204280257225, -0.01584402099251747, -0.08268571645021439, -0.03411484137177467, 0.004013382364064455, 0.015817832201719284, -0.01840176247060299, 0.06746148318052292, 0.007603384554386139, -0.09483715891838074, -0.028301000595092773, -0.0019390375819057226, -0.02751534804701805, 0.012649028562009335, 0.03376566246151924, -0.021439623087644577, -0.015564678236842155, 0.09099619090557098, 0.011112638749182224, -0.010946778580546379, -0.01883823610842228, -0.032159436494112015, -0.09525617957115173, -0.038060568273067474, 0.004761936143040657, -0.03896843641996384, -0.03914302587509155, -0.049339067190885544, -0.03465607017278671, 0.0645982176065445, 0.010938049294054508, 0.026677316054701805, 0.038619257509708405, 0.0394572876393795, -0.02390133962035179, 0.03318951651453972, -0.01007382944226265, 0.007769244723021984, 0.023726750165224075, 0.004022111650556326, 0.041587281972169876, 0.02849305048584938, 0.05548463016748428, 0.07472442090511322, 0.045533012598752975, -0.03956204280257225, -0.014316361397504807, -0.04668530449271202, -0.07388638705015182, -0.01707487925887108, -0.025263139978051186, 0.011950669810175896, -0.04724399000406265, -0.03367836773395538, 0.036559097468853, 0.03439418599009514, -0.0020994420628994703, -0.030657963827252388, 0.02816133014857769, 0.03311967849731445, 0.004910337273031473, -0.05660200119018555, 0.0014021741226315498, 0.1117374524474144, -0.025472646579146385, -0.010440467856824398, 0.024686994031071663, -0.024791747331619263, 0.029610425233840942, 0.02047937922179699, 0.02103806659579277, 0.06718214601278305, 0.01779942773282528, 0.054157745093107224, -0.02828354202210903, -0.017616108059883118, 0.0200429055839777, 0.0014163594460114837, 0.0650172308087349, 0.002618846483528614, 0.0033412117045372725, -0.0014327273238450289, 0.003055321052670479, -0.03399262949824333, -0.03495287150144577, 0.03381803631782532, -0.010161124169826508, 0.012553004547953606, 0.026572562754154205, 0.0019695907831192017, -0.027445511892437935, 0.041587281972169876, -0.040714334696531296, -0.06655362248420715, 0.0012210372369736433, -0.026345595717430115, -0.010876942425966263, -0.0324038602411747, -0.000044090735173085704, -0.00531189376488328, 0.03200230374932289, 0.04832644760608673, 0.04801218584179878, 0.057579707354307175, -0.007433159276843071, -0.1183718666434288, 0.0355115607380867, 0.010545222088694572, 0.022434785962104797, 0.05740511417388916, -0.001886660698801279, -0.0020066911820322275, 0.07835588604211807, -0.010649976320564747, 0.017223279923200607, 0.07088344544172287, 0.003005126491189003, -0.010126207023859024, -0.007232381030917168, 0.01127849891781807, -0.008231907151639462, 0.04961841180920601, -0.04141269251704216, -0.015913857147097588, -0.0015200221678242087, 0.05660200119018555, -0.0030225852970033884, 0.019152497872710228, 0.04130794107913971, -0.018995366990566254, 0.025804366916418076, 0.015747997909784317, -0.016603486612439156, -0.01177608035504818, -0.00369912083260715, 0.03046591393649578, 0.04218088835477829, 0.011138827539980412, -0.012395873665809631, -0.0050674681551754475, -0.0065427515655756, 0.056043315678834915, 0.027236003428697586, 0.03680352494120598, 0.018000205978751183, 0.03504016622900963 ]
729,097
tables.unimplemented
_g_open
null
def _g_open(self): (self.shape, self.byteorder, object_id) = self._open_unimplemented() try: self.nrows = SizeType(self.shape[0]) except IndexError: self.nrows = SizeType(0) return object_id
(self)
[ 0.04118930920958519, -0.0571448914706707, -0.023054765537381172, 0.04020526260137558, 0.04143531993031502, -0.005746119190007448, 0.024196961894631386, 0.0622408390045166, -0.053595300763845444, -0.08968866616487503, -0.006712591741234064, -0.02860759012401104, -0.032912787050008774, 0.004164618439972401, -0.02519857883453369, 0.02184228226542473, -0.04196248576045036, -0.0017308646347373724, -0.009620795957744122, 0.019206447526812553, -0.016658473759889603, 0.04526606574654579, -0.007753746584057808, -0.05152177810668945, -0.0014497089432552457, 0.05819922685623169, 0.015243909321725368, 0.015085759572684765, 0.060799915343523026, -0.07851272821426392, -0.04206791892647743, -0.01404899824410677, 0.026639500632882118, 0.05261125788092613, -0.0023327134549617767, -0.0025787248741835356, 0.015402060002088547, 0.05637171491980553, 0.029767358675599098, -0.02850215695798397, -0.033896833658218384, -0.04881565645337105, 0.046953000128269196, -0.031348858028650284, -0.018819859251379967, -0.0013025415828451514, -0.02799256332218647, -0.0724678784608841, -0.002576528349891305, 0.03189359977841377, -0.005816408433020115, 0.010534551925957203, -0.023037193343043327, -0.0045819589868187904, -0.07422509789466858, 0.0506783127784729, 0.01948760263621807, 0.007037678267806768, -0.056442003697156906, 0.007582417223602533, -0.033896833658218384, 0.03275463730096817, 0.019329452887177467, -0.03410769999027252, -0.002066933549940586, -0.025725744664669037, 0.00063369853887707, 0.018292691558599472, -0.02799256332218647, 0.06048361584544182, 0.02555002272129059, 0.016965989023447037, -0.003931786399334669, 0.03778029605746269, -0.04199763014912605, -0.025901466608047485, 0.008961837738752365, -0.0054473914206027985, 0.04667184501886368, -0.008373167365789413, 0.024038810282945633, 0.054298192262649536, 0.010956285521388054, 0.021613843739032745, 0.02911718562245369, 0.010991429910063744, 0.0945385992527008, 0.06944545358419418, -0.08954808861017227, -0.040697284042835236, 0.03683139383792877, 0.08497930318117142, -0.027746550738811493, 0.006040454376488924, 0.0019516157917678356, -0.05805864930152893, -0.020401358604431152, 0.022018004208803177, 0.029275335371494293, -0.04196248576045036, -0.06347089260816574, -0.03512688726186752, -0.012959519401192665, -0.022457310929894447, -0.04357913136482239, 0.0008626866620033979, 0.06269771605730057, -0.009840449318289757, -0.06354118138551712, 0.004292017314583063, -0.011694319546222687, -0.009163917973637581, -0.028836030513048172, 0.05303299054503441, 0.008808080106973648, -0.05004571005702019, 0.02660435624420643, 0.040767572820186615, 0.0029960651881992817, -0.017897317185997963, -0.07303018867969513, 0.005284848157316446, -0.04301682114601135, -0.021385403349995613, 0.04744502156972885, 0.060870204120874405, 0.02544458955526352, 0.005697795655578375, 0.04203277453780174, -0.07085122913122177, 0.040837861597537994, -0.02017292007803917, -0.0009977732552215457, 0.06424407660961151, -0.03802630677819252, 0.02591903880238533, 0.02282632701098919, -0.030452674254775047, -0.07471712678670883, 0.010297327302396297, 0.02530401200056076, -0.015331771224737167, 0.011079290881752968, 0.03010123036801815, -0.015349343419075012, 0.08933722227811813, 0.01722957193851471, -0.03140157461166382, 0.014400443062186241, -0.02323048934340477, 0.01729986071586609, -0.06037818267941475, 0.03359810262918472, 0.030259380117058754, -0.009840449318289757, -0.03841289505362511, -0.003953751642256975, -0.04979969933629036, -0.0243199672549963, -0.046109531074762344, -0.049131955951452255, 0.009084843099117279, -0.006857562810182571, -0.03467001020908356, -0.036479949951171875, 0.02781684137880802, -0.020418930798768997, -0.07018348574638367, -0.013917206786572933, -0.003474908648058772, 0.03820202872157097, 0.02894146367907524, 0.018450841307640076, -0.01897800900042057, -0.02435511164367199, 0.08090254664421082, -0.02697337418794632, 0.006580800283700228, 0.007476984057575464, 0.010921141132712364, 0.025936610996723175, 0.001074102590791881, -0.03400226682424545, 0.017431652173399925, 0.030347241088747978, 0.05833980441093445, 0.02017292007803917, -0.06687990576028824, 0.09749073535203934, 0.0017264715861529112, 0.002429360756650567, 0.030856836587190628, 0.004498491063714027, 0.03493359312415123, 0.05036201328039169, -0.006809239275753498, -0.014400443062186241, 0.035021454095840454, -0.030505390837788582, 0.07661492377519608, 0.0027171061374247074, 0.016561826691031456, 0.009111201390624046, -0.008799294009804726, -0.0510297566652298, 0.0033914404921233654, 0.005464963614940643, -0.019136158749461174, -0.010956285521388054, 0.05735575780272484, -0.04312225431203842, -0.031067702919244766, -0.028221001848578453, 0.0765446349978447, 0.057426050305366516, -0.023546788841485977, -0.03721798211336136, -0.012239058502018452, 0.0003824705781880766, -0.018995581194758415, 0.06420893222093582, 0.05394674837589264, -0.03314122557640076, -0.07359249889850616, 0.013855703175067902, -0.07534972578287125, -0.0066379099152982235, -0.008430277928709984, 0.0027236957103013992, 0.029169902205467224, -0.019259164109826088, -0.048007331788539886, 0.0008231491665355861, 0.022299159318208694, 0.020260781049728394, 0.03584735095500946, -0.0005139877321198583, 0.005271669011563063, -0.03827231749892235, -0.0009999697795137763, -0.031348858028650284, -0.0030509785283356905, 0.02261546067893505, 0.014980326406657696, -0.02446054480969906, -0.02646377868950367, -0.020664943382143974, 0.060940492898225784, -0.0023019621148705482, -0.014321367256343365, -0.007314440794289112, -0.0585155263543129, -0.015929225832223892, -0.018011536449193954, 0.035355325788259506, -0.0615730956196785, -0.05282212421298027, -0.05464963614940643, -0.024337539449334145, -0.006115136202424765, -0.003466122318059206, 0.03184087947010994, 0.03308850899338722, 0.001370633952319622, -0.01294194720685482, 0.019382169470191002, 0.021578699350357056, -0.020155347883701324, -0.00014895210915710777, 0.027641117572784424, 0.05587969347834587, 0.06231112778186798, -0.05313842371106148, 0.009067270904779434, -0.0037868155632168055, -0.07123782485723495, 0.03024180792272091, 0.001392599195241928, 0.01185246929526329, -0.0013827148359268904, 0.006712591741234064, 0.015252695418894291, -0.021965287625789642, 0.014409229159355164, -0.084346704185009, 0.014830962754786015, -0.004740109201520681, -0.0663527399301529, -0.04020526260137558, -0.038764338940382004, -0.021473266184329987, 0.054509058594703674, -0.02231673337519169, 0.04136503115296364, 0.04544178768992424, -0.005614327732473612, -0.025110717862844467, 0.04677727818489075, 0.024636266753077507, 0.023353494703769684, -0.03834260627627373, -0.026147479191422462, -0.04951854422688484, 0.009040912613272667, 0.01297709159553051, -0.02530401200056076, 0.04333312064409256, -0.02207072079181671, -0.050326868891716, 0.0062161763198673725, -0.0011454897467046976, 0.04839392378926277, 0.004841149318963289, 0.029169902205467224, -0.0026885513216257095, -0.030382385477423668, -0.016596971079707146, 0.0048060049302875996, 0.005148663651198149, 0.08244890719652176, 0.023722510784864426, -0.005117911845445633, 0.00692345853894949, -0.07928590476512909, -0.010613626800477505, -0.001513408380560577, -0.01072784699499607, -0.008658716455101967, -0.00597895123064518, 0.024126671254634857, -0.04958883300423622, -0.033721111714839935, 0.008201838470995426, -0.01941731385886669, 0.032192327082157135, 0.003327741054818034, 0.021174537017941475, 0.009278137236833572, -0.02203557640314102, -0.027974991127848625, 0.01450587622821331, -0.0024315572809427977, -0.004333751276135445, 0.0009565883083269, -0.002473291475325823, -0.024601122364401817, 0.06673932820558548, -0.08940751105546951, 0.028150713071227074, -0.02286147139966488, -0.002247049007564783, 0.03296550363302231, -0.06350603699684143, -0.000457976246252656, 0.014444373548030853, 0.0302769523113966, 0.004324965178966522, 0.026990946382284164, 0.000729247578419745, 0.05370073392987251, -0.013961137272417545, -0.02901175245642662, -0.005614327732473612, -0.06547413021326065, -0.052189525216817856, -0.03830746188759804, -0.07542001456022263, 0.007679064758121967, -0.01426865067332983, 0.014690384268760681, -0.06814511120319366, -0.041786763817071915, -0.052224669605493546, 0.030013369396328926, 0.04301682114601135, 0.048077620565891266, -0.03827231749892235, 0.03588249534368515, -0.03482815995812416, -0.07513885945081711, -0.007696636952459812, -0.01419836189597845, 0.05106490105390549, 0.026709789410233498, -0.05289241299033165, 0.0031608049757778645, -0.04856964573264122, 0.026305628940463066, -0.018327835947275162, 0.00870703998953104, -0.017747951671481133, -0.00018752863979898393, -0.002065835287794471, 0.015718359500169754, 0.05479021370410919, 0.04653126746416092, 0.04347369819879532, 0.009866807609796524, -0.014822176657617092, -0.013565761968493462, -0.03024180792272091, -0.019470030441880226, -0.045863520354032516, 0.06821539998054504, -0.0024864706210792065, -0.021877426654100418, 0.024232106283307076, -0.026235340163111687, -0.023494072258472443, -0.03479301556944847, -0.010806921869516373, 0.01857384666800499, -0.0055879694409668446, -0.026129906997084618, 0.026059618219733238, 0.0009049698710441589, -0.004489704966545105, 0.055528245866298676, 0.04853450134396553, 0.011237441562116146, -0.036444805562496185, 0.08209746330976486, 0.006198604125529528, 0.04994027689099312, -0.06364661455154419, -0.0019340435974299908, -0.017642518505454063, 0.019470030441880226, 0.014066570438444614, 0.03526746481657028, -0.056652870029211044, 0.046179819852113724, 0.022879043594002724, 0.018925292417407036, -0.05173264443874359, -0.02265060506761074, -0.01506818737834692, -0.01299466472119093, -0.02180713787674904, 0.09678784757852554, 0.09313282370567322, 0.022703321650624275, 0.011676747351884842, 0.021508410573005676, 0.018239974975585938, -0.06234627217054367, 0.007187042385339737, 0.030083658173680305, -0.005965772084891796, 0.03883462771773338, 0.033896833658218384, -0.04147046431899071, 0.01999719813466072, -0.03275463730096817, -0.04234907403588295, -0.044703755527734756, -0.04769103229045868, -0.0021580895408988, -0.0007720798603259027, -0.06828568875789642, -0.018679281696677208, 0.028273718431591988, -0.02656921185553074, -0.04052156209945679, 0.010464263148605824, 0.01136044692248106, -0.017791884019970894, 0.005434212274849415, -0.026094762608408928, -0.02475927211344242, 0.021824710071086884, 0.005513287149369717, -0.0024315572809427977, -0.04885080084204674, 0.002460112329572439, 0.0007446232484653592, -0.011615244671702385, 0.032192327082157135, 0.0007682359428144991, -0.059710439294576645, 0.04835877940058708, -0.05110004544258118, 0.011096863076090813, 0.00337167177349329, -0.01527026854455471, 0.0421733520925045, -0.013267033733427525, 0.015331771224737167, -0.014514662325382233, -0.03387926146388054, 0.015718359500169754, 0.048991378396749496, -0.06220569461584091, -0.014497090131044388, 0.12778526544570923, 0.04937796667218208, 0.01384691707789898, -0.016017088666558266, -0.025022855028510094, -0.027219384908676147, 0.009954668581485748, -0.031348858028650284, 0.0034529431723058224, -0.058761537075042725, -0.022404594346880913, -0.04343855381011963, 0.02952134609222412, -0.02955649048089981, -0.008298485539853573, -0.025427017360925674, -0.05387645959854126, 0.011219869367778301, -0.01836298033595085, 0.03157729655504227, 0.010209465399384499, 0.07018348574638367, 0.031682729721069336, 0.008412704803049564, -0.030505390837788582, 0.026165051385760307, 0.032262615859508514, -0.002275603823363781, 0.00010948323324555531, -0.032807353883981705, -0.049167100340127945, -0.0009428599732927978, -0.020454075187444687, 0.013574548065662384, 0.05693402513861656, 0.03988896310329437, -0.0077229952439665794, -0.019803903996944427, -0.0005754905287176371, 0.036444805562496185, -0.007560451980680227, -0.04832363501191139, 0.05482535809278488, -0.011913971975445747, 0.0021097660064697266, -0.006989354733377695, -0.013750270009040833, -0.0248295608907938, 0.011588885448873043, -0.007125539239495993, -0.021402975544333458, 0.002304158639162779, 0.0324910543859005, -0.020489219576120377, 0.03282492607831955, -0.05812893807888031, 0.02337106689810753, -0.02265060506761074, 0.04755045473575592, -0.04270051792263985, -0.0009263860411010683, 0.057601772248744965, 0.044809188693761826, -0.04410629719495773, 0.005491321906447411, -0.04326283186674118, 0.028010135516524315, 0.03403741121292114, -0.0032332902774214745, -0.01737893559038639, -0.008320450782775879, -0.02272089384496212, -0.00038686362677253783, -0.008772935718297958, 0.006422650068998337, 0.03830746188759804, -0.028713025152683258, -0.004408433102071285, -0.0037209198344498873, -0.0275532566010952, 0.019540319219231606, -0.03918607532978058, -0.05633657053112984, 0.05942928418517113, 0.026586784049868584, -0.06470095366239548, 0.03414284437894821, -0.013565761968493462, -0.008342416025698185, -0.029538918286561966, 0.01675512082874775, 0.019733615219593048, -0.05939413979649544, -0.0016748531488701701, -0.006431436166167259, -0.052259813994169235, 0.0016430035466328263, -0.06034303829073906, -0.02693822979927063, -0.04530121013522148, 0.009559293277561665, 0.08041052520275116, 0.020928526297211647, -0.06034303829073906, -0.016236741095781326, -0.03343995288014412, 0.0027917881961911917, 0.03690168261528015, -0.04006468504667282, 0.05833980441093445, -0.005038836970925331, -0.012239058502018452, -0.00039592431858181953, 0.05693402513861656, 0.024302395060658455, -0.03192874416708946, 0.02537430077791214, -0.011641602963209152, -0.018749570474028587, -0.06153795123100281, -0.09235963970422745, 0.007173863239586353, 0.03396712243556976, 0.024811988696455956, 0.029310479760169983, 0.02707880735397339, -0.012555358931422234, -0.015841364860534668, -0.02472412772476673, -0.03795601800084114, 0.013047381304204464, 0.055563393980264664, 0.0003495226555969566, 0.052294958382844925, 0.041575897485017776, 0.004889472853392363, 0.0034507466480135918, 0.0004722536832559854, 0.02504042722284794, -0.017071422189474106, 0.05173264443874359, -0.03496873751282692, -0.02948620170354843, 0.030259380117058754, -0.013934778980910778, 0.10852609574794769, -0.03410769999027252, 0.040767572820186615, 0.014549806714057922, -0.030487818643450737, -0.013293392024934292, -0.007274903357028961, 0.05081889033317566, -0.023511644452810287, 0.058656103909015656, 0.011738250032067299, 0.02068251557648182, 0.02656921185553074, 0.038448039442300797, -0.07675550132989883, 0.012792583554983139, 0.022334305569529533, -0.03238562121987343, -0.013961137272417545, -0.02319534309208393, 0.002598493592813611, -0.018415696918964386, -0.022633032873272896, 0.005240917671471834, -0.03373868390917778, 0.034336138516664505, 0.012072122655808926, 0.03523232042789459, 0.0010065593523904681, 0.02853730134665966, -0.028449440374970436, -0.04937796667218208, 0.04132988676428795, 0.0421733520925045, 0.007551665883511305, -0.04118930920958519, -0.02010263130068779, 0.04846421256661415, 0.033931978046894073, 0.059745583683252335, 0.0778801217675209, -0.02653406746685505, 0.04994027689099312, -0.009954668581485748, -0.03010123036801815, -0.006088777910917997, -0.011378019116818905, -0.03626908361911774, -0.012678364291787148, 0.049167100340127945, -0.027676261961460114, 0.016482751816511154, 0.008469815365970135, 0.06617701798677444, 0.024811988696455956, -0.0945385992527008, -0.02024320885539055, 0.02468898333609104, 0.01952274702489376, 0.004827970173209906, 0.00866750255227089, 0.025286439806222916, -0.006084384862333536, 0.022527599707245827, -0.00814472883939743, 0.010402760468423367, 0.044949766248464584, -0.061889395117759705, 0.04790189862251282, -0.03177059069275856, 0.004226121585816145, -0.005126698408275843, 0.025497306138277054, -0.024073954671621323, -0.00685316976159811, 0.02547973394393921, 0.06269771605730057, -0.03486330434679985, 0.0717649906873703, -0.05370073392987251, 0.04298167675733566, -0.0032267007045447826, 0.05050259083509445, 0.049237389117479324, 0.07745838910341263, -0.028238574042916298, 0.023177770897746086, 0.025532450526952744, 0.007560451980680227, 0.0024513262324035168, 0.034300994127988815, 0.032666776329278946, -0.050151146948337555, -0.04653126746416092, -0.009172704070806503, 0.0076527064666152, 0.01072784699499607, 0.022808754816651344, -0.01959303766489029, 0.0411541648209095, 0.020910954102873802, -0.046988144516944885, 0.060694482177495956, -0.06480638682842255, 0.04983484372496605, -0.02526886761188507, 0.026182623580098152, 0.022931760177016258, 0.030768975615501404, -0.016333388164639473, 0.06934002041816711, 0.04438745230436325, 0.00930449552834034, 0.02758840098977089, -0.01343396957963705, -0.0185387022793293, -0.011114435270428658, -0.022457310929894447, 0.027395106852054596, 0.05584454908967018, -0.012019405141472816, -0.02221129834651947, -0.061994828283786774, -0.04301682114601135, 0.056512292474508286, -0.08392497152090073, 0.035355325788259506, -0.020014770328998566, 0.001249824883416295 ]
729,120
tables.exceptions
UnclosedFileWarning
Warning raised when there are still open files at program exit Pytables will close remaining open files at exit, but raise this warning.
class UnclosedFileWarning(Warning): """Warning raised when there are still open files at program exit Pytables will close remaining open files at exit, but raise this warning. """ pass
null
[ -0.016836270689964294, -0.003912563435733318, -0.007700509391725063, -0.017265986651182175, 0.010760086588561535, -0.03657741844654083, 0.004447559826076031, 0.06982024759054184, -0.0749424546957016, -0.0829867422580719, -0.0028017477598041296, -0.05630997568368912, 0.012281280942261219, -0.00782082974910736, -0.03736809641122818, 0.009015440009534359, -0.010914784856140614, 0.06225724518299103, -0.00736103393137455, 0.040290165692567825, -0.0449654757976532, -0.008749016560614109, -0.02789715863764286, -0.024321921169757843, -0.03891507536172867, 0.05349103733897209, -0.0455155111849308, -0.01330400537699461, 0.08003029227256775, -0.032950617372989655, -0.046065546572208405, 0.02655644528567791, 0.016561251133680344, 0.03939635679125786, 0.010760086588561535, 0.028894098475575447, 0.034772612154483795, 0.01292585488408804, -0.0005672250408679247, 0.037711869925260544, -0.023410923779010773, -0.005156591068953276, -0.002065859269350767, -0.042696576565504074, 0.010691332630813122, -0.0034183901734650135, -0.036543041467666626, -0.021829569712281227, -0.017592569813132286, 0.00115808448754251, 0.034394461661577225, -0.007202039007097483, 0.03901820629835129, 0.017893372103571892, 0.007687618024647236, 0.0862182080745697, -0.0018058811547234654, 0.007911070249974728, 0.00016033776046242565, -0.05555367469787598, 0.042318426072597504, 0.02875659056007862, 0.012109395116567612, -0.02987385168671608, 0.050947122275829315, -0.0417683869600296, 0.006192206405103207, -0.04132148250937462, -0.039052583277225494, 0.03185054659843445, -0.0433841198682785, -0.01949191465973854, -0.009290458634495735, 0.0819554254412651, 0.038193151354789734, -0.0770738497376442, -0.034772612154483795, -0.05716940760612488, -0.009900654666125774, -0.02078106254339218, 0.027106480672955513, -0.050328329205513, 0.0390869602560997, 0.07941150665283203, 0.04276533052325249, -0.016509685665369034, 0.11179489642381668, 0.03681806102395058, -0.01858091726899147, 0.11048856377601624, -0.0127109969034791, 0.05294100195169449, -0.022345228120684624, -0.010381937026977539, 0.012203932739794254, -0.04321223497390747, -0.0029499998781830072, 0.013579023070633411, -0.050293952226638794, -0.08463685214519501, -0.009720174595713615, -0.0535597950220108, 0.047406259924173355, -0.012143772095441818, 0.03795251250267029, -0.028825344517827034, 0.027020538225769997, -0.02306715026497841, -0.02152017317712307, -0.03571798652410507, -0.052115947008132935, -0.03217712789773941, -0.01858091726899147, 0.03255527839064598, 0.040393296629190445, -0.03405069187283516, -0.017265986651182175, -0.006488710641860962, 0.021279532462358475, -0.008783393539488316, 0.0026749817188829184, 0.03394755721092224, -0.0937124490737915, -0.04726875200867653, 0.05936955288052559, 0.04668433964252472, -0.0021303168032318354, 0.00966001395136118, 0.04331536591053009, 0.08697450160980225, -0.016475308686494827, 0.0025052439887076616, -0.028997231274843216, 0.0026921702083200216, -0.014962708577513695, -0.05270036309957504, 0.01515178382396698, 0.024012526497244835, 0.008482592180371284, -0.07556124776601791, 0.015263509936630726, 0.017704296857118607, -0.0027480332646518946, -0.0176699198782444, 0.02724399045109749, 0.06404486298561096, -0.010553822852671146, -0.02468288317322731, -0.04111522063612938, -0.014653312973678112, -0.010115512646734715, -0.0487125962972641, -0.11468258500099182, 0.022087398916482925, 0.042696576565504074, 0.00543590635061264, -0.012951638549566269, -0.03956824168562889, 0.001959504559636116, -0.044827964156866074, 0.03709308058023453, -0.030423887073993683, -0.020334158092737198, 0.0039404951967298985, -0.03826190531253815, -0.011679679155349731, -0.006273852661252022, -0.01145622693002224, -0.012453167699277401, -0.01992163062095642, 0.00473976694047451, 0.03657741844654083, 0.009256080724298954, 0.08071783930063248, -0.028980042785406113, 0.03936197981238365, 0.015426801517605782, -0.00714617595076561, -0.020248213782906532, 0.012135177850723267, 0.008761907927691936, -0.04166525602340698, -0.041218351572752, 0.051806554198265076, 0.04689060151576996, 0.03874318674206734, -0.01858091726899147, -0.019732555374503136, 0.022981207817792892, 0.013914201408624649, -0.02640174701809883, 0.016260450705885887, 0.0032679897267371416, 0.03035513311624527, 0.019784120842814445, -0.06081339716911316, -0.04503422975540161, 0.016423743218183517, 0.0058140563778579235, 0.003027348779141903, -0.04400291293859482, 0.04503422975540161, 0.016836270689964294, -0.027175234630703926, 0.041355859488248825, 0.047681279480457306, 0.03564923256635666, -0.04616868123412132, -0.08814333379268646, 0.03688681498169899, 0.028172176331281662, -0.03442883864045143, -0.029959794133901596, 0.017635541036725044, 0.05111900717020035, 0.02751900814473629, -0.0024880552664399147, 0.003403350245207548, -0.07019839435815811, 0.0010737526463344693, 0.019354404881596565, 0.051737796515226364, -0.0023999635595828295, 0.020437289029359818, -0.006699271500110626, -0.04341849684715271, 0.05215032398700714, 0.016552656888961792, 0.06844515353441238, -0.002352694747969508, -0.02762214094400406, 0.03805564343929291, -0.06108841672539711, 0.0019090130226686597, 0.015435396693646908, 0.03575236722826958, -0.03946511074900627, -0.0364055335521698, -0.033328767865896225, 0.0005500363768078387, -0.04300596937537193, -0.04011828079819679, 0.009109977632761002, -0.017162853851914406, 0.02372032031416893, -0.011628112755715847, 0.034085068851709366, 0.06174158677458763, 0.017541004344820976, 0.04149337112903595, 0.040668316185474396, -0.044140420854091644, -0.004980407655239105, -0.01707691140472889, 0.008177494630217552, -0.044896721839904785, -0.05156591162085533, -0.08793706446886063, -0.00018679213826544583, -0.003190640825778246, -0.017412088811397552, -0.0068926434032619, 0.006398470140993595, 0.05414420738816261, 0.0179449375718832, -0.009092789143323898, 0.007855207659304142, -0.04726875200867653, -0.03998076915740967, -0.01718863658607006, 0.02655644528567791, 0.0031433720141649246, -0.04304034635424614, -0.028550326824188232, -0.034824177622795105, -0.03743685036897659, 0.02602359652519226, 0.03527108207345009, -0.028550326824188232, 0.027278367429971695, 0.06765447556972504, 0.025954842567443848, -0.0038008373230695724, 0.02602359652519226, -0.03688681498169899, -0.011473415419459343, -0.06404486298561096, -0.023599999025464058, -0.013054770417511463, -0.014386889524757862, -0.035786744207143784, 0.033328767865896225, 0.019560668617486954, 0.03394755721092224, 0.0016769664362072945, 0.014438454993069172, -0.036921191960573196, -0.03217712789773941, 0.051256515085697174, -0.0009351692860946059, -0.041527748107910156, -0.006600436754524708, -0.0003749271563719958, 0.03014886938035488, -0.02200145646929741, -0.040393296629190445, 0.025954842567443848, -0.023118717595934868, -0.014017333276569843, 0.01159373577684164, 0.08793706446886063, -0.015598688274621964, 0.011310122907161713, 0.025628257542848587, 0.027450254186987877, -0.0038631462957710028, -0.023307792842388153, -0.026968970894813538, -0.03167865797877312, 0.08078659325838089, -0.06438863277435303, -0.019509103149175644, 0.05270036309957504, -0.015117406845092773, -0.018873123452067375, -0.016354989260435104, 0.1183265820145607, 0.014739256352186203, 0.0027974506374448538, -0.00757589191198349, -0.025731390342116356, -0.03939635679125786, 0.02265462465584278, -0.058063216507434845, -0.030819226056337357, 0.03791813552379608, -0.01782461628317833, -0.05129089206457138, 0.03726496547460556, -0.03729934245347977, -0.01713707111775875, 0.0025417697615921497, 0.033225636929273605, 0.01322665624320507, -0.056997522711753845, -0.021502984687685966, -0.005771085154265165, 0.0017736525041982532, 0.10828841477632523, -0.044518571346998215, 0.046718716621398926, 0.05101587623357773, -0.08546190708875656, 0.06119154766201973, 0.022689001634716988, -0.03523670509457588, 0.004877275787293911, 0.03864005580544472, 0.020488856360316277, 0.013613400980830193, 0.014472832903265953, 0.01001238077878952, -0.03781500086188316, -0.017051128670573235, 0.01932002790272236, -0.023634376004338264, -0.003500036196783185, 0.009926438331604004, -0.03133488446474075, 0.011817188002169132, -0.03217712789773941, -0.04166525602340698, 0.03575236722826958, 0.01916532963514328, 0.026470500975847244, 0.03178178891539574, 0.0002294951700605452, 0.06280727684497833, -0.014610341750085354, 0.04974391683936119, 0.0077821556478738785, -0.02435629814863205, -0.023857828229665756, -0.029048796743154526, -0.082436703145504, -0.02683146297931671, -0.04379664734005928, -0.007270793430507183, -0.039636995643377304, 0.02815498784184456, 0.03362097591161728, -0.03147239610552788, 0.017111288383603096, 0.011516386643052101, 0.015315075404942036, 0.03152396157383919, 0.003119737608358264, 0.014154843054711819, 0.02157174050807953, 0.023273414000868797, 0.013028986752033234, -0.007524325978010893, -0.07143597304821014, 0.03901820629835129, -0.006325418595224619, 0.007743481080979109, 0.05170341953635216, -0.03860567882657051, 0.0417683869600296, -0.03668055310845375, -0.035047631710767746, -0.024854769930243492, -0.010992133058607578, 0.0068238889798521996, 0.03207399696111679, 0.056138090789318085, -0.012358630076050758, -0.03393036872148514, 0.08326175808906555, -0.016638601198792458, 0.03974013030529022, 0.0008320374763570726, 0.0455155111849308, 0.04919388145208359, -0.023462489247322083, -0.08477436006069183, -0.023032773286104202, 0.013123524375259876, 0.003463510423898697, 0.030905170366168022, -0.031884923577308655, -0.026745518669486046, -0.02445943094789982, -0.051737796515226364, 0.014747850596904755, -0.02318747155368328, -0.013192279264330864, -0.0016565548721700907, 0.023307792842388153, 0.08917465060949326, 0.005070648156106472, 0.04795629903674126, 0.06975148618221283, -0.011103860102593899, 0.02445943094789982, -0.04341849684715271, 0.023789074271917343, 0.015426801517605782, -0.02377188578248024, 0.027879970148205757, 0.005723816342651844, -0.02837844006717205, -0.018855934962630272, -0.02349686622619629, -0.030853603035211563, -0.060263361781835556, -0.035047631710767746, 0.003925454802811146, 0.0010909413686022162, 0.01937159337103367, -0.03497887775301933, 0.08367428928613663, 0.04094333574175835, -0.03984326124191284, 0.038193151354789734, -0.08944966644048691, -0.058647628873586655, -0.01568463072180748, -0.0019895846489816904, 0.006295338273048401, -0.0020185906905680895, 0.023651564493775368, -0.02564544603228569, -0.018443407490849495, -0.0002543381124269217, -0.022517114877700806, 0.008731828071177006, 0.05156591162085533, 0.03453197330236435, -0.021434230729937553, 0.02777683734893799, -0.04909074679017067, 0.014610341750085354, -0.0342569537460804, -0.011567953042685986, -0.05551929771900177, 0.018030880019068718, -0.06861703842878342, -0.0010979241924360394, -0.016939401626586914, -0.009909248910844326, -0.029220683500170708, -0.03929322585463524, -0.06896081566810608, 0.06982024759054184, 0.019457537680864334, 0.009170138277113438, 0.03463510423898697, -0.012117989361286163, -0.06456052511930466, 0.05129089206457138, -0.046821847558021545, -0.040393296629190445, -0.01159373577684164, -0.002913474105298519, -0.01702534593641758, 0.05366292595863342, -0.016526874154806137, -0.015134595334529877, -0.05118776112794876, -0.01890750043094158, 0.009651419706642628, 0.0023978149984031916, 0.06834202259778976, 0.05741005018353462, 0.019405972212553024, -0.04940014332532883, -0.00373423146083951, 0.06762009859085083, 0.05651623755693436, -0.008267734199762344, -0.009015440009534359, 0.06569497287273407, -0.02815498784184456, -0.015753386542201042, -0.05036270618438721, 0.006780917290598154, 0.019027821719646454, 0.049228258430957794, 0.02858470380306244, -0.004015695303678513, 0.008796284906566143, 0.035786744207143784, -0.058647628873586655, -0.014447049237787724, 0.005826948210597038, -0.014352512545883656, -0.0332084484398365, 0.03035513311624527, -0.026676764711737633, 0.017755862325429916, 0.03619927167892456, 0.05476299673318863, -0.026057973504066467, 0.027329932898283005, 0.01809963583946228, -0.058544497936964035, 0.018701236695051193, 0.05149715766310692, 0.01932002790272236, 0.002159322611987591, 0.02237960509955883, 0.07037027925252914, -0.03301937133073807, -0.00417469022795558, -0.023634376004338264, 0.07397989183664322, -0.01649249717593193, 0.026745518669486046, -0.004954624455422163, -0.04599679261445999, -0.019715366885066032, 0.0073696281760931015, -0.05118776112794876, 0.029220683500170708, -0.0035838307812809944, 0.03864005580544472, 0.018649671226739883, -0.0251641646027565, 0.0022731972858309746, -0.018855934962630272, -0.004413182381540537, 0.041527748107910156, -0.06194784864783287, 0.03458353877067566, -0.05304413288831711, 0.0014083939604461193, 0.06541995704174042, -0.0016049890546128154, -0.054900508373975754, -0.017197230830788612, 0.008525564335286617, -0.027209613472223282, 0.0041252728551626205, -0.019852876663208008, -0.00022613801411353052, -0.018512161448597908, 0.017979314550757408, 0.03984326124191284, 0.06383860111236572, 0.0010420611361041665, -0.048643842339515686, 0.005560524296015501, -0.10100043565034866, 0.02635018154978752, 0.05954143777489662, -0.02291245386004448, 0.004473343025892973, 0.021657682955265045, -0.0015781318070366979, -0.011404660530388355, 0.031248942017555237, -0.045102983713150024, 0.01595105603337288, 0.01926846243441105, 0.019251273944973946, 0.031094245612621307, 0.02987385168671608, -0.03822752833366394, 0.05400669947266579, -0.054419226944446564, 0.020488856360316277, 0.04204340651631355, -0.054212961345911026, -0.0519440621137619, 0.007442679721862078, 0.01756678707897663, -0.03362097591161728, -0.0018284412799403071, 0.037986889481544495, -0.05555367469787598, 0.05765068903565407, 0.05668812617659569, 0.017214419320225716, -0.010717115364968777, 0.01756678707897663, -0.0037406771443784237, -0.009909248910844326, -0.013063364662230015, -0.025834521278738976, -0.07638630270957947, -0.013965767808258533, 0.020763874053955078, 0.014438454993069172, 0.015547122806310654, 0.0017919153906404972, 0.004619446117430925, -0.06920145452022552, 0.03987763822078705, 0.02537042833864689, 0.01621747948229313, -0.022774944081902504, 0.007137581706047058, 0.00525972293689847, -0.0358554981648922, -0.018769992515444756, -0.014154843054711819, -0.043280988931655884, 0.04891886189579964, -0.0637010931968689, 0.016079969704151154, 0.06215411052107811, 0.008138819597661495, -0.051153384149074554, 0.013398543000221252, -0.0010227239690721035, 0.0005828022258356214, -0.0179277490824461, 0.019405972212553024, 0.059403929859399796, 0.016630006954073906, -0.06225724518299103, -0.01296023279428482, 0.017429277300834656, 0.05043146014213562, 0.021399853751063347, 0.013664966449141502, 0.003229315159842372, -0.02789715863764286, -0.01782461628317833, 0.027347121387720108, 0.05589744821190834, -0.022620245814323425, -0.02531886287033558, 0.021159213036298752, -0.043762270361185074, -0.0010076838079839945, 0.012281280942261219, 0.0009314093040302396, -0.02243117243051529, -0.0004777903959620744, 0.0315755270421505, -0.024510996416211128, -0.03726496547460556, 0.011920319870114326, 0.09137479215860367, -0.03497887775301933, 0.02580014429986477, -0.0044303713366389275, -0.08126787841320038, 0.0011677530128508806, 0.05036270618438721, 0.010725709609687328, 0.03233182802796364, -0.06944209337234497, 0.015126001089811325, 0.02286088839173317, 0.03671493008732796, 0.005607793107628822, -0.03142083063721657, 0.030853603035211563, 0.035786744207143784, 0.05926642194390297, 0.026693953201174736, -0.011430444195866585, 0.018374653533101082, -0.032847486436367035, -0.034394461661577225, -0.015237727202475071, -0.027209613472223282, -0.02227647416293621, 0.03839941695332527, -0.020265404134988785, -0.02724399045109749, -0.014575964771211147, -0.025834521278738976, -0.026298614218831062, -0.0396026186645031, 0.03458353877067566, -0.024906335398554802, 0.009032628498971462, 0.0524597205221653, -0.018855934962630272, 0.029169118031859398, -0.024167224764823914, 0.005014785099774599, -0.03716183453798294, -0.005521849729120731, -0.003824471728876233, 0.034721046686172485, 0.028945665806531906, -0.05445360392332077, -0.06225724518299103, 0.07198601216077805, 0.004748361185193062, -0.011146831326186657, 0.006071886047720909, 0.040187034755945206, 0.06438863277435303, 0.021451419219374657, 0.03688681498169899, -0.030475454404950142, -0.0042907134629786015, 0.021657682955265045, 0.005633575841784477, -0.001043672556988895, 0.007094610016793013, 0.05215032398700714, 0.01068273838609457, 0.047096867114305496, 0.013673560693860054, 0.0077520753256976604, -0.000734277069568634, 0.04469045624136925, 0.01167108491063118, -0.005779679398983717, 0.0497782938182354, -0.017893372103571892, -0.035202328115701675, -0.0015813546488061547, -0.032520901411771774, 0.02635018154978752, 0.003946940880268812, 0.022946830838918686, 0.010691332630813122, -0.004512017127126455, -0.00013670338375959545, -0.007550108712166548 ]
729,121
tables.exceptions
UndoRedoError
Problems with doing/redoing actions with Undo/Redo feature. This exception indicates a problem related to the Undo/Redo mechanism, such as trying to undo or redo actions with this mechanism disabled, or going to a nonexistent mark.
class UndoRedoError(Exception): """Problems with doing/redoing actions with Undo/Redo feature. This exception indicates a problem related to the Undo/Redo mechanism, such as trying to undo or redo actions with this mechanism disabled, or going to a nonexistent mark. """ pass
null
[ -0.045835260301828384, -0.0032939575612545013, 0.017061706632375717, 0.058414652943611145, 0.015227210707962513, -0.06622255593538284, -0.036906782537698746, 0.05114896968007088, 0.0430157408118248, -0.011368446052074432, 0.07764521986246109, 0.030852045863866806, 0.03383423015475273, 0.021290984004735947, -0.03647300973534584, 0.022646522149443626, 0.023459846153855324, 0.03298475965857506, -0.003682545153424144, -0.018119025975465775, -0.028466299176216125, 0.033093202859163284, 0.026098625734448433, -0.009832169860601425, -0.03766588494181633, 0.06470435112714767, -0.0020852694287896156, 0.006813838146626949, 0.0007195647922344506, -0.04410017281770706, -0.04070229083299637, -0.05823391675949097, -0.04323262721300125, 0.05404078587889671, -0.029044663533568382, -0.015633871778845787, -0.000580057327169925, 0.0645236149430275, -0.03193647786974907, -0.039943188428878784, -0.10352696478366852, -0.004116317257285118, 0.00872062798589468, -0.02676735818386078, 0.048365600407123566, -0.03426800295710564, -0.026225144043564796, 0.015805574133992195, -0.05472759157419205, -0.01991737261414528, -0.004875418730080128, -0.018344948068261147, 0.006556286010891199, -0.01832687482237816, 0.015588687732815742, 0.03209914267063141, 0.009054994210600853, 0.08422409743070602, -0.027508385479450226, -0.00803834106773138, -0.009488767012953758, 0.09694808721542358, 0.014440999366343021, 0.011043116450309753, 0.04724502190947533, -0.02476116269826889, -0.01417892798781395, -0.03106893226504326, 0.0017847918206825852, 0.03153885155916214, -0.006470435298979282, 0.048546336591243744, -0.031195450574159622, -0.006800282746553421, 0.06477664411067963, -0.026008257642388344, -0.0006879355642013252, -0.00002538103944971226, 0.018272653222084045, 0.025357598438858986, 0.004762457218021154, -0.02501419559121132, 0.047751087695360184, 0.07829587906599045, 0.04579911381006241, -0.072620689868927, 0.01647430658340454, -0.027580682188272476, -0.041099913418293, -0.02214045450091362, -0.04525689780712128, -0.060149744153022766, -0.0745365172624588, -0.05845080316066742, -0.04171442613005638, 0.007234055083245039, 0.0031606629490852356, -0.026695063337683678, -0.011793181300163269, -0.05404078587889671, 0.007753677666187286, 0.05718563497066498, -0.020333070307970047, 0.015507355332374573, 0.008454038761556149, 0.012434802949428558, -0.03623805195093155, -0.005539632402360439, -0.0008291374542750418, -0.044172465801239014, -0.003912986721843481, 0.0323341004550457, 0.03565968945622444, -0.0038226174656301737, 0.011621479876339436, -0.07446422427892685, 0.0022027494851499796, -0.020604178309440613, -0.03208106756210327, -0.009615283459424973, 0.05949908494949341, 0.024652719497680664, -0.05639038607478142, 0.04026851803064346, 0.06636714190244675, 0.011531110852956772, 0.008372707292437553, 0.07160855829715729, 0.012940870597958565, -0.024634646251797676, 0.0010042277863249183, -0.03139426186680794, -0.03171959146857262, -0.016374900937080383, 0.03298475965857506, 0.05823391675949097, 0.06607796251773834, 0.0018424021545797586, -0.04146139323711395, -0.03161114826798439, 0.03806350752711296, 0.0409553237259388, -0.01823650486767292, 0.018435318022966385, -0.05913760885596275, 0.014097596518695354, -0.02167053520679474, 0.0058017028495669365, 0.036979079246520996, 0.04634132981300354, 0.010681640356779099, -0.010030982084572315, -0.004010133445262909, -0.020170407369732857, -0.013419827446341515, 0.025682928040623665, -0.015435060486197472, -0.04547378420829773, -0.023875543847680092, 0.023586362600326538, 0.03446681424975395, -0.04023237153887749, 0.04496771842241287, -0.01839916966855526, -0.006615025922656059, 0.04420861601829529, -0.004834752529859543, -0.08140458166599274, -0.026695063337683678, -0.00336625287309289, 0.005620964802801609, 0.013844562694430351, -0.0003710785531438887, 0.00135892687831074, -0.038099657744169235, 0.01800154522061348, -0.04807641729712486, 0.042726561427116394, -0.0490524061024189, -0.008661888539791107, 0.04222049191594124, -0.01111541222780943, -0.020242702215909958, 0.005069712642580271, 0.010916600003838539, -0.018182283267378807, 0.005218821577727795, 0.0010889489203691483, 0.042401231825351715, -0.010781046003103256, -0.015651946887373924, -0.05693259835243225, 0.036834489554166794, -0.016383936628699303, -0.004344499669969082, -0.05396848917007446, -0.03950941562652588, -0.033563122153282166, 0.14148202538490295, 0.024345463141798973, -0.04496771842241287, 0.09210429340600967, 0.057763997465372086, 0.0568603053689003, 0.03359927237033844, 0.014748254790902138, 0.0010172183392569423, -0.024002060294151306, -0.052269548177719116, -0.028936220332980156, 0.048618633300065994, -0.006700876634567976, -0.0065291752107441425, 0.068499855697155, 0.0491969957947731, 0.0326232835650444, 0.05035372078418732, 0.0008969143382273614, 0.017703328281641006, 0.05866768956184387, 0.024417759850621223, 0.038569577038288116, 0.00483927084133029, -0.011567258276045322, 0.04619673639535904, -0.02562870644032955, -0.008178412914276123, -0.03517169505357742, 0.02987605892121792, -0.03560546785593033, 0.003397882217541337, -0.060728106647729874, -0.05917375534772873, -0.010058092884719372, 0.08523623645305634, -0.021634388715028763, -0.005652593914419413, -0.05765555426478386, 0.04037696123123169, 0.009091141633689404, -0.05895686894655228, 0.0012934092665091157, 0.02929769642651081, 0.03719596564769745, 0.050751347094774246, -0.0074147931300103664, 0.03265943005681038, 0.03528013825416565, -0.07374127209186554, -0.024978049099445343, 0.04305189102888107, 0.03567776083946228, -0.017567774280905724, -0.023369476199150085, 0.047425758093595505, -0.03799121454358101, -0.013248125091195107, -0.014621737413108349, 0.021200615912675858, 0.023857470601797104, 0.011603405699133873, -0.06188483163714409, 0.017820807173848152, -0.0025100046768784523, -0.015877868980169296, -0.04572681710124016, 0.004120835568755865, 0.014504257589578629, 0.0326232835650444, 0.005001935642212629, 0.10359925776720047, 0.04952232539653778, -0.050281427800655365, 0.031430408358573914, -0.04341336712241173, -0.008065451867878437, 0.024869605898857117, 0.04760649800300598, -0.026152847334742546, -0.009104697033762932, 0.018760647624731064, -0.00475793844088912, 0.0055938540026545525, 0.05454685166478157, -0.03338238596916199, -0.002620707033202052, 0.0070668719708919525, -0.02524915523827076, 0.015127805061638355, 0.045437637716531754, 0.08342885226011276, 0.05234184488654137, -0.018760647624731064, 0.002591337077319622, 0.047570351511240005, 0.014332556165754795, -0.04236508533358574, -0.004321907181292772, 0.001047717989422381, 0.03265943005681038, -0.015082620084285736, 0.04026851803064346, -0.01727859117090702, -0.029839912429451942, -0.047172725200653076, -0.05949908494949341, 0.10359925776720047, -0.004694680217653513, -0.015651946887373924, 0.021778978407382965, 0.07395815849304199, 0.013907820917665958, -0.03470177575945854, 0.04724502190947533, -0.00523689528927207, -0.0024399685207754374, 0.05552284047007561, -0.021995864808559418, -0.017007485032081604, 0.0342499278485775, -0.059209901839494705, -0.003427252173423767, 0.03593079745769501, -0.090730682015419, 0.0068725780583918095, -0.022158529609441757, -0.037629738450050354, -0.012037178501486778, -0.024869605898857117, 0.026857728138566017, -0.0724761039018631, -0.055631283670663834, -0.0030477014370262623, 0.024580424651503563, -0.06412598490715027, -0.059354495257139206, 0.048365600407123566, 0.01854376122355461, 0.000002162153805329581, 0.033400457352399826, 0.04377484321594238, 0.01663697138428688, -0.018670277670025826, 0.01608571782708168, 0.03202684596180916, -0.021616313606500626, 0.007496125530451536, 0.010446679778397083, 0.07074101269245148, 0.038027361035346985, 0.014169891364872456, 0.04561837390065193, -0.024399684742093086, -0.04269041121006012, 0.010049055330455303, -0.006705394946038723, -0.03553317114710808, -0.033490829169750214, 0.03860572353005409, -0.06972888112068176, 0.01736896112561226, -0.021074099466204643, 0.002643299289047718, 0.007880195043981075, -0.09362249821424484, 0.026423955336213112, -0.057221781462430954, -0.030599012970924377, 0.027689125388860703, -0.025267230346798897, 0.015579651109874249, 0.02031499706208706, 0.00880196038633585, 0.0273276474326849, -0.009335138835012913, 0.042328935116529465, 0.024706941097974777, -0.029984502121806145, -0.03958171233534813, -0.009651430882513523, 0.049413882195949554, -0.02978569082915783, -0.03846113383769989, -0.03432222455739975, -0.04222049191594124, 0.002758519956842065, -0.05169118568301201, 0.02803252823650837, 0.019700486212968826, 0.03177381306886673, -0.020043889060616493, -0.03139426186680794, 0.04088302701711655, -0.02564677968621254, -0.06011359393596649, -0.02843015268445015, -0.0003614768211264163, 0.006203846074640751, -0.043919432908296585, -0.02443583309650421, 0.026640841737389565, 0.08024785667657852, -0.0015882387524470687, 0.01688096672296524, 0.030689382925629616, 0.03493673354387283, -0.02013425901532173, 0.005883035250008106, 0.004649495705962181, -0.02971339412033558, 0.004613347817212343, 0.009823132306337357, 0.02300800010561943, 0.011476889252662659, -0.02620706893503666, -0.040015485137701035, -0.03320164605975151, -0.05559513345360756, -0.021164467558264732, -0.015380838885903358, -0.009542987681925297, 0.04410017281770706, 0.012868574820458889, 0.03208106756210327, -0.017197260633111, 0.03623805195093155, -0.005395041778683662, 0.05049831047654152, 0.029333844780921936, 0.012606504373252392, -0.031809959560632706, -0.024255095049738884, 0.030689382925629616, -0.03614768385887146, -0.028484374284744263, -0.07518717646598816, -0.04475083202123642, 0.0078033809550106525, -0.012597466818988323, 0.04963076859712601, 0.02826748788356781, -0.016763487830758095, 0.09420085698366165, 0.02810482308268547, 0.06683706492185593, -0.03553317114710808, 0.03759358823299408, 0.027399942278862, -0.013492122292518616, 0.008743220940232277, -0.02270074374973774, 0.05812547355890274, -0.03392459824681282, -0.006922281347215176, 0.03327394276857376, -0.0586315393447876, -0.0941285640001297, 0.0175316259264946, -0.028140971437096596, 0.012651688419282436, 0.007717530243098736, 0.03687063604593277, -0.01689000427722931, -0.03282209485769272, 0.02141750231385231, -0.0020118444226682186, 0.04576296731829643, -0.027761420235037804, 0.027255352586507797, -0.008454038761556149, -0.02277304045855999, -0.028610890731215477, -0.0005806221743114293, -0.012489024549722672, -0.056824155151844025, 0.037629738450050354, 0.0469919852912426, -0.0052549694664776325, 0.042003605514764786, -0.00011846837878692895, 0.05548669397830963, -0.05400463566184044, 0.0049567511305212975, -0.040485404431819916, -0.02078491635620594, -0.007749159354716539, -0.02412857860326767, -0.06709010154008865, 0.04955847188830376, -0.005842369049787521, 0.01346501149237156, -0.025737149640917778, -0.059679824858903885, 0.0047263093292713165, 0.035569317638874054, -0.021074099466204643, -0.07280143350362778, 0.026405882090330124, -0.041533686220645905, -0.06101728603243828, 0.052052661776542664, -0.034051116555929184, 0.015371802262961864, -0.046630509197711945, 0.04261811822652817, -0.04612444341182709, 0.04811256378889084, 0.01727859117090702, 0.03668989613652229, -0.07403045147657394, -0.02779756672680378, 0.01935708336532116, 0.0609811395406723, 0.045654524117708206, -0.004952232353389263, -0.0254118200391531, -0.010862378403544426, 0.04182286933064461, 0.0587761327624321, 0.05852309614419937, -0.0034475852735340595, 0.000500137044582516, 0.050209131091833115, -0.03385230526328087, -0.03958171233534813, -0.030201388522982597, -0.024941900745034218, -0.0006438805721700191, 0.033490829169750214, 0.046305179595947266, -0.009068549610674381, -0.0039039496332406998, 0.02595403604209423, 0.00021702729281969368, -0.010509938932955265, 0.029243474826216698, -0.029641099274158478, -0.004014651756733656, 0.018290726467967033, 0.0371236689388752, 0.008191968314349651, 0.031087007373571396, -0.013627676293253899, -0.014495220966637135, 0.0030318868812173605, -0.002146268729120493, 0.0018729018047451973, -0.028014453127980232, -0.018652204424142838, 0.025773297995328903, -0.006190290674567223, -0.0077130114659667015, 0.009208622388541698, 0.026568546891212463, 0.006741542834788561, 0.018507612869143486, 0.024110503494739532, 0.05183577537536621, 0.05733022466301918, 0.0019542339723557234, -0.0469919852912426, -0.028448225930333138, 0.039220236241817474, -0.05122126638889313, 0.033978819847106934, 0.044389352202415466, -0.026333587244153023, -0.03687063604593277, -0.015236248262226582, 0.024237021803855896, -0.011775107122957706, -0.03184610977768898, 0.046955838799476624, 0.022971851751208305, -0.04489542171359062, -0.008490187115967274, 0.0031855145934969187, -0.00824167113751173, -0.0021812866907566786, 0.006601470522582531, 0.004504905082285404, -0.013591528870165348, -0.031195450574159622, -0.06405369192361832, 0.016627933830022812, 0.023586362600326538, -0.010518975555896759, 0.010464753955602646, 0.004516201093792915, -0.016781561076641083, -0.03565968945622444, 0.014251223765313625, -0.01982700452208519, -0.05754711106419563, 0.049088552594184875, 0.0035831390414386988, 0.01457655243575573, -0.0783681720495224, -0.03875031694769859, 0.030779751017689705, 0.030562864616513252, 0.01569713093340397, 0.039690155535936356, -0.0469919852912426, 0.014278334565460682, 0.01230828557163477, 0.007211462594568729, 0.0009031272493302822, -0.023694805800914764, -0.01115155965089798, 0.032135289162397385, -0.024544276297092438, -0.004095984157174826, -0.017974434420466423, -0.09008002281188965, -0.04793182760477066, 0.014052411541342735, 0.001310353516601026, -0.034593332558870316, 0.07721144706010818, 0.023857470601797104, -0.0000330059410771355, -0.029243474826216698, 0.007315387018024921, -0.07562094926834106, 0.04457009211182594, -0.0225380789488554, 0.007866639643907547, -0.051799628883600235, -0.07164470851421356, -0.029442287981510162, 0.044244762510061264, 0.034990955144166946, -0.07634390145540237, -0.03481021896004677, 0.02597210928797722, 0.03426800295710564, 0.026821579784154892, 0.05313709378242493, -0.02620706893503666, 0.009497803635895252, 0.014197002165019512, -0.04460623860359192, 0.0046404586173594, -0.047895677387714386, 0.042726561427116394, -0.014359666965901852, -0.055378250777721405, 0.03434029966592789, 0.0005430624587461352, 0.007319905795156956, 0.03715981915593147, -0.001730570336803794, 0.012127547524869442, 0.0034588812850415707, 0.030436348170042038, -0.019863151013851166, -0.045835260301828384, -0.007446422707289457, 0.024417759850621223, -0.009244769811630249, -0.025502189993858337, -0.012082362547516823, 0.04222049191594124, 0.024869605898857117, 0.041859015822410583, -0.012850500643253326, -0.006068292073905468, 0.040557701140642166, -0.008865218609571457, 0.0345391109585762, -0.011368446052074432, 0.006642136722803116, -0.023839395493268967, 0.027851788327097893, -0.008923958986997604, 0.0234236977994442, -0.015480244532227516, 0.032677505165338516, -0.04250967502593994, 0.0020660660229623318, 0.0394732691347599, -0.014242187142372131, -0.09167052060365677, 0.0005077619571238756, 0.0975264459848404, -0.015019361861050129, 0.03867802023887634, 0.00939839705824852, -0.06163179874420166, -0.0321895107626915, 0.047751087695360184, -0.017486441880464554, 0.019610118120908737, -0.04858248308300972, -0.002227600896731019, -0.050606753677129745, -0.030436348170042038, 0.014386777766048908, -0.003847468877211213, 0.022520005702972412, 0.005386004690080881, 0.014395814388990402, -0.005471855401992798, -0.014043374918401241, 0.01687193103134632, -0.06090884283185005, -0.054185375571250916, -0.00322618056088686, -0.03488251194357872, 0.01998966746032238, 0.024652719497680664, 0.015868833288550377, -0.012913759797811508, 0.005304672289639711, -0.0749702900648117, 0.019158272072672844, 0.003262328216806054, -0.035948868840932846, -0.03168344497680664, -0.03584042564034462, 0.01027497835457325, -0.0027698162011802197, 0.01792925037443638, 0.022971851751208305, -0.03781047463417053, -0.03153885155916214, -0.08415180444717407, 0.010654529556632042, -0.015290469862520695, 0.04767879098653793, 0.05104052647948265, -0.03694293275475502, -0.002327007008716464, 0.0078033809550106525, -0.023514067754149437, 0.0033888451289385557, -0.011142523027956486, 0.048690926283597946, 0.07887424528598785, 0.027490312233567238, -0.05805317685008049, -0.020730696618556976, -0.0009816355304792523, 0.013510196469724178, 0.0036463974975049496, -0.01968241296708584, 0.05375160276889801, -0.02485153079032898, 0.05707719177007675, 0.019465526565909386, -0.034123413264751434, 0.013040276244282722, 0.03766588494181633, 0.012714947573840618, -0.0471365787088871, 0.014106633141636848, 0.02300800010561943, 0.013510196469724178, 0.013826488517224789, -0.004195390269160271, -0.0331474244594574, -0.013609602116048336, -0.039075642824172974, 0.05422152206301689, -0.010862378403544426, -0.056571122258901596, -0.00738768232986331 ]
729,122
tables.exceptions
UndoRedoWarning
Issued when an action not supporting Undo/Redo is run. This warning is only shown when the Undo/Redo mechanism is enabled.
class UndoRedoWarning(Warning): """Issued when an action not supporting Undo/Redo is run. This warning is only shown when the Undo/Redo mechanism is enabled. """ pass
null
[ -0.033676259219646454, -0.0015907344641163945, 0.03222591429948807, 0.006150692701339722, 0.05843821167945862, -0.04114021733403206, 0.014583022333681583, 0.041635457426309586, 0.04078647494316101, -0.028352437540888786, 0.02798100933432579, 0.003990654367953539, 0.043687161058187485, -0.005973821505904198, -0.05528990551829338, -0.030952442437410355, 0.02729121223092079, 0.027149714529514313, -0.001574152847751975, -0.0050762007012963295, 0.0000959663957473822, -0.019367385655641556, 0.017306838184595108, -0.0032986460719257593, -0.043474916368722916, 0.07584232836961746, -0.026159236207604408, 0.02035786397755146, 0.007870764471590519, -0.01330955047160387, -0.04149395972490311, -0.012195263057947159, -0.005124840419739485, 0.03724905475974083, -0.014476899988949299, 0.015423160046339035, -0.010974852368235588, 0.07244640588760376, -0.016979625448584557, -0.025557873770594597, -0.07577157765626907, 0.01256669219583273, -0.0018969426164403558, -0.02559324912726879, 0.0002429214073345065, -0.04216607287526131, -0.037744294852018356, 0.0660082995891571, -0.02240956947207451, -0.017545614391565323, 0.03187217190861702, -0.011611588299274445, 0.01055920496582985, 0.028246315196156502, 0.0156530924141407, 0.027273524552583694, 0.03137693554162979, 0.054476298391819, -0.017731327563524246, -0.019774189218878746, 0.018748337402939796, 0.10456619411706924, -0.0129381213337183, -0.025151070207357407, 0.05896882712841034, -0.06760013848543167, 0.007371103391051292, -0.01988031156361103, 0.010453082621097565, 0.03937150910496712, -0.04552662372589111, -0.011204784736037254, -0.005133683793246746, 0.012929277494549751, 0.044571518898010254, -0.08079472184181213, 0.00911770574748516, -0.0037673544138669968, 0.01708574779331684, 0.04078647494316101, -0.009144236333668232, -0.05889807641506195, 0.0694042220711708, 0.09451992064714432, -0.025292567908763885, -0.06363822519779205, 0.057023245841264725, -0.022780997678637505, -0.015069417655467987, 0.0054741608910262585, -0.026795972138643265, -0.013256489299237728, -0.059074949473142624, -0.03450755402445793, -0.0394776314496994, 0.008755119517445564, -0.005111575126647949, 0.007145592477172613, -0.012416351586580276, -0.0490286685526371, -0.007362259551882744, 0.0619756355881691, 0.015272819437086582, -0.014123157598078251, 0.037355177104473114, -0.002454086672514677, -0.02914835885167122, 0.025204133242368698, 0.004647288471460342, -0.043616414070129395, 0.03562184050679207, 0.010302742011845112, 0.03553340584039688, -0.01055920496582985, -0.00967484898865223, -0.08355391025543213, -0.05755385756492615, -0.052247725427150726, -0.003482149913907051, -0.005558174569159746, 0.01778438873589039, 0.00760987913236022, -0.06381509453058243, -0.02274562418460846, 0.06045454367995262, 0.028370125219225883, 0.022321132943034172, 0.08072397112846375, 0.008140492253005505, 0.010010904632508755, -0.02955516241490841, -0.029855841770768166, -0.046269480139017105, -0.018217723816633224, 0.02955516241490841, -0.00940069928765297, 0.07824777811765671, 0.010842198505997658, -0.004297968000173569, -0.03445449098944664, 0.029042234644293785, 0.01446805614978075, 0.02737964689731598, 0.0170326866209507, -0.005792528856545687, 0.018483029678463936, -0.013026556931436062, 0.03926538676023483, 0.040609605610370636, 0.004050348419696093, 0.05475929379463196, 0.01667894423007965, -0.05985318124294281, -0.024974200874567032, 0.017466021701693535, 0.06303685903549194, -0.01982725039124489, -0.056492630392313004, 0.013327238149940968, -0.011187097057700157, 0.027609579265117645, -0.04389940947294235, 0.031978294253349304, -0.022250384092330933, 0.02334698662161827, 0.025752432644367218, 0.027344273403286934, -0.05755385756492615, 0.0027569783851504326, 0.018288472667336464, -0.016917720437049866, 0.024868076667189598, 0.060702163726091385, 0.05712936818599701, 0.005704093258827925, 0.06618516892194748, -0.033057209104299545, 0.040538858622312546, -0.05433480441570282, 0.010125870816409588, 0.03622320294380188, -0.015546970069408417, -0.03629394993185997, -0.004952391143888235, 0.04881642386317253, -0.016033366322517395, 0.02614154852926731, -0.005558174569159746, 0.019013643264770508, 0.022321132943034172, 0.007424164563417435, 0.002130191307514906, 0.05097425356507301, -0.009188453666865826, -0.022834058851003647, -0.07241103053092957, -0.06961646676063538, -0.03788578882813454, 0.07449810951948166, -0.03022727183997631, -0.047083087265491486, 0.053344324231147766, 0.03731980174779892, 0.06360284984111786, 0.027043592184782028, 0.04446539655327797, 0.01147009152919054, 0.016449011862277985, -0.051717109978199005, -0.04078647494316101, 0.06933347135782242, -0.00016706027963664383, 0.0020251742098480463, 0.037744294852018356, 0.008463282138109207, 0.045668117702007294, 0.06176339089870453, 0.005934025626629591, -0.04750758036971092, 0.06112665310502052, 0.019243575632572174, 0.032774217426776886, -0.025027262046933174, -0.0031306184828281403, 0.013769415207207203, -0.0035042588133364916, 0.020393237471580505, -0.04842730984091759, 0.04092797264456749, -0.04039736092090607, -0.01600683480501175, -0.04849805682897568, -0.09211447089910507, 0.02138371579349041, 0.056068141013383865, 0.02600005269050598, -0.018217723816633224, -0.052459970116615295, 0.03372931852936745, 0.01757214404642582, -0.048250436782836914, -0.012929277494549751, 0.045243628323078156, 0.026247672736644745, 0.022161949425935745, -0.0061728013679385185, 0.020941538736224174, 0.027061279863119125, -0.02152521349489689, -0.0197388157248497, 0.03753205016255379, -0.017545614391565323, -0.022303447127342224, -0.006977565120905638, -0.0048108939081430435, -0.02743270806968212, 0.007764641661196947, -0.012831998988986015, -0.011567370034754276, -0.004978921730071306, -0.054476298391819, -0.016767380759119987, -0.0014315504813566804, 0.011328593827784061, 0.025027262046933174, -0.024974200874567032, 0.0007953672320581973, 0.001822877791710198, -0.011381655931472778, -0.009223828092217445, 0.09034576267004013, -0.0020848680287599564, -0.07647906243801117, 0.030404143035411835, -0.030457204207777977, -0.021631335839629173, 0.03848715126514435, 0.05705861747264862, -0.03486129641532898, 0.016440169885754585, 0.0646994486451149, -0.003586061531677842, 0.005867698695510626, 0.046870842576026917, -0.04432389885187149, -0.0347021110355854, -0.0010413286508992314, 0.008472125977277756, 0.0018925208132714033, -0.004379770718514919, 0.04393478110432625, 0.0762668177485466, 0.05674025043845177, 0.0076673622243106365, 0.05217697471380234, 0.029378291219472885, -0.04389940947294235, -0.018642215058207512, 0.0024585083592683077, 0.02198507823050022, -0.020198680460453033, 0.021419091150164604, -0.05758923292160034, -0.01729799434542656, -0.002020752290263772, -0.030881695449352264, 0.09706686437129974, -0.007251715287566185, -0.01825309731066227, 0.021419091150164604, 0.0762668177485466, -0.014114313758909702, 0.025363316759467125, 0.03604632988572121, -0.02608848735690117, -0.030404143035411835, 0.05949943885207176, -0.041635457426309586, 0.010797981172800064, 0.0503728911280632, -0.077611044049263, -0.019367385655641556, 0.024974200874567032, -0.04740145429968834, -0.03556877747178078, -0.04733070731163025, 0.013053087517619133, -0.03841640427708626, -0.002445243066176772, -0.0025889507960528135, -0.06897973269224167, -0.05684637278318405, -0.013795945793390274, 0.003347285557538271, -0.06993483752012253, -0.04846268147230148, 0.006690149661153555, -0.026654476299881935, 0.009223828092217445, 0.0435810387134552, 0.006287767551839352, 0.080370232462883, -0.0027171822730451822, 0.03834565728902817, 0.025628622621297836, -0.008286410942673683, -0.005845590028911829, 0.07605457305908203, 0.08128996193408966, -0.031483057886362076, 0.02410753071308136, 0.013336081057786942, -0.07704505324363708, 0.007950356230139732, 0.0221265759319067, -0.0490286685526371, -0.004691506270319223, 0.025027262046933174, 0.03243815898895264, -0.05383956432342529, 0.001127000548876822, -0.028564684092998505, 0.016449011862277985, 0.03519735112786293, -0.027149714529514313, 0.018889833241701126, -0.012893903069198132, -0.03137693554162979, 0.01573268510401249, -0.05776610225439072, -0.01722724549472332, 0.018907520920038223, 0.029360603541135788, 0.017404116690158844, -0.006411577574908733, 0.039123889058828354, 0.04121096804738045, -0.004726880230009556, 0.00019138006609864533, 0.00118724734056741, 0.05306133255362511, -0.006738788913935423, -0.04828581213951111, -0.02513338439166546, -0.03535653278231621, 0.011010225862264633, -0.061374273151159286, 0.03731980174779892, -0.011328593827784061, -0.0012414141092449427, 0.028582369908690453, -0.04326267167925835, -0.00007226842717500404, -0.038381028920412064, -0.05674025043845177, -0.0020119089167565107, 0.008962943218648434, 0.03351707383990288, -0.03792116418480873, 0.00885682087391615, 0.012168731540441513, 0.05829671770334244, -0.04584499076008797, -0.02157827466726303, -0.013406829908490181, 0.06133889779448509, -0.029979651793837547, 0.012327915988862514, 0.016572821885347366, -0.05316745489835739, -0.029042234644293785, -0.00650443509221077, 0.028847677633166313, 0.015202071517705917, 0.017651736736297607, -0.01484832912683487, 0.00905580073595047, -0.057907599955797195, -0.02969665825366974, -0.040220487862825394, 0.01940276101231575, 0.028953799977898598, 0.021065348759293556, 0.03362319618463516, 0.02948441356420517, 0.0014724519569426775, -0.0008677738369442523, 0.05210622772574425, 0.01811160147190094, 0.021277593448758125, -0.0503728911280632, -0.022727936506271362, 0.006981987040489912, -0.05574977397918701, -0.014255811460316181, -0.07393211871385574, -0.0003172625438310206, 0.01770479790866375, -0.02124221995472908, 0.06760013848543167, 0.0046738190576434135, 0.0065265437588095665, 0.08610085397958755, -0.0067918505519628525, 0.0823511853814125, -0.005204432178288698, 0.007340150885283947, 0.034136123955249786, -0.005359194241464138, -0.012761250138282776, 0.0033384421840310097, 0.08617160469293594, -0.029537474736571312, -0.010912947356700897, 0.005885385908186436, -0.04665859788656235, -0.07945050299167633, -0.013468734920024872, -0.03056332655251026, -0.002236314117908478, -0.02568168379366398, 0.026530666276812553, -0.0769035592675209, -0.015821119770407677, 0.06034842133522034, 0.004353240132331848, 0.00810953974723816, -0.015087105333805084, -0.01954425685107708, 0.017244933173060417, 0.02076466754078865, -0.03792116418480873, 0.03682456538081169, -0.021896643564105034, -0.0483565591275692, 0.015069417655467987, 0.018836772069334984, 0.0347021110355854, 0.037956539541482925, 0.009259202517569065, -0.0035374220460653305, -0.02334698662161827, -0.0036258576437830925, -0.04917016625404358, -0.054228682070970535, -0.033481698483228683, -0.01578574627637863, -0.06176339089870453, 0.05659875273704529, 0.014804111793637276, -0.0020240687299519777, -0.0306340754032135, -0.04718920961022377, -0.04488988593220711, 0.025929303839802742, -0.014768737368285656, -0.029431352391839027, 0.023948347195982933, -0.020711606368422508, -0.027397334575653076, 0.02642454393208027, -0.03383544087409973, -0.0070173610001802444, -0.039583753794431686, 0.022179637104272842, -0.038027286529541016, 0.02920142002403736, 0.029643597081303596, 0.016086427494883537, -0.0327034667134285, -0.04733070731163025, 0.008622466586530209, 0.06696339696645737, 0.048922546207904816, 0.0469769649207592, -0.017740171402692795, -0.016325203701853752, 0.0769035592675209, 0.0824219360947609, 0.0012270433362573385, -0.001964374678209424, -0.015140166506171227, 0.03572796285152435, -0.05366269126534462, -0.022727936506271362, -0.023240862414240837, -0.058119844645261765, -0.006530965678393841, 0.01926126331090927, 0.013557170517742634, 0.008839133195579052, 0.0021025552414357662, 0.010382333770394325, -0.0299619659781456, -0.024797329679131508, 0.057164739817380905, -0.02888305112719536, -0.019844938069581985, 0.010727232322096825, 0.018217723816633224, 0.0170326866209507, -0.028352437540888786, 0.00687586423009634, -0.0031416730489581823, 0.021295281127095222, 0.02416059374809265, -0.016015678644180298, -0.014521117322146893, -0.03657694533467293, 0.015821119770407677, -0.03151842951774597, 0.013742884621024132, -0.006951034534722567, 0.02941366471350193, 0.028016382828354836, -0.02150752581655979, 0.04718920961022377, 0.01940276101231575, 0.02554018795490265, 0.022144261747598648, -0.07442735880613327, -0.06717564910650253, 0.02288712002336979, -0.09027501195669174, 0.00008290832920465618, 0.04711846262216568, 0.004611914046108723, -0.012195263057947159, -0.04478376358747482, -0.01778438873589039, -0.004682662431150675, -0.06445182859897614, 0.028847677633166313, 0.011072130873799324, -0.031200062483549118, 0.005062935408204794, 0.051504865288734436, -0.02499188669025898, 0.0031615709885954857, 0.002153405686840415, -0.009051378816366196, 0.0017543402500450611, -0.023117054253816605, -0.055855896323919296, 0.025239506736397743, -0.015228602103888988, 0.020800041034817696, 0.01055920496582985, 0.0646994486451149, -0.04106947034597397, -0.022250384092330933, 0.028900738805532455, 0.0004112253081984818, -0.08624234795570374, 0.03647082298994064, -0.01055920496582985, -0.017280306667089462, -0.04934703931212425, 0.03167761489748955, 0.047967445105314255, 0.04499600827693939, 0.009471447207033634, 0.04672934487462044, -0.028476247563958168, 0.010691857896745205, 0.006354094482958317, -0.00026489212177693844, -0.031429994851350784, -0.027927948161959648, 0.010789137333631516, -0.05125724524259567, -0.034136123955249786, -0.0009766601724550128, -0.009453760460019112, -0.029360603541135788, -0.0401851162314415, -0.008259880356490612, -0.011319750919938087, -0.008768385276198387, 0.07060694694519043, 0.0031416730489581823, 0.046269480139017105, -0.018306158483028412, -0.007207497488707304, -0.05521915853023529, 0.025044947862625122, -0.021224532276391983, -0.015467378310859203, -0.031624551862478256, -0.023665353655815125, -0.05727086216211319, -0.0045853834599256516, 0.038168784230947495, -0.04909941926598549, -0.04343954473733902, 0.004101198632270098, 0.010293898172676563, 0.02554018795490265, 0.05928719416260719, -0.034825921058654785, 0.024054469540715218, -0.017580987885594368, -0.00322568672709167, 0.011974173597991467, -0.06844911724328995, 0.07768178731203079, -0.04478376358747482, -0.028352437540888786, 0.0340300016105175, -0.008733010850846767, -0.016148332506418228, 0.04736608266830444, -0.015423160046339035, 0.05521915853023529, -0.0063496725633740425, 0.05727086216211319, -0.057235490530729294, -0.021277593448758125, 0.031483057886362076, -0.0046738190576434135, -0.008547295816242695, -0.02384222485125065, -0.03003271296620369, 0.07513484358787537, 0.07485184818506241, 0.0735076293349266, -0.04389940947294235, -0.010815667919814587, 0.019721128046512604, -0.037213679403066635, 0.03749667480587959, 0.009374168701469898, -0.012434038333594799, 0.01300002634525299, 0.0422368198633194, -0.020817728713154793, -0.002328065922483802, -0.0010479612974449992, 0.01675853691995144, -0.06508857011795044, -0.012982338666915894, -0.010355803184211254, -0.017925886437296867, -0.07170354574918747, -0.010293898172676563, 0.07007633149623871, -0.002220837865024805, 0.021401403471827507, -0.0173510555177927, -0.09077025204896927, -0.012982338666915894, 0.05564364790916443, 0.013451047241687775, 0.04588036611676216, -0.0010590157471597195, -0.02240956947207451, -0.048781052231788635, -0.012672814540565014, 0.029254481196403503, -0.05228309705853462, 0.05705861747264862, 0.009621787816286087, -0.0032853807788342237, 0.009604101069271564, -0.031429994851350784, 0.02568168379366398, -0.06303685903549194, -0.09643012285232544, 0.01127553265541792, -0.034755170345306396, -0.0197388157248497, 0.05624501034617424, 0.012416351586580276, -0.0197388157248497, -0.02982046827673912, -0.1007457822561264, 0.005677562672644854, -0.03785041719675064, -0.02097691223025322, -0.052530717104673386, -0.039866745471954346, 0.030881695449352264, -0.027751076966524124, 0.041847702115774155, 0.04471301659941673, 0.012195263057947159, -0.020322490483522415, -0.06982871145009995, 0.010240837000310421, -0.028228627517819405, 0.038911644369363785, -0.008640153333544731, -0.05115112289786339, 0.03383544087409973, 0.02852930873632431, 0.007141171023249626, 0.003181468928232789, 0.004353240132331848, 0.04948853328824043, 0.04488988593220711, 0.03749667480587959, -0.06982871145009995, -0.022038139402866364, 0.028776928782463074, -0.001061779330484569, 0.014476899988949299, 0.010541518218815327, 0.057695355266332626, 0.012487100437283516, 0.05596201866865158, 0.023063991218805313, -0.017793232575058937, 0.02016330510377884, 0.03519735112786293, 0.021189158782362938, -0.018960582092404366, 0.02621229737997055, 0.012434038333594799, -0.018695276230573654, 0.0007898400072008371, -0.03388850390911102, -0.006088787689805031, -0.02458508312702179, -0.005708514712750912, 0.027061279863119125, -0.02492113783955574, -0.01940276101231575, 0.003605959704145789 ]
729,123
tables.unimplemented
Unknown
This class represents nodes reported as *unknown* by the underlying HDF5 library. This class does not have any public instance variables or methods, except those inherited from the Node class.
class Unknown(Node): """This class represents nodes reported as *unknown* by the underlying HDF5 library. This class does not have any public instance variables or methods, except those inherited from the Node class. """ # Class identifier _c_classid = 'UNKNOWN' def __init__(self, parentnode, name): """Create the `Unknown` instance.""" self._v_new = False super().__init__(parentnode, name) def _g_new(self, parentnode, name, init=False): pass def _g_open(self): return 0 def _g_copy(self, newparent, newname, recursive, _log=True, **kwargs): # Silently avoid doing copies of unknown nodes return None def _g_delete(self, parent): pass def __str__(self): pathname = self._v_pathname classname = self.__class__.__name__ return f"{pathname} ({classname})" def __repr__(self): return f"""{self!s} NOTE: <The Unknown object represents a node which is reported as unknown by the underlying HDF5 library, but that might be supported in more recent HDF5 versions.> """
(parentnode, name)
[ 0.016870174556970596, -0.06807509064674377, -0.023513352498412132, 0.03248164430260658, -0.015934886410832405, 0.017359672114253044, -0.012517145834863186, 0.03737661615014076, -0.03471934422850609, -0.06478846818208694, 0.005480621941387653, 0.019737230613827705, 0.007482316344976425, 0.026852425187826157, -0.038250718265771866, -0.00642028171569109, -0.008290860801935196, 0.08356418460607529, 0.043670155107975006, -0.015462870709598064, -0.04947419464588165, 0.007936849258840084, 0.005292689893394709, 0.0024453012738376856, -0.010384336113929749, -0.015069524757564068, -0.01166052557528019, 0.004291842691600323, 0.012962938286364079, -0.05139721930027008, -0.1271294504404068, -0.049649015069007874, -0.028618110343813896, 0.033687904477119446, 0.021572846919298172, -0.013802075758576393, 0.004016500432044268, 0.06933379918336868, -0.07122185826301575, -0.0026048249565064907, 0.0015274938195943832, -0.019579892978072166, -0.022709179669618607, -0.05394959822297096, 0.028093649074435234, 0.029125090688467026, 0.06387940049171448, 0.02433500997722149, -0.03800597041845322, -0.050173476338386536, -0.0010194218484684825, 0.024055296555161476, -0.024439901113510132, 0.023723138496279716, -0.04401979595422745, 0.0035248177591711283, 0.027359403669834137, -0.01110984105616808, -0.04587289318442345, 0.04842527210712433, 0.000270561984507367, 0.05723622068762779, 0.035051506012678146, -0.01648556999862194, -0.038915038108825684, 0.0024387454614043236, 0.0022147567942738533, -0.02949221432209015, -0.06821494549512863, 0.01098746620118618, 0.009248003363609314, -0.04251633957028389, 0.059369031339883804, 0.05167693272233009, 0.083843894302845, -0.03534869849681854, -0.0493343360722065, 0.001878227456472814, 0.0009068811777979136, -0.0008156467811204493, 0.00010052177094621584, -0.015392942354083061, 0.011302143335342407, -0.031729914247989655, 0.0030375057831406593, -0.017735537141561508, 0.060732632875442505, 0.01851348765194416, -0.026135660707950592, 0.00033161259489133954, -0.0017995581729337573, 0.014781070873141289, -0.05552298203110695, 0.017884133383631706, 0.046537209302186966, -0.019212769344449043, 0.004414217080920935, -0.03230682387948036, 0.02197493240237236, -0.0451386459171772, 0.009956025518476963, 0.027569187805056572, -0.03145020455121994, -0.025628680363297462, -0.05859982222318649, -0.03709690272808075, -0.02148543670773506, 0.048040665686130524, -0.020856082439422607, -0.00760906096547842, -0.07094214856624603, 0.022027378901839256, -0.02062881551682949, 0.04202684015035629, 0.0667814165353775, -0.05475377291440964, 0.011066135950386524, 0.0051134987734258175, -0.01784042827785015, -0.04961404949426651, 0.012560850940644741, 0.02519162930548191, -0.06489335745573044, 0.01541916560381651, -0.021870041266083717, 0.012543369084596634, 0.06391436606645584, -0.03881014510989189, -0.014824775978922844, -0.07671122252941132, 0.030453726649284363, 0.028635593131184578, -0.01656423881649971, 0.04429950565099716, 0.009763723239302635, 0.01900298520922661, -0.024037815630435944, -0.014361501671373844, -0.042900942265987396, -0.01767434924840927, 0.0037149349227547646, -0.06730587780475616, 0.0584949292242527, -0.017053736373782158, -0.00798929575830698, 0.01858341693878174, -0.03922971338033676, -0.05335520952939987, -0.0157950296998024, -0.02739436738193035, -0.045173611491918564, -0.03033135086297989, -0.007237567566335201, 0.0552782341837883, -0.010699013248085976, 0.03237675130367279, 0.011555633507668972, -0.05174686014652252, -0.060977380722761154, -0.024300046265125275, -0.04842527210712433, -0.053110457956790924, 0.03244667872786522, -0.019335143268108368, -0.0636696144938469, -0.037061940878629684, 0.0024715245235711336, -0.10489228367805481, -0.05496355518698692, 0.03534869849681854, -0.03744654357433319, -0.01926521584391594, -0.03643258661031723, 0.0783894956111908, 0.03475430980324745, 0.04741131141781807, -0.001667350297793746, 0.02223716303706169, 0.00526209594681859, -0.016704095527529716, 0.012115058489143848, 0.01708870194852352, -0.04783087968826294, 0.0011723898351192474, 0.017718054354190826, 0.026310481131076813, 0.020506441593170166, -0.0066388072445988655, 0.05765579268336296, 0.025453859940171242, 0.018828164786100388, 0.010952502489089966, 0.03456200659275055, 0.08629138767719269, 0.11608079075813293, -0.025244075804948807, 0.03068099357187748, 0.04157230630517006, -0.0098948385566473, 0.10006723552942276, 0.037481509149074554, 0.03564589470624924, 0.057166293263435364, -0.018915574997663498, -0.059473924338817596, 0.022289609536528587, 0.037306688725948334, 0.010943761095404625, -0.09468276798725128, 0.012447217479348183, -0.008111669681966305, 0.0033259594347327948, 0.005506844725459814, 0.07335466891527176, 0.01893305778503418, -0.05552298203110695, -0.07115193456411362, 0.030960705131292343, -0.036467548459768295, -0.015952367335557938, 0.03244667872786522, 0.03713186830282211, -0.019649820402264595, 0.014772329479455948, -0.022359538823366165, -0.04251633957028389, 0.012018907815217972, -0.04716656357049942, 0.035610929131507874, -0.03195718303322792, 0.018198810517787933, -0.012735671363770962, -0.015821252018213272, 0.01521812193095684, 0.049649015069007874, 0.09789946675300598, 0.03251660615205765, -0.027271993458271027, -0.04073316976428032, 0.011302143335342407, -0.071956105530262, -0.05534816160798073, 0.009650089778006077, -0.018863128498196602, 0.06859955191612244, -0.029876818880438805, 0.024737097322940826, 0.05384470522403717, -0.04853016138076782, 0.003701823530718684, 0.01708870194852352, -0.08405368030071259, 0.004422958008944988, -0.006075011566281319, 0.04363518953323364, -0.0649283230304718, -0.04566310718655586, -0.041956912726163864, 0.03517387807369232, -0.0075303916819393635, -0.04300583526492119, -0.00426780479028821, 0.03298862278461456, 0.06538285315036774, -0.009011995047330856, 0.012709448114037514, -0.013906968757510185, 0.0078057339414954185, -0.07363438606262207, -0.02746429666876793, 0.08538231998682022, 0.03501654043793678, -0.032936178147792816, 0.003144583199173212, -0.023286087438464165, -0.03894999995827675, -0.035978052765131, 0.015847476199269295, -0.016599204391241074, -0.0063896882347762585, 0.01734219118952751, -0.052271321415901184, -0.021328097209334373, 0.010375594720244408, -0.0031708062160760164, -0.011118581518530846, -0.05723622068762779, -0.015611467882990837, -0.03220193088054657, -0.049404263496398926, -0.03543610870838165, -0.004484144970774651, -0.028128614649176598, -0.027516741305589676, 0.02314623072743416, 0.00862301979213953, -0.07859928160905838, 0.07636158168315887, 0.004381438251584768, 0.017849169671535492, 0.022971410304307938, -0.05706140026450157, 0.028862860053777695, -0.00412357784807682, -0.033093515783548355, -0.03583819791674614, 0.020139317959547043, 0.04447432607412338, -0.009029476903378963, -0.002133902395144105, 0.001797372940927744, 0.04118770360946655, 0.056921545416116714, 0.03143272176384926, 0.005266466643661261, 0.02061133272945881, 0.00798929575830698, -0.03407251089811325, 0.035873159766197205, 0.05915924906730652, -0.040523383766412735, -0.00412357784807682, -0.08118662983179092, 0.012560850940644741, -0.008679836057126522, -0.05097765102982521, 0.053634919226169586, 0.011328366585075855, -0.025174148380756378, 0.00016566971316933632, -0.026555228978395462, -0.05377477779984474, 0.028250988572835922, 0.0003124915820080787, -0.026013286784291267, 0.012622037902474403, -0.00682673929259181, 0.02087356336414814, 0.02111831307411194, -0.021852558478713036, 0.009457787498831749, 0.029195018112659454, -0.007932478561997414, 0.00541069358587265, 0.05797046795487404, -0.0035925607662647963, 0.014422688633203506, -0.03396761789917946, 0.0007577374926768243, 0.06304026395082474, 0.0260307677090168, 0.0134786581620574, -0.06136198714375496, -0.011345848441123962, 0.07734057307243347, -0.025663645938038826, 0.012604556046426296, 0.02569860965013504, -0.021363060921430588, -0.0035663375165313482, 0.035541001707315445, -0.05216642841696739, 0.006752440705895424, -0.012508404441177845, -0.0015023634769022465, -0.054718807339668274, 0.013172722421586514, 0.06741077452898026, 0.016258303076028824, -0.037236761301755905, -0.05720125883817673, -0.09230520576238632, -0.0442645438015461, -0.04860009253025055, 0.03120545484125614, -0.017936579883098602, -0.02078615315258503, 0.023128747940063477, -0.013330060988664627, -0.022586805745959282, 0.012718189507722855, 0.02790134772658348, -0.004213173408061266, -0.0035270031075924635, -0.029020197689533234, -0.016922621056437492, 0.029544658958911896, 0.05300556495785713, 0.010943761095404625, 0.0387052521109581, 0.03337322920560837, -0.007613431662321091, -0.010847610421478748, 0.014562545344233513, -0.006223608739674091, 0.024457383900880814, 0.01909039542078972, 0.00010338991705793887, -0.05377477779984474, -0.03853043168783188, -0.001810484449379146, -0.038670286536216736, -0.01807643659412861, 0.05199160799384117, 0.020978456363081932, -0.005314542446285486, 0.06020817160606384, 0.014527580700814724, -0.015279308892786503, -0.00833019521087408, 0.052446141839027405, -0.02062881551682949, -0.022534359246492386, -0.008321454748511314, 0.032918695360422134, 0.024527311325073242, 0.06283047795295715, 0.006944742985069752, 0.05230628326535225, -0.0223245732486248, -0.036992013454437256, 0.02283155359327793, 0.02027917467057705, 0.07160646468400955, 0.02197493240237236, -0.0130153838545084, -0.031397756189107895, 0.001752575277350843, -0.016712836921215057, 0.04118770360946655, 0.022097308188676834, -0.0027818307280540466, -0.015996072441339493, -0.009475269354879856, 0.02213227190077305, -0.026660121977329254, -0.010838869027793407, -0.04908958822488785, -0.020681262016296387, 0.07824964076280594, -0.042900942265987396, 0.04122266545891762, 0.023688172921538353, 0.012324843555688858, 0.02029665745794773, -0.012420994229614735, -0.013819558545947075, 0.013583550229668617, -0.015480352565646172, 0.009370377287268639, -0.01560272742062807, -0.017464565113186836, -0.0015952368266880512, -0.013679701834917068, -0.0515720397233963, -0.037901077419519424, -0.019544929265975952, -0.0031183601822704077, 0.023688172921538353, 0.009781205095350742, -0.036467548459768295, 0.04059331491589546, 0.002936983946710825, -0.042061805725097656, -0.033180925995111465, -0.0037149349227547646, 0.04950915649533272, -0.03576826676726341, -0.045698072761297226, -0.06660659611225128, 0.03762136399745941, -0.0081641161814332, 0.011424518190324306, -0.03702697530388832, -0.021013420075178146, -0.02197493240237236, -0.03543610870838165, -0.0525510348379612, -0.05415938049554825, -0.05216642841696739, 0.01292797364294529, -0.05241117626428604, 0.05720125883817673, -0.025314005091786385, 0.0034461484756320715, 0.0280761681497097, 0.040173742920160294, -0.00000272730176220648, 0.012569591403007507, -0.035471074283123016, -0.02924746461212635, -0.004803192336112261, -0.0691240131855011, -0.02096097357571125, 0.027516741305589676, 0.025628680363297462, 0.007491057273000479, 0.037061940878629684, -0.016590462997555733, -0.06898415833711624, -0.003754269564524293, -0.04321562126278877, -0.008977031335234642, -0.06300529837608337, 0.02314623072743416, -0.033268336206674576, 0.06688631325960159, 0.04363518953323364, 0.04066324234008789, 0.027516741305589676, 0.03501654043793678, 0.018915574997663498, -0.0032691427040845156, 0.019142841920256615, 0.012184986844658852, 0.04947419464588165, -0.02047147788107395, 0.02038406766951084, 0.014344019815325737, 0.023181194439530373, 0.02384551241993904, -0.011424518190324306, 0.04727145656943321, -0.01902046799659729, -0.03127538040280342, 0.02061133272945881, -0.042900942265987396, 0.028618110343813896, 0.009667571634054184, 0.05199160799384117, 0.006686883047223091, -0.019562410190701485, -0.02999919280409813, 0.01767434924840927, 0.004825044889003038, 0.04548828676342964, 0.05073289945721626, 0.04566310718655586, -0.026485301554203033, -0.03290121257305145, -0.0019448777893558145, -0.02265673317015171, -0.0018301517702639103, 0.008854656480252743, -0.023425942286849022, -0.05359995737671852, 0.0020191764924675226, 0.01977219618856907, 0.027953794226050377, -0.003371849888935685, 0.015314273536205292, -0.008854656480252743, 0.026677604764699936, -0.05031333118677139, 0.05653693899512291, 0.002582972403615713, 0.01339998934417963, -0.04401979595422745, 0.008810951374471188, 0.022446949034929276, 0.001807206659577787, 0.012683224864304066, 0.06136198714375496, -0.015366719104349613, 0.06006831303238869, 0.010454264469444752, -0.020488958805799484, -0.0017285373760387301, -0.00972001813352108, -0.0200344268232584, -0.0026529007591307163, 0.0880395919084549, 0.05380973964929581, -0.0103581128641963, -0.000510530429892242, 0.011791640892624855, -0.01657298021018505, 0.09908824414014816, 0.03076840378344059, -0.07062747329473495, -0.011485705152153969, 0.026223070919513702, 0.0050042360089719296, -0.018723271787166595, 0.0050042360089719296, 0.0038329388480633497, -0.0312928631901741, 0.06206126883625984, -0.017543233931064606, -0.003658118424937129, -0.011240956373512745, -0.0539146326482296, -0.011739194393157959, 0.007998036220669746, 0.003966239280998707, 0.021957451477646828, 0.012018907815217972, -0.025139182806015015, 0.026590194553136826, -0.018530970439314842, -0.050488151609897614, 0.01560272742062807, -0.006560137961059809, -0.009990990161895752, 0.03550603613257408, -0.013784593902528286, 0.0019984166137874126, 0.0010975447949022055, -0.01386326365172863, -0.0315900593996048, 0.04227159172296524, 0.061327021569013596, -0.012980420142412186, -0.01809391938149929, 0.010130845941603184, -0.0014215089613571763, -0.011249697767198086, 0.023688172921538353, -0.015733841806650162, 0.008500644937157631, 0.0016247377498075366, -0.0028102390933781862, -0.015751324594020844, -0.019667303189635277, -0.026992280036211014, 0.007429869845509529, 0.005834633018821478, 0.00688792672008276, -0.026520265266299248, 0.007241937797516584, 0.03195718303322792, -0.03692208230495453, -0.021450471132993698, -0.01385452225804329, -0.03417740389704704, -0.04954412207007408, 0.00032833468867465854, -0.018303703516721725, 0.014527580700814724, 0.061396948993206024, -0.032499127089977264, -0.007582837715744972, -0.042726121842861176, -0.004575925879180431, -0.029981710016727448, -0.03695704787969589, 0.0200344268232584, -0.009842392057180405, 0.007399276364594698, 0.0043442887254059315, 0.016887657344341278, 0.06048788130283356, 0.031222935765981674, -0.018041472882032394, 0.044404398649930954, 0.031729914247989655, -0.0469917431473732, 0.014186681248247623, 0.03230682387948036, 0.0007582837715744972, -0.02036658488214016, -0.03678222745656967, 0.03863532468676567, 0.028670556843280792, 0.12139533460140228, 0.060138240456581116, 0.048984695225954056, 0.00980742834508419, 0.012246173806488514, -0.007075858768075705, -0.02485947124660015, -0.007241937797516584, 0.031153008341789246, -0.04755116626620293, -0.042061805725097656, -0.08629138767719269, 0.025978321209549904, 0.04800570011138916, 0.01145074050873518, -0.010969984345138073, 0.043565262109041214, 0.06978832930326462, -0.037236761301755905, -0.008269008249044418, 0.005117869470268488, 0.06482343375682831, -0.00003400804416742176, -0.013111535459756851, 0.034789275377988815, -0.07384416460990906, -0.03590812534093857, 0.0026878647040575743, 0.059613779187202454, 0.08545224368572235, -0.0639493316411972, -0.019072912633419037, 0.018373630940914154, -0.038250718265771866, -0.006988448556512594, -0.04202684015035629, 0.04671202972531319, 0.008024259470403194, -0.05772572010755539, -0.016529275104403496, 0.03337322920560837, 0.048879802227020264, -0.024824507534503937, 0.03269142657518387, 0.0012062612222507596, 0.005109128076583147, -0.03856539726257324, 0.025069255381822586, -0.0026397891342639923, -0.018618380650877953, -0.005205279681831598, -0.0008975938544608653, 0.042131733149290085, 0.0023469647858291864, -0.060907453298568726, 0.03192221745848656, -0.01835615001618862, -0.008435087278485298, 0.07566229999065399, 0.08768995106220245, -0.026240551844239235, 0.06391436606645584, 0.011083617806434631, -0.07069739699363708, -0.018985502421855927, 0.05433420091867447, 0.032831285148859024, 0.05339017137885094, -0.03083833120763302, 0.00258734286762774, 0.0006080474704504013, -0.024282563477754593, 0.039684247225522995, -0.00210330868139863, -0.0035248177591711283, 0.059194210916757584, -0.012263655662536621, -0.015279308892786503, -0.042061805725097656, -0.009877356700599194, 0.011223474517464638, -0.02797127515077591, 0.0117479357868433, 0.08391382545232773, 0.024911917746067047, 0.08699066936969757, 0.0691240131855011, 0.0054849921725690365, -0.02230709232389927, 0.027656598016619682, 0.04996369034051895, -0.027114655822515488, 0.036642368882894516, -0.011389553546905518, 0.008736653253436089, -0.04304080083966255, -0.029264947399497032, -0.025838466361165047, -0.0030549876391887665, 0.007442981470376253, -0.005616107489913702, 0.020436512306332588, -0.016966326162219048, 0.00790625624358654 ]
729,125
tables.unimplemented
__init__
Create the `Unknown` instance.
def __init__(self, parentnode, name): """Create the `Unknown` instance.""" self._v_new = False super().__init__(parentnode, name)
(self, parentnode, name)
[ 0.03629821911454201, -0.05659884959459305, 0.017645932734012604, 0.028924059122800827, -0.07447034120559692, 0.0006647588452324271, 0.0008756815223023295, 0.03650643303990364, 0.043412115424871445, -0.021879566833376884, -0.023423803970217705, 0.02918432466685772, -0.016726331785321236, 0.015364279970526695, -0.06142241880297661, 0.002377082360908389, 0.0057344939559698105, 0.05548838898539543, -0.03095412254333496, -0.023701420053839684, -0.060797784477472305, 0.03229014575481415, 0.012041570618748665, 0.014297195710241795, 0.03560418263077736, 0.06364334374666214, -0.04712522402405739, 0.017602555453777313, 0.0069403862580657005, -0.05500256270170212, -0.10424460470676422, -0.02708485722541809, 0.0005343555239960551, 0.03980311378836632, 0.05708467587828636, 0.00841955654323101, -0.07634425163269043, 0.05462083965539932, -0.0780099406838417, 0.031752265989780426, 0.0645802915096283, -0.03726987540721893, -0.06041606143116951, -0.026304064318537712, 0.015988914296030998, 0.027188964188098907, 0.07231882214546204, 0.004279181826859713, -0.010367201641201973, -0.017680633813142776, -0.004066632594913244, 0.02890670858323574, 0.005855950992554426, 0.015364279970526695, -0.07766292244195938, 0.06586426496505737, 0.035083651542663574, 0.04670879989862442, -0.011321505531668663, 0.03550007566809654, -0.021376390010118484, 0.04476549103856087, 0.011980841867625713, -0.030294785276055336, -0.03045094572007656, 0.012640178203582764, 0.013898123987019062, -0.04656999185681343, -0.037721000611782074, 0.05559249594807625, 0.013047926127910614, -0.01647474244236946, 0.021914269775152206, 0.04934614524245262, 0.09300117939710617, -0.005305057857185602, -0.051879387348890305, -0.0014206103514879942, 0.019606592133641243, -0.016604874283075333, 0.001751363044604659, -0.029895713552832603, -0.02909757010638714, 0.015077989548444748, -0.02307678386569023, 0.006020785309374332, 0.01830526813864708, -0.038033317774534225, 0.001827273634262383, 0.02071705274283886, -0.023059433326125145, 0.03664524108171463, -0.04178112372756004, 0.032758623361587524, 0.03386908397078514, -0.008224357850849628, 0.045043107122182846, -0.06402506679296494, 0.0522611103951931, -0.016960568726062775, 0.0153903067111969, 0.050005484372377396, -0.08134132623672485, -0.08148013800382614, 0.0022068258840590715, -0.017281562089920044, -0.01917281746864319, 0.00805952399969101, 0.017541825771331787, 0.008840316906571388, -0.042718078941106796, 0.021359039470553398, -0.02403108775615692, 0.09091906249523163, 0.0019834323320537806, -0.029808958992362022, 0.00016036088345572352, -0.014028255827724934, 0.008003133349120617, -0.02640816941857338, 0.023684067651629448, 0.021098773926496506, -0.07176359742879868, -0.008215682581067085, -0.006324427202343941, 0.02312883734703064, 0.03799861669540405, -0.02203572727739811, 0.025228304788470268, -0.004142542835325003, 0.03492749482393265, 0.014991234056651592, -0.025575323030352592, -0.0011939633404836059, -0.00445052282884717, 0.003209928749129176, 0.015945537015795708, -0.021359039470553398, -0.059895534068346024, 0.011191372759640217, -0.029201675206422806, -0.03827622905373573, 0.05895858258008957, 0.012648854404687881, -0.03754749149084091, 0.028924059122800827, -0.05462083965539932, -0.01729891262948513, -0.024065788835287094, -0.03390378877520561, -0.0035742989275604486, 0.0018164291977882385, -0.023163538426160812, 0.0443490669131279, -0.01080965157598257, 0.02158460207283497, 0.0057344939559698105, -0.0469864159822464, -0.024117842316627502, -0.011842033825814724, -0.022937975823879242, -0.022729765623807907, 0.012891767546534538, -0.02607850171625614, -0.038449738174676895, -0.019519835710525513, 0.005062144249677658, -0.08696304261684418, -0.026425519958138466, 0.03959490358829498, -0.03400789201259613, -0.048964425921440125, -0.04306509718298912, 0.04087887704372406, 0.006610718090087175, 0.04771515727043152, 0.02385757863521576, 0.012674880214035511, 0.026304064318537712, 0.022608308121562004, 0.021480495110154152, 0.0013512064469978213, -0.04205873981118202, -0.00890104565769434, 0.054655540734529495, -0.01993625983595848, 0.01689116470515728, 0.026564327999949455, 0.06145711988210678, 0.012032894417643547, 0.019328976050019264, 0.008072536438703537, 0.0396990105509758, 0.025297708809375763, 0.07620543986558914, 0.006359128747135401, 0.015104015357792377, 0.024464862421154976, -0.06669711321592331, 0.0674605518579483, 0.025020092725753784, 0.01401958055794239, 0.006628069095313549, -0.045459531247615814, -0.02063029818236828, 0.04976256936788559, 0.0002784287789836526, -0.013828719966113567, -0.00890104565769434, -0.040948279201984406, 0.0011451637838035822, 0.01342964731156826, 0.0243087038397789, 0.058472756296396255, -0.002361900173127651, -0.09036383032798767, -0.06336572766304016, 0.0008588727796450257, 0.003251137211918831, 0.014479381032288074, 0.07044491916894913, 0.03220339119434357, -0.023024732246994972, -0.03560418263077736, -0.027483928948640823, -0.01967599429190159, 0.01035852637141943, -0.05968732386827469, -0.033209748566150665, -0.01920751854777336, -0.022937975823879242, -0.04247516393661499, -0.020422086119651794, -0.010063559748232365, -0.001086062053218484, 0.04712522402405739, 0.009751242585480213, -0.010124288499355316, -0.08314582705497742, -0.02741452492773533, -0.01939838007092476, -0.04476549103856087, 0.00329017685726285, -0.023736121132969856, 0.047958068549633026, -0.02071705274283886, -0.0030082236044108868, 0.05968732386827469, -0.01575467735528946, -0.01445335429161787, 0.01222375500947237, -0.10091321915388107, -0.042960990220308304, 0.034528423100709915, 0.03258511424064636, -0.060173150151968, -0.03433756157755852, -0.032984185963869095, 0.048235684633255005, -0.002251287689432502, -0.05156707018613815, 0.043863240629434586, -0.011234750039875507, 0.09022501856088638, 0.007990119978785515, -0.011017863638699055, 0.0023900954984128475, 0.005708467680960894, -0.06773816794157028, -0.03359146788716316, 0.10084380954504013, 0.003439828986302018, -0.019780101254582405, 0.023024732246994972, -0.023527909070253372, -0.05868096649646759, -0.04351622238755226, 0.017871495336294174, -0.06628068536520004, -0.01739434339106083, 0.033348556607961655, 0.009048528969287872, 0.012076271697878838, 0.012640178203582764, -0.05194878950715065, -0.06114480271935463, -0.007855650037527084, -0.0017893182812258601, -0.07807934284210205, -0.07231882214546204, -0.04466138407588005, 0.04250986501574516, 0.003769497387111187, 0.03405994549393654, 0.03834563493728638, 0.0015474891988560557, -0.03851914405822754, 0.09980275481939316, -0.048235684633255005, -0.009326144121587276, 0.0496237613260746, -0.0645802915096283, -0.011677199974656105, 0.003678404726088047, -0.041677020490169525, 0.011816008016467094, -0.005769195966422558, 0.053787995129823685, 0.007938066497445107, -0.005717143416404724, -0.00910925678908825, 0.072874054312706, 0.029427237808704376, 0.08092490583658218, -0.010670843534171581, -0.006688797380775213, 0.026061151176691055, -0.09369521588087082, 0.046604692935943604, 0.06912624835968018, -0.01830526813864708, -0.010870380327105522, -0.07266584783792496, -0.010046209208667278, -0.027761545032262802, -0.008822966367006302, 0.03695755824446678, 0.014115010388195515, -0.012249781750142574, 0.0032684882171452045, -0.02777889557182789, -0.03414670005440712, 0.026980752125382423, -0.04889502003788948, -0.08106371015310287, -0.006810253951698542, -0.016145072877407074, -0.00036599693703465164, 0.016058318316936493, -0.023007379844784737, 0.03419875353574753, 0.03973371163010597, -0.06072837859392166, -0.015112691558897495, 0.04119119420647621, -0.002348887035623193, 0.019658643752336502, -0.0366799421608448, 0.02881995402276516, 0.01195481512695551, -0.035205110907554626, -0.030086575075984, -0.02517625130712986, 0.017333615571260452, 0.05503726378083229, -0.04608416557312012, 0.00849329773336649, 0.0516364723443985, -0.019519835710525513, -0.024048438295722008, 0.01277031097561121, -0.014895804226398468, -0.020231226459145546, -0.005864626262336969, 0.005851613357663155, -0.07495617121458054, 0.04191993176937103, 0.03841503709554672, -0.029982468113303185, -0.034615177661180496, 0.0026026449631899595, -0.07835695892572403, -0.025557972490787506, -0.02836882881820202, 0.037582192569971085, -0.03647172823548317, -0.023094136267900467, 0.003526583779603243, 0.01361183263361454, -0.05340627208352089, -0.002515889937058091, 0.040046028792858124, 0.003838901175186038, -0.016492092981934547, 0.0069924392737448215, -0.012084947898983955, 0.025020092725753784, 0.07106955349445343, 0.043550923466682434, 0.03595120087265968, -0.022920625284314156, -0.0051445611752569675, -0.008163629099726677, 0.012353887781500816, 0.02208777889609337, 0.011087266728281975, 0.022504203021526337, -0.05864626541733742, -0.043550923466682434, -0.0013165045529603958, -0.0009629785781726241, -0.007716841995716095, -0.04688230901956558, 0.012397265061736107, 0.01775003783404827, -0.0017459408845752478, 0.06253287941217422, 0.02668578550219536, -0.013724613934755325, -0.04202403873205185, 0.017724011093378067, -0.017055999487638474, -0.04025423899292946, -0.055106665939092636, 0.004303039517253637, 0.012379913590848446, 0.07981444150209427, 0.014210441149771214, 0.029010815545916557, -0.048374492675065994, -0.022660361602902412, 0.06562135368585587, 0.03747808560729027, 0.06864041835069656, 0.01633593440055847, 0.02576618455350399, -0.018461426720023155, -0.0012601139023900032, 0.016960568726062775, 0.0061075398698449135, -0.016778383404016495, 0.0036437027156352997, 0.02217453345656395, -0.014141037128865719, 0.02467307262122631, -0.022434799000620842, -0.010983161628246307, -0.07481736689805984, -0.044730789959430695, 0.10660433024168015, -0.019467784091830254, 0.004112178925424814, 0.019606592133641243, 0.03419875353574753, 0.022781817242503166, 0.008224357850849628, -0.0023835888132452965, 0.02184486575424671, 0.020682351663708687, -0.05212230235338211, 0.000673434347845614, 0.020769106224179268, 0.03584709390997887, -0.01934632658958435, -0.03615941107273102, -0.034944843500852585, -0.056980572640895844, -0.01861758530139923, 0.012553423643112183, 0.012857065536081791, -0.05038720369338989, 0.05708467587828636, -0.011599120683968067, -0.002078862627968192, -0.042405761778354645, 0.03386908397078514, 0.01816646195948124, -0.0279524065554142, -0.035395968705415726, -0.03695755824446678, 0.03792921081185341, 0.010393228381872177, 0.0029106244910508394, -0.05534958094358444, -0.02918432466685772, -0.0417117215692997, -0.03362617269158363, -0.07967563718557358, -0.02139374054968357, -0.02895876206457615, -0.006584691349416971, -0.01080965157598257, 0.03900497034192085, 0.016127722337841988, -0.0077992589212954044, 0.008063861168920994, 0.030676506459712982, -0.00475850235670805, 0.017680633813142776, 0.014696268364787102, -0.03451107069849968, 0.027483928948640823, -0.042822182178497314, 0.0012503539910539985, 0.011642497964203358, -0.0007162695401348174, -0.012137000449001789, 0.026963401585817337, 0.017559178173542023, -0.07884278893470764, -0.018097057938575745, -0.04018483683466911, -0.01651811972260475, -0.0370616614818573, 0.02960074692964554, -0.04816628247499466, 0.023337049409747124, 0.03359146788716316, 0.009916077367961407, 0.032481007277965546, 0.030346838757395744, -0.013698587194085121, 0.028299424797296524, 0.0035808056127279997, 0.04074006900191307, 0.012961171567440033, -0.03619411587715149, 0.0153903067111969, 0.02149784564971924, -0.014149712398648262, 0.06461499631404877, -0.030208030715584755, 0.03737397864460945, -0.06586426496505737, 0.01807970553636551, 0.017003946006298065, -0.06562135368585587, 0.00956038199365139, 0.02800445817410946, 0.04629237577319145, 0.005799560341984034, -0.06912624835968018, -0.037443384528160095, 0.03355676680803299, 0.0013902460923418403, 0.05180998519062996, 0.03709636628627777, 0.03879676014184952, -0.02026592753827572, -0.014340572990477085, 0.017055999487638474, -0.02540181390941143, 0.009369521401822567, 0.017238184809684753, 0.0016233996720984578, -0.030537700280547142, -0.03164816275238991, -0.005938367918133736, 0.007556345779448748, -0.0037413020618259907, 0.0035374280996620655, -0.028212670236825943, -0.042128145694732666, -0.01788884587585926, 0.034753985702991486, 0.013733289204537868, -0.0000781471244408749, -0.04452257975935936, 0.02881995402276516, 0.03942139446735382, 0.04424496367573738, 0.036263518035411835, 0.06402506679296494, -0.03419875353574753, 0.02449956350028515, 0.01953718811273575, -0.03980311378836632, 0.004845257382839918, 0.027119560167193413, 0.02512419782578945, 0.051150646060705185, -0.023562612012028694, 0.048096876591444016, 0.009716540575027466, -0.011000512167811394, 0.026477573439478874, 0.03650643303990364, 0.1045222207903862, -0.004303039517253637, -0.06780757755041122, -0.045459531247615814, 0.020023014396429062, -0.04028894379734993, -0.01684778742492199, -0.022070428356528282, -0.012423291802406311, -0.006111877504736185, 0.053926803171634674, 0.039213184267282486, -0.040046028792858124, -0.011781306006014347, 0.00773853063583374, -0.021168177947402, -0.006883995607495308, -0.025783535093069077, -0.0076344250701367855, 0.02326764538884163, -0.035257160663604736, 0.02175811119377613, -0.029114920645952225, -0.05580070614814758, 0.015824081376194954, 0.0008989968919195235, 0.020786456763744354, 0.0046327076852321625, -0.015364279970526695, -0.005283369217067957, -0.003279332537204027, -0.002172124106436968, 0.0023445491679012775, 0.05812573432922363, -0.018426725640892982, -0.009890050627291203, -0.007413200102746487, 0.018964605405926704, 0.0033899450208991766, -0.03792921081185341, 0.03765159472823143, 0.020335331559181213, 0.030121276155114174, -0.03952550143003464, -0.0058733019977808, -0.00871886033564806, -0.011095942929387093, -0.0635739415884018, -0.01575467735528946, 0.027605386450886726, 0.004910323303192854, -0.012683555483818054, 0.006346115842461586, 0.04393264651298523, -0.04448787495493889, -0.05545368790626526, -0.03733927756547928, -0.021046722307801247, -0.03824152797460556, 0.00761273643001914, -0.018947254866361618, 0.02758803591132164, 0.07641365379095078, -0.043412115424871445, -0.011052564717829227, 0.000001660541670389648, 0.01117402222007513, -0.05482904985547066, -0.04393264651298523, 0.011850710026919842, -0.019589239731431007, -0.015060638077557087, 0.010167665779590607, 0.02144579403102398, 0.060069043189287186, 0.010488659143447876, 0.010610115714371204, 0.0380680188536644, 0.009005150757730007, -0.033261802047491074, 0.06100599467754364, 0.04684760794043541, 0.0188431479036808, -0.014297195710241795, 0.003602494252845645, 0.016197126358747482, 0.04879091680049896, 0.10299533605575562, 0.07835695892572403, 0.048374492675065994, -0.02786565013229847, -0.053753290325403214, -0.013542428612709045, 0.001934632658958435, 0.011269452050328255, 0.011842033825814724, -0.03336590528488159, -0.02057824470102787, -0.053787995129823685, -0.0036371962632983923, 0.04299569129943848, 0.04601475968956947, 0.01993625983595848, 0.005769195966422558, 0.032932132482528687, 0.012926469556987286, -0.0611795037984848, -0.002097297925502062, 0.05587010830640793, -0.02881995402276516, 0.01693454198539257, 0.053510379046201706, -0.08085550367832184, -0.055661898106336594, -0.0340425930917263, 0.02604379877448082, 0.08356224745512009, -0.039490796625614166, 0.00996812991797924, -0.01702129654586315, -0.06423327326774597, -0.0003586770035326481, -0.009551706723868847, 0.07322107255458832, 0.002567942952737212, -0.06097129359841347, -0.016197126358747482, 0.005031779874116182, 0.03492749482393265, -0.017871495336294174, -0.0028043498750776052, 0.054343223571777344, -0.019884206354618073, 0.02049149014055729, 0.03378232941031456, -0.004962376318871975, -0.055835407227277756, 0.010800976306200027, 0.023961683735251427, 0.04601475968956947, 0.0073004188016057014, -0.028785252943634987, -0.0002229870151495561, 0.010054884478449821, 0.0029930416494607925, 0.05080362781882286, 0.050699520856142044, 0.02663373202085495, 0.06128361076116562, -0.02613055519759655, -0.06523963063955307, 0.006827604956924915, 0.015919510275125504, 0.02613055519759655, 0.03824152797460556, -0.07905100286006927, -0.02731041982769966, -0.004181582946330309, -0.02094261534512043, 0.03574299067258835, 0.044279664754867554, -0.008098563179373741, 0.042405761778354645, -0.017819441854953766, 0.018496129661798477, -0.008701508864760399, 0.018149109557271004, -0.0014412145828828216, 0.019866855815052986, 0.02212248183786869, 0.04972786828875542, 0.005131548270583153, 0.09091906249523163, 0.04879091680049896, 0.01094845961779356, 0.0002030605246545747, 0.03156140819191933, 0.010488659143447876, 0.0015800222754478455, 0.037131067365407944, 0.033261802047491074, -0.005153236910700798, -0.028924059122800827, -0.029982468113303185, -0.04521661624312401, 0.005435190163552761, -0.0034550109412521124, 0.002346718218177557, 0.02731041982769966, 0.03187372535467148, 0.01525149866938591 ]
729,141
tables.unimplemented
_g_copy
null
def _g_copy(self, newparent, newname, recursive, _log=True, **kwargs): # Silently avoid doing copies of unknown nodes return None
(self, newparent, newname, recursive, _log=True, **kwargs)
[ -0.02190009318292141, -0.0158732570707798, 0.020572291687130928, 0.03604030981659889, -0.09160102158784866, 0.017330389469861984, 0.0157870352268219, 0.04690413549542427, 0.09636040776968002, -0.022658836096525192, -0.01152772642672062, -0.032488010823726654, 0.0052379160188138485, 0.031384386122226715, -0.04831815883517265, -0.022814033553004265, -0.014079863205552101, 0.02424529939889908, -0.028383899480104446, 0.0169682614505291, -0.044214047491550446, -0.008966967463493347, 0.05890607833862305, 0.022762302309274673, -0.012398556806147099, 0.033195022493600845, 0.012958992272615433, 0.05421566218137741, -0.014700653031468391, 0.010924180038273335, -0.008363421075046062, -0.07649512588977814, -0.0007274883100762963, 0.013088323175907135, 0.029573747888207436, 0.02984965406358242, -0.05480196699500084, 0.013916043564677238, -0.08697958290576935, -0.058733634650707245, -0.0072813499718904495, -0.037454333156347275, -0.07332219928503036, -0.001945357653312385, 0.04580051079392433, 0.02486608922481537, 0.03697149455547333, 0.06835588067770004, -0.019692840054631233, -0.02364175394177437, -0.01945142075419426, 0.07111494988203049, -0.03569542616605759, 0.0003755995421670377, -0.037385355681180954, 0.042869001626968384, 0.04376569762825966, 0.014131595380604267, 0.00682869041338563, 0.010898314416408539, 0.0194169320166111, 0.004785256460309029, -0.00789351761341095, -0.03776472806930542, -0.01833054982125759, -0.019210003316402435, -0.027625156566500664, -0.0642862543463707, 0.0011273374548181891, 0.049559738487005234, -0.06752815842628479, -0.0121571384370327, 0.019865281879901886, 0.01814086362719536, 0.01100177876651287, 0.04004095867276192, 0.01429541502147913, -0.04452444240450859, 0.02122757025063038, -0.01943417638540268, -0.03959260880947113, -0.03429865092039108, -0.052629198879003525, 0.010777604766190052, -0.004035135265439749, 0.053215499967336655, 0.03222934901714325, -0.0049964976496994495, 0.013545293360948563, -0.012441666796803474, -0.02002047933638096, 0.017916690558195114, -0.017201056703925133, 0.00794525071978569, 0.05442259460687637, 0.0212965477257967, -0.020520560443401337, -0.04649027809500694, 0.06659697741270065, 0.04069623723626137, -0.006358786951750517, 0.0315740704536438, -0.04010993242263794, -0.04942178353667259, 0.04280002415180206, -0.03704047203063965, -0.009217008017003536, 0.013803956098854542, 0.024503963068127632, 0.006177722942084074, -0.06990785896778107, 0.022158754989504814, 0.041179072111845016, 0.014562699943780899, -0.0003133588470518589, -0.0318327322602272, -0.014683408662676811, -0.01761491782963276, -0.005406046751886606, 0.010975913144648075, 0.04911138862371445, 0.005561244208365679, -0.008820392191410065, 0.022382929921150208, 0.012407178990542889, 0.040489304810762405, 0.03285013884305954, -0.0014506656443700194, -0.00885487999767065, -0.032056909054517746, 0.022107023745775223, -0.02000323496758938, -0.014485101215541363, 0.014467856846749783, 0.034971173852682114, -0.01129493024200201, -0.037454333156347275, 0.0004758312425110489, -0.012829660438001156, -0.014252305030822754, -0.006634693592786789, -0.07890931516885757, 0.07787466049194336, 0.03704047203063965, -0.014217816293239594, -0.019158270210027695, -0.006285499315708876, 0.03569542616605759, -0.056974731385707855, -0.00013552837481256574, 0.01699412800371647, 0.03645417094230652, -0.029090911149978638, 0.01457132212817669, -0.036799054592847824, 0.01584739051759243, -0.03417794033885002, -0.041144583374261856, -0.03466077893972397, -0.03219486027956009, -0.008975589647889137, -0.057009220123291016, 0.024590183049440384, -0.03409171849489212, 0.011674301698803902, -0.033246755599975586, 0.07194266468286514, -0.021468989551067352, -0.03759228438138962, 0.033867545425891876, -0.00848413072526455, -0.0010362666798755527, -0.005608665756881237, 0.01584739051759243, -0.016752708703279495, 0.04445546492934227, -0.013278009369969368, -0.02258986048400402, -0.014131595380604267, 0.032660454511642456, -0.025262705981731415, -0.0004488872364163399, 0.0499391108751297, 0.0672522559762001, 0.06487256288528442, 0.0115449707955122, -0.02988414280116558, 0.01716656982898712, 0.03693700581789017, 0.024159079417586327, -0.036799054592847824, 0.008561729453504086, 0.025486880913376808, 0.0020908552687615156, 0.047180041670799255, -0.008022849448025227, -0.025193728506565094, -0.010234413668513298, -0.038592446595430374, 0.1360909789800644, -0.0034639223013073206, -0.047180041670799255, 0.043455302715301514, -0.055112361907958984, 0.013855689205229282, 0.005289648659527302, -0.008311688899993896, 0.038626935333013535, 0.020279141142964363, 0.0020854666363447905, 0.022814033553004265, 0.035557474941015244, 0.06552783399820328, 0.003905803896486759, -0.028797760605812073, -0.07615024596452713, -0.10691384226083755, -0.04811122640967369, 0.009354961104691029, 0.002132887952029705, -0.03831654042005539, 0.026469796895980835, -0.04445546492934227, -0.026021448895335197, -0.016097430139780045, -0.038764890283346176, 0.019054805859923363, -0.038661424070596695, 0.006953710690140724, -0.04435199871659279, 0.02490057796239853, -0.045317672193050385, 0.020313629880547523, -0.049594227224588394, -0.012329580262303352, -0.05045643448829651, -0.006177722942084074, -0.009518780745565891, 0.0525602251291275, 0.01580427959561348, -0.10132672637701035, -0.04035135358572006, 0.02136552333831787, 0.025366170331835747, 0.06983888149261475, -0.04686964675784111, -0.0003491943934932351, 0.010501698590815067, 0.022382929921150208, 0.04342081397771835, 0.01066551823168993, -0.039178747683763504, -0.10843132436275482, 0.04628334566950798, 0.022693324834108353, 0.00971708819270134, -0.0013579782098531723, -0.022313952445983887, 0.01000161748379469, -0.011174220591783524, -0.016813063994050026, -0.004569704644382, 0.012562376447021961, -0.0005375330219976604, -0.059940725564956665, -0.03364337235689163, 0.026297355070710182, -0.016864795237779617, -0.0678730458021164, 0.016140541061758995, 0.06656248867511749, 0.04680067300796509, 0.007220995146781206, 0.05431912839412689, 0.0014689875533804297, -0.08077168464660645, -0.04935280978679657, 0.04686964675784111, -0.003895026398822665, -0.05052541196346283, 0.053939756006002426, 0.06207900494337082, 0.011726033873856068, -0.0060311476700007915, -0.07677103579044342, -0.06214798241853714, 0.020503316074609756, -0.00576386321336031, -0.03842000663280487, -0.010855203494429588, -0.035005658864974976, 0.053939756006002426, -0.014140217565000057, 0.01716656982898712, 0.009303228929638863, 0.042903490364551544, -0.031332653015851974, 0.015312820672988892, -0.042972467839717865, 0.046559251844882965, 0.035591963678598404, -0.039834026247262955, -0.002506870776414871, 0.00669935904443264, -0.014252305030822754, 0.024193568155169487, 0.003276391886174679, 0.031177455559372902, -0.03955812007188797, 0.04248962923884392, -0.0659416988492012, -0.013579782098531723, 0.009182519279420376, 0.07366708666086197, -0.014424745924770832, -0.03212588280439377, 0.05414668843150139, -0.024710891768336296, 0.00888074655085802, 0.043455302715301514, -0.09539473801851273, 0.011398394592106342, -0.045283183455467224, 0.0009495069971308112, -0.007182195782661438, -0.022745057940483093, 0.013148677535355091, 0.07132187485694885, -0.010691383853554726, 0.027004366740584373, -0.02069300226867199, 0.028332168236374855, 0.015295577235519886, 0.006367409136146307, -0.053353454917669296, 0.05055990070104599, -0.012200248427689075, -0.04935280978679657, -0.0019787682686001062, -0.03236730396747589, 0.033246755599975586, 0.07132187485694885, -0.019692840054631233, -0.03036697953939438, 0.04614539444446564, 0.00041897938353940845, 0.04707657918334007, -0.005052541382610798, -0.03098776936531067, -0.019882526248693466, -0.021555209532380104, 0.03219486027956009, -0.024210810661315918, 0.0073072160594165325, 0.020830955356359482, 0.018399527296423912, 0.028970202431082726, 0.0010303390445187688, 0.014657543040812016, -0.03219486027956009, 0.0546640120446682, -0.011691546067595482, 0.008035781793296337, -0.019020317122340202, 0.04814571514725685, 0.010113704018294811, -0.02486608922481537, 0.04914587736129761, -0.04928383231163025, -0.09718813002109528, 0.0000922158797038719, -0.04797327518463135, 0.029522014781832695, -0.07401196658611298, -0.04300695285201073, -0.0006083957850933075, -0.032539743930101395, -0.02686641365289688, -0.06621760129928589, -0.02060678042471409, 0.020468827337026596, -0.011829499155282974, -0.023279625922441483, 0.009518780745565891, 0.0060225254856050014, -0.017476964741945267, 0.06549335271120071, 0.03666109964251518, 0.06645902246236801, 0.02565932087600231, -0.030315246433019638, 0.012260603718459606, 0.03095328062772751, 0.029573747888207436, -0.02019292116165161, -0.02690090239048004, 0.04990462213754654, -0.025193728506565094, -0.10449966043233871, -0.0007409603567793965, 0.0006978499004617333, -0.00713477423414588, -0.08456540107727051, -0.006074258126318455, -0.0014657542342320085, -0.01765802688896656, 0.030332490801811218, 0.011079377494752407, 0.018485747277736664, -0.016623377799987793, 0.021555209532380104, -0.02250363864004612, -0.0079366285353899, 0.020227408036589622, 0.0030112627428025007, -0.045317672193050385, 0.05187045782804489, 0.009605001658201218, -0.003306569065898657, -0.015536995604634285, -0.008941100910305977, 0.030677374452352524, 0.025745542719960213, 0.033764079213142395, 0.07111494988203049, 0.004630059003829956, -0.020830955356359482, -0.008673815988004208, -0.015226599760353565, 0.016554400324821472, -0.012958992272615433, 0.01716656982898712, 0.045869484543800354, 0.017778737470507622, 0.06259632855653763, -0.007471035700291395, 0.019123781472444534, -0.01638195849955082, -0.0164854247123003, 0.11863987147808075, 0.019037561491131783, -0.035626452416181564, -0.002457293914631009, -0.049594227224588394, -0.039006307721138, -0.002468071412295103, -0.005337069742381573, 0.003660074668005109, -0.02003772370517254, -0.008255645632743835, 0.038626935333013535, 0.03538503125309944, -0.008587596006691456, -0.016062941402196884, -0.06083742529153824, -0.003438055980950594, -0.051353130489587784, -0.00745810242369771, 0.005703508388251066, 0.0002310449053766206, -0.002177076181396842, 0.04921485483646393, 0.08511721342802048, 0.06014765799045563, 0.01644231379032135, -0.014424745924770832, 0.045972950756549835, -0.01704585924744606, -0.0007010832196101546, -0.03531605377793312, 0.04849059879779816, -0.031884465366601944, -0.022658836096525192, -0.04745595157146454, 0.022141510620713234, -0.04138600453734398, -0.058181822299957275, -0.050215017050504684, -0.011139732785522938, -0.0033755458425730467, -0.016175029799342155, -0.03236730396747589, 0.06490704417228699, 0.01496793795377016, -0.04831815883517265, -0.039282213896512985, 0.02067575789988041, 0.03231557086110115, 0.0009074743138626218, 0.005660397931933403, -0.012320958077907562, -0.03824756294488907, -0.06135474890470505, -0.006889045238494873, -0.016295738518238068, 0.004979253280907869, -0.036212753504514694, 0.008949723094701767, 0.020848199725151062, -0.038661424070596695, -0.04135151579976082, 0.010536186397075653, 0.020451582968235016, -0.0008142480510286987, 0.00819097924977541, -0.002271919045597315, -0.009596379473805428, 0.030677374452352524, -0.00972571037709713, 0.032488010823726654, 0.010786226950585842, 0.008423776365816593, -0.003690251847729087, 0.044214047491550446, 0.0315740704536438, -0.031211944296956062, -0.013278009369969368, 0.044662393629550934, 0.02993587590754032, -0.05680228769779205, 0.04818020388484001, 0.022710569202899933, 0.023020964115858078, -0.08173735439777374, 0.02862531878054142, -0.013614270836114883, 0.0011047044536098838, 0.039282213896512985, 0.011967452242970467, 0.020365362986922264, -0.021037884056568146, -0.003433744888752699, 0.01492482703179121, 0.04148946702480316, 0.009406693279743195, 0.030642885714769363, 0.017218301072716713, 0.03835102915763855, -0.003685940755531192, -0.03662661090493202, -0.004901654552668333, -0.01764078438282013, 0.039247725158929825, 0.02498679980635643, -0.02008945494890213, 0.058871589601039886, 0.02005496621131897, -0.008307377807796001, 0.004798189736902714, -0.025090264156460762, 0.02860807441174984, -0.04638681188225746, -0.030280759558081627, 0.05442259460687637, 0.03412620723247528, 0.007384814787656069, -0.048421621322631836, -0.03359163925051689, 0.03897181898355484, 0.009268740192055702, 0.010941424407064915, -0.053318966180086136, 0.024503963068127632, -0.03693700581789017, 0.013105567544698715, -0.0268491692841053, -0.07435685396194458, 0.05545724183320999, 0.030677374452352524, 0.02019292116165161, 0.036902520805597305, 0.05594008043408394, 0.014605809934437275, 0.0008018537773750722, 0.0012577464804053307, -0.013821200467646122, 0.0017017838545143604, 0.03053942136466503, -0.010700006037950516, -0.030142804607748985, 0.017847713083028793, 0.013278009369969368, 0.03614377602934837, 0.03714393824338913, 0.0009177130414173007, -0.009449804201722145, -0.0036363638937473297, 0.03914426267147064, 0.044248536229133606, -0.011682923883199692, 0.0273320060223341, 0.07828852534294128, 0.0005000808741897345, -0.05487094074487686, -0.03759228438138962, -0.0256248340010643, 0.03479873016476631, -0.01764078438282013, -0.0003772161726374179, -0.032522499561309814, -0.021572453901171684, -0.015097268857061863, 0.024728136137127876, 0.02498679980635643, -0.03112572245299816, 0.014769629575312138, 0.000354583200532943, -0.04086867719888687, 0.05187045782804489, 0.025952473282814026, 0.024641916155815125, -0.008695371448993683, 0.019830793142318726, -0.07097699493169785, -0.05359487235546112, 0.007419303059577942, -0.05783693864941597, -0.013148677535355091, -0.0013375007547438145, 0.024745380505919456, -0.06835588067770004, -0.020296385511755943, -0.0424206517636776, -0.009053188376128674, -0.10243035852909088, -0.057457566261291504, 0.0079366285353899, 0.015321442857384682, -0.02384868450462818, 0.025159241631627083, 0.01833054982125759, -0.09380827099084854, -0.020555047318339348, -0.010424099862575531, -0.015476640313863754, -0.004287331365048885, 0.032039664685726166, -0.01556286122649908, -0.04035135358572006, 0.08573800325393677, 0.0014194105751812458, -0.030229026451706886, -0.04580051079392433, -0.03362612798810005, -0.08435846865177155, -0.0512496680021286, 0.018434016034007072, -0.038557957857847214, -0.048938948661088943, -0.05235329270362854, -0.019261734560132027, 0.06825241446495056, -0.0012631353456526995, 0.03433313965797424, 0.04883548244833946, 0.03597133234143257, -0.02621113508939743, 0.04155844449996948, -0.0057509299367666245, -0.011217331513762474, 0.023917660117149353, 0.01494207140058279, 0.029401306062936783, 0.01367462519556284, 0.05118069052696228, 0.04673169553279877, 0.04583499953150749, -0.0452142097055912, -0.010243035852909088, -0.02005496621131897, -0.08939376473426819, -0.04314490780234337, -0.031918954104185104, 0.007126152515411377, -0.045317672193050385, -0.05538826808333397, 0.04769736900925636, 0.0486285537481308, 0.010700006037950516, -0.015424908138811588, 0.031970687210559845, 0.03535054251551628, 0.030711863189935684, -0.043524280190467834, 0.008264267817139626, 0.12691707909107208, -0.021555209532380104, -0.00972571037709713, 0.037385355681180954, 0.005186183378100395, 0.03041871264576912, 0.012001940980553627, 0.019054805859923363, 0.06045805290341377, -0.0005755241145379841, 0.05111171305179596, -0.01062240730971098, -0.02067575789988041, 0.0021846205927431583, 0.0021749206352978945, 0.03535054251551628, 0.020865442231297493, -0.008617772720754147, -0.025831762701272964, 0.010113704018294811, -0.052111875265836716, -0.030763594433665276, 0.055733151733875275, -0.012433044612407684, 0.01776149310171604, 0.02119308151304722, -0.010682761669158936, 0.0006019292050041258, 0.04204127937555313, -0.030056584626436234, -0.04973217844963074, 0.005026674829423428, -0.017192434519529343, -0.03338471055030823, -0.03466077893972397, -0.010906935669481754, -0.015364553779363632, 0.04990462213754654, 0.04017890989780426, 0.03293636068701744, 0.03469526395201683, 0.008384976536035538, -0.11029369384050369, 0.03728188946843147, 0.005906127393245697, -0.004604192916303873, 0.06294121593236923, 0.011519104242324829, -0.018640944734215736, 0.06311365216970444, -0.024124590680003166, 0.005733685567975044, 0.030711863189935684, -0.0194169320166111, -0.01756318472325802, -0.011958830058574677, 0.02991863153874874, -0.010191302746534348, 0.04752492532134056, -0.04042033106088638, -0.030332490801811218, 0.0049663204699754715, 0.028918469324707985, -0.019192758947610855, -0.013778090476989746, 0.05224983021616936, 0.002476693596690893, 0.024590183049440384, 0.015355931594967842, -0.005931993946433067, -0.003310880158096552, -0.004699035547673702, 0.028297679498791695, 0.039351191371679306, 0.021055128425359726, -0.011769144795835018, -0.02988414280116558, -0.021796628832817078, 0.04752492532134056, 0.050283994525671005, 0.020279141142964363, 0.03243628144264221, 0.024779869243502617 ]
729,145
tables.unimplemented
_g_delete
null
def _g_delete(self, parent): pass
(self, parent)
[ -0.010736133903265, 0.0023674126714468002, -0.009270986542105675, 0.023790013045072556, -0.029054610058665276, -0.005806783214211464, 0.011977783404290676, 0.1415812075138092, 0.07595586776733398, -0.0008370790164917707, -0.018343308940529823, -0.03034592606127262, 0.008124529384076595, -0.03162068501114845, -0.034633755683898926, -0.051023535430431366, -0.004012598656117916, -0.002398453885689378, 0.02850828319787979, -0.08105491101741791, -0.013186322525143623, 0.015619956888258457, 0.01634839177131653, -0.05512925982475281, -0.014527305029332638, 0.046255599707365036, -0.00895643513649702, 0.03281266987323761, 0.021637819707393646, -0.0016317350091412663, -0.044765621423721313, -0.030610810965299606, -0.013856814242899418, 0.0727110207080841, 0.013625038787722588, 0.031554464250802994, -0.0677444264292717, 0.03655417636036873, -0.03602440655231476, 0.00059702672297135, -0.01681194081902504, -0.02599187381565571, 0.030677031725645065, -0.043672967702150345, 0.08390242606401443, 0.07006216794252396, 0.04022945836186409, 0.015735844150185585, -0.019618069753050804, -0.007495427038520575, 0.0064483024179935455, -0.0082859443500638, 0.004200915805995464, 0.0049748774617910385, -0.08754460513591766, 0.04863956943154335, 0.022482141852378845, 0.01956840418279171, 0.009684870019555092, 0.024981997907161713, 0.06135406345129013, 0.02882283553481102, -0.001781767699867487, -0.025942206382751465, 0.02374034747481346, -0.012855215929448605, 0.012797272764146328, -0.027250077575445175, -0.006762853357940912, 0.02720041200518608, -0.06992972642183304, -0.03983213007450104, 0.036852169781923294, 0.024882664903998375, 0.0412558913230896, -0.022763583809137344, 0.034070875495672226, 0.0010228091850876808, 0.04334186390042305, -0.032481562346220016, -0.0022763581946492195, -0.050526876002550125, 0.03499797359108925, 0.06443335860967636, 0.04231543093919754, 0.03602440655231476, 0.0626784935593605, 0.03602440655231476, -0.004830018617212772, 0.0061296122148633, -0.015545457601547241, -0.0387725904583931, -0.015843452885746956, -0.0652611255645752, 0.0058564492501318455, -0.002095284406095743, 0.00170002575032413, -0.02970026805996895, 0.004358191508799791, -0.029683712869882584, 0.059003207832574844, 0.03128958120942116, 0.008699827827513218, -0.03599129244685173, 0.03804415464401245, -0.06065874174237251, 0.0046147992834448814, -0.06900262832641602, -0.022300032898783684, 0.06069185212254524, -0.0353953018784523, -0.012035727500915527, 0.03506419435143471, 0.034137096256017685, 0.038441482931375504, -0.07860472053289413, -0.04162010923027992, -0.006088223773986101, 0.04075923189520836, -0.0699959471821785, -0.017962535843253136, 0.011671509593725204, -0.07211503386497498, -0.04301075637340546, 0.08052513748407364, 0.030991584062576294, -0.012689663097262383, 0.027912290766835213, -0.004062264692038298, 0.014576970599591732, 0.017532097175717354, -0.005868865642696619, -0.0250813290476799, -0.0641353577375412, 0.04132211208343506, 0.030147261917591095, 0.04536161199212074, -0.011663231998682022, -0.008182473480701447, 0.015280572697520256, -0.009784202091395855, 0.00722226407378912, 0.014121699146926403, 0.05645368620753288, 0.007925866171717644, -0.016936106607317924, -0.03377287834882736, 0.016273891553282738, -0.052679069340229034, 0.005061793141067028, -0.05612257868051529, 0.035196639597415924, 0.08595529198646545, -0.036256179213523865, -0.009395151399075985, 0.02751496434211731, -0.061155401170253754, -0.033756323158741, -0.017465876415371895, -0.035726409405469894, 0.03069358691573143, 0.023690681904554367, -0.0008986441534943879, 0.00928754173219204, -0.00035645702155306935, 0.006758714560419321, 0.07171770185232162, 0.0016451862175017595, -0.07476388663053513, 0.015371627174317837, -0.038938142359256744, -0.010852021165192127, -0.007408511359244585, -0.00843908078968525, -0.08065758645534515, 0.057943664491176605, 0.02037961594760418, 0.008244555443525314, 0.014899799600243568, -0.02327679842710495, 0.009941477328538895, -0.013583650812506676, 0.05559280887246132, 0.02105838432908058, 0.05648679658770561, -0.010669912211596966, 0.021604709327220917, 0.004709992092102766, 0.05234796181321144, -0.0171347688883543, -0.09522627294063568, -0.03969968855381012, 0.02143915556371212, 0.01684505119919777, 0.02387279085814953, 0.002537104766815901, -0.015586846508085728, 0.004262998234480619, -0.03069358691573143, 0.03691839426755905, -0.027001747861504555, -0.01667121984064579, 0.0010657495586201549, -0.06920129060745239, 0.010578857734799385, 0.029749933630228043, 0.020247172564268112, -0.03122335858643055, -0.012333722785115242, -0.011563899926841259, 0.034633755683898926, 0.011448012664914131, 0.01677883043885231, 0.006555912084877491, 0.03137235715985298, -0.10555680096149445, -0.06307581812143326, -0.001977327512577176, -0.0063117207027971745, 0.007942421361804008, -0.03864014893770218, 0.06406913697719574, -0.026587864384055138, -0.03210078924894333, -0.01140662468969822, -0.042480986565351486, 0.009618648327887058, 0.01653050072491169, 0.0382097102701664, -0.06403602659702301, -0.004107791930437088, -0.009279264137148857, 0.030296260491013527, -0.024452226236462593, 0.032729893922805786, -0.03529597073793411, -0.037746161222457886, -0.021571598947048187, -0.0018283296376466751, 0.01568617857992649, -0.013426375575363636, -0.017250657081604004, 0.022598030045628548, 0.04671914875507355, 0.04983155429363251, 0.04377230256795883, 0.04056056588888168, 0.030809475108981133, 0.034137096256017685, -0.024071455001831055, -0.011481123976409435, -0.10615279525518417, -0.027432186529040337, 0.015553735196590424, 0.01137351430952549, -0.008559106849133968, -0.012797272764146328, 0.008658438920974731, -0.009568982757627964, 0.010587135329842567, -0.036785949021577835, 0.008182473480701447, 0.0229953583329916, 0.03910369798541069, 0.033392105251550674, 0.005301845259964466, 0.05675168335437775, 0.008534274064004421, -0.02087627537548542, 0.007197431288659573, 0.0911867767572403, 0.007106376811861992, 0.023889346048235893, -0.029369160532951355, -0.028872501105070114, -0.01634839177131653, -0.06499623507261276, 0.021869594231247902, -0.08198200911283493, -0.06953240185976028, 0.03324310854077339, -0.022333145141601562, 0.030826030299067497, 0.05334128439426422, -0.11694687604904175, 0.03188557177782059, 0.023392686620354652, -0.02582632005214691, -0.00962692592293024, 0.04926867038011551, -0.026505088433623314, 0.03443509340286255, -0.0031351661309599876, 0.04721581190824509, -0.012027449905872345, -0.0035904378164559603, -0.04761313647031784, 0.0626784935593605, -0.03292855620384216, 0.052546627819538116, 0.07065816223621368, -0.010487803258001804, -0.008658438920974731, 0.01698577217757702, -0.025561435148119926, 0.01723410189151764, 0.06072496250271797, 0.034070875495672226, 0.023955566808581352, -0.02243247628211975, -0.014709413051605225, 0.013757482171058655, -0.0443020723760128, 0.06519490480422974, 0.011563899926841259, 0.0009431366343051195, 0.007681674789637327, -0.05191752314567566, 0.00992492213845253, 0.06665176898241043, -0.02864072658121586, 0.013062157668173313, -0.01984984427690506, 0.05751322582364082, -0.014485916122794151, -0.05615568906068802, -0.03440198302268982, 0.06953240185976028, -0.05456637963652611, 0.041487663984298706, 0.0005665028002113104, 0.0027336992789059877, 0.005032821092754602, -0.04661981761455536, -0.03665350750088692, 0.04688470438122749, 0.04075923189520836, 0.0048548514023423195, 0.00502454349771142, 0.0042257485911250114, 0.028706947341561317, 0.04009701684117317, -0.009022656828165054, -0.0055418978445231915, -0.03814348578453064, -0.01110862847417593, 0.0435074158012867, -0.035163529217243195, 0.07211503386497498, 0.014129976741969585, 0.013285654596984386, 0.03542841225862503, 0.015843452885746956, -0.013699538074433804, 0.022763583809137344, -0.0376468263566494, 0.0083687212318182, 0.024948887526988983, -0.012937992811203003, -0.014610081911087036, 0.08463086187839508, -0.04426896199584007, 0.035196639597415924, -0.006994628347456455, -0.04082545265555382, -0.012855215929448605, -0.01095135323703289, -0.04923555999994278, -0.017532097175717354, -0.05181819200515747, 0.01296282559633255, -0.06072496250271797, 0.007449899800121784, 0.04635493457317352, 0.02321057766675949, 0.025942206382751465, 0.014585248194634914, 0.036521065980196, -0.022018592804670334, -0.06065874174237251, 0.0025867708027362823, -0.004664465319365263, 0.02645542286336422, -0.017647985368967056, -0.03609062731266022, -0.03292855620384216, 0.012441332451999187, 0.0529770664870739, -0.005918531678617001, -0.011083795689046383, 0.031090915203094482, -0.05112287029623985, 0.015520624816417694, 0.01259033102542162, -0.03592507168650627, -0.05589080601930618, 0.0245184488594532, -0.04661981761455536, -0.04761313647031784, -0.008799159899353981, 0.015305405482649803, 0.0007625800208188593, -0.059499867260456085, -0.010123586282134056, 0.026471978053450584, -0.018657861277461052, -0.052016858011484146, 0.03041214682161808, -0.0008417352219112217, -0.06261227279901505, 0.03433576226234436, 0.010554024949669838, 0.03668661788105965, 0.05552658811211586, 0.054135940968990326, -0.02330990880727768, -0.017101658508181572, 0.04973221942782402, 0.0031268885359168053, 0.01935318484902382, -0.034137096256017685, 0.0722474753856659, 0.04162010923027992, 0.02511443942785263, -0.008550829254090786, 0.009097155183553696, -0.07330701500177383, -0.0030337648931890726, -0.006191694643348455, 0.004126416984945536, -0.04287831112742424, -0.03436887264251709, 0.05976475402712822, -0.0018262602388858795, -0.03269678354263306, 0.054665710777044296, -0.025909096002578735, -0.014941188506782055, -0.01642289012670517, 0.09251119941473007, 0.012971103191375732, -0.019220741465687752, -0.03741505369544029, -0.017565207555890083, 0.0495997779071331, -0.016373224556446075, 0.023011913523077965, 0.04291142523288727, 0.044169627130031586, 0.008981267921626568, 0.01903863251209259, 0.03602440655231476, 0.06953240185976028, -0.024253563955426216, -0.09218009561300278, -0.034633755683898926, -0.04983155429363251, -0.025528322905302048, -0.02571043185889721, 0.010967908427119255, 0.003424884518608451, 0.08350510150194168, -0.023624461144208908, -0.0741678923368454, -0.00803761463612318, 0.06274471431970596, 0.03857392445206642, -0.0055377590470016, -0.02097560651600361, 0.0062165274284780025, 0.018740637227892876, -0.027250077575445175, -0.07807495445013046, -0.016753997653722763, -0.06840663403272629, 0.021538488566875458, 0.015007409267127514, 0.00430852547287941, -0.00925443135201931, -0.019171075895428658, 0.033541105687618256, -0.05112287029623985, 0.01101757399737835, -0.0015831036726012826, -0.03946791589260101, -0.0007061884389258921, -0.02056172303855419, -0.031239913776516914, 0.026753418147563934, -0.04549405723810196, -0.007913448847830296, -0.0641353577375412, -0.01659672148525715, -0.013956145383417606, 0.11549000442028046, -0.028061289340257645, -0.019833289086818695, -0.037779271602630615, -0.00916337687522173, -0.08542551845312119, 0.0019048979738727212, 0.02402178756892681, -0.06771131604909897, -0.011481123976409435, 0.011191405355930328, -0.04426896199584007, 0.042381651699543, 0.05767878144979477, -0.05009643733501434, -0.005835754796862602, -0.018624749034643173, 0.04175255075097084, 0.062214940786361694, 0.041090335696935654, 0.015562012791633606, -0.02162126451730728, -0.027283189818263054, 0.002095284406095743, 0.04185188189148903, 0.001360641443170607, 0.08992856740951538, -0.0031248191371560097, -0.024849554523825645, -0.03087569586932659, -0.02931949496269226, 0.012532386928796768, -0.06651932746171951, 0.031554464250802994, 0.043176308274269104, 0.043706078082323074, 0.02720041200518608, 0.02825995348393917, 0.0026529920287430286, 0.009146821685135365, -0.040957894176244736, 0.04814291000366211, -0.05781122297048569, -0.012333722785115242, 0.0299817081540823, -0.0005416697822511196, 0.0060592517256736755, 0.0037063253112137318, 0.022134480997920036, 0.009262708947062492, 0.0023943150881677866, 0.04565960913896561, 0.04062678664922714, -0.03913680836558342, 0.00803761463612318, 0.06085740402340889, 0.01903863251209259, -0.018939301371574402, 0.023011913523077965, 0.023475462570786476, 0.01695266179740429, 0.05291084572672844, 0.0011971575440838933, -0.038905031979084015, 0.08032647520303726, -0.03268022835254669, 0.009717980399727821, 0.0122592244297266, 0.058440327644348145, -0.027067970484495163, 0.05112287029623985, 0.028955277055501938, 0.009229598566889763, 0.013956145383417606, 0.03069358691573143, 0.006195833440870047, -0.06800930947065353, -0.0548974834382534, 0.04267964884638786, -0.010090475901961327, -0.00443269032984972, 0.01004908699542284, -0.022415921092033386, -0.01872408203780651, -0.0211908258497715, -0.07065816223621368, -0.019700845703482628, -0.042050547897815704, 0.03479931131005287, 0.035163529217243195, -0.030842585489153862, 0.04165321961045265, 0.015603401698172092, 0.03228290006518364, -0.0005939225666224957, -0.014187920838594437, 0.0010181530378758907, 0.04638804495334625, 0.0067462981678545475, -0.04979844391345978, 0.021588154137134552, -0.018061868846416473, 0.01956840418279171, -0.03191868215799332, -0.054202161729335785, -0.000654453004244715, 0.04748069494962692, -0.02561110071837902, 0.025164106860756874, 0.026753418147563934, 0.018111534416675568, 0.01614145003259182, -0.01720099151134491, -0.042480986565351486, -0.02016439661383629, -0.058970097452402115, -0.01791287027299404, -0.038441482931375504, -0.033855658024549484, -0.04559338837862015, -0.05569214001297951, -0.013285654596984386, -0.005459120962768793, -0.00018236733740195632, 0.01885652355849743, 0.027630850672721863, -0.05042754486203194, -0.02963404543697834, 0.004407857544720173, 0.012126781977713108, -0.019899509847164154, -0.001351329032331705, -0.022763583809137344, 0.04774558171629906, -0.035693299025297165, 0.04387163370847702, 0.005339094903320074, -0.0571490116417408, -0.013658150099217892, 0.017581764608621597, 0.03196834772825241, -0.05065931752324104, -0.02931949496269226, -0.04668603837490082, -0.0285745058208704, 0.006067529786378145, 0.02599187381565571, -0.03748127445578575, -0.05880454182624817, 0.03186901658773422, -0.030296260491013527, -0.006005446892231703, 0.013558818027377129, -0.024286674335598946, -0.02610776014626026, -0.06310892850160599, -0.0014817023184150457, 0.05042754486203194, -0.023194022476673126, -0.049963995814323425, 0.014643192291259766, 0.029799599200487137, -0.009982866235077381, 0.005264596082270145, -0.05764567106962204, 0.03503108397126198, 0.060095857828855515, 0.0005253731505945325, -0.02028028294444084, 0.05648679658770561, -0.00922132097184658, 0.016083506867289543, 0.04165321961045265, -0.03302789106965065, -0.004182291217148304, -0.038375262171030045, -0.00953587144613266, -0.021290158852934837, -0.07502876967191696, 0.002555729588493705, -0.024783333763480186, -0.05989719554781914, 0.047248922288417816, 0.04460006579756737, 0.018260532990098, 0.009204764850437641, -0.02504821866750717, 0.03261400759220123, 0.019336629658937454, -0.030097596347332, 0.026356089860200882, 0.057480115443468094, 0.0027481853030622005, 0.006779409013688564, 0.0064483024179935455, -0.07701540738344193, -0.05191752314567566, -0.022564919665455818, 0.013293932192027569, -0.01465974748134613, -0.023607905954122543, 0.007934143766760826, 0.007992086932063103, -0.03377287834882736, -0.0043623303063213825, 0.04324252903461456, 0.026058094576001167, -0.04916933923959732, 0.004403718747198582, -0.02221725694835186, -0.0005494301440194249, 0.01879030279815197, 0.02147226780653, 0.0010290173813700676, -0.025842875242233276, 0.032018013298511505, 0.022829804569482803, -0.006584883667528629, 0.008906769566237926, -0.001929730991832912, 0.03297822177410126, 0.024203896522521973, -0.010578857734799385, -0.009328930638730526, -0.007226402871310711, -0.02599187381565571, -0.018906190991401672, 0.025594545528292656, 0.055394142866134644, -0.004821740556508303, 0.010661634616553783, -0.019088299944996834, -0.000029715529308305122, -0.06787686794996262, -0.017830094322562218, 0.007640286348760128, -0.016828496009111404, -0.011729453690350056, -0.01907174289226532, -0.024468783289194107, 0.0165718887001276, -0.0017041645478457212, 0.061552729457616806, -0.0015893119852989912, 0.02243247628211975, -0.015669623389840126, -0.05555969849228859, 0.052116189152002335, -0.029501603916287422, 0.004606521222740412, 0.040494345128536224, 0.0541028268635273, -0.029253274202346802, 0.033358994871377945, -0.015479236841201782, 0.011638399213552475, 0.04615626856684685, 0.022068258374929428, -0.019154520705342293, 0.02302846871316433, -0.03188557177782059, -0.00251227174885571, 0.0034497175365686417, 0.0067835478112101555, -0.0054839542135596275, 0.027150746434926987, -0.016679497435688972, -0.022862914949655533, -0.032763004302978516, -0.01738310046494007, 0.03870636969804764, 0.027912290766835213, 0.023078134283423424, 0.02172059752047062 ]
729,152
tables.unimplemented
_g_new
null
def _g_new(self, parentnode, name, init=False): pass
(self, parentnode, name, init=False)
[ 0.0061201187781989574, 0.002772650448605418, 0.03722790256142616, 0.007552936673164368, -0.08960394561290741, 0.03328871354460716, -0.0008284138748422265, 0.07918959856033325, 0.07560544461011887, -0.02378731220960617, 0.005946828052401543, 0.026188021525740623, 0.013990050181746483, 0.02965383417904377, -0.04845375567674637, -0.023381559178233147, 0.00403429102152586, 0.002660645404830575, -0.0693838894367218, -0.025241263210773468, -0.05589257553219795, 0.007514897268265486, 0.04436240717768669, 0.007717773783951998, 0.03151353821158409, 0.05619689077138901, -0.04192788526415825, 0.05041490122675896, 0.0251398254185915, -0.02774341031908989, -0.03330561891198158, -0.08574929088354111, -0.02503838576376438, 0.04456528276205063, 0.06884288042783737, 0.004539369605481625, -0.0732385441660881, 0.03335633873939514, -0.06708461791276932, -0.013837892562150955, 0.08798093348741531, -0.051801227033138275, -0.07432055473327637, -0.021504947915673256, 0.017160002142190933, 0.06992489099502563, 0.09501399844884872, 0.007202128414064646, -0.05491200461983681, -0.006986571941524744, -0.010879271663725376, 0.02769269235432148, 0.005295931361615658, 0.006593497935682535, -0.08561403304338455, 0.06857237964868546, 0.038884732872247696, 0.04777750000357628, 0.010591862723231316, 0.020980847999453545, 0.019019706174731255, 0.041488319635391235, -0.0015553892590105534, -0.04054155945777893, -0.04175882041454315, 0.030144119635224342, -0.0076881879940629005, -0.061505503952503204, -0.011530168354511261, 0.04649261385202408, -0.011952828615903854, 0.00657659163698554, 0.004135729279369116, 0.01795460283756256, 0.03029627725481987, 0.04399046674370766, -0.04172500967979431, 0.000427150895120576, 0.02383803203701973, 0.025291983038187027, -0.04676311835646629, -0.008580001071095467, -0.01802222803235054, 0.016526011750102043, 0.02380421943962574, 0.03851279243826866, -0.00547767523676157, 0.01196973491460085, 0.017160002142190933, -0.028521105647087097, -0.026103489100933075, -0.014218286611139774, 0.009805714711546898, -0.016990937292575836, 0.03345777466893196, -0.023990189656615257, 0.017853163182735443, -0.04300989583134651, 0.0706687718629837, 0.03553726524114609, 0.01226559653878212, -0.018850641325116158, -0.0796629786491394, -0.06992489099502563, 0.0122909564524889, -0.04635736346244812, 0.0007496934267692268, 0.003491172567009926, -0.011749951168894768, 0.005232532508671284, -0.05673789605498314, 0.00108042499050498, 0.04906238615512848, 0.05626451596617699, -0.009687370620667934, -0.006162384524941444, -0.0003782808198593557, 0.01194437500089407, 0.053829994052648544, -0.03543582558631897, 0.0017191701335832477, -0.00101121433544904, -0.07337380200624466, -0.005169133190065622, 0.014429616741836071, 0.015046700835227966, 0.021555665880441666, -0.024243785068392754, 0.040304869413375854, -0.02307724393904209, 0.0668141171336174, 0.019493084400892258, -0.042908456176519394, -0.009230896830558777, 0.013068650849163532, -0.005545300897210836, -0.05460768938064575, 0.015892021358013153, -0.0398314893245697, 0.02390565723180771, -0.01669507473707199, -0.05677171051502228, 0.03621352091431618, 0.024040907621383667, -0.025291983038187027, 0.016483744606375694, -0.01610335148870945, 0.03479338064789772, -0.04040630906820297, -0.019442366436123848, -0.013482858426868916, 0.031175410374999046, 0.04067680984735489, 0.01996646448969841, 0.023499902337789536, 0.001378928660415113, -0.03783653303980827, -0.023990189656615257, 0.017083922401070595, 0.002075261203572154, 0.006521645933389664, 0.02902829833328724, -0.0004942481755279005, -0.027946287766098976, -0.004957803525030613, 0.008436296135187149, 0.02970455400645733, -0.05021202191710472, -0.05555444583296776, 0.01739669032394886, -0.015739863738417625, -0.05991629883646965, -0.024294504895806313, 0.015714503824710846, -0.03153044730424881, 0.03369446471333504, 0.027439095079898834, 0.011513262055814266, 0.01034671999514103, 0.04050774872303009, 0.022417893633246422, 0.016990937292575836, 0.02831822820007801, 0.03678833693265915, 0.03403259441256523, -0.01512277964502573, 0.02197832614183426, 0.015367922373116016, 0.04984008148312569, 0.0004897574544884264, -0.01736287772655487, 0.0024725617840886116, -0.006593497935682535, 0.022958898916840553, 0.06042349338531494, 0.02887614071369171, 0.006390620954334736, 0.03712646663188934, -0.07506443560123444, 0.10853911936283112, 0.023990189656615257, 0.020287686958909035, -0.025291983038187027, -0.07844571769237518, 0.013347607105970383, 0.044159531593322754, -0.01810676045715809, -0.01551162637770176, -0.000988496351055801, -0.018968986347317696, 0.00868989247828722, 0.021403508260846138, 0.040947314351797104, 0.061505503952503204, -0.03672071173787117, -0.051767412573099136, -0.055081069469451904, 0.024142347276210785, 0.008533507585525513, -0.007189448922872543, 0.004940896760672331, 0.04250270128250122, -0.024379035457968712, -0.05589257553219795, -0.0295523963868618, -0.028216790407896042, -0.0002081601123791188, -0.03222360834479332, -0.03817466273903847, -0.0205581896007061, -0.013482858426868916, -0.003093872219324112, 0.012527646496891975, -0.05291704833507538, -0.04774368926882744, -0.04896095022559166, 0.04064299911260605, 0.014023862779140472, -0.030431529507040977, 0.000018590440959087573, -0.031040159985423088, 0.00306639913469553, -0.02838585525751114, 0.0024577686563134193, 0.04040630906820297, 0.008968847803771496, -0.01681341975927353, 0.033153459429740906, -0.0038842465728521347, 0.027337657287716866, -0.050482526421546936, -0.06522490829229355, -0.06508965790271759, 0.0062215570360422134, 0.000896039477083832, 0.018225105479359627, -0.03922285884618759, -0.01876610890030861, 0.031141597777605057, -0.014159114100039005, -0.017016297206282616, 0.02131897769868374, -0.031141597777605057, 0.051158782094717026, 0.02833513543009758, -0.012375488877296448, 0.057617027312517166, -0.029400238767266273, -0.053018487989902496, -0.02118372544646263, 0.08365289121866226, 0.05859760195016861, 0.026593774557113647, 0.0031805175822228193, 0.00994096603244543, -0.10549596697092056, -0.03878329321742058, 0.02316177450120449, -0.05998392403125763, -0.04977245628833771, 0.02896067127585411, 0.02067653276026249, 0.001785739092156291, 0.06853856891393661, -0.09724564105272293, -0.019171863794326782, 0.009746542200446129, 0.013102464377880096, -0.026745932176709175, -0.0361458957195282, -0.08500540256500244, 0.06759180873632431, -0.020879410207271576, 0.06657742708921432, 0.03672071173787117, -0.011724592186510563, 0.009763449430465698, 0.08169174939393997, -0.050279650837183, 0.013990050181746483, 0.08345001935958862, -0.07736370712518692, -0.019679056480526924, 0.00370038952678442, -0.033778999000787735, 0.006242690142244101, -0.005202946253120899, 0.03411712497472763, 0.008918128907680511, -0.005989094264805317, -0.042266011238098145, 0.060288239270448685, -0.004235054366290569, 0.055655885487794876, 0.0056044734083116055, 0.012248690240085125, 0.05142928287386894, -0.08108311891555786, 0.04781131446361542, 0.05271417275071144, -0.01286577433347702, -0.02632327377796173, -0.050482526421546936, -0.01419292762875557, -0.03929048404097557, -0.01002549845725298, 0.008951941505074501, 0.0359768308699131, -0.033187273889780045, 0.035740140825510025, -0.029890524223446846, -0.0005536847747862339, 0.024379035457968712, -0.022029045969247818, -0.0722917914390564, 0.06059255450963974, -0.007240167818963528, -0.03411712497472763, -0.03688977658748627, -0.07675507664680481, 0.021572573110461235, 0.013728001154959202, -0.0764845758676529, 0.002700798213481903, 0.001320812851190567, -0.02887614071369171, 0.04571491852402687, -0.04977245628833771, 0.052409857511520386, -0.022181203588843346, -0.051767412573099136, -0.011572434566915035, -0.00810239464044571, 0.03712646663188934, 0.04331421107053757, 0.016889499500393867, 0.009442226961255074, 0.034472160041332245, -0.03147972747683525, 0.01260372530668974, 0.01607799157500267, 0.004120936151593924, 0.036314956843853, -0.014218286611139774, -0.0013894952135160565, -0.0464249886572361, 0.05470912903547287, 0.05481056496500969, -0.014750838279724121, -0.04743937402963638, 0.04260414093732834, -0.09230897575616837, -0.019746681675314903, 0.01812366582453251, -0.020203154534101486, -0.01191056240350008, -0.008313724771142006, -0.029805991798639297, -0.02067653276026249, -0.1056988462805748, -0.03232504799962044, 0.0053466507233679295, 0.030431529507040977, 0.002354216994717717, 0.0012595271691679955, -0.03271389380097389, 0.07465868443250656, 0.08297663927078247, 0.055013444274663925, 0.005456542130559683, -0.03142900764942169, -0.007104916963726282, 0.04453147202730179, 0.03989911451935768, -0.00157229567412287, -0.01060876902192831, 0.04689836874604225, -0.06657742708921432, -0.05095590651035309, 0.005680552218109369, 0.0027557441499084234, -0.016356946900486946, -0.06306089460849762, -0.003034699708223343, -0.004936670418828726, -0.041488319635391235, 0.039662428200244904, 0.057617027312517166, -0.0031530444975942373, -0.025359608232975006, 0.03295058384537697, 0.01261217799037695, -0.048622820526361465, -0.013939331285655499, 0.01222333125770092, -0.0010434421710669994, 0.028166070580482483, 0.02263767644762993, 0.000298239552648738, -0.033728279173374176, -0.055757325142621994, 0.05920623242855072, 0.05024583637714386, 0.07154791057109833, 0.031124692410230637, 0.031226130202412605, -0.03553726524114609, -0.01993265189230442, -0.03658546134829521, 0.015080513432621956, -0.04963720589876175, 0.0387156680226326, 0.060863059014081955, 0.000609158887527883, 0.014218286611139774, -0.02182616852223873, -0.017160002142190933, -0.02701643481850624, -0.020997755229473114, 0.062181759625673294, 0.03533438593149185, -0.035807766020298004, 0.00042556592961773276, -0.0011506922310218215, -0.027506722137331963, -0.012975665740668774, 0.009839528240263462, 0.020980847999453545, 0.034320004284381866, -0.03308583423495293, 0.029789086431264877, 0.04341564700007439, 0.05842853710055351, 0.021488040685653687, -0.05528394505381584, 0.006665350403636694, -0.02258695662021637, -0.012722070328891277, 0.00003394489249330945, 0.014159114100039005, -0.064751535654068, 0.07046590000391006, 0.03783653303980827, 0.02121753804385662, -0.03295058384537697, 0.04767606407403946, 0.033846624195575714, -0.022367173805832863, -0.019509991630911827, -0.046594053506851196, 0.0128911342471838, 0.03367755934596062, -0.022671489045023918, -0.06052492931485176, -0.004505557008087635, -0.05528394505381584, -0.04713505879044533, -0.054404813796281815, -0.028098445385694504, -0.03540201112627983, -0.0004897574544884264, 0.0014317611930891871, 0.04503866285085678, 0.029248081147670746, -0.0361458957195282, -0.01608644425868988, 0.017853163182735443, -0.020913222804665565, -0.0028128032572567463, -0.004454837646335363, -0.06647598743438721, -0.025275075808167458, -0.014759291894733906, 0.03489482030272484, 0.024801695719361305, 0.02380421943962574, 0.03617970645427704, -0.020372217521071434, -0.010524237528443336, -0.03793797269463539, -0.017143094912171364, 0.015520079992711544, -0.042130760848522186, -0.01382098626345396, 0.017531942576169968, -0.026914997026324272, -0.02956930361688137, 0.015841301530599594, -0.026035863906145096, 0.02519054338335991, 0.04267176613211632, -0.015224217437207699, 0.020406031981110573, 0.019831214100122452, 0.004873271100223064, -0.00932388287037611, -0.00897730141878128, 0.020828690379858017, -0.024176159873604774, -0.027253124862909317, 0.08818381279706955, 0.027997007593512535, -0.012341675348579884, -0.051767412573099136, 0.0017899656668305397, 0.02907901629805565, -0.030837282538414, 0.01057495642453432, 0.017785537987947464, 0.03489482030272484, 0.025917518883943558, -0.02502148039638996, 0.017886977642774582, 0.052578918635845184, -0.03672071173787117, 0.030532967299222946, 0.044091906398534775, 0.05978104844689369, 0.011031429283320904, -0.040947314351797104, 0.014784651808440685, -0.020304592326283455, 0.01323771569877863, 0.015756769105792046, -0.0048310053534805775, 0.03489482030272484, 0.012967213056981564, -0.03421856462955475, 0.02583298645913601, -0.03269698843359947, 0.0414545051753521, -0.03173332288861275, -0.06069399416446686, -0.0030706259422004223, 0.04635736346244812, -0.0036877095699310303, -0.021674010902643204, -0.043517086654901505, 0.024717165157198906, 0.020152434706687927, 0.0295523963868618, 0.025393420830368996, 0.011682325974106789, -0.009881793521344662, 0.024649538099765778, 0.007079557050019503, -0.01283196173608303, 0.031243037432432175, 0.03225742280483246, 0.0346919447183609, 0.028571825474500656, -0.0122909564524889, 0.04456528276205063, 0.006652670446783304, -0.0029332612175494432, -0.018292730674147606, -0.035672515630722046, 0.040812063962221146, -0.014564868062734604, -0.06235082074999809, -0.02371968701481819, 0.007041517645120621, -0.03274770826101303, 0.03935811296105385, -0.03426928445696831, 0.035063885152339935, -0.039560988545417786, 0.053796179592609406, 0.04006817936897278, 0.0020805445965379477, 0.012062720023095608, 0.023398464545607567, 0.013744907453656197, -0.0257822684943676, -0.03335633873939514, 0.007497990503907204, 0.04639117419719696, -0.029264986515045166, -0.015418641269207, -0.03423546999692917, -0.050482526421546936, 0.015545439906418324, -0.03530057519674301, 0.055655885487794876, -0.012561459094285965, -0.001837514922954142, 0.003858886891975999, 0.003459473140537739, 0.0055664340034127235, -0.003493285970762372, 0.03803941234946251, -0.03729553148150444, -0.01674579456448555, -0.026255646720528603, -0.04044011980295181, -0.008529281243681908, -0.04192788526415825, 0.02199523337185383, 0.05082065239548683, 0.011792217381298542, -0.07114215195178986, -0.010456611402332783, -0.00008393765892833471, 0.02182616852223873, -0.05609545111656189, -0.05203791707754135, 0.03584158048033714, -0.009154818020761013, -0.014902995899319649, 0.012967213056981564, 0.023499902337789536, -0.06099830940365791, -0.07405005395412445, -0.072629913687706, 0.025985144078731537, 0.001972766127437353, 0.011716138571500778, -0.01617942936718464, 0.012274050153791904, 0.06630691885948181, -0.06454865634441376, -0.010820099152624607, -0.005807350389659405, -0.043483275920152664, -0.0245819129049778, -0.05741415172815323, 0.04189407080411911, -0.012451567687094212, -0.03399877995252609, -0.046594053506851196, 0.01323771569877863, 0.04206313565373421, 0.016399212181568146, -0.013423685915768147, 0.025427233427762985, 0.02583298645913601, -0.06522490829229355, 0.020372217521071434, 0.0023309707175940275, -0.007282434031367302, 0.01866467110812664, 0.014632493257522583, 0.03986530378460884, 0.06099830940365791, 0.0028402761090546846, 0.03533438593149185, 0.036416396498680115, -0.042130760848522186, -0.03173332288861275, -0.0005843276157975197, -0.0693838894367218, -0.0011823916574940085, 0.0025634337216615677, -0.00897730141878128, -0.024852415546774864, -0.055689699947834015, 0.03952717408537865, 0.06590116769075394, 0.029991962015628815, 0.06336520612239838, 0.004266753792762756, 0.043449461460113525, 0.01286577433347702, -0.06434577703475952, 0.04950195550918579, 0.0478789396584034, -0.027456002309918404, -0.005815803539007902, 0.059578172862529755, -0.026712119579315186, -0.008584227412939072, -0.0005690061952918768, 0.05193647742271423, 0.045376792550086975, -0.025494858622550964, 0.02694880962371826, -0.009585931897163391, -0.0346919447183609, -0.01744741015136242, 0.02694880962371826, 0.05555444583296776, 0.014607134275138378, -0.04699980467557907, -0.01615406945347786, 0.0206427201628685, -0.03308583423495293, -0.01031290739774704, 0.015892021358013153, -0.020321499556303024, -0.0018354016356170177, -0.02710096724331379, -0.00009694766777101904, -0.007168315816670656, -0.0020139755215495825, -0.01684723235666752, 0.004243507515639067, 0.01451414916664362, 0.024818602949380875, -0.04314514622092247, -0.034320004284381866, 0.02967074140906334, 0.011809123679995537, 0.0719536617398262, 0.014438070356845856, 0.021031567826867104, 0.009340789169073105, -0.008288364857435226, -0.07587594538927078, 0.001727623282931745, -0.046796929091215134, -0.021471135318279266, 0.03800559788942337, -0.05626451596617699, -0.030144119635224342, 0.00961974449455738, -0.04253651574254036, 0.009476040489971638, 0.02515673078596592, -0.015765223652124405, -0.0013736453838646412, -0.059442922472953796, 0.040913499891757965, -0.013998503796756268, 0.02382112480700016, -0.012113438919186592, 0.022215016186237335, 0.007806532550603151, -0.008858956396579742, -0.04814944043755531, 0.09501399844884872, 0.03678833693265915, 0.0054480889812111855, 0.008833596482872963, 0.026559961959719658, -0.03398187458515167, -0.027489814907312393, 0.018411075696349144, 0.021488040685653687, -0.003034699708223343, -0.00997477862983942, -0.017117734998464584, -0.026204928755760193, 0.026204928755760193, -0.01739669032394886, 0.018580138683319092, 0.03350849449634552, 0.05528394505381584, 0.017117734998464584 ]
729,153
tables.unimplemented
_g_open
null
def _g_open(self): return 0
(self)
[ 0.020423363894224167, -0.06723261624574661, -0.008583981543779373, 0.0957430899143219, 0.04060685634613037, -0.005302878562361002, 0.0034588647540658712, 0.0680207684636116, -0.023387493565678596, -0.06500523537397385, -0.007684462238103151, -0.034661464393138885, 0.012473329901695251, 0.0383109413087368, -0.029726959764957428, -0.00976620614528656, -0.03529541194438934, 0.0006146713276393712, -0.011231136508286, -0.01936107501387596, -0.03944176435470581, 0.040880996733903885, 0.027533847838640213, -0.07525118440389633, -0.034164588898420334, 0.09540041536092758, -0.039715904742479324, 0.030823517590761185, 0.010417286306619644, -0.07161884754896164, -0.053354326635599136, -0.06575912237167358, 0.03329076990485191, 0.028270596638321877, 0.018881332129240036, 0.008104237727820873, -0.007890066131949425, 0.017039459198713303, -0.04996185377240181, -0.05037306249141693, 0.006862044800072908, -0.03618636354804039, 0.02642015740275383, -0.013021607883274555, 0.00810852088034153, 0.008249874226748943, -0.018161715939641, -0.03433592617511749, 0.04458187520503998, -0.011145468801259995, 0.027533847838640213, 0.03305089846253395, -0.028202062472701073, -0.011599511839449406, -0.06586192548274994, 0.08141931891441345, 0.026677163317799568, 0.0201149582862854, -0.024227043613791466, -0.02950422279536724, -0.003167591756209731, 0.008378377184271812, 0.029898297041654587, -0.01761343888938427, 0.027328243479132652, 0.013475650921463966, -0.007911483757197857, -0.014409437775611877, -0.013826891779899597, 0.053354326635599136, -0.005174375604838133, 0.007059082388877869, -0.0363919660449028, -0.005452798213809729, 0.013038741424679756, 0.006215247791260481, -0.06414855271577835, 0.021776925772428513, -0.025700543075799942, 0.02470678836107254, 0.029915431514382362, -0.0024779606610536575, 0.035158343613147736, 0.04766593873500824, 0.03054937720298767, 0.0019318241393193603, 0.0766218826174736, 0.022445140406489372, -0.04310837760567665, 0.013192945159971714, -0.017424967139959335, 0.05654119327664375, -0.003852939698845148, -0.017853310331702232, 0.02650582604110241, -0.09313876181840897, -0.03711158409714699, 0.028116393834352493, 0.00309905712492764, -0.04437626898288727, -0.055444635450839996, -0.027019836008548737, -0.01679958775639534, -0.053902603685855865, 0.015274688601493835, -0.07374342530965805, 0.013210078701376915, 0.00982617400586605, -0.043005574494600296, -0.011753714643418789, -0.09464652836322784, -0.06784943491220474, 0.025803344324231148, 0.06243518367409706, -0.002670714631676674, -0.02383296936750412, 0.038962021470069885, 0.04550709202885628, 0.02720830775797367, -0.020269161090254784, -0.0622638463973999, 0.05612998455762863, -0.04920797049999237, -0.03438732400536537, 0.07888352870941162, 0.06582765281200409, 0.019583813846111298, 0.00352097419090569, 0.0785408541560173, 0.0024372681509703398, 0.057706285268068314, 0.002839909866452217, -0.0033710545394569635, -0.00810852088034153, 0.027516713365912437, 0.0018600767944008112, 0.005349996034055948, 0.013355715200304985, -0.00815135519951582, 0.04728899896144867, -0.030617913231253624, -0.05873430520296097, -0.03469573333859444, -0.008404077030718327, -0.029041612520813942, 0.10102026164531708, 0.02534073404967785, 0.01648261398077011, -0.0008995189564302564, -0.023730168119072914, 0.06805503368377686, -0.033958982676267624, -0.010194548405706882, 0.03940749913454056, -0.0007795831188559532, 0.012978773564100266, -0.018847065046429634, 0.004433343652635813, 0.0003493667463771999, -0.03978443890810013, -0.015591662377119064, 0.0229591503739357, -0.027311109006404877, -0.019052669405937195, -0.013004474341869354, 0.002082814695313573, -0.033958982676267624, 0.0036644688807427883, -0.0060567609034478664, 0.008275575004518032, 0.02909301407635212, 0.012567564845085144, -0.007872932590544224, -0.03310230001807213, 0.010588623583316803, 0.06586192548274994, -0.021108711138367653, 0.015643063932657242, 0.0015762998955324292, 0.04965344816446304, -0.005191509611904621, -0.00305193942040205, -0.053320057690143585, 0.03937323018908501, 0.022445140406489372, 0.07127617299556732, 0.04619244113564491, -0.05246337503194809, 0.06476536393165588, 0.00376084609888494, -0.025015193969011307, 0.009149393066763878, 0.02354169636964798, -0.01410959754139185, 0.02328469045460224, -0.011419607326388359, -0.03217707946896553, 0.027225440368056297, -0.03604929521679878, 0.08964349329471588, 0.01264466717839241, 0.03005249984562397, -0.026351623237133026, -0.022719278931617737, -0.007924334146082401, 0.014889180660247803, 0.02528933435678482, -0.05355992913246155, 0.017167963087558746, 0.03707731515169144, -0.04118940234184265, -0.04896809905767441, -0.01978941820561886, 0.0747714415192604, 0.03577515482902527, -0.03190293908119202, -0.010956997983157635, 0.02328469045460224, -0.049105171114206314, 0.028527602553367615, 0.011119768023490906, 0.04252583160996437, -0.06438842415809631, -0.04913943633437157, 0.0054399482905864716, -0.02767091803252697, 0.03707731515169144, 0.01475211139768362, -0.008712483569979668, 0.014332335442304611, -0.0048188515938818455, -0.03961310163140297, -0.016850989311933517, 0.013903993181884289, -0.002225238597020507, -0.023421760648489, -0.0006815997767262161, 0.026351623237133026, -0.04382799193263054, -0.025186531245708466, -0.0047288998030126095, -0.0066778576001524925, 0.03325650095939636, 0.04746033623814583, -0.00239443383179605, -0.025563472881913185, -0.0018975567072629929, 0.025614874437451363, 0.042799968272447586, 0.026488691568374634, 0.027859387919306755, -0.050064656883478165, -0.049105171114206314, -0.02145138569176197, -0.05146962031722069, -0.06106448918581009, -0.058700039982795715, -0.0028934527654200792, -0.013175811618566513, 0.007448873948305845, -0.008823852986097336, 0.0574321448802948, -0.01778477430343628, 0.0023794418666511774, 0.03258828818798065, 0.007881499826908112, 0.07059082388877869, -0.046226710081100464, 0.03694024682044983, -0.02116011269390583, 0.12541864812374115, 0.04235449433326721, -0.047563135623931885, 0.000962164078373462, -0.04955064505338669, -0.07017961144447327, 0.03214281052350998, 0.009354997426271439, -0.04403359442949295, -0.03748852387070656, 0.05098987743258476, 0.0700082778930664, -0.02249654196202755, 0.04711766168475151, -0.08025422692298889, 0.0017069443129003048, -0.0020067840814590454, -0.01133393868803978, -0.05153815448284149, -0.036666106432676315, -0.01735643297433853, 0.07189298421144485, 0.05263471230864525, 0.0402299165725708, 0.06671860814094543, 0.011231136508286, 0.011162602342665195, 0.025015193969011307, -0.0036280599888414145, 0.03329076990485191, 0.0201149582862854, -0.021845461800694466, -0.057911887764930725, 0.02467252127826214, -0.03793400153517723, 0.0039107659831643105, 0.01694522425532341, -0.009586302563548088, -0.028356265276670456, 0.027448179200291634, -0.026488691568374634, 0.030994853004813194, 0.015908636152744293, 0.030326640233397484, -0.00899518933147192, -0.007650194689631462, -0.019498145207762718, 0.019086936488747597, 0.021211514249444008, 0.04865969344973564, -0.022822082042694092, 0.05208643153309822, 0.022633610293269157, 0.0036773192696273327, -0.010220249183475971, 0.024192776530981064, 0.04732326418161392, 0.041806213557720184, -0.013124410063028336, -0.01679958775639534, -0.07888352870941162, -0.016465481370687485, 0.025683408603072166, -0.03335930407047272, -0.02950422279536724, 0.023558830842375755, 0.00928646232932806, -0.07819817960262299, -0.014263801276683807, -0.07045375555753708, -0.02450118400156498, 0.01944674365222454, -0.04454760625958443, -0.03325650095939636, -0.002585046226158738, 0.006922012660652399, 0.042011819779872894, -0.043005574494600296, 0.05688386783003807, -0.08450338244438171, 0.0075131249614059925, 0.02319902367889881, -0.06586192548274994, 0.004109945148229599, -0.0013557035708799958, -0.015137619338929653, 0.013938261196017265, 0.018607191741466522, 0.04735753312706947, 0.03927042707800865, -0.0005116013926453888, 0.008952355943620205, -0.04064112529158592, -0.011145468801259995, -0.04091526195406914, -0.04331398010253906, -0.010066045448184013, 0.011145468801259995, -0.005898274481296539, 0.00860539823770523, 0.0032703939359635115, -0.06469683349132538, -0.0297098271548748, 0.05475929006934166, -0.028750339522957802, 0.011016965843737125, 0.019001267850399017, -0.0031568831764161587, -0.036254897713661194, -0.03246835246682167, 0.013218645937740803, 0.006733541842550039, 0.014452271163463593, -0.011111200787127018, -0.030121035873889923, -0.04194328561425209, -0.021211514249444008, 0.02304481901228428, 0.03243408352136612, -0.03872215002775192, 0.030446575954556465, -0.002788508776575327, 0.026437291875481606, 0.06202397495508194, 0.02467252127826214, -0.00248866924084723, 0.04043551906943321, -0.02767091803252697, 0.01020311564207077, 0.020252026617527008, 0.001475639408454299, 0.00224879733286798, -0.06524510681629181, 0.028579002246260643, 0.0004958062781952322, -0.0004543106188066304, 0.017253629863262177, -0.009483500383794308, 0.0022209552116692066, -0.03171446919441223, -0.04608963802456856, 0.011016965843737125, -0.07785551249980927, -0.012327693402767181, 0.010066045448184013, -0.011239703744649887, -0.014520806260406971, 0.02842479944229126, 0.024518316611647606, 0.048762496560811996, -0.02287348173558712, 0.03988724201917648, 0.0373171865940094, 0.038962021470069885, -0.019463878124952316, -0.021725524216890335, -0.012096388265490532, 0.016311276704072952, 0.021896861493587494, 0.03188580647110939, -0.04612390697002411, 0.04800861328840256, 0.039750173687934875, -0.0007795831188559532, -0.013415683060884476, 0.026951301842927933, -0.029521355405449867, -0.0148549135774374, -0.019086936488747597, 0.0631890669465065, 0.05818602815270424, -0.006553638260811567, 0.014846346341073513, -0.0015837958781048656, 0.06798650324344635, -0.07573093473911285, 0.001616992405615747, 0.02792792208492756, 0.05938538536429405, 0.03289669379591942, -0.050270259380340576, 0.014991982840001583, 0.019669482484459877, 0.013038741424679756, -0.0402299165725708, -0.026745697483420372, -0.08840986341238022, 0.041463542729616165, -0.002139570191502571, -0.03443872556090355, -0.02032056264579296, 0.06945999711751938, -0.025974681600928307, -0.059076979756355286, 0.002839909866452217, 0.0459868386387825, 0.04437626898288727, 0.006549354642629623, -0.033993251621723175, -0.004007142968475819, -0.017887577414512634, 0.029607024043798447, -0.03889348730444908, -0.053697001188993454, -0.011599511839449406, -0.009937543421983719, -0.03598075732588768, 0.006416568532586098, 0.015994304791092873, -0.03786546736955643, -0.00698198052123189, -0.08217319846153259, 0.02174265868961811, 0.0641828179359436, -0.024603985249996185, -0.021399984136223793, 0.0174678023904562, -0.04427346587181091, -0.010562922805547714, -0.06469683349132538, 0.05150388553738594, 0.021485652774572372, -0.03430165722966194, -0.04324544593691826, 0.10574916750192642, 0.04382799193263054, -0.04091526195406914, 0.003452439559623599, -0.022547941654920578, -0.04787154495716095, -0.008652515709400177, -0.0035488165449351072, -0.06401148438453674, 0.00951776746660471, -0.01602000556886196, -0.02002928964793682, 0.009749072603881359, -0.02032056264579296, -0.010682858526706696, 0.001290381420403719, -0.005919691640883684, 0.025152264162898064, 0.0047888676635921, 0.032279882580041885, 0.03270822390913963, -0.010314484126865864, 0.025614874437451363, 0.004454760812222958, -0.03060077875852585, 0.00351669080555439, 0.06685567647218704, -0.06908305734395981, 0.026317356154322624, -0.08141931891441345, -0.04060685634613037, -0.05397113785147667, -0.022016797214746475, 0.05537610128521919, -0.002223096787929535, 0.05355992913246155, 0.049893319606781006, 0.013886859640479088, 0.038756418973207474, -0.007059082388877869, -0.009406398050487041, -0.0033046614844352007, 0.033787645399570465, -0.02313048765063286, -0.06562205404043198, -0.00022006088693160564, 0.012610399164259434, -0.022685011848807335, 0.00436695059761405, -0.009029457345604897, 0.02258221060037613, -0.010083178989589214, 0.02002928964793682, -0.054073940962553024, 0.07826671749353409, -0.01994362100958824, 0.07189298421144485, -0.006078178063035011, 0.02400430664420128, -0.025117997080087662, 0.03496987000107765, 0.045301489531993866, 0.049516379833221436, -0.03580942377448082, 0.011051232926547527, -0.05146962031722069, 0.016465481370687485, -0.015403191559016705, -0.0564383901655674, -0.0058725737035274506, -0.04608963802456856, -0.0526004433631897, 0.01831592060625553, 0.040880996733903885, 0.004741750191897154, 0.015891501680016518, 0.0012753894552588463, -0.01732216589152813, 0.05225776880979538, -0.013552752323448658, 0.01406676322221756, -0.02741391211748123, -0.014726410619914532, 0.060619011521339417, -0.014769244939088821, -0.043005574494600296, -0.019669482484459877, -0.02842479944229126, -0.004994472023099661, 0.021211514249444008, -0.03289669379591942, 0.027396777644753456, -0.02141711860895157, 0.02299341931939125, -0.031611666083335876, -0.0282191950827837, 0.00619811424985528, -0.03034377284348011, -0.0001961004891199991, -0.1073254644870758, -0.016499748453497887, 0.0373171865940094, 0.04502734914422035, -0.026677163317799568, 0.019138338044285774, -0.00454042898491025, -0.013013041578233242, 0.027036970481276512, -0.0138782924041152, -0.012670367024838924, 0.0026193135417997837, 0.012370527721941471, 0.03868788108229637, 0.02266787737607956, -0.012259158305823803, 0.015531694516539574, -0.03060077875852585, -0.030326640233397484, -0.052326302975416183, -0.018127448856830597, -0.060379140079021454, 0.07223565876483917, 0.016936657950282097, 0.03752279281616211, 0.053902603685855865, 0.09163100272417068, -0.032331280410289764, 0.015523127280175686, -0.002514369785785675, 0.001689810655079782, 0.0013803333276882768, 0.014657875522971153, 0.002223096787929535, 0.043005574494600296, -0.005182942841202021, 0.010682858526706696, -0.011368206702172756, 0.009791906923055649, 0.04841982200741768, -0.00031965048401616514, 0.042971305549144745, -0.06455976516008377, -0.024655386805534363, 0.006091028451919556, -0.03455866128206253, 0.06599899381399155, -0.07525118440389633, 0.0012957357103005052, 0.006433702539652586, -0.08011715859174728, -0.008746751584112644, -0.0411551333963871, -0.0165083147585392, 0.006228098180145025, 0.04841982200741768, -0.046603649854660034, 0.015163320116698742, 0.014906314201653004, 0.032536886632442474, -0.006172413472086191, -0.02182832732796669, -0.02304481901228428, -0.000751205428969115, -0.03327363356947899, -0.00215777475386858, -0.008382660336792469, -0.025512071326375008, -0.017416400834918022, 0.025769077241420746, 0.02432984672486782, 0.01001464482396841, 0.01212208904325962, 0.023061953485012054, -0.047014858573675156, -0.0031997174955904484, -0.010357318446040154, -0.0013460658956319094, 0.012970207259058952, 0.005409964360296726, 0.03618636354804039, -0.02941855415701866, -0.019224004819989204, 0.07710162550210953, 0.03718011826276779, 0.04245729744434357, 0.060619011521339417, -0.03652903810143471, 0.03872215002775192, 0.008866687305271626, -0.06908305734395981, 0.036666106432676315, 0.053697001188993454, -0.03173160180449486, 0.0020517599768936634, 0.04554136097431183, -0.039338964968919754, -0.0393046960234642, 0.02450118400156498, 0.016028571873903275, 0.02095450833439827, -0.08265294134616852, -0.008789585903286934, -0.008943788707256317, 0.006570771802216768, -0.013929693959653378, -0.022633610293269157, 0.034575797617435455, -0.0068577611818909645, 0.04386225715279579, -0.029624158516526222, 0.010434419848024845, -0.03231414780020714, -0.0297098271548748, -0.023850103840231895, -0.0583573654294014, 0.010263083502650261, -0.014769244939088821, -0.03656330332159996, -0.016893822699785233, 0.02804785780608654, 0.025683408603072166, -0.0526004433631897, -0.10095173120498657, 0.02107444405555725, 0.0013203653506934643, 0.016902390867471695, -0.02688276767730713, 0.025392135605216026, 0.036083560436964035, 0.03718011826276779, 0.03356490656733513, -0.017510635778307915, -0.0651080384850502, -0.022051066160202026, -0.0010199903044849634, 0.0005035700160078704, -0.00493450416252017, -0.06493670493364334, -0.07415463030338287, 0.04410213232040405, -0.01602000556886196, -0.01412673108279705, 0.023764435201883316, 0.008798152208328247, 0.007727296557277441, 0.031286127865314484, -0.018058914691209793, -0.00792005006223917, -0.05698666721582413, 0.010511522181332111, 0.0003959489695262164, 0.031491730362176895, 0.02066323533654213, 0.00004611373151419684, -0.01999502256512642, 0.08525726199150085, 0.043553851544857025, -0.0066050393506884575, 0.0659647285938263, 0.02145138569176197, -0.006656440440565348, 0.05883710831403732, -0.03807106986641884, 0.04475321248173714, 0.013304313644766808, 0.027156906202435493, -0.018675727769732475, 0.018590059131383896, -0.0003070679376833141, 0.002467252081260085, -0.010271649807691574, 0.03200574219226837, -0.01578013226389885, -0.006964846979826689 ]
729,162
tables.vlarray
VLArray
This class represents variable length (ragged) arrays in an HDF5 file. Instances of this class represent array objects in the object tree with the property that their rows can have a *variable* number of homogeneous elements, called *atoms*. Like Table datasets (see :ref:`TableClassDescr`), variable length arrays can have only one dimension, and the elements (atoms) of their rows can be fully multidimensional. When reading a range of rows from a VLArray, you will *always* get a Python list of objects of the current flavor (each of them for a row), which may have different lengths. This class provides methods to write or read data to or from variable length array objects in the file. Note that it also inherits all the public attributes and methods that Leaf (see :ref:`LeafClassDescr`) already provides. .. note:: VLArray objects also support compression although compression is only performed on the data structures used internally by the HDF5 to take references of the location of the variable length data. Data itself (the raw data) are not compressed or filtered. Please refer to the `VLTypes Technical Note <https://support.hdfgroup.org/HDF5/doc/TechNotes/VLTypes.html>`_ for more details on the topic. Parameters ---------- parentnode The parent :class:`Group` object. name : str The name of this node in its parent group. atom An `Atom` instance representing the *type* and *shape* of the atomic objects to be saved. title A description for this node (it sets the ``TITLE`` HDF5 attribute on disk). filters An instance of the `Filters` class that provides information about the desired I/O filters to be applied during the life of this object. expectedrows A user estimate about the number of row elements that will be added to the growable dimension in the `VLArray` node. If not provided, the default value is ``EXPECTED_ROWS_VLARRAY`` (see ``tables/parameters.py``). If you plan to create either a much smaller or a much bigger `VLArray` try providing a guess; this will optimize the HDF5 B-Tree creation and management process time and the amount of memory used. .. versionadded:: 3.0 chunkshape The shape of the data chunk to be read or written in a single HDF5 I/O operation. Filters are applied to those chunks of data. The dimensionality of `chunkshape` must be 1. If ``None``, a sensible value is calculated (which is recommended). byteorder The byteorder of the data *on disk*, specified as 'little' or 'big'. If this is not specified, the byteorder is that of the platform. track_times Whether time data associated with the leaf are recorded (object access time, raw data modification time, metadata change time, object birth time); default True. Semantics of these times depend on their implementation in the HDF5 library: refer to documentation of the H5O_info_t data structure. As of HDF5 1.8.15, only ctime (metadata change time) is implemented. .. versionadded:: 3.4.3 .. versionchanged:: 3.0 *parentNode* renamed into *parentnode*. .. versionchanged:: 3.0 The *expectedsizeinMB* parameter has been replaced by *expectedrows*. Examples -------- See below a small example of the use of the VLArray class. The code is available in :file:`examples/vlarray1.py`:: import numpy as np import tables as tb # Create a VLArray: fileh = tb.open_file('vlarray1.h5', mode='w') vlarray = fileh.create_vlarray( fileh.root, 'vlarray1', tb.Int32Atom(shape=()), "ragged array of ints", filters=tb.Filters(1)) # Append some (variable length) rows: vlarray.append(np.array([5, 6])) vlarray.append(np.array([5, 6, 7])) vlarray.append([5, 6, 9, 8]) # Now, read it through an iterator: print('-->', vlarray.title) for x in vlarray: print('%s[%d]--> %s' % (vlarray.name, vlarray.nrow, x)) # Now, do the same with native Python strings. vlarray2 = fileh.create_vlarray( fileh.root, 'vlarray2', tb.StringAtom(itemsize=2), "ragged array of strings", filters=tb.Filters(1)) vlarray2.flavor = 'python' # Append some (variable length) rows: print('-->', vlarray2.title) vlarray2.append(['5', '66']) vlarray2.append(['5', '6', '77']) vlarray2.append(['5', '6', '9', '88']) # Now, read it through an iterator: for x in vlarray2: print('%s[%d]--> %s' % (vlarray2.name, vlarray2.nrow, x)) # Close the file. fileh.close() The output for the previous script is something like:: --> ragged array of ints vlarray1[0]--> [5 6] vlarray1[1]--> [5 6 7] vlarray1[2]--> [5 6 9 8] --> ragged array of strings vlarray2[0]--> ['5', '66'] vlarray2[1]--> ['5', '6', '77'] vlarray2[2]--> ['5', '6', '9', '88'] .. rubric:: VLArray attributes The instance variables below are provided in addition to those in Leaf (see :ref:`LeafClassDescr`). .. attribute:: atom An Atom (see :ref:`AtomClassDescr`) instance representing the *type* and *shape* of the atomic objects to be saved. You may use a *pseudo-atom* for storing a serialized object or variable length string per row. .. attribute:: flavor The type of data object read from this leaf. Please note that when reading several rows of VLArray data, the flavor only applies to the *components* of the returned Python list, not to the list itself. .. attribute:: nrow On iterators, this is the index of the current row. .. attribute:: nrows The current number of rows in the array. .. attribute:: extdim The index of the enlargeable dimension (always 0 for vlarrays).
class VLArray(hdf5extension.VLArray, Leaf): """This class represents variable length (ragged) arrays in an HDF5 file. Instances of this class represent array objects in the object tree with the property that their rows can have a *variable* number of homogeneous elements, called *atoms*. Like Table datasets (see :ref:`TableClassDescr`), variable length arrays can have only one dimension, and the elements (atoms) of their rows can be fully multidimensional. When reading a range of rows from a VLArray, you will *always* get a Python list of objects of the current flavor (each of them for a row), which may have different lengths. This class provides methods to write or read data to or from variable length array objects in the file. Note that it also inherits all the public attributes and methods that Leaf (see :ref:`LeafClassDescr`) already provides. .. note:: VLArray objects also support compression although compression is only performed on the data structures used internally by the HDF5 to take references of the location of the variable length data. Data itself (the raw data) are not compressed or filtered. Please refer to the `VLTypes Technical Note <https://support.hdfgroup.org/HDF5/doc/TechNotes/VLTypes.html>`_ for more details on the topic. Parameters ---------- parentnode The parent :class:`Group` object. name : str The name of this node in its parent group. atom An `Atom` instance representing the *type* and *shape* of the atomic objects to be saved. title A description for this node (it sets the ``TITLE`` HDF5 attribute on disk). filters An instance of the `Filters` class that provides information about the desired I/O filters to be applied during the life of this object. expectedrows A user estimate about the number of row elements that will be added to the growable dimension in the `VLArray` node. If not provided, the default value is ``EXPECTED_ROWS_VLARRAY`` (see ``tables/parameters.py``). If you plan to create either a much smaller or a much bigger `VLArray` try providing a guess; this will optimize the HDF5 B-Tree creation and management process time and the amount of memory used. .. versionadded:: 3.0 chunkshape The shape of the data chunk to be read or written in a single HDF5 I/O operation. Filters are applied to those chunks of data. The dimensionality of `chunkshape` must be 1. If ``None``, a sensible value is calculated (which is recommended). byteorder The byteorder of the data *on disk*, specified as 'little' or 'big'. If this is not specified, the byteorder is that of the platform. track_times Whether time data associated with the leaf are recorded (object access time, raw data modification time, metadata change time, object birth time); default True. Semantics of these times depend on their implementation in the HDF5 library: refer to documentation of the H5O_info_t data structure. As of HDF5 1.8.15, only ctime (metadata change time) is implemented. .. versionadded:: 3.4.3 .. versionchanged:: 3.0 *parentNode* renamed into *parentnode*. .. versionchanged:: 3.0 The *expectedsizeinMB* parameter has been replaced by *expectedrows*. Examples -------- See below a small example of the use of the VLArray class. The code is available in :file:`examples/vlarray1.py`:: import numpy as np import tables as tb # Create a VLArray: fileh = tb.open_file('vlarray1.h5', mode='w') vlarray = fileh.create_vlarray( fileh.root, 'vlarray1', tb.Int32Atom(shape=()), "ragged array of ints", filters=tb.Filters(1)) # Append some (variable length) rows: vlarray.append(np.array([5, 6])) vlarray.append(np.array([5, 6, 7])) vlarray.append([5, 6, 9, 8]) # Now, read it through an iterator: print('-->', vlarray.title) for x in vlarray: print('%s[%d]--> %s' % (vlarray.name, vlarray.nrow, x)) # Now, do the same with native Python strings. vlarray2 = fileh.create_vlarray( fileh.root, 'vlarray2', tb.StringAtom(itemsize=2), "ragged array of strings", filters=tb.Filters(1)) vlarray2.flavor = 'python' # Append some (variable length) rows: print('-->', vlarray2.title) vlarray2.append(['5', '66']) vlarray2.append(['5', '6', '77']) vlarray2.append(['5', '6', '9', '88']) # Now, read it through an iterator: for x in vlarray2: print('%s[%d]--> %s' % (vlarray2.name, vlarray2.nrow, x)) # Close the file. fileh.close() The output for the previous script is something like:: --> ragged array of ints vlarray1[0]--> [5 6] vlarray1[1]--> [5 6 7] vlarray1[2]--> [5 6 9 8] --> ragged array of strings vlarray2[0]--> ['5', '66'] vlarray2[1]--> ['5', '6', '77'] vlarray2[2]--> ['5', '6', '9', '88'] .. rubric:: VLArray attributes The instance variables below are provided in addition to those in Leaf (see :ref:`LeafClassDescr`). .. attribute:: atom An Atom (see :ref:`AtomClassDescr`) instance representing the *type* and *shape* of the atomic objects to be saved. You may use a *pseudo-atom* for storing a serialized object or variable length string per row. .. attribute:: flavor The type of data object read from this leaf. Please note that when reading several rows of VLArray data, the flavor only applies to the *components* of the returned Python list, not to the list itself. .. attribute:: nrow On iterators, this is the index of the current row. .. attribute:: nrows The current number of rows in the array. .. attribute:: extdim The index of the enlargeable dimension (always 0 for vlarrays). """ # Class identifier. _c_classid = 'VLARRAY' @lazyattr def dtype(self): """The NumPy ``dtype`` that most closely matches this array.""" return self.atom.dtype @property def shape(self): """The shape of the stored array.""" return (self.nrows,) @property def size_on_disk(self): """ The HDF5 library does not include a function to determine size_on_disk for variable-length arrays. Accessing this attribute will raise a NotImplementedError. """ raise NotImplementedError('size_on_disk not implemented for VLArrays') @property def size_in_memory(self): """ The size of this array's data in bytes when it is fully loaded into memory. .. note:: When data is stored in a VLArray using the ObjectAtom type, it is first serialized using pickle, and then converted to a NumPy array suitable for storage in an HDF5 file. This attribute will return the size of that NumPy representation. If you wish to know the size of the Python objects after they are loaded from disk, you can use this `ActiveState recipe <http://code.activestate.com/recipes/577504/>`_. """ return self._get_memory_size() def __init__(self, parentnode, name, atom=None, title="", filters=None, expectedrows=None, chunkshape=None, byteorder=None, _log=True, track_times=True): self._v_version = None """The object version of this array.""" self._v_new = new = atom is not None """Is this the first time the node has been created?""" self._v_new_title = title """New ti
(parentnode, name, atom=None, title='', filters=None, expectedrows=None, chunkshape=None, byteorder=None, _log=True, track_times=True)
[ 0.04818424955010414, -0.025962019339203835, -0.06688319891691208, 0.056018125265836716, 0.022143496200442314, -0.0029426247347146273, -0.057435307651758194, -0.010077751241624355, -0.03476036712527275, -0.036453116685152054, -0.029662443324923515, -0.04668833315372467, 0.005914773792028427, 0.009999019093811512, -0.018885942175984383, 0.0272414218634367, 0.024111807346343994, 0.02712332271039486, 0.01118000503629446, 0.08707807213068008, -0.026985540986061096, -0.014171837829053402, 0.003466687398031354, 0.05125481262803078, 0.04377523064613342, -0.019938988611102104, 0.03041040152311325, 0.02306860312819481, 0.014201362617313862, 0.003978448454290628, -0.07026869803667068, -0.04082276672124863, -0.04346030205488205, 0.017970677465200424, -0.005343963857740164, -0.04960143193602562, 0.022281277924776077, -0.007248304784297943, -0.018324973061680794, 0.05731721222400665, 0.02165141887962818, -0.06058460846543312, 0.023836243897676468, -0.03379589691758156, 0.006333040073513985, 0.028166526928544044, 0.02779254876077175, -0.020431065931916237, -0.06247418373823166, 0.008660567924380302, 0.0025465020444244146, 0.0030533422250300646, 0.010461571626365185, 0.006190337706357241, -0.049089670181274414, 0.06152939423918724, 0.022458426654338837, 0.02039170078933239, 0.006938295438885689, -0.009123120456933975, -0.016386186704039574, -0.004955222364515066, 0.04586164280772209, -0.012321625836193562, -0.04645213484764099, 0.02200571447610855, -0.012685762718319893, 0.027635084465146065, -0.02074599638581276, -0.016740484163165092, -0.04357840120792389, 0.00442131794989109, 0.040389738976955414, 0.018226558342576027, 0.003107470693066716, 0.06916644424200058, -0.04515305161476135, 0.01863006129860878, -0.01836434006690979, -0.01171144936233759, 0.04660959914326668, 0.053026292473077774, 0.0724732056260109, -0.0019683109130710363, 0.017586857080459595, 0.005358726251870394, -0.006229703780263662, 0.06896960735321045, 0.04271234571933746, 0.0026965858414769173, 0.016022050753235817, 0.03554769232869148, -0.02706427313387394, 0.04298790916800499, -0.023029236122965813, -0.05019192397594452, 0.008685171604156494, -0.07353609055280685, -0.00900502223521471, 0.006037793587893248, 0.00567857688292861, -0.03444543853402138, 0.03588230535387993, -0.022202545776963234, -0.055663831532001495, 0.0033338265493512154, -0.027950013056397438, 0.034780051559209824, 0.00885739829391241, 0.02115934155881405, -0.028166526928544044, 0.04664896801114082, -0.02773349918425083, 0.031040260568261147, -0.007272908464074135, 0.035862624645233154, 0.025745505467057228, 0.04239741340279579, -0.03661058098077774, -0.042476147413253784, 0.05263262987136841, -0.0007940903888083994, -0.04145262390375137, 0.010043306276202202, -0.00975790061056614, -0.01583505980670452, 0.02397402562201023, -0.01511662732809782, -0.007440214976668358, -0.0434996671974659, 0.011160322465002537, 0.004327823407948017, -0.048026785254478455, -0.03137487545609474, 0.03161107003688812, -0.056608617305755615, 0.03666963055729866, -0.05739594250917435, -0.041058965027332306, -0.03525244817137718, 0.023836243897676468, 0.0037348696496337652, 0.04786931723356247, -0.03147329017519951, -0.035803575068712234, -0.01359118614345789, 0.04168882220983505, -0.04078340157866478, 0.00007442675268976018, 0.018137983977794647, -0.10164356976747513, -0.04192502051591873, -0.002954926574602723, 0.03594135493040085, 0.0620017908513546, 0.004866648465394974, -0.0315520204603672, -0.09400652348995209, -0.003857889212667942, 0.0053833299316465855, -0.057632140815258026, -0.018521804362535477, -0.05574256181716919, 0.0014430178562179208, -0.08495229482650757, -0.012784178368747234, -0.03338254988193512, -0.03773251920938492, -0.11557921022176743, 0.056372422724962234, 0.04377523064613342, -0.048499178141355515, -0.0775514468550682, 0.03300857171416283, -0.0011391598964110017, 0.05838009715080261, 0.0036167711950838566, 0.033835262060165405, 0.02480071596801281, 0.008468656800687313, -0.04066530242562294, 0.04538924619555473, -0.012242893688380718, 0.016829056665301323, -0.009393763728439808, 0.024013392627239227, 0.02224191278219223, -0.016435395926237106, 0.06987503170967102, 0.043617766350507736, -0.02730047143995762, -0.04255488142371178, -0.0028417487628757954, 0.030095472931861877, 0.0434996671974659, 0.015352824702858925, 0.002338599180802703, 0.05137291178107262, -0.013197523541748524, 0.039858292788267136, 0.01413247175514698, 0.0032181881833821535, 0.03942526504397392, -0.07133158296346664, -0.035744525492191315, 0.028697971254587173, 0.019781524315476418, -0.03428797423839569, -0.02015550248324871, 0.008488340303301811, 0.005880328360944986, -0.002182364696636796, 0.015756327658891678, 0.02289145439863205, 0.06570221483707428, -0.04220058396458626, -0.09558117389678955, 0.022045081481337547, -0.012046062387526035, -0.017065254971385002, 0.033717162907123566, 0.019407544285058975, -0.09920286387205124, 0.01657317765057087, -0.024190539494156837, -0.023206384852528572, 0.011337470263242722, -0.0019227935699746013, 0.030745014548301697, 0.04901093989610672, -0.010766659863293171, 0.01487058773636818, 0.01771479658782482, -0.01927960477769375, -0.011672083288431168, 0.07022932916879654, 0.0141915213316679, 0.04137389361858368, -0.021631736308336258, 0.006249386817216873, -0.04716072604060173, -0.04704262688755989, 0.024466102942824364, -0.010766659863293171, -0.03426828980445862, -0.017970677465200424, 0.041767556220293045, 0.07696095108985901, -0.043381571769714355, -0.013935640454292297, -0.03684677928686142, -0.05204213783144951, 0.011504776775836945, 0.02194666489958763, 0.0625922828912735, -0.015677595511078835, 0.021493954584002495, -0.006736543960869312, -0.001036438625305891, -0.042594246566295624, 0.026493463665246964, -0.05385298281908035, 0.06397010385990143, 0.04680643230676651, -0.02033265121281147, 0.059364255517721176, 0.05420728027820587, -0.015018211677670479, -0.04302727431058884, 0.049089670181274414, 0.03143392503261566, 0.058104533702135086, -0.04227931797504425, -0.001037668902426958, -0.03194568306207657, 0.0019843033514916897, -0.004603386856615543, -0.00997441541403532, 0.007125284988433123, 0.021060924977064133, -0.028894802555441856, -0.022143496200442314, -0.03249680995941162, 0.005762229673564434, 0.01865958608686924, -0.043617766350507736, -0.06345833837985992, -0.06180495768785477, -0.07389038801193237, -0.012931802310049534, -0.01871863566339016, -0.027044590562582016, -0.028520824387669563, 0.0029229414649307728, 0.019820889458060265, 0.003685662057250738, -0.04818424955010414, 0.028068112209439278, 0.018836734816432, -0.02474166639149189, -0.03190631791949272, -0.02121839113533497, 0.10329695045948029, 0.010559987276792526, -0.060190945863723755, -0.027221739292144775, -0.022694623097777367, 0.014909954741597176, 0.005944298580288887, -0.015785852447152138, -0.01586458459496498, 0.04735755920410156, -0.01562838815152645, 0.024820398539304733, 0.01547092292457819, 0.06353707611560822, 0.00023512088228017092, 0.0018403705907985568, 0.021060924977064133, 0.010589512065052986, 0.0013396815629675984, -0.034071460366249084, -0.04255488142371178, -0.05562446266412735, 0.011613033711910248, -0.03822459653019905, 0.08038581162691116, -0.015136309899389744, -0.0007024409133009613, 0.004391793627291918, 0.03548864275217056, -0.00947741698473692, 0.024229906499385834, 0.05216023698449135, 0.03808681294322014, 0.015667753294110298, 0.010589512065052986, 0.003474068595096469, 0.00802086666226387, -0.01916150562465191, 0.0073270369321107864, 0.002226651646196842, -0.04948333278298378, -0.014171837829053402, 0.04759375378489494, -0.03570515662431717, 0.03111899457871914, -0.04495621845126152, 0.028009062632918358, 0.06397010385990143, 0.05306565761566162, -0.03426828980445862, -0.0845586359500885, 0.03751600533723831, -0.025292793288826942, -0.06688319891691208, 0.008104519918560982, -0.0280877947807312, 0.001935095526278019, 0.009738218039274216, -0.025902969762682915, 0.010678086429834366, 0.004207264166325331, -0.0060181100852787495, 0.010776502080261707, -0.032280296087265015, -0.027221739292144775, -0.014112788252532482, 0.008680250495672226, -0.0005929536418989301, -0.026080118492245674, -0.0736541897058487, 0.0555850975215435, -0.03787029907107353, 0.05668735131621361, -0.030567867681384087, -0.05712037906050682, 0.019289445132017136, -0.009339635260403156, -0.01171144936233759, 0.027320154011249542, 0.040744032710790634, 0.030922163277864456, -0.0344257578253746, 0.013108950108289719, 0.013896274380385876, 0.004849425982683897, 0.07629172503948212, -0.03428797423839569, 0.03379589691758156, 0.03596103936433792, 0.06912707537412643, 0.01686842367053032, -0.00790276750922203, -0.038657624274492264, 0.06731622666120529, -0.04979826509952545, 0.019633900374174118, 0.005024113226681948, -0.03637438267469406, -0.024544835090637207, -0.05920678749680519, -0.06562348455190659, 0.049995094537734985, -0.016789691522717476, -0.03462258726358414, 0.057514041662216187, 0.026021068915724754, -0.04499558359384537, 0.014565500430762768, 0.0741659477353096, 0.03161107003688812, 0.0045984662137925625, -0.01672079972922802, 0.03070564940571785, 0.04381459951400757, 0.013295939192175865, -0.008276746608316898, 0.0690089762210846, 0.01922055520117283, 0.007218779996037483, 0.04964079707860947, 0.019673267379403114, 0.049876995384693146, -0.004377031233161688, -0.008055311627686024, -0.021730151027441025, 0.02785159833729267, -0.032457444816827774, -0.01487058773636818, 0.04566480964422226, 0.0140438973903656, -0.013778175227344036, -0.061450663954019547, -0.07054425776004791, 0.002804843010380864, -0.01786242052912712, -0.04070466756820679, 0.040094491094350815, 0.03840174525976181, 0.07743334770202637, 0.03476036712527275, 0.03399272635579109, -0.004967524204403162, 0.009231377393007278, -0.004209724720567465, -0.03367779776453972, 0.014408035203814507, -0.04857791215181351, -0.04680643230676651, 0.00947741698473692, 0.014791855588555336, 0.012400357984006405, -0.005890170112252235, -0.04597974196076393, -0.01613030768930912, 0.0005028418963775039, -0.022222228348255157, -0.0031689803581684828, -0.03411082550883293, -0.0012978549348190427, 0.02885543741285801, 0.03798839822411537, -0.043853964656591415, -0.03172916918992996, -0.014171837829053402, 0.0007983960676938295, -0.02480071596801281, -0.0385592095553875, -0.06932390481233597, -0.005954140331596136, -0.01407342217862606, 0.00022912367421668023, 0.000020413535821717232, 0.0474756583571434, 0.01916150562465191, -0.032398395240306854, -0.04897157475352287, -0.06999313086271286, -0.009610277600586414, -0.026611562818288803, -0.061923056840896606, 0.018905624747276306, -0.011386677622795105, 0.009994097985327244, 0.05188467353582382, 0.03987797722220421, 0.022045081481337547, -0.009792346507310867, -0.07377228885889053, -0.06393073499202728, 0.01613030768930912, -0.0411376953125, 0.06188369169831276, 0.05176657438278198, 0.03229998052120209, 0.05633305385708809, 0.02300955355167389, 0.02015550248324871, -0.018964674323797226, -0.0022857009898871183, -0.013010534457862377, -0.009221536107361317, -0.06393073499202728, 0.01135715376585722, -0.015569338575005531, 0.060663338750600815, 0.013640393503010273, -0.020667264237999916, -0.03903160244226456, -0.054522208869457245, -0.01269560493528843, -0.033067621290683746, 0.009733296930789948, -0.01889578439295292, 0.05562446266412735, -0.02306860312819481, 0.031866952776908875, -0.022202545776963234, 0.043263472616672516, -0.010412364266812801, -0.029170366004109383, -0.011465410701930523, -0.03440607339143753, -0.013108950108289719, 0.00751402648165822, -0.07345736026763916, -0.01171144936233759, 0.012528298422694206, 0.048144880682229996, -0.0157760102301836, -0.03017420507967472, 0.018443072214722633, 0.01118000503629446, 0.029544346034526825, 0.027221739292144775, 0.025174695998430252, 0.03792934864759445, 0.029583711177110672, 0.03487846627831459, -0.009659484960138798, 0.021926982328295708, 0.009669327177107334, -0.003156678518280387, -0.04464128986001015, -0.0005388250574469566, 0.008847557008266449, 0.008808190934360027, 0.03993702679872513, -0.011052065528929234, 0.03369748219847679, -0.01219368539750576, 0.08093693852424622, -0.02230096235871315, -0.009831712581217289, -0.05562446266412735, -0.007627204526215792, -0.07609489560127258, 0.026335999369621277, -0.010062988847494125, 0.023540997877717018, 0.057435307651758194, -0.02993800677359104, 0.0023103049024939537, 0.030902478843927383, 0.04889284074306488, -0.017439233139157295, 0.03672868013381958, -0.0007916300091892481, -0.008350558578968048, 0.02121839113533497, 0.028934169560670853, -0.02289145439863205, -0.026611562818288803, 0.007282750215381384, 0.0012867831392213702, -0.035901989787817, 0.043972063809633255, 0.0019006500951945782, -0.0799134224653244, -0.012597189284861088, 0.010815868154168129, -0.025548674166202545, -0.03320540487766266, 0.011613033711910248, 0.01988978125154972, 0.009379001334309578, 0.09345539659261703, -0.039858292788267136, 0.05121544748544693, -0.011150481179356575, 0.002209428930655122, -0.01511662732809782, 0.01072729378938675, -0.007199096959084272, 0.04424762725830078, -0.02527311071753502, -0.005526032764464617, 0.029682127758860588, -0.01118000503629446, -0.055112700909376144, -0.0033239847980439663, -0.05582129582762718, 0.014644232578575611, -0.016317296773195267, -0.03613818809390068, 0.013571502640843391, -0.0370829738676548, 0.015825219452381134, 0.03535086289048195, 0.015333141200244427, 0.03338254988193512, 0.0029721492901444435, -0.056608617305755615, -0.022104131057858467, 0.009831712581217289, -0.030863113701343536, 0.01812814176082611, 0.05991538241505623, 0.011081590317189693, -0.02712332271039486, -0.013414038345217705, 0.030193887650966644, -0.02903258427977562, -0.06129319965839386, -0.0405472032725811, 0.007592759095132351, 0.008591677062213421, 0.020765678957104683, -0.053144391626119614, 0.006854642182588577, -0.014526133425533772, 0.04192502051591873, -0.0023090746253728867, 0.013601027429103851, -0.0486566424369812, -0.03320540487766266, -0.026729660108685493, 0.034307658672332764, 0.056726716458797455, -0.0015500447480008006, -0.021533319726586342, -0.018502121791243553, 0.013571502640843391, 0.031217409297823906, -0.014358826912939548, 0.04566480964422226, 0.008207855746150017, 0.028166526928544044, 0.04137389361858368, 0.017143987119197845, 0.007582917343825102, -0.04704262688755989, -0.008394845761358738, -0.03131582587957382, 0.08011025190353394, 0.007996262982487679, 0.012292101047933102, -0.003838206175714731, 0.015224884264171124, -0.024781033396720886, -0.03334318473935127, -0.006638128310441971, -0.05932488664984703, 0.09290426969528198, 0.018797367811203003, 0.0723944753408432, 0.08951877802610397, 0.05664798617362976, 0.037889983505010605, -0.05137291178107262, -0.005801596213132143, 0.03338254988193512, 0.019820889458060265, 0.030193887650966644, -0.07290623337030411, -0.005358726251870394, 0.026965858414769173, 0.0018182271160185337, -0.016858581453561783, -0.03432733938097954, 0.09762821346521378, -0.00743529386818409, -0.01118000503629446, 0.03901192173361778, 0.022694623097777367, -0.025745505467057228, 0.04279107600450516, 0.04267297685146332, -0.04184628650546074, -0.027753181755542755, 0.037004243582487106, 0.053695518523454666, 0.01589410938322544, -0.06550538539886475, -0.010835550725460052, 0.048735376447439194, -0.03076469711959362, -0.018344657495617867, -0.0068300385028123856, 0.02623758278787136, -0.014408035203814507, -0.057514041662216187, 0.02706427313387394, 0.027162689715623856, 0.025292793288826942, -0.0440114289522171, -0.009546307846903801, -0.026631245389580727, 0.0026744422502815723, -0.03867730870842934, 0.06629271060228348, 0.011278420686721802, -0.052435800433158875, -0.020293284207582474, 0.024997547268867493, 0.02312765270471573, 0.024938497692346573, -0.04019290581345558, 0.04440509155392647, -0.006485584191977978, 0.05133354663848877, 0.08211793005466461, 0.052435800433158875, -0.0846373662352562, 0.04971953108906746, 0.006515108980238438, -0.001660762238316238, -0.023540997877717018, 0.004787915851920843, 0.009472495876252651, 0.01645507849752903, -0.001660762238316238, -0.0023755051661282778, 0.0062247831374406815, -0.013935640454292297, -0.019899621605873108, -0.014171837829053402, 0.011908280663192272, 0.03999607637524605, -0.005791754461824894, -0.04609783738851547, -0.08416496962308884, -0.03123709186911583, -0.0017050491878762841, 0.01040252298116684, 0.05019192397594452, 0.06641080975532532, -0.03897255286574364, 0.016523968428373337, 0.032221246510744095, -0.046767063438892365, -0.04491685330867767, 0.013463245704770088, 0.028579872101545334, -0.0014688519295305014, 0.03964177891612053, -0.06121446564793587, -0.010865075513720512, -0.048026785254478455, -0.025922654196619987, -0.0027482539881020784, -0.011426044628024101, 0.05192403867840767, 0.022084446623921394, 0.012400357984006405, -0.029662443324923515, 0.006790672428905964 ]
729,164
tables.vlarray
__getitem__
Get a row or a range of rows from the array. If key argument is an integer, the corresponding array row is returned as an object of the current flavor. If key is a slice, the range of rows determined by it is returned as a list of objects of the current flavor. In addition, NumPy-style point selections are supported. In particular, if key is a list of row coordinates, the set of rows determined by it is returned. Furthermore, if key is an array of boolean values, only the coordinates where key is True are returned. Note that for the latter to work it is necessary that key list would contain exactly as many rows as the array has. Examples -------- :: a_row = vlarray[4] a_list = vlarray[4:1000:2] a_list2 = vlarray[[0,2]] # get list of coords a_list3 = vlarray[[0,-2]] # negative values accepted a_list4 = vlarray[np.array([True,...,False])] # array of bools
def __getitem__(self, key): """Get a row or a range of rows from the array. If key argument is an integer, the corresponding array row is returned as an object of the current flavor. If key is a slice, the range of rows determined by it is returned as a list of objects of the current flavor. In addition, NumPy-style point selections are supported. In particular, if key is a list of row coordinates, the set of rows determined by it is returned. Furthermore, if key is an array of boolean values, only the coordinates where key is True are returned. Note that for the latter to work it is necessary that key list would contain exactly as many rows as the array has. Examples -------- :: a_row = vlarray[4] a_list = vlarray[4:1000:2] a_list2 = vlarray[[0,2]] # get list of coords a_list3 = vlarray[[0,-2]] # negative values accepted a_list4 = vlarray[np.array([True,...,False])] # array of bools """ self._g_check_open() if is_idx(key): key = operator.index(key) # Index out of range protection if key >= self.nrows: raise IndexError("Index out of range") if key < 0: # To support negative values key += self.nrows (start, stop, step) = self._process_range(key, key + 1, 1) return self.read(start, stop, step)[0] elif isinstance(key, slice): start, stop, step = self._process_range( key.start, key.stop, key.step) return self.read(start, stop, step) # Try with a boolean or point selection elif type(key) in (list, tuple) or isinstance(key, np.ndarray): coords = self._point_selection(key) return self._read_coordinates(coords) else: raise IndexError(f"Invalid index or slice: {key!r}")
(self, key)
[ 0.047312360256910324, -0.07949662953615189, -0.07586292177438736, 0.02973707765340805, 0.006808567326515913, 0.012254494242370129, -0.006155055947601795, 0.00016366748604923487, 0.029811235144734383, -0.06566628813743591, -0.029681460931897163, 0.011911517009139061, -0.026344381272792816, -0.00683174142614007, -0.05409775301814079, -0.023507865145802498, 0.011040168814361095, 0.04708988592028618, -0.03190618008375168, 0.04230673983693123, -0.00812949426472187, -0.017501123249530792, 0.0652955025434494, 0.036911796778440475, 0.02167247235774994, 0.0382651686668396, 0.0860966295003891, 0.00482485955581069, 0.05565505474805832, -0.039155054837465286, -0.05165056139230728, -0.0025445225182920694, 0.002472682623192668, 0.0640348270535469, -0.05135393142700195, -0.004319662693887949, 0.023897191509604454, 0.0007525807595811784, 0.07853258401155472, 0.08461347967386246, -0.06592584401369095, -0.07719775289297104, 0.08579999953508377, -0.03956292197108269, -0.0390808992087841, 0.004004494287073612, -0.004769241437315941, -0.01659269630908966, -0.03086797706782818, -0.0012745786225423217, 0.011392415501177311, 0.007378651760518551, 0.03613314405083656, -0.03003370761871338, -0.0665191039443016, -0.0011755090672522783, 0.008287078700959682, 0.06618539243936539, 0.0005628423532471061, 0.021394381299614906, -0.02387865073978901, -0.0008105161250568926, 0.010465449653565884, 0.02063426934182644, 0.024360673502087593, -0.04816516861319542, -0.030756741762161255, 0.0015642555663362145, -0.02716011181473732, 0.008820083923637867, -0.002162148943170905, 0.0386730320751667, 0.014117696322500706, -0.026548314839601517, -0.029458988457918167, 0.0056776683777570724, -0.0773460641503334, 0.046607863157987595, 0.03974831476807594, 0.0011726123047992587, 0.01343174185603857, 0.04037865251302719, 0.048721347004175186, 0.01266235951334238, -0.01782556250691414, 0.019039887934923172, 0.019447753205895424, 0.05443146079778671, 0.07148764282464981, 0.02608483098447323, -0.003663834184408188, 0.04553258419036865, -0.03617022559046745, 0.034001123160123825, -0.027141572907567024, 0.0038167836610227823, 0.037746068090200424, -0.039822470396757126, -0.030645504593849182, -0.012319382280111313, 0.0009061095188371837, -0.0008058813400566578, 0.015137359499931335, -0.02274775318801403, -0.021487077698111534, -0.002519030822440982, -0.031127527356147766, 0.04705280810594559, -0.020226404070854187, 0.02221011184155941, 0.003432092722505331, 0.04505056142807007, -0.07882921397686005, 0.02374887652695179, -0.05094606801867485, 0.01602724753320217, 0.001440273830667138, -0.004143539350479841, -0.08854381740093231, -0.04608876258134842, 0.0099834268912673, -0.018381740897893906, -0.02424943819642067, 0.04471685364842415, 0.015304213389754295, -0.010901123285293579, 0.019280899316072464, 0.0403415709733963, 0.012430617585778236, -0.020726965740323067, 0.0017739817267283797, -0.03989662975072861, -0.03800561651587486, -0.011197752319276333, 0.01189297717064619, -0.03800561651587486, 0.026844942942261696, -0.03301854059100151, -0.06848426908254623, 0.023971347138285637, 0.02799438126385212, 0.017204493284225464, 0.024638764560222626, 0.04501348361372948, 0.008249999955296516, -0.044976405799388885, 0.06640786677598953, 0.007434269413352013, 0.01672247238457203, 0.021412920206785202, -0.047979775816202164, 0.056989885866642, -0.007003230042755604, -0.003995224833488464, 0.03997078537940979, -0.03307415544986725, -0.02358202263712883, -0.10864044725894928, 0.004653370939195156, -0.009872190654277802, -0.022970223799347878, -0.029125280678272247, -0.04293707758188248, -0.01625898852944374, -0.0503157302737236, 0.04545842483639717, -0.05888089910149574, -0.02893988788127899, -0.033797189593315125, 0.0536528080701828, 0.03194325789809227, 0.012486236169934273, -0.03609606623649597, -0.008407584391534328, -0.013756179250776768, 0.07957078516483307, -0.03572528064250946, 0.045235954225063324, 0.03216572850942612, -0.03772752732038498, 0.00499171344563365, 0.012291572988033295, -0.037041570991277695, -0.001977914245799184, 0.03461292013525963, 0.05977078527212143, 0.02994101122021675, -0.033630337566137314, 0.03318539261817932, 0.071561798453331, -0.04916629195213318, -0.031220223754644394, 0.017519662156701088, -0.02083820290863514, -0.029458988457918167, -0.001298911520279944, -0.05020449310541153, 0.0790516808629036, -0.03689325973391533, 0.08639325946569443, -0.013376123271882534, -0.035706739872694016, 0.013478090055286884, 0.030886515974998474, -0.06429438292980194, 0.012588202022016048, 0.023433707654476166, -0.017074719071388245, -0.0028318820986896753, 0.018845224753022194, -0.021765168756246567, -0.06459101289510727, -0.023804493248462677, 0.03959999978542328, 0.08520673960447311, -0.006845646072179079, -0.03750505670905113, -0.014868538826704025, -0.01256039272993803, 0.013756179250776768, 0.08535505831241608, -0.02017078548669815, -0.0007363588665612042, -0.0033672049175947905, 0.027975842356681824, -0.01266235951334238, -0.02558426931500435, -0.022729212418198586, -0.017148876562714577, 0.027438202872872353, 0.03185056149959564, -0.025435954332351685, 0.04334494471549988, -0.02104213461279869, 0.006715870928019285, 0.03181348368525505, 0.02903258427977562, 0.021969100460410118, 0.06785393506288528, 0.04104606807231903, -0.01954044960439205, 0.03409381955862045, 0.02558426931500435, -0.02250674180686474, -0.060994382947683334, 0.020393257960677147, 0.04026741534471512, 0.0640719085931778, -0.04571797698736191, 0.008273174054920673, -0.020485954359173775, 0.00197327951900661, 0.022617977112531662, 0.037579212337732315, 0.05457977578043938, -0.010428370907902718, 0.014534831047058105, -0.027085954323410988, -0.002581601031124592, -0.027308426797389984, -0.026029212400317192, -0.017955336719751358, 0.03385280817747116, -0.013051684945821762, -0.035132020711898804, 0.02512078545987606, 0.08001572638750076, 0.03722696751356125, 0.016268258914351463, 0.0840202271938324, -0.004317345563322306, 0.09529213607311249, -0.05368988588452339, -0.022395504638552666, 0.006984691135585308, 0.019243819639086723, 0.04671910032629967, -0.004977808799594641, 0.029051123186945915, 0.005469101015478373, -0.006419241428375244, 0.04998202249407768, -0.061958424746990204, 0.06496179848909378, -0.01752893254160881, -0.08973033726215363, 0.014469943940639496, -0.023062920197844505, 0.011614887975156307, -0.0012826896272599697, 0.0017125701997429132, 0.0033857442904263735, 0.00679002795368433, -0.03767190873622894, 0.014951965771615505, 0.012690168805420399, -0.03971123695373535, -0.03342640399932861, -0.0035873595625162125, -0.029310673475265503, 0.02491685375571251, -0.03290730342268944, 0.008537359535694122, 0.02428651601076126, 0.012606741860508919, -0.008245364762842655, 0.0028735955711454153, 0.004275632090866566, -0.011485111899673939, -0.010159550234675407, 0.027920223772525787, -0.04375280812382698, -0.006447050720453262, -0.026381460949778557, -0.02927359566092491, -0.03429775312542915, -0.041157301515340805, 0.050426967442035675, 0.007077387534081936, 0.04334494471549988, -0.023007303476333618, 0.001523700775578618, -0.03147977590560913, -0.001573525252752006, 0.012198876589536667, -0.0092001399025321, -0.013923033140599728, -0.04653370752930641, -0.05131685361266136, 0.08424269407987595, 0.0058769662864506245, 0.029718538746237755, -0.0180943813174963, 0.07437977194786072, 0.027178650721907616, -0.011021628975868225, 0.005821348167955875, 0.05921460688114166, -0.026844942942261696, 0.019781460985541344, -0.003063623560592532, -0.0424179770052433, -0.015563763678073883, -0.018622752279043198, 0.08565168082714081, -0.034872472286224365, 0.030423033982515335, 0.005042696371674538, 0.04126853868365288, -0.00415512640029192, 0.022154493257403374, -0.0037704354617744684, -0.021802246570587158, 0.017204493284225464, -0.04023033753037453, -0.003455266822129488, 0.028754493221640587, -0.05050112307071686, -0.0020821979269385338, -0.0005538623663596809, 0.09662696719169617, -0.036707863211631775, -0.029143819585442543, 0.0008748244144953787, -0.04230673983693123, -0.017955336719751358, -0.05628539249300957, -0.046570785343647, -0.0036360251251608133, 0.010928932577371597, -0.018187077715992928, -0.021412920206785202, -0.026010673493146896, 0.02695618011057377, 0.03759775310754776, -0.0665561780333519, -0.01696348376572132, 0.017667977139353752, -0.019725842401385307, -0.0328516848385334, 0.03856179863214493, 0.010159550234675407, 0.042232584208250046, 0.047275278717279434, -0.040860675275325775, -0.01849297806620598, -0.047312360256910324, 0.014896348118782043, -0.001996453618630767, -0.0005454617203213274, -0.01890084333717823, 0.03733820095658302, 0.0020451194141060114, -0.031016292050480843, -0.02856910042464733, -0.019614607095718384, 0.03168370574712753, -0.006479494273662567, 0.01006685383617878, -0.05936292186379433, -0.02662247233092785, 0.021487077698111534, -0.056544944643974304, 0.037412360310554504, -0.0011662394972518086, -0.008741292171180248, 0.026511235162615776, -0.04126853868365288, -0.029180899262428284, -0.028550561517477036, 0.048647191375494, 0.027549438178539276, 0.010048314929008484, -0.004996348172426224, 0.022988764569163322, 0.041898876428604126, -0.03989662975072861, 0.07949662953615189, -0.014803651720285416, 0.0757146030664444, 0.012755055911839008, -0.023433707654476166, -0.02695618011057377, -0.012171067297458649, -0.053504493087530136, -0.01332977507263422, -0.013960111886262894, 0.008254635147750378, 0.029551684856414795, 0.004963904619216919, -0.046607863157987595, -0.08157303184270859, -0.004885112401098013, -0.021412920206785202, -0.07267415523529053, -0.02678932622075081, -0.026919100433588028, 0.01692640408873558, 0.02799438126385212, 0.0164258424192667, 0.05509887635707855, 0.04579213261604309, 0.014562640339136124, -0.0029523875564336777, -0.01205983106046915, -0.052466291934251785, -0.011818819679319859, 0.03281460702419281, -0.023563483729958534, -0.0557292141020298, 0.03153539448976517, 0.03103483095765114, 0.03615168482065201, 0.02204325795173645, 0.04482809081673622, -0.0034019662998616695, -0.06522134691476822, -0.006896628998219967, 0.04134269803762436, 0.005747191142290831, 0.04612584039568901, 0.03177640587091446, -0.0270303376019001, -0.06499887257814407, 0.020226404070854187, 0.0019640098325908184, -0.02532471902668476, 0.002435603877529502, -0.031628090888261795, -0.029217977076768875, -0.027883145958185196, -0.03348202258348465, -0.04308539256453514, -0.01836320199072361, 0.030052246525883675, 0.06770561635494232, 0.025046629831194878, 0.02973707765340805, -0.028105618432164192, -0.049388762563467026, -0.08172135055065155, -0.10352359712123871, -0.013459550216794014, -0.030126404017210007, -0.03665224835276604, 0.020930899307131767, -0.01789971813559532, 0.06310786306858063, -0.04430898651480675, -0.01959606632590294, 0.02358202263712883, 0.022525280714035034, -0.010826965793967247, 0.043233707547187805, 0.04953707754611969, 0.0032003510277718306, 0.018557865172624588, 0.028124157339334488, 0.06833595782518387, 0.02374887652695179, 0.03776460513472557, 0.010224438272416592, 0.015637921169400215, -0.026529774069786072, 0.01883595436811447, -0.014210392720997334, 0.04861011356115341, 0.05435730144381523, -0.006298735737800598, -0.0769752785563469, -0.026733707636594772, 0.0026511235628277063, 0.000624543521553278, -0.0134132020175457, 0.010660111904144287, 0.013774719089269638, -0.019911235198378563, 0.040452808141708374, -0.01849297806620598, 0.031127527356147766, 0.04453146085143089, 0.019688764587044716, -0.01568426936864853, 0.030219100415706635, -0.016175562515854836, 0.034130897372961044, -0.008148033171892166, -0.049017976969480515, -0.022525280714035034, 0.03040449321269989, -0.037912920117378235, -0.008741292171180248, 0.007429634686559439, 0.03220281004905701, -0.029051123186945915, 0.02445336990058422, 0.011614887975156307, 0.014006460085511208, 0.03335224837064743, 0.047349438071250916, 0.04994494467973709, 0.03355617821216583, 0.035132020711898804, -0.03544719144701958, 0.04260336980223656, -0.006150421220809221, -0.01805730350315571, -0.03123876452445984, 0.02882865071296692, 0.009153791703283787, 0.044271908700466156, -0.0031957163009792566, 0.10478426516056061, -0.02803146094083786, 0.029292134568095207, 0.019373595714569092, -0.0432707853615284, -0.05773146077990532, -0.038784269243478775, -0.030923595651984215, 0.0037171347066760063, -0.006938342470675707, -0.012486236169934273, 0.014896348118782043, -0.05565505474805832, 0.02217303402721882, -0.009594101458787918, -0.008926684968173504, 0.03235112503170967, -0.05372696742415428, -0.005163202062249184, 0.007856039330363274, -0.056507863104343414, 0.05394943803548813, 0.00018206196546088904, 0.021190449595451355, 0.00419683987274766, -0.032870225608348846, -0.048684269189834595, -0.05254044756293297, -0.0005703739589080215, -0.016268258914351463, 0.03168370574712753, -0.053467415273189545, 0.007981179282069206, 0.05643370747566223, -0.0028689606115221977, 0.023137077689170837, -0.0008209444931708276, 0.009501404128968716, 0.0665561780333519, -0.015767697244882584, -0.02549157291650772, 0.018122190609574318, 0.04104606807231903, 0.032999999821186066, -0.029143819585442543, -0.006173595320433378, 0.012337921187281609, -0.01856713555753231, -0.0611426942050457, -0.001123946625739336, -0.003972050733864307, -0.05747190862894058, -0.014284550212323666, -0.011485111899673939, 0.002984831342473626, 0.005663764197379351, 0.036874718964099884, -0.03324101120233536, -0.010196628980338573, -0.017417697235941887, -0.014961236156523228, -0.03270336985588074, -0.008681039325892925, 0.008977668359875679, -0.014126965776085854, 0.05980786308646202, 0.03919213265180588, 0.003788974601775408, -0.04097190871834755, 0.00839831493794918, 0.012180336751043797, -0.012078370898962021, -0.035743821412324905, -0.10915955156087875, 0.05461685359477997, 0.0010480512864887714, 0.03681910037994385, -0.005900140386074781, 0.01779775321483612, -0.0014993679942563176, 0.0765303373336792, 0.001246769679710269, -0.014117696322500706, -0.05977078527212143, 0.029310673475265503, -0.005357865244150162, -0.025213483721017838, 0.07589999586343765, -0.0030937499832361937, 0.005663764197379351, -0.0026766150258481503, -0.002579283667728305, 0.044271908700466156, -0.04779438301920891, 0.008291712962090969, 0.03889550641179085, 0.0964786484837532, 0.013098033145070076, -0.006298735737800598, 0.021246066316962242, -0.050389885902404785, -0.0057935393415391445, -0.06117977574467659, 0.02167247235774994, 0.03238820284605026, -0.027345504611730576, -0.022228650748729706, 0.018854493275284767, -0.035706739872694016, 0.01732499897480011, -0.05813932418823242, -0.0586584247648716, 0.03377865254878998, -0.032091572880744934, -0.031016292050480843, 0.05469100922346115, 0.04442022368311882, 0.08253707736730576, -0.001727633411064744, -0.03822809085249901, -0.05165056139230728, 0.025769662111997604, 0.04883258417248726, -0.0370044931769371, 0.030330337584018707, -0.06714943796396255, -0.024397753179073334, -0.015628650784492493, 0.02274775318801403, 0.028976965695619583, 0.007429634686559439, 0.0673719123005867, -0.01819634810090065, 0.03893258422613144, 0.021097753196954727, -0.000593258417211473, 0.009204775094985962, -0.0511685386300087, 0.021097753196954727, -0.000194083564565517, 0.05391236022114754, -0.005107584409415722, -0.05302247032523155, -0.024972472339868546, -0.015313482843339443, 0.011197752319276333, -0.018743257969617844, 0.03020056150853634, -0.015044663101434708, 0.002699789358302951, -0.028976965695619583, 0.04037865251302719, -0.06043820083141327, -0.010558146052062511, -0.04786853864789009, -0.00891278125345707, 0.025065168738365173, -0.04397527873516083, -0.009088904596865177, 0.03581797704100609, 0.01745477505028248, -0.04608876258134842, 0.032592132687568665, 0.016768820583820343, -0.02378595434129238, -0.012699438259005547, 0.007160814478993416, 0.028087077662348747, 0.013617134653031826, -0.034205056726932526, 0.007503792177885771, 0.053504493087530136, -0.0332595519721508, 0.0482393242418766, 0.00641460670158267, -0.040786515921354294, -0.058584269136190414, 0.02728988789021969, 0.03442752733826637, -0.00837977509945631, 0.015804775059223175, -0.013923033140599728, 0.009102809242904186, -0.018520785495638847, -0.0025885533541440964, -0.040452808141708374, 0.03342640399932861, 0.018724719062447548, -0.05024157091975212, 0.017584551125764847, -0.04371573030948639, -0.04178763926029205, -0.031998876482248306, 0.015869662165641785, -0.0055108144879341125, 0.05191011354327202, -0.03020056150853634, -0.0027484549209475517, 0.01056741550564766, 0.03837640583515167, 0.011549999937415123, 0.024898314848542213, 0.03220281004905701, -0.029477527365088463, -0.01929943822324276, -0.024564607068896294, 0.0180943813174963, -0.012217415496706963, -0.07719775289297104, 0.04126853868365288, -0.07749438285827637, 0.0757146030664444, -0.06562921404838562, -0.014219663105905056, -0.03444606810808182, 0.03919213265180588 ]
729,165
tables.vlarray
__init__
null
def __init__(self, parentnode, name, atom=None, title="", filters=None, expectedrows=None, chunkshape=None, byteorder=None, _log=True, track_times=True): self._v_version = None """The object version of this array.""" self._v_new = new = atom is not None """Is this the first time the node has been created?""" self._v_new_title = title """New title for this node.""" self._v_new_filters = filters """New filter properties for this array.""" if expectedrows is None: expectedrows = parentnode._v_file.params['EXPECTED_ROWS_VLARRAY'] self._v_expectedrows = expectedrows """The expected number of rows to be stored in the array. .. versionadded:: 3.0 """ self._v_chunkshape = None """Private storage for the `chunkshape` property of Leaf.""" # Miscellaneous iteration rubbish. self._start = None """Starting row for the current iteration.""" self._stop = None """Stopping row for the current iteration.""" self._step = None """Step size for the current iteration.""" self._nrowsread = None """Number of rows read up to the current state of iteration.""" self._startb = None """Starting row for current buffer.""" self._stopb = None """Stopping row for current buffer. """ self._row = None """Current row in iterators (sentinel).""" self._init = False """Whether we are in the middle of an iteration or not (sentinel).""" self.listarr = None """Current buffer in iterators.""" # Documented (*public*) attributes. self.atom = atom """ An Atom (see :ref:`AtomClassDescr`) instance representing the *type* and *shape* of the atomic objects to be saved. You may use a *pseudo-atom* for storing a serialized object or variable length string per row. """ self.nrow = None """On iterators, this is the index of the current row.""" self.nrows = None """The current number of rows in the array.""" self.extdim = 0 # VLArray only have one dimension currently """The index of the enlargeable dimension (always 0 for vlarrays).""" # Check the chunkshape parameter if new and chunkshape is not None: if isinstance(chunkshape, (int, np.integer)): chunkshape = (chunkshape,) try: chunkshape = tuple(chunkshape) except TypeError: raise TypeError( "`chunkshape` parameter must be an integer or sequence " "and you passed a %s" % type(chunkshape)) if len(chunkshape) != 1: raise ValueError("`chunkshape` rank (length) must be 1: %r" % (chunkshape,)) self._v_chunkshape = tuple(SizeType(s) for s in chunkshape) super().__init__(parentnode, name, new, filters, byteorder, _log, track_times)
(self, parentnode, name, atom=None, title='', filters=None, expectedrows=None, chunkshape=None, byteorder=None, _log=True, track_times=True)
[ 0.046471379697322845, -0.006283022463321686, -0.06627821922302246, 0.04072471335530281, -0.025725912302732468, -0.003000238910317421, -0.06371137499809265, 0.018590467050671577, -0.007168966811150312, -0.029499555006623268, -0.0005067242891527712, -0.029786888509988785, -0.008691833354532719, 0.015266978181898594, -0.028637556359171867, 0.02695186622440815, 0.050570666790008545, 0.013887777924537659, -0.05191155523061752, 0.10321013629436493, -0.05723680183291435, 0.007657433394342661, -0.014376244507730007, 0.06861519813537598, 0.03509297966957092, 0.018571311607956886, 0.0252278670668602, 0.0011373611632734537, 0.02833106741309166, -0.007992655970156193, -0.032372888177633286, -0.032372888177633286, -0.007485033478587866, -0.001304972218349576, 0.0061441445723176, -0.022737644612789154, -0.02061137743294239, 0.008375766687095165, -0.049344711005687714, 0.04018835723400116, 0.05685368925333023, -0.08351822197437286, -0.01949077844619751, -0.012843799777328968, 0.0228525772690773, 0.024844756349921227, 0.04520711302757263, -0.011857288889586926, -0.047850579023361206, -0.006354855839163065, -0.04087795689702034, 0.00044297223212197423, 0.04930640012025833, 0.004673955496400595, -0.07945724576711655, 0.054363466799259186, 0.040456533432006836, 0.005804133601486683, -0.002911644522100687, 0.012642666697502136, 0.005981322377920151, 0.01675153337419033, 0.05321413278579712, -0.01416553370654583, -0.05129857733845711, 0.007178544532507658, -0.03267937898635864, -0.013341845013201237, -0.003946044482290745, 0.04018835723400116, -0.017326200380921364, 0.014136800542473793, 0.03367546573281288, 0.01578417792916298, -0.04670124500989914, 0.04650969058275223, -0.059688713401556015, 0.029997600242495537, -0.003931677900254726, -0.018504267558455467, 0.05183493345975876, 0.09118044376373291, 0.02367626689374447, 0.005574266891926527, 0.02080293372273445, -0.015266978181898594, -0.01569797843694687, 0.04202729091048241, 0.002378880511969328, 0.030304089188575745, -0.012728867121040821, 0.028062889352440834, 0.0023202167358249426, 0.022890890017151833, 0.025476889684796333, -0.011857288889586926, 0.011541222222149372, -0.05788809061050415, 0.02505546621978283, 0.009673555381596088, 0.0008685847278684378, 0.00592385558411479, 0.013600444421172142, -0.04076302424073219, -0.03329235687851906, 0.00313672237098217, -0.04145262390375137, -0.00823688879609108, 0.02660706639289856, 0.017000555992126465, -0.039230577647686005, 0.09432195872068405, -0.041146133095026016, 0.055053066462278366, -0.005497644655406475, 0.03689359873533249, 0.0017946361331269145, 0.0015911083901301026, -0.013514244928956032, -0.011464600451290607, 0.07899751514196396, -0.012230822816491127, -0.03158751130104065, 0.028541777282953262, -0.01117726694792509, -0.008763667196035385, 0.04823368787765503, 0.009400589391589165, -0.0009907013736665249, -0.0646691545844078, -0.005047488957643509, -0.026147333905100822, -0.02882911078631878, -0.031031999737024307, 0.027603155001997948, -0.05528293550014496, 0.02900151163339615, -0.039422132074832916, -0.11500995606184006, -0.03520791232585907, 0.025496045127511024, -0.020209111273288727, 0.06838533282279968, -0.03156835585832596, -0.05187324434518814, -0.0047314222902059555, 0.015238245017826557, -0.021166888996958733, -0.006431478075683117, -0.009213821962475777, -0.04999599978327751, -0.033234890550374985, -0.004693110939115286, 0.020841244608163834, 0.033732932060956955, 0.015851221978664398, -0.017000555992126465, -0.062102310359478, 0.0030481277499347925, 0.031204400584101677, -0.04877004399895668, -0.018600044772028923, -0.03553355485200882, 0.008533800020813942, -0.06267698109149933, 0.006867266725748777, -0.06486070901155472, -0.08014684170484543, -0.11539306491613388, 0.014060177840292454, 0.06183413416147232, -0.05911404639482498, -0.04892329126596451, 0.05558942258358002, -0.0567004457116127, 0.09570115804672241, 0.012020111083984375, 0.032506976276636124, 0.0009523903136141598, 0.034250132739543915, -0.030878756195306778, 0.06432435661554337, 0.014491178095340729, 0.0019538667984306812, -0.012087156064808369, 0.019845155999064445, 0.01642588898539543, -0.004693110939115286, 0.07876764237880707, 0.054516710340976715, -0.039383821189403534, -0.027220044285058975, 0.01175193302333355, 0.0009266500128433108, -0.004161544609814882, 0.026511289179325104, -0.0010918666375800967, 0.04348311200737953, 0.02128182165324688, 0.0353611558675766, -0.026568755507469177, 0.006728388834744692, 0.030859600752592087, -0.04497724398970604, -0.05256284400820732, 0.01202968880534172, -0.026377201080322266, -0.0054593333043158054, -0.010976133868098259, 0.056585513055324554, -0.001682097208686173, -0.025170400738716125, 0.031204400584101677, 0.017345355823636055, 0.043329868465662, -0.0498044453561306, -0.0914103090763092, 0.013954821974039078, -0.0014426527777686715, -0.01287253387272358, 0.05631733313202858, -0.0037520944606512785, -0.0498044453561306, -0.0429084450006485, -0.04620319977402687, -0.011914755217730999, 0.026683690026402473, -0.025534356012940407, -0.011474178172647953, 0.03587835654616356, -0.04378959909081459, 0.022890890017151833, -0.011206000111997128, -0.02505546621978283, 0.0022747223265469074, 0.014242155477404594, 0.003172638826072216, 0.0504557341337204, -0.031702443957328796, 0.008706199936568737, -0.023427244275808334, -0.05823288857936859, 0.026856089010834694, -0.038885779678821564, 0.00011830052244476974, -0.027258355170488358, 0.051107022911310196, 0.062063999474048615, -0.04513048753142357, -0.012671399861574173, -0.047620709985494614, -0.04486231133341789, -0.02009417861700058, 0.0001535437477286905, 0.08060657978057861, 0.0005414437619037926, 0.0021609861869364977, -0.005545533262193203, 0.006024422124028206, -0.015085000544786453, 0.012470266781747341, -0.04945964366197586, 0.07256124168634415, 0.027239199727773666, -0.011052755638957024, 0.04620319977402687, 0.0498044453561306, -0.016895201057195663, 0.0072647444903850555, 0.0601484440267086, 0.018667088821530342, 0.059650398790836334, -0.020879555493593216, 0.0155255775898695, -0.018245667219161987, -0.039613690227270126, -0.028771644458174706, -0.011378400027751923, -0.012862956151366234, 0.012728867121040821, -0.014021866954863071, 0.0017299861647188663, -0.0035749056842178106, 0.0003040944575332105, -0.017910445109009743, -0.09049084782600403, -0.03995848819613457, 0.00022866945073474199, -0.05306088924407959, -0.03179822117090225, -0.05474657937884331, 0.027718089520931244, -0.040456533432006836, 0.016674911603331566, 0.04493893310427666, -0.026013243943452835, -0.04064808785915375, 0.03608906641602516, -0.016243910416960716, -0.02643466740846634, 0.010497245006263256, -0.06478408724069595, 0.04685448855161667, 0.004491977859288454, -0.03779391199350357, 0.028886578977108, -0.0457051545381546, 0.043904535472393036, 0.033905334770679474, 0.0122882891446352, 0.037506576627492905, 0.041299376636743546, 0.02319737710058689, 0.042333777993917465, 0.022182133048772812, 0.002309441799297929, 0.027756400406360626, -0.019011888653039932, 0.003110383404418826, 0.06547369062900543, -0.02369542233645916, -0.00823688879609108, -0.030361555516719818, -0.03972862288355827, -0.02934631146490574, -0.020036710426211357, 0.07474497705698013, -0.014424133114516735, -0.021952267736196518, 0.022105511277914047, 0.04739084467291832, 0.019845155999064445, 0.017728466540575027, 0.02628142200410366, -0.01909809000790119, 0.013571711257100105, 0.0008667889051139355, -0.0015899111749604344, 0.02354217879474163, -0.03317742422223091, 0.03243035450577736, 0.01057386677712202, -0.029058977961540222, 0.007489822339266539, -0.014481600373983383, -0.05980364605784416, 0.04877004399895668, -0.031702443957328796, 0.015439378097653389, 0.033426444977521896, 0.04666293412446976, -0.018111577257514, -0.072446309030056, 0.04857848957180977, -0.0023980361875146627, -0.04015004634857178, -0.027909643948078156, -0.04831031337380409, -0.012039266526699066, 0.01485513336956501, -0.026319732889533043, 0.02319737710058689, 0.0029858723282814026, 0.015008377842605114, -0.0030672834254801273, -0.054861512035131454, -0.02321653440594673, 0.00186886393930763, 0.0058137113228440285, 0.00126666110008955, -0.0016461805207654834, -0.07030089199542999, 0.018398910760879517, -0.03900071233510971, 0.04501555487513542, -0.03208555653691292, -0.07846115529537201, 0.0004513527965173125, -0.024001911282539368, -0.06363475322723389, 0.01679942198097706, 0.04827199876308441, 0.024978844448924065, -0.03198977932333946, -0.020209111273288727, 0.0017706917133182287, 0.02354217879474163, 0.0730976015329361, 0.026338888332247734, 0.042333777993917465, -0.03231542184948921, 0.04133768752217293, -0.010564289055764675, -0.0545550212264061, -0.05428684502840042, 0.05083884671330452, 0.03553355485200882, 0.0027440334670245647, -0.05463164672255516, -0.07045413553714752, -0.023829510435461998, -0.035974133759737015, -0.04624151065945625, 0.05049404501914978, 0.005253411363810301, -0.045436978340148926, 0.04264026880264282, 0.01763268932700157, -0.02436586655676365, 0.00446803355589509, 0.06221724674105644, 0.014337933622300625, 0.03695106878876686, -0.007058822084218264, -0.024978844448924065, 0.014357089065015316, -0.015372333116829395, -0.013638755306601524, 0.05463164672255516, -0.019155556336045265, -0.022277912124991417, 0.11930079758167267, 0.039613690227270126, 0.04076302424073219, -0.00528693338856101, 0.007576022297143936, -0.00006551050319103524, -0.007820256054401398, -0.05080053210258484, -0.007485033478587866, -0.011119799688458443, -0.00532045541331172, -0.0033426445443183184, -0.015611778013408184, -0.05685368925333023, 0.0223162230104208, -0.01763268932700157, -0.03969031199812889, 0.018169045448303223, 0.05095377936959267, 0.06689120084047318, 0.020017554983496666, 0.0504557341337204, -0.009400589391589165, -0.021760711446404457, 0.021511688828468323, -0.0231782216578722, 0.015583044849336147, -0.04470906779170036, -0.035303689539432526, 0.0342884436249733, 0.017967911437153816, 0.0033929278142750263, -0.04072471335530281, -0.04693111032247543, -0.023082444444298744, -0.02095617726445198, -0.01705802232027054, -0.00012540903117042035, -0.02268017828464508, 0.012297866865992546, 0.04773564636707306, 0.034077733755111694, -0.04991937801241875, -0.011914755217730999, -0.02302497811615467, 0.020324043929576874, -0.010717533528804779, -0.019117245450615883, -0.06325164437294006, 0.002291483338922262, -0.0016114611644297838, -0.03110862337052822, -0.019347110763192177, 0.02300582267343998, -0.011627422645688057, -0.04585840180516243, -0.07807804644107819, -0.05635564401745796, -0.018896955996751785, -0.07175671309232712, -0.039383821189403534, 0.03999679908156395, -0.009802855551242828, 0.008854655548930168, -0.010382311418652534, 0.031166089698672295, -0.002317822305485606, 0.021952267736196518, -0.03174075484275818, -0.051949866116046906, -0.012690555304288864, -0.04030328989028931, 0.08030009269714355, 0.06011013314127922, 0.028216132894158363, 0.06183413416147232, 0.014682733453810215, 0.043674666434526443, -0.028541777282953262, -0.011282621882855892, -0.02865671180188656, -0.009113255888223648, -0.037506576627492905, 0.013255644589662552, -0.010976133868098259, 0.0064410557970404625, -0.01895442232489586, -0.049344711005687714, -0.014644422568380833, -0.01582248881459236, -0.025304488837718964, -0.03900071233510971, 0.0066613443195819855, -0.022948356345295906, 0.0023716972209513187, -0.03628062084317207, 0.022967511788010597, 0.006254288833588362, 0.023733733221888542, 0.03198977932333946, 0.012470266781747341, -0.017316622659564018, -0.04735253378748894, -0.002119083423167467, -0.00266022770665586, -0.041299376636743546, -0.03739164397120476, 0.0026386778336018324, 0.0019478806061670184, -0.040111735463142395, -0.07198657840490341, 0.027430756017565727, 0.05336738005280495, 0.01587037742137909, 0.037372488528490067, 0.08489742130041122, 0.04754408821463585, 0.05398035794496536, 0.010985711589455605, 0.0029403779190033674, 0.023312311619520187, 0.022028889507055283, -0.0295378677546978, -0.010516400448977947, 0.03382871299982071, 0.013293955475091934, 0.029269689694046974, 0.0300742220133543, -0.008955222554504871, 0.02024742215871811, -0.04279351234436035, 0.0278138667345047, 0.007925610989332199, 0.033943645656108856, -0.022622711956501007, -0.010334421880543232, -0.05597253516316414, 0.051605068147182465, -0.005392288789153099, 0.01358128897845745, 0.047812268137931824, -0.06827040016651154, -0.005765822250396013, 0.04976613447070122, 0.030476490035653114, -0.002712905639782548, 0.018188200891017914, 0.018896955996751785, 0.035112135112285614, 0.05650889128446579, 0.05053235590457916, -0.02281426638364792, -0.0082991449162364, 0.028465155512094498, -0.035993289202451706, -0.023925289511680603, 0.046279821544885635, -0.013284377753734589, -0.08780907094478607, 0.021530844271183014, -0.02319737710058689, -0.016952667385339737, -0.028733333572745323, 0.019260911270976067, 0.024595733731985092, -0.005262989085167646, 0.07727351039648056, 0.021051956340670586, 0.013332266360521317, -0.001811397261917591, 0.0025883945636451244, -0.024997999891638756, 0.00272487779147923, -0.003749700030311942, 0.018485112115740776, -0.00427408330142498, -0.04099288955330849, -0.0002593482786323875, -0.01847553439438343, -0.051068712025880814, -0.01709633320569992, -0.040418222546577454, 0.04018835723400116, -0.02246946655213833, -0.07106710970401764, -0.00440338347107172, 0.0019730222411453724, 0.014443289488554, 0.0823688879609108, 0.04539866745471954, 0.007662222255021334, 0.033024176955223083, -0.07777155935764313, -0.03875168785452843, -0.015640512108802795, -0.003814350115135312, 0.021530844271183014, 0.07800142467021942, 0.015152044594287872, 0.004724238999187946, -0.009491577744483948, 0.017067600041627884, -0.02543857879936695, -0.10045173764228821, -0.06451591104269028, 0.044364266097545624, -0.03587835654616356, 0.027967112138867378, -0.04375128820538521, 0.020343199372291565, -0.028369378298521042, 0.007279111072421074, -0.028465155512094498, 0.015669245272874832, -0.01638757809996605, -0.006761911325156689, -0.029940133914351463, 0.04072471335530281, 0.057083554565906525, 0.03400111198425293, -0.006460211239755154, 0.0028062888886779547, -0.020994490012526512, -0.018226511776447296, -0.05566604435443878, 0.05290764570236206, 0.02884826622903347, 0.02011333405971527, 0.048003822565078735, -0.0031941889319568872, 0.053827110677957535, -0.04467075690627098, 0.005895122420042753, -0.028541777282953262, 0.07930400222539902, -0.007542500272393227, 0.037027690559625626, 0.0016641388647258282, 0.013610022142529488, -0.0043818335980176926, 0.013322688639163971, -0.019864311441779137, -0.04773564636707306, 0.050417423248291016, -0.011809400282800198, 0.06440097838640213, 0.07355733215808868, 0.005368344485759735, 0.04145262390375137, -0.10604515671730042, -0.01184771116822958, -0.0176805779337883, -0.005655677989125252, 0.019711066037416458, -0.03903902322053909, -0.00725516676902771, 0.030821289867162704, -0.0018640749622136354, 0.019289644435048103, -0.02766062319278717, 0.058462757617235184, 0.0031702443957328796, -0.013389733619987965, 0.040418222546577454, 0.0567004457116127, -0.0560491569340229, 0.039613690227270126, 0.03819618001580238, -0.04819537699222565, -0.014021866954863071, 0.0405331552028656, 0.07336577773094177, -0.014203844591975212, -0.02453826740384102, 0.009644822217524052, 0.01219251099973917, -0.023810354992747307, 0.0012941972818225622, -0.0007219249964691699, 0.047467466443777084, -0.004700294695794582, -0.04582009091973305, 0.013313110917806625, 0.021664934232831, -0.00027925209724344313, -0.034594934433698654, 0.018159467726945877, -0.03639555722475052, 0.04106951132416725, 0.01990262232720852, 0.07704364508390427, 0.007628700230270624, -0.06509058177471161, -0.018983155488967896, 0.06788729131221771, 0.03926888853311539, 0.0029595333617180586, -0.031702443957328796, 0.014462444931268692, -0.006632611155509949, 0.015085000544786453, 0.06953466683626175, 0.0821390226483345, -0.050570666790008545, 0.017230423167347908, -0.0011206000344827771, -0.0023202167358249426, 0.007149811368435621, -0.024442488327622414, 0.015468111261725426, 0.03091706708073616, -0.023752888664603233, -0.03377124294638634, 0.026013243943452835, -0.020553911104798317, 0.021569155156612396, -0.0035102555993944407, 0.014998800121247768, 0.03603160008788109, -0.02453826740384102, 0.007542500272393227, -0.08374808728694916, -0.007063611410558224, -0.0070684002712368965, 0.024270089343190193, 0.04582009091973305, 0.024270089343190193, -0.027373289689421654, -0.024480801075696945, 0.0411844439804554, -0.03128102421760559, -0.004867905750870705, 0.04739084467291832, 0.00931438896805048, -0.0043530999682843685, 0.062063999474048615, -0.02130097709596157, 0.00567004457116127, -0.04562853276729584, 0.0009254527976736426, -0.029997600242495537, -0.018101999536156654, 0.05225635692477226, -0.005842444486916065, 0.021530844271183014, 0.010755844414234161, 0.02405937761068344 ]
729,166
tables.vlarray
__iter__
Iterate over the rows of the array. This is equivalent to calling :meth:`VLArray.iterrows` with default arguments, i.e. it iterates over *all the rows* in the array. Examples -------- :: result = [row for row in vlarray] Which is equivalent to:: result = [row for row in vlarray.iterrows()]
def __iter__(self): """Iterate over the rows of the array. This is equivalent to calling :meth:`VLArray.iterrows` with default arguments, i.e. it iterates over *all the rows* in the array. Examples -------- :: result = [row for row in vlarray] Which is equivalent to:: result = [row for row in vlarray.iterrows()] """ if not self._init: # If the iterator is called directly, assign default variables self._start = 0 self._stop = self.nrows self._step = 1 # and initialize the loop self._init_loop() return self
(self)
[ 0.04101388901472092, -0.05971192196011543, -0.04642270505428314, 0.02670380100607872, -0.0372886098921299, 0.001277206465601921, -0.03345587104558945, 0.002789481543004513, 0.0472823865711689, -0.00769234262406826, -0.006223723292350769, -0.013665325939655304, 0.007490855176001787, 0.04738984629511833, -0.06386703997850418, -0.0028029142413288355, -0.022369584068655968, 0.028942551463842392, -0.056094102561473846, 0.058852240443229675, -0.03179024159908295, 0.018429383635520935, 0.008278895169496536, 0.060320861637592316, 0.01645033061504364, 0.06938331574201584, 0.034978218376636505, -0.01017287652939558, 0.05673886463046074, 0.012357896193861961, -0.039867646992206573, 0.025557562708854675, -0.013987706042826176, 0.008552022278308868, -0.00006383933941833675, -0.01681748405098915, -0.024160582572221756, -0.03324095159769058, 0.014444410800933838, 0.07780101895332336, 0.024697883054614067, -0.051759883761405945, 0.06569386273622513, 0.002299195621162653, -0.04104970768094063, -0.028691811487078667, 0.030518630519509315, -0.06612370163202286, 0.006237155757844448, -0.02763512171804905, 0.0012816840317100286, 0.04638688638806343, 0.037037868052721024, -0.04015420749783516, -0.06909675896167755, 0.0732518807053566, -0.013002656400203705, -0.0055520981550216675, -0.017936859279870987, -0.002621575491502881, -0.04341382533311844, -0.07515034079551697, 0.05236882343888283, 0.04298398643732071, 0.02829779125750065, -0.030052971094846725, -0.05537770316004753, 0.03490658104419708, 0.03574834764003754, 0.04248250648379326, -0.027527661994099617, 0.06547894328832626, 0.00685952790081501, 0.016468239948153496, -0.051258403807878494, 0.07206981629133224, -0.11806268244981766, 0.05154496431350708, 0.012769825756549835, -0.04832116514444351, 0.029354481026530266, 0.08403369784355164, -0.013181756250560284, 0.010459437035024166, 0.0036760263610631227, -0.04108552634716034, -0.028691811487078667, 0.009769901633262634, 0.0359632708132267, 0.06852363795042038, 0.004367799963802099, 0.04097806662321091, -0.002646201755851507, 0.016468239948153496, -0.005731198471039534, 0.012832511216402054, -0.014247400686144829, -0.009349017404019833, -0.0016074220184236765, 0.0007186385337263346, 0.001077398075722158, 0.006864005234092474, 0.06623116135597229, -0.018787585198879242, 0.010396751575171947, -0.020471123978495598, -0.03682294860482216, -0.03907960653305054, 0.04488244652748108, 0.061646200716495514, -0.01801745407283306, 0.07056538015604019, -0.057956743985414505, 0.032345451414585114, -0.04875100404024124, -0.013647415675222874, 0.009940046817064285, 0.015662290155887604, -0.01503544021397829, -0.011211656965315342, 0.013522045686841011, 0.006666995584964752, -0.016790619120001793, 0.01203551609069109, -0.001897340058349073, -0.014014570973813534, 0.01085345633327961, 0.0009990418329834938, 0.02011292427778244, -0.07013554126024246, 0.03342004865407944, -0.03161114081740379, 0.012635501101613045, -0.05258374288678169, -0.000034735596273094416, -0.04352128505706787, 0.09571100771427155, -0.033115580677986145, -0.030948471277952194, 0.02034575305879116, 0.017721939831972122, 0.0015145138604566455, 0.019557714462280273, 0.06709083914756775, 0.0015436176909133792, -0.0041058664210140705, 0.04097806662321091, 0.04814206436276436, 0.030590271577239037, -0.006586400326341391, -0.03333050012588501, -0.0008669556700624526, 0.07006389647722244, 0.04434514790773392, -0.010181832127273083, 0.012295211665332317, -0.027491841465234756, -0.04502572491765022, 0.012725051492452621, -0.03882886841893196, -0.04022584855556488, -0.0011731046251952648, -0.06418941915035248, 0.013504136353731155, -0.03771844878792763, 0.029426120221614838, -0.09363345056772232, -0.04344964772462845, -0.06816543638706207, 0.007544585037976503, 0.07020717859268188, -0.06666100025177002, -0.005001366138458252, -0.01071913167834282, -0.03379616141319275, 0.1232207641005516, 0.02550383284687996, 0.06254170089960098, 0.004589436110109091, 0.03725278750061989, 0.003781247651204467, 0.03651848062872887, -0.039939288049936295, -0.0063446154817938805, 0.040906429290771484, 0.005225240718573332, 0.02743811160326004, -0.04484662786126137, 0.034781210124492645, 0.03603490814566612, -0.02321135252714157, -0.056488122791051865, -0.0007746072369627655, 0.0033021552953869104, -0.018429383635520935, 0.013495180755853653, -0.010978826321661472, 0.08016513288021088, -0.008552022278308868, 0.042804885655641556, -0.026256052777171135, -0.012465355917811394, -0.0027626166120171547, -0.02407103218138218, -0.01918160356581211, 0.010459437035024166, -0.030178340151906013, -0.041801925748586655, -0.013325035572052002, 0.010298246517777443, -0.00392900500446558, -0.04352128505706787, 0.0051491232588887215, 0.05580754205584526, 0.046171966940164566, 0.03193351998925209, -0.013235486112535, -0.04352128505706787, 0.001411531469784677, 0.005368520971387625, 0.05312104523181915, -0.03469165787100792, -0.07038627564907074, -0.09578265249729156, 0.008977385237812996, -0.02817242220044136, -0.00005463947672978975, -0.042769066989421844, -0.040870606899261475, 0.025754572823643684, -0.04126462712883949, 0.009420657530426979, -0.00012690910079982132, -0.021653182804584503, 0.005865523125976324, 0.005458070896565914, 0.0019051756244152784, 0.05566426366567612, -0.013522045686841011, 0.008829627186059952, -0.025450102984905243, 0.018984593451023102, 0.020829323679208755, -0.03639310970902443, -0.056523941457271576, 0.002943955361843109, -0.01941443420946598, 0.11168672889471054, -0.03775426745414734, 0.0241426732391119, -0.042948167771101, -0.06479836255311966, 0.019772633910179138, -0.0005470943870022893, 0.05820748209953308, -0.008937086910009384, 0.043270546942949295, 0.016701070591807365, 0.024088943377137184, 0.0011954921064898372, 0.0639386773109436, -0.031073840335011482, 0.0021995711140334606, 0.024751612916588783, -0.010951961390674114, 0.0665893629193306, 0.012411626055836678, -0.0009044547332450747, 0.04312726855278015, 0.09363345056772232, 0.03875722736120224, 0.06350883841514587, -0.018357744440436363, 0.0026014267932623625, 0.012841465882956982, 0.021330803632736206, -0.016808530315756798, -0.03225589916110039, -0.040906429290771484, -0.01957562379539013, -0.0016174963675439358, 0.007114745210856199, -0.057956743985414505, -0.0008854253683239222, -0.03383198007941246, -0.08740077167749405, -0.020453214645385742, -0.0015805569710209966, -0.02620232291519642, -0.029282841831445694, 0.018662214279174805, 0.015107080340385437, -0.011175836436450481, 0.015635425224900246, 0.07303696125745773, -0.047031644731760025, -0.04484662786126137, 0.015796614810824394, -0.002135766902938485, -0.006792365573346615, 0.01054003182798624, -0.0679147019982338, 0.020865144208073616, 0.04778386652469635, -0.028530621901154518, 0.020238293334841728, -0.01768611930310726, 0.08066661655902863, -0.015268269926309586, 0.009796767495572567, 0.007790847681462765, 0.02004128322005272, -0.027563482522964478, -0.0439511276781559, 0.006640130653977394, -0.059389542788267136, 0.02527100220322609, 0.018859224393963814, -0.034942399710416794, 0.020471123978495598, -0.04072732850909233, -0.014363816007971764, -0.01674584485590458, -0.020399482920765877, -0.0372886098921299, 0.03739606961607933, 0.07106685638427734, 0.0023171056527644396, -0.05064946413040161, 0.03624982759356499, 0.08080989867448807, -0.009653487242758274, -0.002921567764133215, 0.08188449591398239, 0.03422600030899048, -0.0073520527221262455, 0.032685741782188416, 0.0369662269949913, -0.02297852374613285, -0.007455035112798214, 0.0030917127151042223, -0.040476586669683456, -0.01453396026045084, -0.032614100724458694, 0.016324959695339203, -0.018554754555225372, -0.01722045987844467, -0.029050011187791824, 0.059353720396757126, -0.004186461213976145, 0.03821992874145508, 0.012062381021678448, -0.029444031417369843, 0.03746770694851875, -0.008735599927604198, -0.0059685055166482925, 0.007293845061212778, -0.00020022813987452537, -0.019754724577069283, 0.024017302319407463, 0.015966759994626045, 0.0319693386554718, -0.018465204164385796, 0.012339985929429531, 0.00013901233614888042, -0.020256204530596733, -0.08417697250843048, -0.011319116689264774, -0.013172800652682781, 0.05971192196011543, -0.030088791623711586, -0.020184563472867012, 0.021169614046812057, -0.02278151363134384, 0.021420354023575783, -0.06064324080944061, -0.05491204187273979, 0.009563936851918697, -0.0035752826370298862, -0.02038157358765602, 0.06110890209674835, -0.023587463423609734, 0.05878060311079025, -0.02321135252714157, -0.011865371838212013, -0.032811108976602554, -0.0028432116378098726, 0.014471275731921196, -0.0208114143460989, 0.0031252941116690636, -0.05387326329946518, 0.0012134021380916238, -0.026417242363095284, -0.04173028841614723, -0.017238369211554527, -0.0016589132137596607, 0.02030993439257145, -0.005467026028782129, -0.004387948662042618, -0.07572345435619354, -0.03693040832877159, 0.0004790923558175564, -0.019486073404550552, 0.05716870352625847, -0.011453441344201565, -0.03875722736120224, 0.03907960653305054, -0.042840708047151566, 0.006393868010491133, -0.008296805433928967, 0.03659011796116829, 0.01894877478480339, -0.00508643826469779, -0.03239918127655983, 0.040404949337244034, 0.030679820105433464, -0.0030424604192376137, 0.03179024159908295, 0.05211808532476425, 0.07515034079551697, 0.015733929350972176, 0.017175685614347458, 0.002127931220456958, 0.038506489247083664, -0.03918706998229027, -0.02084723301231861, 0.016996584832668304, -0.01921742409467697, 0.01020869705826044, -0.05287030339241028, -0.03386779874563217, -0.023784473538398743, -0.010996736586093903, 0.009232602082192898, -0.029623130336403847, -0.028082871809601784, -0.052189722657203674, -0.001921966322697699, 0.006577445659786463, 0.0007969947764649987, 0.08310237526893616, 0.01711300015449524, 0.028691811487078667, -0.07722789794206619, 0.0005591276567429304, -0.005175988655537367, -0.005122258327901363, 0.004506602417677641, -0.02561129257082939, 0.0009878481505438685, 0.01968308351933956, 0.034011080861091614, 0.032381270080804825, -0.020238293334841728, -0.029229111969470978, 0.02287106215953827, -0.04817788675427437, -0.0469600073993206, 0.009734082035720348, 0.01335190050303936, 0.020130833610892296, 0.040870606899261475, 0.0086594820022583, -0.06279244273900986, 0.014148895628750324, -0.014641420915722847, -0.03003506176173687, -0.0002727076644077897, -0.03290066123008728, -0.059891022741794586, -0.0024715792387723923, -0.015295135788619518, -0.006353570614010096, -0.03779008984565735, 0.06143128126859665, 0.030715640634298325, -0.06229096278548241, 0.0025365028996020555, -0.038613948971033096, -0.03725278750061989, -0.10294664651155472, -0.030321620404720306, 0.031109660863876343, -0.02417849190533161, 0.013029521331191063, 0.014802610501646996, 0.024679971858859062, 0.004804356023669243, -0.005458070896565914, -0.04502572491765022, 0.012259391136467457, 0.045670486986637115, -0.03227381035685539, 0.051688242703676224, 0.047031644731760025, -0.0010718012927100062, 0.059604462236166, 0.020471123978495598, 0.0271336417645216, 0.004477498587220907, 0.008811716921627522, 0.0063580479472875595, 0.00887440238147974, 0.002527548000216484, 0.028727632015943527, 0.030858920887112617, 0.041336268186569214, 0.0030312666203826666, -0.042769066989421844, -0.027742581441998482, -0.010432572104036808, -0.042303405702114105, -0.08217105269432068, -0.02553965151309967, -0.006331183016300201, -0.05118676275014877, -0.06436852365732193, 0.025790391489863396, -0.020703954622149467, 0.0359632708132267, 0.05337178334593773, 0.008068452589213848, -0.06461925804615021, 0.03922288864850998, -0.020668134093284607, 0.0622551403939724, 0.022100932896137238, -0.02759930118918419, 0.019772633910179138, -0.010119146667420864, -0.019772633910179138, -0.02077559381723404, 0.024984441697597504, 0.03832738846540451, -0.03693040832877159, -0.00720877293497324, 0.0171488206833601, -0.01025347225368023, 0.030894741415977478, 0.06146709993481636, 0.033885709941387177, 0.018733853474259377, 0.031073840335011482, -0.030948471277952194, -0.01825028471648693, -0.019665174186229706, -0.0586015023291111, -0.019718904048204422, 0.034942399710416794, -0.004220042377710342, 0.029748501256108284, -0.013960841111838818, 0.019324883818626404, -0.004334218800067902, -0.026327691972255707, 0.06247005984187126, -0.03693040832877159, -0.024590423330664635, 0.008587842807173729, -0.00968930684030056, 0.009429612196981907, 0.0018324162811040878, -0.054088182747364044, -0.01907414384186268, 0.007629657629877329, 0.03076937049627304, 0.04359292611479759, 0.04674508422613144, -0.009769901633262634, 0.029408210888504982, 0.014820520766079426, 0.015375730581581593, -0.027223192155361176, 0.029855960980057716, 0.013799650594592094, 0.01236685086041689, -0.007549062836915255, -0.02561129257082939, -0.037610989063978195, -0.10595552623271942, -0.020793503150343895, -0.04481080546975136, 0.01941443420946598, -0.05763436108827591, -0.055485162883996964, -0.02177855372428894, -0.0785890594124794, 0.04015420749783516, -0.01808013953268528, -0.009546027518808842, 0.03123502992093563, -0.04359292611479759, -0.08331729471683502, -0.0029797754250466824, 0.004549138713628054, 0.02836943231523037, -0.023139713332057, -0.043270546942949295, 0.009922136552631855, 0.010692266747355461, -0.06454762071371078, 0.05258374288678169, -0.033276770263910294, 0.04122880846261978, -0.0057535856030881405, -0.04878682643175125, -0.009196782484650612, 0.0019275632221251726, 0.025217272341251373, 0.044201865792274475, -0.0073207104578614235, 0.004314070101827383, 0.04312726855278015, -0.03143204003572464, -0.037181150168180466, -0.005467026028782129, 0.0008081885171122849, 0.033545419573783875, 0.05720452219247818, 0.011193746700882912, -0.04541974514722824, -0.01340563129633665, -0.004687941167503595, 0.013557866215705872, -0.05580754205584526, -0.06444016098976135, 0.03469165787100792, -0.022548682987689972, 0.06816543638706207, -0.007034150417894125, -0.013128026388585567, -0.013638461008667946, 0.04054822772741318, -0.023068072274327278, 0.009116187691688538, -0.04491826519370079, -0.022459132596850395, 0.0020909919403493404, -0.009420657530426979, 0.0013645177241414785, 0.01705031469464302, 0.031378310173749924, -0.006738635245710611, -0.010656447149813175, 0.006080443039536476, -0.0356229804456234, 0.004970023408532143, 0.01744433492422104, 0.048034604638814926, -0.02654261142015457, -0.02290688268840313, 0.027653031051158905, -0.014453365467488766, 0.027617212384939194, -0.08439189195632935, 0.014319040812551975, 0.002809630474075675, 0.015536920167505741, 0.046136144548654556, -0.0015290657756850123, -0.009975867345929146, -0.0017775669693946838, -0.011713136918842793, -0.08403369784355164, 0.09513789415359497, 0.0028723154682666063, 0.04452424496412277, 0.07056538015604019, -0.006017758045345545, 0.013092205859720707, -0.05376580357551575, 0.07543689757585526, -0.04312726855278015, 0.00890574511140585, 0.012501176446676254, -0.0159846693277359, -0.05204644426703453, -0.07163997739553452, 0.014865295961499214, 0.01602048985660076, -0.07429065555334091, 0.02639933116734028, -0.025682931765913963, 0.0017551794881001115, -0.03882886841893196, 0.007598315365612507, -0.008395309560000896, 0.017829399555921555, 0.03990346938371658, -0.07787265628576279, -0.011140016838908195, -0.009886316955089569, 0.059317901730537415, 0.0016298094997182488, -0.015733929350972176, 0.014211581088602543, 0.0015346626751124859, -0.03179024159908295, 0.014372770674526691, 0.0287992712110281, 0.042840708047151566, 0.025593381375074387, -0.018733853474259377, 0.06845200061798096, 0.014014570973813534, 0.009734082035720348, -0.00761622516438365, -0.003297677729278803, -0.0018659975612536073, 0.039473626762628555, 0.00486256368458271, 0.07450557500123978, -0.026184411719441414, -0.03175441920757294, 0.019503984600305557, 0.04391530528664589, 0.035246867686510086, -0.024088943377137184, 0.0029954465571790934, 0.016136905178427696, 0.048894286155700684, -0.02767094224691391, -0.004578242544084787, 0.06934750080108643, -0.04731820523738861, 0.04549138620495796, -0.045133184641599655, 0.06522820144891739, 0.005744630936533213, 0.037109509110450745, -0.0034454353153705597, -0.02104424312710762, 0.00887440238147974, 0.005471503362059593, 0.013611596077680588, -0.02038157358765602, 0.0033133490942418575, 0.03821992874145508, 0.019754724577069283, 0.013951885513961315, -0.053264323621988297, -0.023533733561635017, -0.0008059497340582311, -0.011157926172018051, -0.002957387827336788, 0.006299840752035379, 0.03612446039915085, 0.05165242403745651, 0.009331107139587402, 0.010745996609330177, 0.024590423330664635, -0.017623433843255043, 0.009984822012484074, 0.04441678524017334, 0.022297943010926247, -0.0006380435661412776, 0.007419215049594641, -0.07020717859268188, -0.027223192155361176, -0.018259240314364433, -0.020721863955259323, 0.009259467013180256, 0.017256280407309532, 0.05820748209953308, -0.024966532364487648, 0.009304242208600044, 0.07056538015604019, 0.029085831716656685 ]
729,168
tables.vlarray
__next__
Get the next element of the array during an iteration. The element is returned as a list of objects of the current flavor.
def __next__(self): """Get the next element of the array during an iteration. The element is returned as a list of objects of the current flavor. """ if self._nrowsread >= self._stop: self._init = False raise StopIteration # end of iteration else: # Read a chunk of rows if self._row + 1 >= self.nrowsinbuf or self._row < 0: self._stopb = self._startb + self._step * self.nrowsinbuf self.listarr = self.read(self._startb, self._stopb, self._step) self._row = -1 self._startb = self._stopb self._row += 1 self.nrow += self._step self._nrowsread += self._step return self.listarr[self._row]
(self)
[ 0.02842206135392189, -0.04604052007198334, -0.09286805987358093, 0.019049400463700294, -0.005240820813924074, 0.03995902091264725, 0.0002115668321494013, 0.014613483101129532, -0.0006338620441965759, -0.0360775962471962, 0.00011284030188107863, -0.016920875757932663, -0.007552684750407934, 0.040638718754053116, -0.035451557487249374, 0.023735731840133667, 0.0069579496048390865, 0.017117628827691078, -0.07050961256027222, 0.09093628823757172, -0.046827539801597595, 0.04389410838484764, 0.016733063384890556, 0.05738072842359543, 0.006287196185439825, 0.06521512567996979, 0.06542976945638657, -0.005795310251414776, 0.035201143473386765, -0.014184201136231422, -0.0251487847417593, 0.010893036611378193, -0.02906598523259163, 0.014014276675879955, 0.0214462261646986, 0.02216169610619545, -0.00490991584956646, 0.02464795485138893, -0.012136166915297508, 0.04553969204425812, 0.027867572382092476, -0.07176168262958527, 0.07208364456892014, -0.004874142352491617, -0.025810595601797104, 0.012976844795048237, 0.011894695460796356, -0.028296854346990585, -0.017189176753163338, -0.00944420974701643, 0.04303554445505142, 0.030139191076159477, 0.02302026003599167, 0.0007601873367093503, -0.0182176660746336, 0.041175320744514465, -0.02201860211789608, -0.023968258872628212, -0.032857976853847504, 0.04460958018898964, -0.030675793066620827, -0.05687989667057991, 0.05809619650244713, -0.015382613986730576, 0.023592635989189148, -0.018020911142230034, -0.03688250109553337, -0.010186510160565376, -0.012744316831231117, 0.03335880860686302, 0.01225243043154478, 0.06578750163316727, -0.0124849583953619, 0.009426322765648365, -0.06646720319986343, 0.00420562457293272, -0.03641744330525398, 0.034879181534051895, 0.03613125532865524, -0.05162119120359421, 0.0031346548348665237, 0.1154053807258606, -0.0006931119714863598, 0.00033984845504164696, -0.020247813314199448, -0.02824319526553154, 0.03597027435898781, 0.02468372881412506, -0.04861621558666229, 0.03920777887105942, -0.00029680842999368906, 0.04171192646026611, -0.01403216365724802, 0.054232656955718994, 0.00873321108520031, -0.04807961359620094, -0.031391263008117676, -0.021356791257858276, -0.005312367808073759, -0.007038440089672804, -0.02910175919532776, 0.017046082764863968, 0.02774236537516117, -0.019925851374864578, 0.0069892518222332, -0.013781748712062836, -0.030890434980392456, 0.019907964393496513, 0.005965234711766243, 0.040173664689064026, -0.015659859403967857, 0.06203128397464752, -0.07676997780799866, 0.059956420212984085, -0.028618816286325455, 0.0026382971554994583, 0.011814204975962639, 0.013504504226148129, -0.0137996356934309, -0.03382386267185211, 0.04346482828259468, -0.02917330525815487, -0.053552959114313126, 0.01960388943552971, 0.02468372881412506, 0.002472844673320651, 0.04536082595586777, -0.02835051529109478, 0.014050050638616085, -0.023217014968395233, -0.0008501800475642085, -0.014014276675879955, -0.005383914802223444, -0.012601222842931747, -0.02802855335175991, -0.0028484666254371405, 0.029853003099560738, -0.03301895782351494, -0.10603271424770355, -0.03788415715098381, 0.028761910274624825, 0.008992568589746952, 0.03137337788939476, 0.04403720423579216, -0.035809293389320374, 0.006220120936632156, 0.03920777887105942, 0.007744967006146908, 0.02892289124429226, 0.018477022647857666, -0.0734788104891777, -0.001849043881520629, 0.023217014968395233, 0.01658102683722973, 0.011411753483116627, 0.00302286259829998, -0.053481414914131165, -0.014309408143162727, -0.03974438086152077, -0.010517414659261703, -0.04858044162392616, -0.004219039808958769, -0.053266771137714386, -0.001375044696033001, -0.008487267419695854, 0.059169404208660126, -0.07719925791025162, -0.04836580157279968, -0.05094149336218834, 0.020104719325900078, 0.061065398156642914, -0.029298514127731323, 0.01237763836979866, 0.004923330619931221, -0.060242608189582825, 0.08671501278877258, -0.005616442766040564, 0.0728706642985344, 0.040567170828580856, 0.00026788219111040235, -0.017055025324225426, 0.012815863825380802, -0.03702559322118759, -0.04385833814740181, 0.047900743782520294, 0.08413931727409363, 0.048437345772981644, -0.02414712682366371, 0.06768350303173065, 0.06872093677520752, -0.03802725300192833, 0.0018143882043659687, 0.005205047316849232, -0.015060652047395706, -0.03294741362333298, -0.01760951615869999, -0.024665841832756996, 0.08077660948038101, 0.024343879893422127, 0.08084815740585327, -0.046970631927251816, -0.006881930865347385, 0.022429997101426125, -0.026382971554994583, -0.0350043885409832, 0.016706233844161034, -0.019013626500964165, -0.01435412559658289, -0.009596247225999832, 0.07734235376119614, -0.060385704040527344, -0.02774236537516117, 0.008169777691364288, 0.0446811281144619, 0.09623076766729355, 0.003740568645298481, -0.041318416595458984, -0.06217437982559204, 0.03246447071433067, 0.0011184815084561706, 0.05019024759531021, -0.0034655597992241383, -0.06550131738185883, -0.060278382152318954, 0.004319652449339628, -0.03101564198732376, -0.027134215459227562, -0.0428924523293972, -0.04024520888924599, 0.035058051347732544, -0.027187876403331757, -0.017564797773957253, 0.040853358805179596, -0.01158167701214552, 0.07648378610610962, 0.058775894343853, 0.014291521161794662, 0.02856515534222126, -0.03654265031218529, 0.031033528968691826, -0.06181664392352104, 0.022608865052461624, 0.013969560153782368, -0.04933168366551399, -0.04496731609106064, 0.039637062698602676, 0.015677744522690773, 0.05755959451198578, -0.0390646830201149, 0.012082506902515888, -0.0014443559339269996, 0.0038948419969528913, 0.013898013159632683, -0.03328726068139076, 0.059312496334314346, -0.06600214540958405, -0.0013974031899124384, -0.05577091872692108, 0.003995454870164394, -0.0023856465704739094, 0.04518195614218712, -0.053588733077049255, 0.0636768639087677, 0.020104719325900078, -0.042069658637046814, 0.0763406902551651, 0.0226982980966568, 0.011170282028615475, 0.03863540291786194, 0.08227910101413727, 0.05573514476418495, 0.03411005064845085, -0.03802725300192833, 0.011894695460796356, -0.0036220690235495567, -0.013316692784428596, -0.006220120936632156, 0.013057335279881954, 0.0055135940201580524, -0.009336888790130615, -0.016196461394429207, 0.04403720423579216, -0.073836550116539, 0.011358092539012432, -0.03563042730093002, -0.06600214540958405, -0.011554847471415997, -0.03169533982872963, 0.014524049125611782, 0.00007371301762759686, 0.016885101795196533, 0.003047456732019782, -0.011089791543781757, -0.03734755516052246, 0.07065270096063614, -0.013558164238929749, -0.034736089408397675, 0.004451567307114601, -0.011858922429382801, -0.020641321316361427, -0.008053514175117016, -0.08621418476104736, -0.015516764484345913, 0.060135290026664734, -0.04439494013786316, -0.00607255520299077, -0.0030094473622739315, 0.029584702104330063, -0.058060422539711, -0.026722820475697517, 0.03885004296898842, 0.008728738874197006, 0.020068945363163948, 0.009158020839095116, -0.022680412977933884, -0.05480503290891647, -0.027688704431056976, 0.07390809059143066, -0.004288350697606802, 0.03411005064845085, -0.059491366147994995, 0.003624304896220565, 0.007279911544173956, -0.02536342665553093, -0.011599563993513584, 0.05219356715679169, -0.007315685041248798, -0.0000440181975136511, -0.01615174487233162, 0.05809619650244713, 0.024111352860927582, -0.03328726068139076, -0.06235324591398239, 0.07791472971439362, 0.028797684237360954, 0.003402956062927842, 0.01109873503446579, 0.015570424497127533, 0.019299814477562904, -0.053123679012060165, 0.00784334447234869, -0.040710266679525375, 0.019818531349301338, -0.01813717558979988, 0.04257049039006233, -0.03244658187031746, 0.069293312728405, -0.018942078575491905, 0.046720217913389206, 0.009390548802912235, 0.040567170828580856, 0.0020212039817124605, -0.020748641341924667, 0.05634329468011856, 0.010365377180278301, 0.0036287764087319374, -0.03241080790758133, 0.030049758031964302, 0.011680054478347301, 0.010982470586895943, -0.0020771000999957323, -0.020104719325900078, -0.007194949313998222, 0.015811895951628685, -0.03158801794052124, -0.03316205367445946, -0.1150476410984993, 0.0010586726712062955, -0.007145760580897331, 0.024773163720965385, -0.04639825597405434, -0.009569416753947735, -0.007789683993905783, -0.047721877694129944, 0.01760951615869999, -0.06661029905080795, -0.02294871397316456, 0.04582588002085686, 0.014389898627996445, -0.004570067394524813, 0.047972291707992554, 0.005285537801682949, 0.016876159235835075, 0.03781261295080185, -0.02536342665553093, -0.009399492293596268, -0.03403850644826889, -0.010982470586895943, -0.01842336356639862, 0.029262740164995193, -0.05927672237157822, 0.019764870405197144, -0.026597613468766212, -0.025774821639060974, -0.0327327698469162, -0.01531106699258089, 0.05544895678758621, -0.007481137290596962, -0.025882141664624214, -0.04532505199313164, -0.02209014818072319, 0.03802725300192833, -0.053445640951395035, 0.07190477848052979, -0.02418290078639984, -0.008236853405833244, 0.03323360159993172, -0.04511040821671486, -0.03446778655052185, 0.014685030095279217, 0.015284236520528793, 0.004187737591564655, 0.03101564198732376, -0.03713291510939598, 0.02098117023706436, 0.05509122088551521, -0.0665387511253357, 0.029548928141593933, 0.06639565527439117, 0.05809619650244713, -0.0033381166867911816, 0.02266252599656582, -0.004511935170739889, 0.017063969746232033, -0.06600214540958405, -0.03877849504351616, 0.02543497271835804, 0.01685827225446701, -0.03069368004798889, -0.03198152780532837, -0.024111352860927582, -0.011232885532081127, -0.020373020321130753, -0.05498390272259712, -0.03673940524458885, -0.040424078702926636, -0.06589482724666595, -0.018020911142230034, -0.003731625387445092, -0.015606198459863663, 0.07676997780799866, 0.06875670701265335, 0.026257764548063278, 0.0033224658109247684, 0.006703063379973173, -0.011340206488966942, -0.021070603281259537, 0.010696282610297203, -0.027903346344828606, -0.012699599377810955, -0.02414712682366371, 0.001985430484637618, 0.03275065869092941, 0.0010782362660393119, 0.004927802365273237, -0.021821847185492516, -0.010043416172266006, -0.022179583087563515, 0.0372760072350502, -0.01133126299828291, 0.035344239324331284, 0.015954989939928055, 0.029709909111261368, -0.08371003717184067, 0.02141045220196247, -0.020802302286028862, -0.010678395628929138, 0.058060422539711, -0.034664541482925415, -0.03176688775420189, -0.020086832344532013, -0.030425379052758217, -0.02251943200826645, -0.06178086996078491, 0.04582588002085686, 0.02198282815515995, -0.012413411401212215, 0.02913753315806389, 0.006770138628780842, -0.046791765838861465, -0.06793391704559326, -0.0995219349861145, 0.029924549162387848, -0.04221275448799133, -0.04364369437098503, 0.009417379274964333, 0.02273407205939293, 0.0002680219186004251, -0.0005648303776979446, -0.017806269228458405, 0.01446144562214613, 0.02767081744968891, -0.02212592214345932, 0.023735731840133667, 0.03831344097852707, 0.030264398083090782, 0.048687759786844254, 0.015946047380566597, 0.060171060264110565, 0.010293830186128616, 0.015346840023994446, -0.011197111569344997, 0.008250268176198006, -0.04221275448799133, 0.015302123501896858, 0.030282285064458847, 0.0026271180249750614, -0.002011142671108246, -0.03745487704873085, -0.016670459881424904, 0.017877817153930664, 0.027330970391631126, -0.073836550116539, -0.015480991452932358, -0.014926501549780369, -0.0009228450362570584, -0.006649403367191553, 0.030604247003793716, -0.02856515534222126, 0.05602133274078369, 0.04446648433804512, 0.006573384627699852, -0.05498390272259712, 0.039923250675201416, -0.026454517617821693, 0.0362028032541275, -0.03072945401072502, -0.0428924523293972, 0.00026075541973114014, 0.006864044349640608, 0.0063497996889054775, -0.006864044349640608, 0.006430290173739195, 0.016670459881424904, 0.008487267419695854, -0.00772708049044013, 0.0421769805252552, 0.02539919875562191, 0.05194315314292908, 0.027384629473090172, 0.02479105070233345, -0.012681713327765465, 0.01147435698658228, -0.010651566088199615, -0.03432469442486763, -0.0049322741106152534, -0.041246868669986725, -0.027831798419356346, 0.028082214295864105, -0.0025510992854833603, 0.03631012514233589, -0.03312627971172333, 0.030085530132055283, -0.011912582442164421, 0.011635337956249714, 0.005898158997297287, 0.00001276877083000727, -0.040781814604997635, -0.012538619339466095, -0.00008859536319505423, 0.01124182902276516, 0.034736089408397675, -0.07376500219106674, -0.004699746146798134, 0.030604247003793716, 0.005437575280666351, 0.020176265388727188, 0.03275065869092941, 0.041425738483667374, -0.029996097087860107, 0.029996097087860107, 0.04543237015604973, -0.025417085736989975, 0.027223648503422737, 0.05684412270784378, 0.0028462307527661324, -0.009184851311147213, -0.026257764548063278, -0.001167111098766327, -0.0991642028093338, 0.02201860211789608, -0.019872190430760384, 0.027796026319265366, -0.05927672237157822, -0.013119938783347607, -0.02130313217639923, -0.07262025028467178, 0.013531333766877651, -0.015436273999512196, -0.02198282815515995, 0.04471690207719803, -0.03931510075926781, -0.04553969204425812, -0.0010318424319848418, 0.009560473263263702, 0.0019474209984764457, -0.014237861149013042, -0.03090832196176052, -0.033984843641519547, 0.008214494213461876, -0.05713031068444252, 0.04990405961871147, -0.00967673771083355, 0.007530326023697853, 0.0105442451313138, -0.021714527159929276, -0.02767081744968891, -0.047399915754795074, 0.02493414469063282, 0.04357214644551277, -0.004950161091983318, 0.011340206488966942, 0.005482292268425226, -0.05165696516633034, -0.042141206562519073, 0.0006182111683301628, -0.014076880179345608, 0.02273407205939293, 0.04335750639438629, 0.020784415304660797, -0.011608507484197617, 0.01106296107172966, 0.015588311478495598, 0.01870955154299736, -0.058775894343853, -0.06149468198418617, 0.03391329571604729, -0.027402516454458237, 0.054411523044109344, 0.016089141368865967, -0.0002418904914520681, -0.028296854346990585, 0.059455592185258865, -0.023288561031222343, -0.013835408724844456, -0.009090946055948734, 0.006546554155647755, -0.0005382797098718584, -0.01376386173069477, -0.001509195426478982, 0.017332270741462708, 0.04439494013786316, -0.02507723867893219, -0.047256819903850555, -0.0008507390157319605, -0.05866857245564461, 0.0362028032541275, 0.025774821639060974, 0.0756252259016037, 0.017761552706360817, -0.013558164238929749, 0.06997300684452057, -0.015677744522690773, 0.02486259676516056, -0.03597027435898781, -0.05645061656832695, 0.01860223151743412, 0.027939120307564735, 0.024665841832756996, 0.0228771660476923, -0.023270675912499428, 0.008657191880047321, -0.006814855616539717, -0.07022342085838318, 0.0293879471719265, -0.002428127685561776, 0.011447526514530182, 0.10460177063941956, -0.0020670387893915176, 0.01063367910683155, -0.05176428332924843, 0.027831798419356346, -0.016071254387497902, -0.015284236520528793, 0.024486975744366646, -0.014041107147932053, -0.01853068359196186, -0.07390809059143066, 0.022573091089725494, 0.005030651111155748, -0.021821847185492516, 0.017332270741462708, -0.03892159089446068, 0.02781391143798828, -0.03554099425673485, 0.048151157796382904, 0.011304432526230812, -0.002399061806499958, 0.016563139855861664, -0.05033334344625473, 0.010267000645399094, 0.028368402272462845, 0.053302545100450516, 0.000054044565331423655, -0.07576831430196762, -0.008366531692445278, -0.003700323635712266, -0.006403460167348385, -0.00784334447234869, 0.007736023981124163, 0.03301895782351494, 0.0023744674399495125, 0.02133890427649021, 0.01271748635917902, 0.025202445685863495, 0.009220625273883343, -0.03375231847167015, 0.0027277308981865644, -0.029745683073997498, 0.029942436143755913, 0.004288350697606802, 0.08392468094825745, -0.04199811443686485, -0.041246868669986725, 0.0226982980966568, 0.015525707975029945, 0.020855963230133057, 0.013459786772727966, -0.03695404529571533, 0.06442811340093613, -0.0020167322363704443, 0.020891735330224037, 0.0383492149412632, 0.07462356239557266, -0.06961527466773987, 0.03641744330525398, -0.026561839506030083, 0.06228169798851013, -0.05781000852584839, 0.04353637620806694, 0.010758886113762856, -0.011626394465565681, 0.0031279472168534994, 0.04332173243165016, -0.02913753315806389, -0.03927932679653168, 0.03421737253665924, 0.011143451556563377, 0.035523105412721634, 0.004051350988447666, -0.06303294003009796, -0.014157370664179325, -0.02618621662259102, 0.027187876403331757, -0.05290903523564339, -0.009721454232931137, 0.029048098251223564, 0.013200429268181324, -0.0027322026435285807, -0.009855604730546474, 0.02536342665553093, -0.059598684310913086, 0.026597613468766212, 0.05466194078326225, -0.01853068359196186, -0.03244658187031746, -0.0037696347571909428, -0.05587824061512947, -0.014863898046314716, -0.016938762739300728, -0.04425184428691864, 0.025059351697564125, -0.020694982260465622, 0.09873491525650024, -0.05480503290891647, -0.002157590351998806, 0.009864548221230507, 0.02820742130279541 ]
729,169
tables.vlarray
__repr__
This provides more metainfo in addition to standard __str__
"""Here is defined the VLArray class.""" import operator import sys import numpy as np from . import hdf5extension from .atom import ObjectAtom, VLStringAtom, VLUnicodeAtom from .flavor import internal_to_flavor from .leaf import Leaf, calc_chunksize from .utils import ( convert_to_np_atom, convert_to_np_atom2, idx2long, correct_byteorder, SizeType, is_idx, lazyattr) # default version for VLARRAY objects # obversion = "1.0" # initial version # obversion = "1.0" # add support for complex datatypes # obversion = "1.1" # This adds support for time datatypes. # obversion = "1.2" # This adds support for enumerated datatypes. # obversion = "1.3" # Introduced 'PSEUDOATOM' attribute. obversion = "1.4" # Numeric and numarray flavors are gone. class VLArray(hdf5extension.VLArray, Leaf): """This class represents variable length (ragged) arrays in an HDF5 file. Instances of this class represent array objects in the object tree with the property that their rows can have a *variable* number of homogeneous elements, called *atoms*. Like Table datasets (see :ref:`TableClassDescr`), variable length arrays can have only one dimension, and the elements (atoms) of their rows can be fully multidimensional. When reading a range of rows from a VLArray, you will *always* get a Python list of objects of the current flavor (each of them for a row), which may have different lengths. This class provides methods to write or read data to or from variable length array objects in the file. Note that it also inherits all the public attributes and methods that Leaf (see :ref:`LeafClassDescr`) already provides. .. note:: VLArray objects also support compression although compression is only performed on the data structures used internally by the HDF5 to take references of the location of the variable length data. Data itself (the raw data) are not compressed or filtered. Please refer to the `VLTypes Technical Note <https://support.hdfgroup.org/HDF5/doc/TechNotes/VLTypes.html>`_ for more details on the topic. Parameters ---------- parentnode The parent :class:`Group` object. name : str The name of this node in its parent group. atom An `Atom` instance representing the *type* and *shape* of the atomic objects to be saved. title A description for this node (it sets the ``TITLE`` HDF5 attribute on disk). filters An instance of the `Filters` class that provides information about the desired I/O filters to be applied during the life of this object. expectedrows A user estimate about the number of row elements that will be added to the growable dimension in the `VLArray` node. If not provided, the default value is ``EXPECTED_ROWS_VLARRAY`` (see ``tables/parameters.py``). If you plan to create either a much smaller or a much bigger `VLArray` try providing a guess; this will optimize the HDF5 B-Tree creation and management process time and the amount of memory used. .. versionadded:: 3.0 chunkshape The shape of the data chunk to be read or written in a single HDF5 I/O operation. Filters are applied to those chunks of data. The dimensionality of `chunkshape` must be 1. If ``None``, a sensible value is calculated (which is recommended). byteorder The byteorder of the data *on disk*, specified as 'little' or 'big'. If this is not specified, the byteorder is that of the platform. track_times Whether time data associated with the leaf are recorded (object access time, raw data modification time, metadata change time, object birth time); default True. Semantics of these times depend on their implementation in the HDF5 library: refer to documentation of the H5O_info_t data structure. As of HDF5 1.8.15, only ctime (metadata change time) is implemented. .. versionadded:: 3.4.3 .. versionchanged:: 3.0 *parentNode* renamed into *parentnode*. .. versionchanged:: 3.0 The *expectedsizeinMB* parameter has been replaced by *expectedrows*. Examples -------- See below a small example of the use of the VLArray class. The code is available in :file:`examples/vlarray1.py`:: import numpy as np import tables as tb # Create a VLArray: fileh = tb.open_file('vlarray1.h5', mode='w') vlarray = fileh.create_vlarray( fileh.root, 'vlarray1', tb.Int32Atom(shape=()), "ragged array of ints", filters=tb.Filters(1)) # Append some (variable length) rows: vlarray.append(np.array([5, 6])) vlarray.append(np.array([5, 6, 7])) vlarray.append([5, 6, 9, 8]) # Now, read it through an iterator: print('-->', vlarray.title) for x in vlarray: print('%s[%d]--> %s' % (vlarray.name, vlarray.nrow, x)) # Now, do the same with native Python strings. vlarray2 = fileh.create_vlarray( fileh.root, 'vlarray2', tb.StringAtom(itemsize=2), "ragged array of strings", filters=tb.Filters(1)) vlarray2.flavor = 'python' # Append some (variable length) rows: print('-->', vlarray2.title) vlarray2.append(['5', '66']) vlarray2.append(['5', '6', '77']) vlarray2.append(['5', '6', '9', '88']) # Now, read it through an iterator: for x in vlarray2: print('%s[%d]--> %s' % (vlarray2.name, vlarray2.nrow, x)) # Close the file. fileh.close() The output for the previous script is something like:: --> ragged array of ints vlarray1[0]--> [5 6] vlarray1[1]--> [5 6 7] vlarray1[2]--> [5 6 9 8] --> ragged array of strings vlarray2[0]--> ['5', '66'] vlarray2[1]--> ['5', '6', '77'] vlarray2[2]--> ['5', '6', '9', '88'] .. rubric:: VLArray attributes The instance variables below are provided in addition to those in Leaf (see :ref:`LeafClassDescr`). .. attribute:: atom An Atom (see :ref:`AtomClassDescr`) instance representing the *type* and *shape* of the atomic objects to be saved. You may use a *pseudo-atom* for storing a serialized object or variable length string per row. .. attribute:: flavor The type of data object read from this leaf. Please note that when reading several rows of VLArray data, the flavor only applies to the *components* of the returned Python list, not to the list itself. .. attribute:: nrow On iterators, this is the index of the current row. .. attribute:: nrows The current number of rows in the array. .. attribute:: extdim The index of the enlargeable dimension (always 0 for vlarrays). """ # Class identifier. _c_classid = 'VLARRAY' @lazyattr def dtype(self): """The NumPy ``dtype`` that most closely matches this array.""" return self.atom.dtype @property def shape(self): """The shape of the stored array.""" return (self.nrows,) @property def size_on_disk(self): """ The HDF5 library does not include a function to determine size_on_disk for variable-length arrays. Accessing this attribute will raise a NotImplementedError. """ raise NotImplementedError('size_on_disk not implemented for VLArrays') @property def size_in_memory(self): """ The size of this array's data in bytes when it is fully loaded into memory. .. note:: When data is stored in a VLArray using the ObjectAtom type, it is first serialized using pickle, and then converted to a NumPy array suitable for storage in an HDF5 file. This attrib
(self)
[ 0.05685191601514816, -0.028775935992598534, -0.0741952508687973, 0.05708523467183113, 0.026559410616755486, -0.00019716619863174856, -0.05716300755739212, -0.01808217540383339, -0.0474025197327137, -0.034997761249542236, -0.030350835993885994, -0.04849134013056755, -0.003276179078966379, 0.006241267081350088, -0.012482534162700176, 0.02329295314848423, 0.02667606994509697, 0.029961971566081047, 0.024984512478113174, 0.08508343994617462, -0.026734400540590286, -0.019666796550154686, -0.0005438019870780408, 0.04748029261827469, 0.04818024858832359, -0.017868300899863243, 0.03388949856162071, 0.02164028212428093, 0.006941222585737705, 0.00780644454061985, -0.06567913293838501, -0.03921693563461304, -0.04180287942290306, 0.020045939832925797, -0.0015141392359510064, -0.05420764163136482, 0.03072025626897812, -0.005050371401011944, -0.017868300899863243, 0.055218689143657684, 0.021115314215421677, -0.06105164811015129, 0.029670322313904762, -0.031925734132528305, -0.004204592201858759, 0.019083499908447266, 0.014553234912455082, -0.0288342647254467, -0.046391475945711136, 0.01737249828875065, -0.001871407963335514, -0.007349529769271612, 0.012764460407197475, 0.0009053240064531565, -0.04965793341398239, 0.0668846070766449, 0.02047368884086609, 0.019034892320632935, 0.006007948890328407, -0.014854604378342628, -0.020357029512524605, -0.007364111952483654, 0.03715595602989197, -0.0036067136097699404, -0.0525355264544487, 0.023409612476825714, -0.0018385975854471326, 0.03661154583096504, -0.021543065086007118, -0.017275283113121986, -0.04223062843084335, 0.0050795357674360275, 0.036222681403160095, 0.015399014577269554, 0.0019406743813306093, 0.06365703791379929, -0.042502835392951965, 0.019666796550154686, -0.02082366682589054, -0.014349081553518772, 0.05642416700720787, 0.050435662269592285, 0.07057881355285645, 0.001988067291676998, 0.020881997421383858, 0.004729558248072863, 0.003429294330999255, 0.08119480311870575, 0.044136062264442444, -0.00003290533641120419, 0.018422432243824005, 0.03841976448893547, -0.030350835993885994, 0.047130316495895386, -0.026034444570541382, -0.04899686202406883, 0.008511261083185673, -0.07501186430454254, -0.01466017309576273, -0.001715862425044179, 0.009065392427146435, -0.04281392693519592, 0.05024122819304466, -0.02197081595659256, -0.053079936653375626, 0.008253638632595539, -0.030098073184490204, 0.03801145404577255, 0.004766014404594898, 0.012025618925690651, -0.02545114792883396, 0.03668931871652603, -0.036300454288721085, 0.018684914335608482, -0.010518771596252918, 0.032664574682712555, 0.026539968326687813, 0.04289169982075691, -0.03243125602602959, -0.030000858008861542, 0.05031900107860565, -0.005784351844340563, -0.03674764931201935, -0.0007023856160230935, -0.006328761577606201, -0.020201485604047775, 0.02339017018675804, -0.004950725007802248, -0.006187798455357552, -0.038789182901382446, 0.0019406743813306093, 0.009643827565014362, -0.046547021716833115, -0.03392838314175606, 0.03295622393488884, -0.05576309561729431, 0.03429780527949333, -0.06074055656790733, -0.03367562219500542, -0.036144908517599106, 0.023681817576289177, 0.012093670666217804, 0.04355276748538017, -0.04024742543697357, -0.0339672714471817, 0.0004836496082134545, 0.04545820131897926, -0.03913916274905205, -0.008574451319873333, 0.02197081595659256, -0.097760409116745, -0.03558105602860451, -0.010168793611228466, 0.020026495680212975, 0.06198492273688316, 0.005186473485082388, -0.016001753509044647, -0.09433840960264206, -0.005789212882518768, 0.009551472030580044, -0.05214666202664375, -0.021523622795939445, -0.05689080432057381, 0.0015785448485985398, -0.08726108074188232, -0.013571353629231453, -0.03954746946692467, -0.03227571025490761, -0.10592655092477798, 0.05875734984874725, 0.04681922495365143, -0.04020853713154793, -0.08430571854114532, 0.03015640377998352, 0.003752537537366152, 0.05545200780034065, -0.002424323931336403, 0.03394782543182373, 0.027026047930121422, 0.00956119317561388, -0.04219174385070801, 0.050357889384031296, -0.018704358488321304, 0.02344849891960621, -0.012521420605480671, 0.027239922434091568, 0.025917785242199898, -0.02313740737736225, 0.06424032896757126, 0.040519628673791885, -0.031672973185777664, -0.038691967725753784, -0.002419463125988841, 0.029262015596032143, 0.03731150180101395, 0.013289427384734154, 0.008214752189815044, 0.04541931673884392, -0.00797171238809824, 0.02512061409652233, 0.01888906955718994, 0.007728672120720148, 0.03112856298685074, -0.061829376965761185, -0.03639766946434975, 0.01429075188934803, 0.024731749668717384, -0.037875354290008545, -0.00778700178489089, 0.01078125461935997, 0.011452044360339642, -0.010460441932082176, 0.012851955369114876, 0.02164028212428093, 0.07326197624206543, -0.03814755752682686, -0.09161635488271713, 0.023973464965820312, -0.015117088332772255, -0.012686687521636486, 0.028523175045847893, 0.024090124294161797, -0.08422794193029404, 0.016876697540283203, -0.025159500539302826, -0.021543065086007118, 0.017022522166371346, 0.00718426238745451, 0.028950924053788185, 0.04211397096514702, -0.012501977384090424, 0.011714528314769268, 0.018772410228848457, -0.0067565119825303555, -0.010402112267911434, 0.06583467125892639, 0.018811296671628952, 0.04036408290266991, -0.025081727653741837, -0.0007570696179755032, -0.03880862519145012, -0.048530228435993195, 0.02710382081568241, -0.010936800390481949, -0.038866955786943436, -0.01894739829003811, 0.049113523215055466, 0.07438968122005463, -0.04623593017458916, -0.0177224762737751, -0.02652052417397499, -0.055801983922719955, 0.009925753809511662, 0.023934578523039818, 0.0649791732430458, -0.02288464643061161, 0.02428455650806427, -0.004897255916148424, 0.006144050974398851, -0.04942461475729942, 0.02708437666296959, -0.06031280755996704, 0.0649791732430458, 0.03733094409108162, -0.01981262117624283, 0.06159605830907822, 0.05335213989019394, -0.011996454559266567, -0.03503664582967758, 0.03958635404706001, 0.029028696939349174, 0.05642416700720787, -0.04930795356631279, 0.0018471039365977049, -0.03847809135913849, 0.009677852503955364, -0.000514029583428055, -0.010761811397969723, 0.004002868663519621, 0.024401215836405754, -0.020881997421383858, -0.023759590461850166, -0.02743435464799404, 0.010761811397969723, 0.01795579493045807, -0.041686221957206726, -0.06700126826763153, -0.07816166430711746, -0.06964553892612457, -0.0114812096580863, -0.021523622795939445, -0.024556761607527733, -0.02321518026292324, 0.0029091888573020697, 0.01416437141597271, -0.0016696847742423415, -0.034064486622810364, 0.02074589394032955, 0.01863630674779415, -0.029923085123300552, -0.040519628673791885, -0.010275730863213539, 0.11494819819927216, 0.01457267813384533, -0.06198492273688316, -0.026909388601779938, -0.01624479331076145, 0.012851955369114876, 0.005502425599843264, -0.02725936658680439, -0.01945292204618454, 0.042658381164073944, -0.019054336473345757, 0.02395402267575264, 0.01106318086385727, 0.06490140408277512, -0.0018811295740306377, 0.005118422210216522, 0.010188236832618713, 0.011092345230281353, 0.009775068610906601, -0.032995108515024185, -0.03750593215227127, -0.055140916258096695, 0.01288111973553896, -0.047208089381456375, 0.07641177624464035, -0.01888906955718994, 0.003186254296451807, 0.0016174311749637127, 0.043902743607759476, -0.010227123275399208, 0.025587251409888268, 0.061090532690286636, 0.055063143372535706, 0.007568265777081251, 0.006280153524130583, -0.0051378654316067696, 0.010509049519896507, -0.01795579493045807, 0.010266009718179703, 0.004153553396463394, -0.05016345530748367, -0.013513023965060711, 0.04608038440346718, -0.03285900875926018, 0.034064486622810364, -0.046469248831272125, 0.02560669369995594, 0.0602739192545414, 0.05063009262084961, -0.03056471049785614, -0.08531676232814789, 0.03758370503783226, -0.030350835993885994, -0.0624515563249588, 0.004311529453843832, -0.021854156628251076, 0.0064065344631671906, 0.00915288645774126, -0.024653976783156395, 0.01210339181125164, 0.005225359927862883, 0.004146262537688017, 0.021873600780963898, -0.0414917878806591, -0.026326091960072517, -0.01371717732399702, 0.011529817245900631, -0.0010195528157055378, -0.027239922434091568, -0.07505074888467789, 0.06105164811015129, -0.03610602393746376, 0.05972950905561447, -0.030098073184490204, -0.06260710209608078, 0.021037543192505836, -0.010790975764393806, -0.005721161607652903, 0.024595648050308228, 0.05063009262084961, 0.026714956387877464, -0.03420059010386467, 0.017304448410868645, 0.017362777143716812, 0.003966412972658873, 0.07823943346738815, -0.04343611001968384, 0.027978764846920967, 0.04491379112005234, 0.07656732201576233, 0.02337072603404522, -0.008171005174517632, -0.028523175045847893, 0.06910113245248795, -0.05486870929598808, 0.014106041751801968, 0.009809094481170177, -0.02543170563876629, -0.02189304307103157, -0.052652183920145035, -0.06256821751594543, 0.04798581823706627, -0.020862553268671036, -0.03443390876054764, 0.04907463490962982, 0.020959770306944847, -0.04880243167281151, 0.01970568299293518, 0.06672906130552292, 0.024926181882619858, 0.003934817388653755, -0.019637631252408028, 0.019589023664593697, 0.04724697396159172, 0.014893490821123123, -0.015097645111382008, 0.06921779364347458, 0.02107642963528633, 0.014261587522923946, 0.03525052219629288, 0.015855928882956505, 0.057707417756319046, -0.015146252699196339, -0.0017778376350179315, -0.016691986471414566, 0.03040916472673416, -0.037214282900094986, -0.021543065086007118, 0.04938572645187378, 0.022670771926641464, -0.01458240021020174, -0.061168305575847626, -0.06914001703262329, 0.008375158533453941, -0.015389292500913143, -0.03826421871781349, 0.04180287942290306, 0.035308852791786194, 0.07707284390926361, 0.025042841210961342, 0.030953574925661087, 0.003096329513937235, 0.009770208038389683, -0.00574060482904315, -0.037953127175569534, 0.019540416076779366, -0.0521855503320694, -0.0543631874024868, 0.004294516984373331, 0.016205906867980957, 0.011238169856369495, -0.012793625704944134, -0.04619704186916351, -0.010061856359243393, 0.005818377714604139, -0.018218278884887695, -0.005269107408821583, -0.03701985254883766, -0.0017110016196966171, 0.02245689556002617, 0.03561994060873985, -0.03371451050043106, -0.021679168567061424, -0.014640729874372482, -0.009600079618394375, -0.02733713947236538, -0.04102515056729317, -0.06820674240589142, -0.009109139442443848, -0.020668121054768562, 0.012122835032641888, 0.006416256073862314, 0.04102515056729317, 0.020668121054768562, -0.033908940851688385, -0.03806978464126587, -0.06144051253795624, -0.004032033495604992, -0.018957119435071945, -0.06186826154589653, 0.013279705308377743, -0.00743216322734952, 0.014592121355235577, 0.05304104834794998, 0.04584706574678421, 0.02898981049656868, -0.008482095785439014, -0.08119480311870575, -0.06389035284519196, 0.02237912267446518, -0.03789479658007622, 0.050435662269592285, 0.058368485420942307, 0.037389274686574936, 0.052807729691267014, 0.02601500228047371, 0.026909388601779938, -0.01690586283802986, -0.002685592044144869, -0.007296060677617788, -0.017984960228204727, -0.06980108469724655, 0.01188951637595892, -0.011938124895095825, 0.060351692140102386, 0.007189122959971428, -0.024420659989118576, -0.041763994842767715, -0.05875734984874725, -0.02344849891960621, -0.0356588289141655, 0.009784790687263012, -0.014183814637362957, 0.05358545854687691, -0.02444010227918625, 0.027492685243487358, -0.028192639350891113, 0.04674145206809044, -0.016497554257512093, -0.03194517642259598, -0.016546163707971573, -0.043747201561927795, -0.01085902750492096, 0.008044623769819736, -0.08072816580533981, -0.011471487581729889, 0.010236844420433044, 0.04460269957780838, -0.023331839591264725, -0.022981861606240273, 0.01810161955654621, 0.005716300569474697, 0.041180696338415146, 0.02370125986635685, 0.017401663586497307, 0.031342439353466034, 0.03204239532351494, 0.039703015238046646, -0.01106318086385727, 0.01470878068357706, 0.009323013946413994, -0.009950057603418827, -0.039858561009168625, 0.0036334479227662086, 0.011539539322257042, 0.009415369480848312, 0.04238617420196533, -0.006805120036005974, 0.02875649183988571, -0.010003526695072651, 0.08570562303066254, -0.022340236231684685, -0.015292076393961906, -0.05591864138841629, -0.006941222585737705, -0.08049485087394714, 0.027278808876872063, -0.016361452639102936, 0.015000429004430771, 0.05591864138841629, -0.0271815937012434, 0.00024896409013308585, 0.015467065386474133, 0.05626862123608589, -0.023895692080259323, 0.03196462243795395, -0.00016708999464754015, -0.011374272406101227, 0.01858769915997982, 0.014407411217689514, -0.031789630651474, -0.030039744451642036, 0.012540863826870918, 0.008491817861795425, -0.03252847492694855, 0.03980023041367531, 0.0070044128224253654, -0.0749729797244072, -0.0135033018887043, 0.009395926259458065, -0.016157299280166626, -0.036378227174282074, 0.021873600780963898, 0.025490034371614456, 0.014932377263903618, 0.08998312801122665, -0.029884198680520058, 0.04650813341140747, -0.025665024295449257, 0.0009715523920021951, -0.01388244517147541, 0.005978784058243036, -0.01135482918471098, 0.04619704186916351, -0.030759142711758614, -0.003361243288964033, 0.03847809135913849, -0.008589033968746662, -0.04930795356631279, -0.009186912328004837, -0.05393543839454651, 0.017450271174311638, -0.015437901020050049, -0.03138132393360138, 0.018325215205550194, -0.03081747144460678, 0.01685725525021553, 0.03328675776720047, 0.013901888392865658, 0.024517875164747238, -0.0013901888160035014, -0.05541311949491501, -0.015554560348391533, 0.01782941445708275, -0.023234624415636063, 0.018529370427131653, 0.06579578667879105, 0.010256287641823292, -0.0271815937012434, -0.010003526695072651, 0.02611221745610237, -0.03210072219371796, -0.0536632314324379, -0.03620323911309242, 0.009624384343624115, 0.008997340686619282, 0.02792043425142765, -0.05393543839454651, 0.007480771280825138, -0.012424204498529434, 0.048024702817201614, -0.0017182928277179599, 0.019229324534535408, -0.043086130172014236, -0.022320793941617012, -0.03264513239264488, 0.03171185776591301, 0.06112942099571228, 0.014922656118869781, -0.020998656749725342, -0.0057357437908649445, 0.014125484973192215, 0.029786981642246246, 0.004634772893041372, 0.04868577420711517, 0.005390627309679985, 0.03089524433016777, 0.05245775356888771, 0.014008825644850731, 0.0007145375711843371, -0.049191296100616455, -0.01061598677188158, -0.0381864458322525, 0.07190095633268356, 0.0017450271407142282, 0.005541312042623758, -0.011617312207818031, 0.008127257227897644, -0.025042841210961342, -0.029339788481593132, -0.015097645111382008, -0.06264598667621613, 0.08072816580533981, 0.013707456178963184, 0.07415636628866196, 0.09418286383152008, 0.06447365134954453, 0.03785591199994087, -0.0488802045583725, -0.009415369480848312, 0.028600947931408882, 0.02428455650806427, 0.037292055785655975, -0.07174541056156158, -0.00504064979031682, 0.025801125913858414, -0.003835171228274703, -0.026384422555565834, -0.03723372891545296, 0.09177190065383911, -0.010003526695072651, -0.004214313812553883, 0.03810867294669151, 0.014183814637362957, -0.023817919194698334, 0.04561374709010124, 0.04678034037351608, -0.030875802040100098, -0.03385061025619507, 0.0393141508102417, 0.05047454684972763, 0.007325225509703159, -0.056618597358465195, -0.013911609537899494, 0.046391475945711136, -0.0321396104991436, -0.025878898799419403, -0.00893901102244854, 0.025217831134796143, -0.022534668445587158, -0.05241886526346207, 0.025820570066571236, 0.016565605998039246, 0.027726003900170326, -0.0429694727063179, -0.011597868986427784, -0.04281392693519592, 0.0008573235827498138, -0.03136188164353371, 0.06179048866033554, 0.008083510212600231, -0.050746750086545944, -0.023662373423576355, 0.017839135602116585, 0.007300921715795994, 0.034900542348623276, -0.033908940851688385, 0.04223062843084335, -0.001955256797373295, 0.06011837348341942, 0.08329466730356216, 0.045380428433418274, -0.07963934540748596, 0.05327436700463295, -0.004773305729031563, 0.0016150007722899318, -0.014689337462186813, 0.011870073154568672, 0.007305782288312912, 0.012958892621099949, 0.0012388963950797915, -0.00007465884846169502, 0.006912057753652334, -0.012268658727407455, -0.009060530923306942, -0.020532019436359406, 0.0015931271482259035, 0.028367629274725914, -0.0030136960558593273, -0.04744140803813934, -0.10133795440196991, -0.04094737768173218, -0.0020014343317598104, 0.02881482243537903, 0.05269107222557068, 0.05957396328449249, -0.03583381697535515, 0.01392133068293333, 0.0324895866215229, -0.0474025197327137, -0.041763994842767715, 0.009177190251648426, 0.025042841210961342, -0.0008251207764260471, 0.04907463490962982, -0.0646291971206665, -0.004182718228548765, -0.03964468464255333, -0.02782321907579899, 0.001449733623303473, -0.02140696346759796, 0.05136893317103386, 0.02710382081568241, 0.01259919349104166, -0.03243125602602959, -0.0016733304364606738 ]
729,170
tables.vlarray
__setitem__
Set a row, or set of rows, in the array. It takes different actions depending on the type of the *key* parameter: if it is an integer, the corresponding table row is set to *value* (a record or sequence capable of being converted to the table structure). If *key* is a slice, the row slice determined by it is set to *value* (a record array or sequence of rows capable of being converted to the table structure). In addition, NumPy-style point selections are supported. In particular, if key is a list of row coordinates, the set of rows determined by it is set to value. Furthermore, if key is an array of boolean values, only the coordinates where key is True are set to values from value. Note that for the latter to work it is necessary that key list would contain exactly as many rows as the table has. .. note:: When updating the rows of a VLArray object which uses a pseudo-atom, there is a problem: you can only update values with *exactly* the same size in bytes than the original row. This is very difficult to meet with object pseudo-atoms, because :mod:`pickle` applied on a Python object does not guarantee to return the same number of bytes than over another object, even if they are of the same class. This effectively limits the kinds of objects than can be updated in variable-length arrays. Examples -------- :: vlarray[0] = vlarray[0] * 2 + 3 vlarray[99] = arange(96) * 2 + 3 # Negative values for the index are supported. vlarray[-99] = vlarray[5] * 2 + 3 vlarray[1:30:2] = list_of_rows vlarray[[1,3]] = new_1_and_3_rows
def __setitem__(self, key, value): """Set a row, or set of rows, in the array. It takes different actions depending on the type of the *key* parameter: if it is an integer, the corresponding table row is set to *value* (a record or sequence capable of being converted to the table structure). If *key* is a slice, the row slice determined by it is set to *value* (a record array or sequence of rows capable of being converted to the table structure). In addition, NumPy-style point selections are supported. In particular, if key is a list of row coordinates, the set of rows determined by it is set to value. Furthermore, if key is an array of boolean values, only the coordinates where key is True are set to values from value. Note that for the latter to work it is necessary that key list would contain exactly as many rows as the table has. .. note:: When updating the rows of a VLArray object which uses a pseudo-atom, there is a problem: you can only update values with *exactly* the same size in bytes than the original row. This is very difficult to meet with object pseudo-atoms, because :mod:`pickle` applied on a Python object does not guarantee to return the same number of bytes than over another object, even if they are of the same class. This effectively limits the kinds of objects than can be updated in variable-length arrays. Examples -------- :: vlarray[0] = vlarray[0] * 2 + 3 vlarray[99] = arange(96) * 2 + 3 # Negative values for the index are supported. vlarray[-99] = vlarray[5] * 2 + 3 vlarray[1:30:2] = list_of_rows vlarray[[1,3]] = new_1_and_3_rows """ self._g_check_open() self._v_file._check_writable() if is_idx(key): # If key is not a sequence, convert to it coords = [key] value = [value] elif isinstance(key, slice): start, stop, step = self._process_range( key.start, key.stop, key.step) coords = range(start, stop, step) # Try with a boolean or point selection elif type(key) in (list, tuple) or isinstance(key, np.ndarray): coords = self._point_selection(key) else: raise IndexError(f"Invalid index or slice: {key!r}") # Do the assignment row by row self._assign_values(coords, value)
(self, key, value)
[ 0.061756428331136703, -0.039158403873443604, -0.07479006052017212, 0.0621781051158905, -0.033638276159763336, -0.02894233539700508, -0.06436315178871155, 0.030667375773191452, -0.028597326949238777, -0.057654667645692825, -0.06746822595596313, -0.03821921721100807, 0.009665015153586864, 0.053092893213033676, -0.05086950957775116, -0.010005231015384197, 0.027543136849999428, 0.04147762432694435, -0.027140626683831215, 0.06198643147945404, 0.0027025623712688684, -0.015199517831206322, 0.03785504028201103, 0.050677839666604996, 0.027888145297765732, -0.0011182810412719846, 0.04377767816185951, 0.037203360348939896, 0.07693678140640259, -0.0084910299628973, 0.0002554616366978735, -0.013416976667940617, 0.004796569235622883, 0.024476399645209312, 0.0046264613047242165, -0.044812701642513275, 0.004597710445523262, -0.0008044196292757988, 0.04998782277107239, 0.05796134099364281, -0.0348074696958065, -0.043125998228788376, 0.06321312487125397, -0.02915317378938198, 0.022578855976462364, 0.04235931113362312, -0.011193592101335526, 0.0238630510866642, 0.014538252726197243, -0.02234884910285473, -0.027255630120635033, 0.013646981678903103, 0.04734276235103607, -0.036954186856746674, -0.049796152859926224, 0.060913074761629105, 0.01754748821258545, 0.05489460378885269, 0.024361396208405495, -0.0280031468719244, -0.008423944935202599, -0.012736544013023376, 0.0070774550549685955, -0.010369406081736088, 0.027351465076208115, -0.029249008744955063, -0.031759899109601974, 0.0070007867179811, 0.008064561523497105, 0.018927520141005516, -0.004784589633345604, 0.025894764810800552, 0.01864001341164112, -0.02255968749523163, -0.031491562724113464, 0.08832204341888428, -0.0996689721941948, 0.054932937026023865, -0.01560202706605196, 0.0031050718389451504, 0.06413315236568451, 0.04021259769797325, 0.07912182807922363, 0.01915752701461315, -0.02196550741791725, 0.014336997643113136, 0.0162824597209692, 0.06823491305112839, 0.05332290008664131, -0.0038118590600788593, 0.01785416342318058, 0.03177906945347786, -0.025243083015084267, 0.00641139829531312, -0.04021259769797325, -0.020585475489497185, 0.03812338039278984, -0.08195856213569641, -0.05255621299147606, -0.012449038214981556, 0.010465241968631744, -0.020221300423145294, 0.02694895677268505, -0.022828027606010437, -0.03198990598320961, -0.008433528244495392, -0.007729136850684881, 0.025453921407461166, -0.016292043030261993, 0.005208662245422602, -0.0020628601778298616, 0.07199166715145111, -0.06351979821920395, 0.016684969887137413, -0.04128595441579819, 0.007393712643533945, -0.008409569039940834, -0.023403041064739227, -0.031549062579870224, -0.0073841288685798645, 0.0065551516599953175, 0.004166450351476669, 0.0007277511758729815, 0.06336646527051926, 0.01976129040122032, -0.028884833678603172, 0.04849278926849365, 0.049106135964393616, 0.024361396208405495, -0.06443982571363449, -0.029747353866696358, -0.06585818529129028, -0.029114840552210808, 0.004310203716158867, 0.02244468592107296, -0.05500960350036621, 0.009593138471245766, -0.051214516162872314, -0.04546438530087471, -0.030341533944010735, 0.02301969937980175, 0.029076505452394485, 0.04285765811800957, 0.017873330041766167, 0.023939719423651695, -0.02485974133014679, 0.031069884076714516, 0.017595406621694565, -0.02459140121936798, 0.029804855585098267, -0.057501330971717834, 0.004068219102919102, -0.009358340874314308, 0.02275135926902294, 0.019349196925759315, 0.0034836221020668745, -0.009813560172915459, -0.08019518852233887, 0.030034860596060753, -0.00042497075628489256, -0.025894764810800552, -0.04101761430501938, -0.030494872480630875, 0.022981364279985428, -0.07617009431123734, 0.04757276549935341, -0.03177906945347786, -0.020106298848986626, -0.0814218819141388, 0.03515248000621796, 0.056619640439748764, -0.023364705964922905, -0.025530589744448662, 0.02160133235156536, -0.008136438205838203, 0.06252311170101166, -0.019013773649930954, 0.010522743687033653, 0.022099677473306656, -0.0017166542820632458, 0.006066390313208103, 0.0390242338180542, -0.005774091929197311, 0.038832563906908035, 0.008213106542825699, 0.019646286964416504, 0.0038190465420484543, -0.019780457019805908, 0.06539817899465561, 0.0598013810813427, -0.0052757468074560165, -0.055584616959095, 0.006598277483135462, -0.01598536968231201, -0.013579897582530975, 0.02606726996600628, -0.017691241577267647, 0.036532510071992874, -0.036206670105457306, 0.07494340091943741, -0.005491376854479313, -0.066816546022892, 0.04258931800723076, 0.010484408587217331, -0.011452347971498966, -0.014672422781586647, 0.05313122645020485, -0.04768776893615723, 0.009535636752843857, 0.015209101140499115, 0.016723303124308586, -0.04017426073551178, -0.020911317318677902, 0.00769559433683753, 0.07712844759225845, -0.04343267157673836, -0.055507950484752655, 0.015218685381114483, -0.013378642499446869, -0.0036417508963495493, 0.05865135416388512, 0.02234884910285473, -0.0407109409570694, -0.028769832104444504, 0.015065347775816917, -0.038775064051151276, -0.0195121169090271, -0.03936924412846565, -0.015534942038357258, 0.07912182807922363, 0.001612433115951717, 0.009401467628777027, -0.014394499361515045, -0.035995833575725555, 0.011270260438323021, 0.012276533991098404, 0.006684529595077038, 0.020834648981690407, 0.021352160722017288, 0.045962728559970856, 0.000654077623039484, 0.019023356959223747, 0.052786219865083694, -0.013091135770082474, -0.06152642145752907, 0.014672422781586647, 0.052939556539058685, 0.06539817899465561, -0.05799967423081398, 0.02024046704173088, 0.007954350672662258, -0.016656218096613884, -0.0028319405391812325, 0.05619796738028526, 0.07513506710529327, 0.019205443561077118, 0.04833944886922836, 0.030648209154605865, -0.003531540045514703, -0.0284248236566782, -0.02002963051199913, -0.0364941768348217, 0.04692108556628227, -0.020623810589313507, -0.020067963749170303, 0.007134956773370504, 0.03407911956310272, 0.05324622988700867, -0.019042523577809334, 0.07831680774688721, 0.0012841963907703757, 0.06558985263109207, -0.06305979192256927, 0.01389615423977375, -0.0031601772643625736, 0.03444329649209976, 0.028079815208911896, -0.02353721112012863, 0.03864089399576187, -0.0123532023280859, 0.010235236957669258, 0.0024941200390458107, -0.013416976667940617, 0.024188892915844917, 0.00641139829531312, -0.06321312487125397, -0.03827671706676483, 0.010216069407761097, -0.03323576971888542, -0.024284727871418, 0.005429083947092295, 0.0140015734359622, -0.01679997146129608, 0.021639667451381683, 0.014030324295163155, 0.018534595146775246, -0.07766512781381607, 0.018860435113310814, 0.011069006286561489, -0.01570744626224041, -0.025453921407461166, -0.020202133804559708, 0.033005762845277786, 0.06240810826420784, 0.0029014211613684893, -0.04504270851612091, -0.003045174526050687, 0.01546785794198513, -0.0022305722814053297, 0.0038957151118665934, 0.04488937184214592, 0.029459847137331963, -0.055929627269506454, 0.008308942429721355, 0.05198120325803757, 0.004568959586322308, -0.03664751350879669, 0.007293085101991892, -0.02150549739599228, 0.03262241929769516, -0.02060464210808277, -0.05581462383270264, -0.05355290323495865, -0.021562999114394188, 0.0157936979085207, -0.038928400725126266, 0.0704582929611206, -0.030245698988437653, -0.04684441536664963, 0.03823838382959366, -0.0020916108042001724, 0.00805018562823534, 0.005486585199832916, 0.07156998664140701, 0.013944072648882866, -0.0009553606505505741, -0.023633046075701714, 0.013129469938576221, -0.0012266950216144323, 0.03545915335416794, 0.010321488603949547, 0.0014303455827757716, -0.032699089497327805, -0.05615963041782379, 0.057693000882864, -0.035324983298778534, -0.011701520532369614, 0.0160716213285923, 0.01764332503080368, 0.024208059534430504, 0.03216240927577019, 0.0001219657133333385, -0.03561249002814293, 0.017739159986376762, -0.06095140799880028, -0.04147762432694435, 0.030533205717802048, -0.07356336712837219, -0.010982753708958626, -0.023268871009349823, 0.03555499017238617, -0.013043218292295933, -0.008749785833060741, -0.0027480842545628548, -0.014164494350552559, 0.0027888144832104445, -0.09959230571985245, -0.04304932802915573, -0.001369250356219709, 0.0062963953241705894, -0.0006516817375086248, -0.04588606208562851, 0.03325493633747101, 0.026393109932541847, 0.06547484546899796, -0.0058555519208312035, -0.06570485234260559, 0.04304932802915573, -0.03392578288912773, -0.07544174045324326, 0.07222166657447815, -0.022521354258060455, 0.0538979135453701, 0.019042523577809334, -0.0005839978693984449, -0.0013021655613556504, 0.020374637097120285, 0.028290653601288795, -0.01101150456815958, 0.02612476982176304, -0.016349544748663902, 0.07057330012321472, 0.009799185208976269, -0.04500437527894974, -0.009406259283423424, 0.023671381175518036, -0.0052757468074560165, 0.01135651208460331, 0.017317483201622963, -0.066816546022892, -0.018735850229859352, -0.02752397023141384, -0.04220597445964813, 0.049642812460660934, -0.017681658267974854, -0.019991295412182808, 0.02485974133014679, -0.007638093084096909, -0.025683926418423653, -0.01751873828470707, 0.04956614598631859, 0.04074927419424057, 0.015927867963910103, -0.05343790352344513, 0.025875598192214966, 0.02117965556681156, -0.021543830633163452, -0.024054722860455513, 0.03244991600513458, 0.06497649848461151, 0.01772957667708397, 0.03864089399576187, -0.025933099910616875, 0.030130695551633835, -0.03716502711176872, -0.04074927419424057, 0.0049211555160582066, -0.015994952991604805, 0.009090001694858074, -0.0035027891863137484, 0.015304937027394772, -0.0560062937438488, 0.048224449157714844, 0.005898678209632635, -0.06923159956932068, -0.029287343844771385, 0.019991295412182808, -0.005026574712246656, 0.020278802141547203, 0.042550984770059586, 0.06451649218797684, 0.015784114599227905, 0.006627028342336416, -0.023000530898571014, -0.026354776695370674, -0.04159262776374817, -0.03386828303337097, -0.007369753904640675, -0.04883779585361481, 0.020527973771095276, 0.034903306514024734, 0.056082963943481445, 0.0028774624224752188, 0.013177388347685337, -0.0008343682275153697, -0.0013428956735879183, -0.03630250692367554, -0.04534938186407089, 0.035995833575725555, -0.011030671186745167, 0.048799462616443634, 0.011519432999193668, 0.002327605849131942, -0.019684622064232826, 0.0017969165928661823, -0.009578763507306576, -0.023843884468078613, -0.014844926074147224, -0.006157434079796076, -0.05232620984315872, -0.03283325955271721, -0.04657607525587082, -0.019531285390257835, 0.00026624312158674, -0.0007151727913878858, 0.026182271540164948, 0.0002211704704677686, -0.0030427786987274885, -0.06547484546899796, -0.041669297963380814, -0.07306502014398575, -0.07839348167181015, 0.013004884123802185, -0.023556377738714218, 0.02558809146285057, 0.015276186168193817, 0.007408088073134422, 0.04120928421616554, -0.020796313881874084, 0.009056459181010723, 0.01167276967316866, -0.02029796876013279, -0.037529200315475464, 0.06156475469470024, 0.0236522126942873, -0.0020856212358921766, -0.0014495126670226455, 0.029709020629525185, 0.028673995286226273, -0.027868976816534996, 0.031913239508867264, -0.012774878181517124, -0.019550452008843422, -0.05098451301455498, 0.035056643187999725, -0.006813907530158758, 0.03850672394037247, 0.017566656693816185, -0.03906257078051567, -0.08165188878774643, -0.026182271540164948, -0.032430749386548996, -0.030494872480630875, -0.0157936979085207, -0.0009918978903442621, 0.006876200437545776, -0.05301622673869133, 0.02093048393726349, -0.01297613326460123, 0.013857820071280003, 0.01539118867367506, -0.016867056488990784, 0.030341533944010735, 0.003754357574507594, -0.028252320364117622, 0.0021347368601709604, -0.01515160035341978, -0.047802772372961044, 0.021543830633163452, -0.008342484943568707, -0.042397648096084595, -0.010618578642606735, 0.008136438205838203, 0.021064653992652893, 0.022770525887608528, 0.06689321249723434, 0.05742466077208519, 0.00041119439993053675, 0.041132617741823196, 0.024553067982196808, -0.005793259013444185, 0.05198120325803757, 0.005371582694351673, -0.06371147185564041, 0.0030116320122033358, -0.009660223498940468, -0.04600106179714203, -0.030226532369852066, 0.031242389231920242, -0.0140015734359622, -0.009214588440954685, 0.00401071785017848, 0.10158567875623703, -0.0012278929352760315, -0.033753279596567154, -0.0315873958170414, -0.003342264797538519, -0.07176166027784348, 0.020527973771095276, -0.00548179354518652, -0.014145326800644398, -0.0026642282027751207, 0.015333687886595726, 0.00620055990293622, 0.019560035318136215, 0.040979281067848206, -0.019349196925759315, -0.001550139975734055, 0.03198990598320961, -0.005012199282646179, 0.03672418370842934, 0.024993911385536194, -0.03936924412846565, -0.003119447035714984, -0.029498182237148285, -0.0014387312112376094, -0.00609514070674777, 0.012544873170554638, -0.03152989596128464, -0.08341526240110397, -0.025971433147788048, 0.03379161283373833, -0.0008481445838697255, -0.04906780272722244, 0.031702399253845215, 0.027868976816534996, -0.005199078470468521, 0.08724868297576904, -0.003751961747184396, 0.048377785831689835, -0.0003207495901733637, 0.019013773649930954, -0.06612652540206909, -0.007686011027544737, 0.019857125356793404, 0.024821406230330467, -0.018745433539152145, -0.008251440711319447, 0.01997212879359722, -0.0006052613607607782, -0.05290122330188751, -0.03536331653594971, -0.04872279241681099, -0.028750665485858917, -0.029038170352578163, -0.05405125021934509, 0.006099932827055454, 0.03359994292259216, 0.04005926102399826, -0.0006720467936247587, 0.004890008829534054, 0.02060464210808277, 0.024783072993159294, -0.06888659298419952, -0.030284034088253975, -0.009276880882680416, -0.02616310492157936, 0.033695779740810394, 0.029498182237148285, -0.008376026526093483, -0.03814254701137543, -0.0059418040327727795, 0.00868270080536604, -0.03655167669057846, -0.041132617741823196, -0.08740202337503433, 0.01848667673766613, 0.04086427763104439, 0.033695779740810394, -0.05960971117019653, -0.019684622064232826, -0.014825759455561638, 0.048569455742836, 0.013474478386342525, 0.03321659937500954, -0.06811990588903427, -0.00689536752179265, -0.02066214382648468, 0.042972661554813385, 0.08487196266651154, 0.05527794361114502, -0.027600638568401337, 0.02809898369014263, -0.002002962864935398, 0.011136090382933617, 0.0027456884272396564, 0.006224519107490778, 0.0039268615655601025, 0.018898770213127136, 0.02160133235156536, 0.007484756410121918, -0.0068570333532989025, -0.07252833992242813, -0.039675917476415634, -0.013244472444057465, 0.06493816524744034, 0.014241162687540054, -0.02238718420267105, 0.006167017389088869, 0.019837958738207817, -0.049681149423122406, 0.012046528048813343, -0.061756428331136703, -0.08157522231340408, 0.10833250731229782, 0.02554975636303425, 0.025779763236641884, 0.09023874998092651, 0.041132617741823196, 0.07647676765918732, -0.033178266137838364, -0.05857468768954277, -0.07433005422353745, 0.029038170352578163, 0.04891446232795715, -0.07858514785766602, -0.016109956428408623, -0.043662674725055695, -0.011145674623548985, 0.01090608537197113, -0.021697167307138443, 0.04661441221833229, 0.004293432459235191, 0.012631125748157501, -0.01219028141349554, 0.07410004734992981, -0.016819138079881668, 0.04400768503546715, 0.008299358189105988, -0.07156998664140701, 0.022521354258060455, 0.016320794820785522, 0.0008523373981006444, 0.015055764466524124, -0.07486672699451447, -0.02438056282699108, 0.0171928983181715, -0.037050023674964905, -0.017413320019841194, 0.0377592071890831, -0.0051080347038805485, 0.024763906374573708, -0.01054191030561924, 0.037989210337400436, -0.025511423125863075, -0.01353197917342186, -0.048952799290418625, -0.0036872727796435356, -0.0037591494619846344, -0.0169820599257946, 0.006607861258089542, 0.0746750608086586, -0.007278710138052702, -0.05872802436351776, 0.026968123391270638, 0.03252658620476723, -0.006042431108653545, -0.061334751546382904, -0.008064561523497105, 0.03728002682328224, 0.01069524697959423, -0.01229570060968399, 0.011337345466017723, 0.003787900088354945, -0.06880992650985718, 0.0028295444790273905, -0.0060711819678545, 0.01096358709037304, -0.011835690587759018, 0.01960795372724533, 0.03687752038240433, 0.031108219176530838, 0.008342484943568707, -0.0015645152889192104, 0.03386828303337097, -0.0072499592788517475, -0.03906257078051567, -0.041822634637355804, 0.047381095588207245, 0.06666320562362671, -0.028022313490509987, -0.02313470095396042, -0.05328456684947014, -0.05259454995393753, -0.057616330683231354, 0.03682001680135727, -0.014289080165326595, 0.07624676078557968, -0.012794045731425285, 0.02790731191635132, 0.01339781004935503, 0.02673811838030815, -0.025319751352071762, 0.02990069054067135, 0.08280191570520401, -0.04048093408346176, 0.023038865998387337, -0.01410699263215065, 0.039254240691661835, -0.01764332503080368, -0.06010805442929268, 0.026508113369345665, -0.04147762432694435, 0.05385957658290863, -0.03580415993928909, 0.012372368946671486, -0.008725826628506184, 0.02558809146285057 ]
729,172
tables.vlarray
_assign_values
Assign the `values` to the positions stated in `coords`.
def _assign_values(self, coords, values): """Assign the `values` to the positions stated in `coords`.""" for nrow, value in zip(coords, values): if nrow >= self.nrows: raise IndexError("First index out of range") if nrow < 0: # To support negative values nrow += self.nrows object_ = value # Prepare the object to convert it into a NumPy object atom = self.atom if not hasattr(atom, 'size'): # it is a pseudo-atom object_ = atom.toarray(object_) statom = atom.base else: statom = atom value = convert_to_np_atom(object_, statom) nobjects = self._getnobjects(value) # Get the previous value nrow = idx2long( nrow) # To convert any possible numpy scalar value nparr = self._read_array(nrow, nrow + 1, 1)[0] nobjects = len(nparr) if len(value) > nobjects: raise ValueError("Length of value (%s) is larger than number " "of elements in row (%s)" % (len(value), nobjects)) try: nparr[:] = value except Exception as exc: # XXX raise ValueError("Value parameter:\n'%r'\n" "cannot be converted into an array object " "compliant vlarray[%s] row: \n'%r'\n" "The error was: <%s>" % (value, nrow, nparr[:], exc)) if nparr.size > 0: self._modify(nrow, nparr, nobjects)
(self, coords, values)
[ 0.052623458206653595, -0.02348453737795353, -0.06099194288253784, 0.03912832960486412, -0.02979859709739685, -0.0010419378522783518, -0.041691649705171585, 0.0122982831671834, 0.02327721007168293, -0.014965266920626163, -0.032569244503974915, -0.02536933124065399, 0.020450018346309662, 0.015417617745697498, -0.026104401797056198, 0.03364357724785805, 0.027668779715895653, 0.06581701338291168, -0.04908004403114319, 0.04719524830579758, -0.02487928420305252, -0.04957009106874466, -0.001609143102541566, 0.007638128940016031, -0.007256458047777414, -0.05529986321926117, 0.05281193554401398, 0.016124416142702103, 0.021317023783922195, 0.032851964235305786, -0.020921217277646065, 0.019017575308680534, 0.012175771407783031, 0.004174819216132164, 0.0423324815928936, -0.04063616693019867, -0.01775476150214672, 0.03454827889800072, -0.04455653578042984, 0.04327487573027611, -0.05857940763235092, -0.06830494850873947, 0.007449649274349213, -0.004054663702845573, 0.026255184784531593, -0.006059613544493914, -0.01975264400243759, -0.032569244503974915, 0.02710334211587906, 0.009136540815234184, -0.02467195689678192, 0.0014972335193306208, 0.050512488931417465, -0.01755685918033123, -0.002113325521349907, 0.10969502478837967, 0.020148450508713722, 0.09341040253639221, -0.03189072012901306, -0.009942290373146534, -0.0037695886567234993, 0.008594661951065063, -0.037262383848428726, -0.028234219178557396, -0.0043750787153840065, 0.00837319903075695, 0.013391463086009026, -0.017538011074066162, 0.025538962334394455, 0.045197367668151855, -0.006592067889869213, 0.005578991025686264, 0.017594555392861366, -0.06732485443353653, 0.030062468722462654, 0.07316771149635315, -0.0186688881367445, 0.09853704273700714, 0.02037462592124939, 0.002652847906574607, -0.01745319552719593, 0.0435764454305172, 0.07629647105932236, -0.005338679999113083, -0.0258970744907856, 0.03443519026041031, -0.027141038328409195, 0.06826724857091904, 0.04564971849322319, 0.03613150864839554, 0.028366154059767723, -0.014710819348692894, -0.02800804376602173, -0.0027800716925412416, -0.021844765171408653, 0.052925024181604385, 0.05164336413145065, -0.07901057600975037, -0.06099194288253784, 0.034077081829309464, 0.014126533642411232, -0.049720872193574905, -0.01798093691468239, -0.02097775973379612, -0.01595478318631649, -0.004031104035675526, 0.028630025684833527, -0.019790340214967728, 0.06151968613266945, -0.004683713894337416, -0.02678292617201805, 0.06966199725866318, 0.009249627590179443, 0.006295213010162115, -0.10343751311302185, -0.02367301657795906, -0.05006013810634613, 0.0010519508505240083, -0.030948322266340256, 0.023409144952893257, -0.01667100563645363, 0.03464251756668091, 0.03483099862933159, 0.07452476769685745, 0.006356468889862299, 0.02408767119050026, 0.028554633259773254, 0.02879965677857399, -0.01340088713914156, -0.06091655045747757, 0.013287799432873726, -0.08089537173509598, 0.00205678166821599, 0.007737080566585064, 0.019008150324225426, -0.024219606071710587, -0.037488557398319244, -0.05971028283238411, -0.009376851841807365, -0.06272595375776291, 0.04263404756784439, 0.03805399686098099, 0.054734427481889725, -0.006775835528969765, 0.04304870218038559, 0.03460482507944107, 0.04647902771830559, 0.063027523458004, -0.08353408426046371, 0.019714947789907455, -0.03419017046689987, 0.013306647539138794, 0.022033246234059334, 0.021524351090192795, -0.020506562665104866, -0.028215371072292328, 0.05409359559416771, -0.08157389611005783, 0.0086323581635952, 0.019884580746293068, -0.036301139742136, -0.039580680429935455, 0.002331255003809929, 0.02959126979112625, -0.053226590156555176, 0.0401461198925972, -0.029572423547506332, -0.023729560896754265, -0.04252095893025398, 0.0008375554461963475, 0.032965052872896194, -0.03428440913558006, 0.003098130691796541, -0.0037483847700059414, 0.004782665520906448, -0.015549552626907825, -0.023654168471693993, -0.04206860810518265, 0.02188246138393879, 0.025708593428134918, -0.0284980908036232, -0.001719874795526266, -0.002940279198810458, 0.001414773752912879, 0.02146780677139759, 0.0405607745051384, 0.009494651108980179, -0.014795634895563126, 0.06140659749507904, 0.03850634768605232, -0.01028155256062746, 0.00697373878210783, -0.023918040096759796, 0.035151414573192596, 0.05028631165623665, 0.020431170240044594, -0.002747087739408016, 0.04044768586754799, -0.039995335042476654, 0.09001777321100235, -0.008966908790171146, -0.05929562821984291, 0.037262383848428726, -0.018028058111667633, 0.01655791886150837, 0.014022869989275932, 0.03484984487295151, -0.027517996728420258, 0.010319248773157597, 0.00882554892450571, -0.014682547189295292, -0.0129485372453928, -0.05978567525744438, -0.016906604170799255, 0.01415480487048626, 0.005470615345984697, 0.0037955045700073242, -0.0207515861839056, 0.02156204730272293, -0.008189431391656399, 0.05827784165740013, -0.03590533137321472, -0.00556956697255373, -0.05891866981983185, 0.028177674859762192, -0.029968230053782463, -0.031155649572610855, -0.05284963175654411, 0.01128991786390543, 0.07113213837146759, 0.014993539080023766, 0.009353292174637318, -0.018489832058548927, -0.013589367270469666, 0.055827606469392776, -0.027329517528414726, 0.032060351222753525, -0.011110862717032433, -0.04632824286818504, 0.041276995092630386, -0.058843277394771576, -0.005574278999119997, -0.00275886757299304, -0.006295213010162115, -0.051718756556510925, -0.018339049071073532, 0.026160944253206253, 0.06589240580797195, -0.021939005702733994, 0.025105459615588188, 0.009433395229279995, 0.007920848205685616, -0.014635427854955196, 0.013146440498530865, 0.0013700098497793078, -0.015935935080051422, 0.04508427903056145, 0.014484643936157227, 0.03660270571708679, -0.021034304052591324, -0.01113913394510746, -0.04674289748072624, 0.02629288099706173, -0.024351542815566063, -0.015587248839437962, -0.004985280800610781, 0.006337620783597231, 0.01855579949915409, -0.05778779461979866, 0.06939812749624252, 0.09062091261148453, 0.05759931355714798, -0.05978567525744438, 0.011327614076435566, 0.024747349321842194, 0.05790087953209877, 0.047722991555929184, -0.032079197466373444, 0.03458597511053085, 0.007732368540018797, 0.029836293309926987, -0.0023241869639605284, -0.035076022148132324, -0.00346095347777009, 0.017311835661530495, -0.05631765350699425, 0.013589367270469666, -0.021090848371386528, 0.002876667305827141, -0.023145273327827454, 0.0005374609027057886, 0.04165395349264145, -0.020921217277646065, 0.0029284991323947906, 0.007812472525984049, 0.010206161066889763, -0.06023802608251572, 0.020600801333785057, 0.017622826620936394, 0.02487928420305252, -0.0071952021680772305, -0.0241819117218256, -0.01657676510512829, 0.02420075796544552, 0.06449766457080841, -0.06072807312011719, 0.014465795829892159, 0.039693769067525864, -0.01594536006450653, 0.02527509070932865, 0.04093773290514946, 0.016623886302113533, -0.04040998965501785, 0.0020190859213471413, 0.06713636964559555, -0.008834972977638245, 0.00148663145955652, -0.011092014610767365, 0.007284730207175016, 0.011657453142106533, -0.009145963937044144, -0.04474501684308052, -0.021392416208982468, -0.027913803234696388, -0.031758785247802734, 0.04636593908071518, 0.0024408085737377405, 0.011949595995247364, 0.002312406897544861, 0.021128544583916664, 0.009174236096441746, -0.014984115026891232, -0.019008150324225426, 0.032870814204216, 0.10901650041341782, 0.005758046638220549, -0.02689601480960846, 0.004858057480305433, 0.04372722655534744, 0.0010089538991451263, -0.01560609694570303, -0.005277424119412899, -0.0789351835846901, -0.001167983515188098, 0.047911472618579865, -0.023616472259163857, -0.017500314861536026, -0.03428440913558006, 0.022711770609021187, 0.0035976010840386152, -0.02640596777200699, 0.02757454104721546, -0.061368901282548904, -0.011431277729570866, -0.047722991555929184, 0.0367157943546772, 0.03304044529795647, -0.07576873153448105, 0.0012404302833601832, -0.049607787281274796, -0.009904594160616398, -0.02357877604663372, 0.05337737500667572, -0.013768422417342663, -0.004174819216132164, 0.004737901501357555, -0.05277423933148384, -0.022334812209010124, -0.002940279198810458, 0.013909782283008099, 0.011459548957645893, -0.013589367270469666, 0.01775476150214672, 0.021317023783922195, 0.002952059032395482, 0.0284980908036232, -0.059861067682504654, 0.008670053444802761, -0.045498933643102646, -0.09009316563606262, 0.02327721007168293, -0.04817534238100052, 0.03518911078572273, 0.012053259648382664, 0.0087360218167305, 0.007378969807177782, 0.07833205163478851, 0.01914951018989086, -0.05710926651954651, 0.028931591659784317, -0.007143370341509581, 0.013429159298539162, -0.01595478318631649, -0.06257516890764236, 0.028234219178557396, 0.034472886472940445, 0.011629180982708931, 0.04678059369325638, -0.014409252442419529, -0.03428440913558006, -0.04583819583058357, -0.04904234781861305, 0.012835449539124966, 0.05695848539471626, -0.02316412143409252, -0.051417186856269836, 0.03228652477264404, -0.031155649572610855, 0.006959603168070316, 0.04372722655534744, 0.009848049841821194, 0.006365892942994833, 0.06457304954528809, -0.060351114720106125, 0.011271069757640362, 0.017095085233449936, -0.0449334979057312, -0.024615414440631866, 0.05692078918218613, -0.0200730599462986, -0.0068983472883701324, -0.01897045411169529, -0.030967170372605324, 0.039693769067525864, -0.04323717951774597, -0.054432857781648636, 0.036583855748176575, -0.04010842368006706, -0.005904118064790964, -0.004492878448218107, 0.009376851841807365, -0.036772336810827255, -0.015389345586299896, -0.012515034526586533, -0.018791399896144867, 0.00967841874808073, 0.024634260684251785, 0.02847924269735813, 0.0033478657715022564, 0.015040658414363861, -0.0021569114178419113, 0.04629054665565491, 0.023918040096759796, -0.01816941797733307, -0.03739431872963905, -0.027612237259745598, -0.026537904515862465, -0.04286022111773491, -0.10238202661275864, -0.009169524535536766, 0.00008761348726693541, 0.05251036956906319, 0.03780897334218025, -0.009810354560613632, -0.022127484902739525, 0.01178938802331686, -0.08127233386039734, -0.06766411662101746, 0.04625285044312477, -0.0017881985986605287, 0.010856415145099163, -0.0423324815928936, -0.012326554395258427, -0.04478271305561066, -0.010441760532557964, -0.009744386188685894, -0.01967725344002247, -0.016114991158246994, 0.00186359032522887, -0.05548834428191185, 0.017717067152261734, -0.06272595375776291, 0.04037229344248772, -0.03049597144126892, -0.021580895408988, -0.015822848305106163, -0.014965266920626163, 0.025934768840670586, -0.00702557060867548, -0.028366154059767723, -0.09567216038703918, -0.047421425580978394, 0.03711159899830818, 0.012957961298525333, 0.05073866248130798, 0.041691649705171585, 0.02218402922153473, -0.0100365299731493, 0.004137123469263315, 0.05134179815649986, 0.02256098762154579, -0.027348365634679794, -0.018150569871068, 0.018216537311673164, -0.015624945051968098, -0.008212991058826447, 0.0011591485235840082, 0.010159041732549667, 0.01907411776483059, -0.008368486538529396, 0.011252221651375294, -0.007892576046288013, 0.007091538514941931, -0.06792798638343811, 0.021203935146331787, -0.02065734565258026, 0.023352600634098053, -0.006478980649262667, -0.03294620290398598, -0.039731465280056, -0.031023714691400528, -0.007270594127476215, -0.024012278765439987, -0.019809188321232796, -0.006912482902407646, 0.022598683834075928, -0.043199487030506134, 0.03822362795472145, -0.05967258661985397, -0.024728501215577126, -0.00481564924120903, -0.017839578911662102, -0.0020379337947815657, 0.03731892630457878, -0.04768529534339905, 0.003470377530902624, -0.026424815878272057, -0.030250947922468185, 0.0067993956618011, -0.02146780677139759, -0.062160514295101166, -0.03763934224843979, 0.0040240357629954815, 0.015464737080037594, 0.0565815232694149, 0.010517152026295662, 0.11188139021396637, -0.022711770609021187, -0.0226740762591362, 0.04994704946875572, 0.017113931477069855, 0.01787727326154709, 0.0184615608304739, -0.0377524308860302, -0.008217703551054, -0.042897917330265045, -0.061557382345199585, -0.026575598865747452, 0.04263404756784439, -0.025218548253178596, 0.04071155562996864, -0.053641244769096375, 0.04146547615528107, 0.029836293309926987, -0.040296901017427444, -0.0113370381295681, -0.03228652477264404, -0.04312409460544586, 0.006172701250761747, 0.02286255545914173, 0.01958301290869713, -0.001883616321720183, 0.02968551032245159, 0.01605844683945179, -0.07188605517148972, 0.053415071219205856, -0.03603726625442505, -0.0009353291825391352, -0.0006861829315312207, 0.011205102317035198, 0.02968551032245159, 0.006144429557025433, -0.07079287618398666, -0.03364357724785805, 0.020393474027514458, -0.0068229553289711475, -0.004535286221653223, -0.05842862278223038, -0.014399828389286995, -0.015822848305106163, -0.011864780448377132, 0.029572423547506332, -0.02237250842154026, -0.10012027621269226, 0.06332908570766449, 0.05997415632009506, -0.05028631165623665, 0.07256457954645157, 0.09212874621152878, 0.019790340214967728, 0.0032795420847833157, 0.04708216339349747, -0.07414780557155609, -0.007741792593151331, 0.016030175611376762, 0.0004732600646093488, -0.05646843835711479, -0.01214749924838543, -0.009800930507481098, -0.03334201127290726, -0.07135831564664841, 0.007383681833744049, -0.02798919565975666, 0.03109910525381565, -0.02961011789739132, -0.0664578452706337, -0.0010784557089209557, 0.011092014610767365, 0.028931591659784317, 0.04286022111773491, 0.07022743672132492, -0.01415480487048626, 0.055337559431791306, -0.03334201127290726, 0.016991421580314636, -0.0007945586112327874, -0.03596187382936478, 0.03501947969198227, -0.020826976746320724, 0.03111795336008072, -0.015276257880032063, -0.02789495512843132, -0.039806853979825974, -0.033360857516527176, -0.02457771822810173, -0.044481147080659866, 0.041691649705171585, -0.015464737080037594, 0.011770540848374367, 0.023936888203024864, -0.021015455946326256, -0.018932757899165154, 0.029120072722434998, -0.025030069053173065, -0.005918254144489765, -0.03984455019235611, -0.0071952021680772305, -0.018009210005402565, 0.044481147080659866, 0.03543413430452347, 0.05326428636908531, 0.014315012842416763, 0.027913803234696388, 0.0035858212504535913, -0.011572636663913727, -0.029742054641246796, 0.01563436910510063, -0.006233957130461931, 0.017377803102135658, 0.053113505244255066, 0.05266115441918373, 0.02148665487766266, -0.05006013810634613, 0.0037955045700073242, 0.018631191924214363, 0.07558025419712067, -0.02729182131588459, -0.015917086973786354, 0.012373674660921097, 0.027065645903348923, -0.03905293717980385, 0.009216643869876862, -0.01550243329256773, -0.062160514295101166, 0.06321600079536438, 0.04033459722995758, -0.02800804376602173, 0.10275898873806, 0.06031341850757599, 0.03826132416725159, 0.003329017898067832, -0.03669694438576698, -0.015474161133170128, 0.03991994261741638, 0.060765769332647324, -0.06249978020787239, -0.013184135779738426, -0.013872086070477962, -0.022240573540329933, 0.04184243455529213, 0.010696208104491234, 0.02697140723466873, 0.008509846404194832, 0.008853821083903313, -0.024408087134361267, 0.012515034526586533, 0.020826976746320724, 0.04527276009321213, 0.002570388140156865, -0.01946992427110672, 0.025218548253178596, 0.017217595130205154, 0.026575598865747452, -0.00803393591195345, -0.062047429382801056, 0.009032877162098885, -0.0039910520426929, -0.013287799432873726, 0.02469080500304699, 0.07030282914638519, -0.02327721007168293, -0.006040765903890133, -0.04806225374341011, 0.03852519392967224, -0.009838626720011234, -0.0108941113576293, -0.004426910541951656, 0.0026080841198563576, -0.03420901671051979, -0.007722944486886263, -0.004697849974036217, 0.04086234048008919, -0.04346335679292679, -0.05729774758219719, -0.05891866981983185, 0.05571451783180237, -0.0012828381732106209, -0.028931591659784317, 0.00308399461209774, 0.013834389857947826, 0.010884687304496765, 0.0184615608304739, 0.010507727973163128, -0.005197320133447647, -0.049607787281274796, 0.00902816466987133, 0.007171642500907183, 0.00438685854896903, 0.03690427169203758, 0.025765137746930122, -0.00963129848241806, 0.036074962466955185, 0.018018633127212524, 0.01615268737077713, -0.031023714691400528, -0.007430801633745432, 0.005899406038224697, 0.004097071476280689, -0.035264503210783005, 0.08051840960979462, -0.0037790124770253897, -0.038468651473522186, -0.035151414573192596, -0.05186953768134117, -0.06238669157028198, 0.008778429590165615, -0.0166427344083786, 0.03549067676067352, -0.024332694709300995, -0.01816941797733307, 0.04406649246811867, 0.0647992268204689, 0.010517152026295662, 0.026104401797056198, 0.07222531735897064, -0.08654975146055222, 0.05077635869383812, -0.02759338915348053, 0.0166427344083786, -0.0044198427349328995, -0.0423324815928936, 0.023861495777964592, -0.04949469864368439, 0.09265648573637009, -0.06875729560852051, 0.020129602402448654, -0.012326554395258427, 0.025614354759454727 ]
729,173
tables.vlarray
_calc_chunkshape
Calculate the size for the HDF5 chunk.
def _calc_chunkshape(self, expectedrows): """Calculate the size for the HDF5 chunk.""" # For computing the chunkshape for HDF5 VL types, we have to # choose the itemsize of the *each* element of the atom and # not the size of the entire atom. I don't know why this # should be like this, perhaps I should report this to the # HDF5 list. # F. Alted 2006-11-23 # elemsize = self.atom.atomsize() elemsize = self._basesize # AV 2013-05-03 # This is just a quick workaround tha allows to change the API for # PyTables 3.0 release and remove the expected_mb parameter. # The algorithm for computing the chunkshape should be rewritten as # requested by gh-35. expected_mb = expectedrows * elemsize / 1024 ** 2 chunksize = calc_chunksize(expected_mb) # Set the chunkshape chunkshape = chunksize // elemsize # Safeguard against itemsizes being extremely large if chunkshape == 0: chunkshape = 1 return (SizeType(chunkshape),)
(self, expectedrows)
[ -0.015268171206116676, -0.03370504081249237, -0.04298100993037224, 0.020959436893463135, 0.00282129249535501, 0.04432637616991997, 0.022074677050113678, 0.03657280281186104, -0.08405017852783203, -0.0328376330435276, 0.053071279078722, 0.011099296621978283, -0.018675850704312325, 0.007399531081318855, 0.005647010635584593, 0.017011839896440506, 0.04280398413538933, -0.0049079423770308495, 0.0342538096010685, 0.009789331816136837, -0.0017823929665610194, 0.008665240369737148, 0.002009202726185322, -0.002034649718552828, 0.014533529058098793, 0.020994842052459717, 0.015126553364098072, 0.003004953032359481, 0.11152403056621552, 0.015657620504498482, -0.04804384335875511, 0.023243024945259094, 0.006032033823430538, 0.04234372824430466, 0.004075937904417515, -0.01403786614537239, 0.08065135031938553, 0.03671441972255707, -0.06114349514245987, 0.01586119644343853, -0.02379179373383522, -0.008359876461327076, 0.058913011103868484, -0.0034652110189199448, 0.01418833527714014, 0.0014582209987565875, -0.016657795757055283, -0.018091676756739616, -0.057107385247945786, 0.010311547666788101, -0.004969900473952293, -0.027226025238633156, 0.004677813500165939, 0.03873247280716896, -0.04128159582614899, 0.0024539711885154247, -0.020339859649538994, -0.01936623640358448, -0.08242157101631165, 0.04832708090543747, 0.012019812129437923, 0.04372450336813927, 0.08610363304615021, -0.045813363045454025, -0.07442016154527664, -0.02912016399204731, -0.0022404382470995188, -0.015091149136424065, -0.04864571988582611, -0.0038568726740777493, -0.0052442848682403564, 0.0230305977165699, 0.056186869740486145, 0.04889355227351189, -0.031651582568883896, 0.007470340002328157, 0.0008386429981328547, -0.02513716369867325, 0.08114700764417648, -0.02639402076601982, 0.03781195729970932, 0.04128159582614899, 0.05781547352671623, -0.06539202481508255, 0.03706846386194229, -0.022924384102225304, 0.048858147114515305, 0.10366424173116684, 0.0056647127494215965, -0.03646658733487129, 0.022835873067378998, 0.013382883742451668, 0.035475265234708786, -0.00442113121971488, 0.018250996246933937, -0.006850761827081442, -0.03983001038432121, -0.020375262945890427, -0.043087221682071686, -0.04036107659339905, -0.018782062456011772, -0.003659935435280204, 0.023862602189183235, -0.03142145276069641, -0.04669847711920738, -0.002960697514936328, 0.02515486441552639, -0.03586471080780029, -0.014436166733503342, 0.005726670380681753, -0.00018946915224660188, 0.00008954837539931759, -0.04195427894592285, 0.08249238133430481, 0.05441664531826973, -0.032855335623025894, 0.021242672577500343, 0.010329249314963818, 0.012055217288434505, 0.0017270735697820783, 0.01640111394226551, -0.03214724361896515, -0.02193306013941765, -0.015055743977427483, 0.04128159582614899, 0.03852004557847977, 0.07399530708789825, -0.004996453877538443, -0.0460611954331398, -0.012542027980089188, 0.03954677656292915, -0.006501142866909504, -0.0040626609697937965, -0.026004571467638016, -0.003651084378361702, 0.02365017496049404, 0.002180693205446005, -0.029545016586780548, 0.00602318299934268, -0.02118956670165062, 0.021437397226691246, 0.023243024945259094, 0.02788100764155388, -0.016392262652516365, -0.024145837873220444, 0.024145837873220444, 0.01844572089612484, -0.03248358890414238, 0.04715873301029205, 0.02271195687353611, -0.04542391374707222, -0.0548769049346447, 0.021401992067694664, -0.014940680004656315, 0.008767028339207172, 0.029031652957201004, -0.00242077955044806, -0.03767034038901329, -0.027031300589442253, -0.02791641280055046, -0.03678523004055023, -0.005509818438440561, -0.013772333040833473, 0.008120897226035595, -0.04174185171723366, 0.055868230760097504, -0.013630715198814869, -0.055584993213415146, -0.06872005015611649, -0.009311371482908726, 0.03901571035385132, 0.0402548648416996, -0.018640445545315742, 0.010948827490210533, -0.011072743684053421, 0.04623821750283241, -0.004374662879854441, -0.031191324815154076, -0.05045134946703911, -0.03290843963623047, 0.020233646035194397, -0.0009321328834630549, 0.021101055666804314, 0.02927948348224163, -0.03232426568865776, 0.07027783989906311, 0.05200914293527603, -0.0336519330739975, 0.04375990480184555, 0.009576904587447643, -0.0783146545290947, -0.029350293800234795, -0.01874665915966034, 0.06178077310323715, -0.005350498016923666, 0.0002013628400163725, 0.041848067194223404, 0.04623821750283241, -0.01097538135945797, 0.011329425498843193, -0.07399530708789825, -0.022942086681723595, 0.009205157868564129, 0.002531418576836586, 0.02959812432527542, -0.041104573756456375, 0.009568054229021072, 0.006386078428477049, -0.03968839347362518, 0.04036107659339905, -0.06273669749498367, -0.036679014563560486, -0.00484155910089612, 0.05993974208831787, 0.05317749083042145, -0.017728781327605247, -0.04652145504951477, 0.005731096025556326, -0.035298243165016174, -0.025084055960178375, 0.035156622529029846, 0.025349589064717293, 0.0283412653952837, 0.01090457197278738, 0.02041066810488701, -0.05579742044210434, 0.0034475086722522974, -0.012143728323280811, 0.022534934803843498, 0.013905099593102932, -0.0454593189060688, 0.016657795757055283, 0.037741146981716156, 0.026181593537330627, 0.023986518383026123, 0.07442016154527664, 0.019012192264199257, -0.03358112648129463, 0.0007291104993782938, 0.012303047813475132, -0.06836599856615067, -0.03035932034254074, -0.0017171161016449332, -0.03342180699110031, -0.020251348614692688, -0.052681829780340195, 0.020092027261853218, 0.003905553836375475, -0.05324830114841461, -0.010647890157997608, -0.07293317466974258, -0.034855686128139496, 0.047477371990680695, -0.04669847711920738, 0.058452755212783813, 0.02441137097775936, 0.020215943455696106, 0.034094490110874176, -0.013648416846990585, -0.011524150148034096, 0.036962252110242844, -0.00882013514637947, 0.08164267241954803, 0.0019892877899110317, -0.03597092628479004, 0.03297924995422363, 0.03034161776304245, 0.04981406778097153, -0.08135943859815598, 0.0594794824719429, 0.08199671655893326, 0.04029027000069618, -0.023136811330914497, -0.051265649497509, -0.020977139472961426, -0.058629777282476425, 0.012745603919029236, -0.0007108550635166466, -0.02837667055428028, 0.0009249413851648569, -0.022021571174263954, -0.07151699811220169, -0.0024075028486549854, 0.01570187509059906, -0.03048323467373848, -0.0014958381652832031, -0.037741146981716156, -0.004321556072682142, -0.0012480070581659675, 0.03034161776304245, -0.0793059766292572, -0.05742602422833443, -0.10656740516424179, 0.012055217288434505, -0.008010257966816425, 0.029031652957201004, 0.015232766978442669, -0.001490306225605309, 0.01227649487555027, 0.017410140484571457, -0.05629308149218559, -0.04482204094529152, 0.0195255558937788, 0.06170996278524399, -0.0072800409980118275, 0.007780129089951515, 0.03929894417524338, -0.05179671570658684, 0.008085492067039013, -0.05218616500496864, -0.002314566168934107, 0.028270456939935684, 0.03386436030268669, -0.005129220429807901, 0.05516013875603676, 0.05654091387987137, -0.034714069217443466, 0.03997163102030754, -0.0015301363309845328, 0.02074700966477394, 0.0014040078967809677, -0.014462719671428204, -0.0017126904567703605, 0.025367291644215584, -0.015073446556925774, -0.04007784277200699, 0.024287456646561623, -0.018233293667435646, -0.009444138035178185, -0.005930246319621801, -0.07183563709259033, -0.0065099941566586494, 0.04744197055697441, 0.042166706174612045, -0.017657971009612083, -0.04588417336344719, 0.05898382142186165, 0.002701802412047982, -0.03328018635511398, -0.028288159519433975, 0.07236670702695847, -0.007806682493537664, 0.05197373777627945, 0.012462368234992027, 0.03154537081718445, -0.026535639539361, 0.05530175939202309, -0.028270456939935684, 0.010931125842034817, 0.07133997976779938, 0.04340586066246033, -0.043087221682071686, -0.0013331989757716656, -0.0032948271837085485, 0.033793553709983826, 0.0169233288615942, -0.044113948941230774, -0.03813059628009796, 0.0162240918725729, 0.06624173372983932, 0.02667725645005703, -0.024889331310987473, 0.04096295312047005, 0.025402696803212166, 0.0028168668504804373, -0.009789331816136837, -0.05045134946703911, 0.027845604345202446, 0.023508558049798012, 0.03002297692000866, -0.04149401932954788, -0.045671746134757996, 0.006744548678398132, 0.0055496483109891415, 0.06461312621831894, 0.04815005883574486, -0.08964408189058304, 0.029828252270817757, -0.07194185256958008, 0.0021486077457666397, -0.02912016399204731, -0.0009017072152346373, -0.009054689668118954, -0.0068153575994074345, -0.027172919362783432, 0.00020869266882073134, -0.056470103561878204, 0.011887045577168465, -0.060329191386699677, 0.00788191705942154, 0.025367291644215584, 0.0408567413687706, -0.003932107239961624, -0.04984947293996811, -0.02851828746497631, 0.059550292789936066, 0.006664888467639685, 0.005567350424826145, -0.031492263078689575, 0.00929366983473301, -0.01090457197278738, -0.06553364545106888, -0.009488393552601337, 0.07158780843019485, -0.04928300157189369, -0.0324481837451458, 0.0002931931521743536, 0.04829167574644089, -0.0037041911855340004, -0.026571042835712433, 0.005744372960180044, -0.009815884754061699, -0.0004931729636155069, 0.011187807656824589, -0.0500619001686573, 0.017268523573875427, -0.06036459654569626, -0.012621687725186348, 0.04517608508467674, -0.02561512216925621, 0.011842790059745312, 0.05976272001862526, 0.01478135958313942, 0.038944900035858154, -0.0017901377286762, -0.016277197748422623, -0.026500234380364418, 0.022765064612030983, -0.015993962064385414, 0.002785888034850359, 0.02455298975110054, 0.03280222788453102, -0.05321289598941803, -0.0034098916221410036, -0.037422508001327515, -0.01614443212747574, -0.023862602189183235, 0.005155773833394051, 0.020924033597111702, 0.003956447821110487, 0.011984407901763916, 0.03717467933893204, 0.008629836142063141, 0.008249238133430481, 0.07442016154527664, -0.014099824242293835, -0.04588417336344719, -0.05445205047726631, -0.024747714400291443, -0.005841734819114208, 0.036395780742168427, -0.04708792641758919, 0.019100703299045563, -0.04135240241885185, -0.0097627779468894, -0.040608908981084824, 0.024181243032217026, -0.015215064398944378, -0.039582181721925735, -0.019330833107233047, 0.05484149977564812, 0.03352801874279976, 0.025066353380680084, 0.00014217101852409542, -0.0063506742008030415, -0.030589448288083076, -0.029226377606391907, -0.0020534584764391184, 0.007479191292077303, -0.044149354100227356, 0.014692848548293114, -0.00033661891939118505, -0.022464126348495483, 0.016896776854991913, 0.027650879696011543, -0.018481126055121422, -0.00006237268826225773, 0.0029739742167294025, -0.038059789687395096, -0.018675850704312325, 0.01706494763493538, 0.0022404382470995188, 0.008488218300044537, -0.016277197748422623, -0.013312075287103653, 0.036395780742168427, -0.05385017395019531, -0.008005832321941853, 0.005062837153673172, -0.03813059628009796, -0.032996952533721924, 0.002361034508794546, -0.02711981162428856, -0.010046013630926609, 0.067303866147995, -0.011550703085958958, 0.07576553523540497, 0.011603809893131256, 0.024641500785946846, -0.019596366211771965, 0.002746057929471135, -0.012533176690340042, 0.0436536930501461, -0.02791641280055046, -0.045494724065065384, 0.0069746775552630424, 0.06694982200860977, -0.02421664632856846, -0.033935170620679855, -0.018073974177241325, -0.0320410318672657, 0.004615855868905783, -0.0484686978161335, 0.05349612981081009, -0.00317976251244545, 0.024482181295752525, 0.050699178129434586, 0.02869531139731407, -0.008134173229336739, 0.011630363762378693, 0.03614794835448265, -0.005863863043487072, -0.009435286745429039, -0.006456887349486351, -0.06050621345639229, 0.022464126348495483, 0.025969168171286583, 0.006501142866909504, 0.022021571174263954, -0.002185118617489934, -0.029244080185890198, 0.00838200468569994, -0.006589654367417097, 0.034696366637945175, 0.028872333467006683, 0.0402548648416996, -0.03266061097383499, -0.007470340002328157, 0.038343023508787155, 0.01846342347562313, -0.040184054523706436, -0.04188346862792969, 0.008581154979765415, -0.010391207411885262, -0.027332238852977753, 0.04684009402990341, 0.06726846098899841, 0.008607707917690277, 0.04439718648791313, -0.03901571035385132, 0.005947948433458805, 0.004664537031203508, 0.04935380816459656, -0.06666658818721771, 0.0368560366332531, -0.009275967255234718, 0.030837280675768852, -0.10741711407899857, 0.02164982445538044, -0.03434232249855995, 0.027261430397629738, -0.024924736469984055, -0.01227649487555027, 0.01966717466711998, 0.05820492282509804, -0.02331383340060711, -0.01181623712182045, 0.03048323467373848, -0.034059084951877594, 0.014622040092945099, -0.04864571988582611, 0.12292426824569702, 0.007996981032192707, -0.017357034608721733, 0.05820492282509804, -0.09516717493534088, -0.05218616500496864, 0.008638686500489712, 0.019737983122467995, -0.08284642547369003, -0.024021921679377556, -0.028111137449741364, 0.00922286044806242, 0.01357760839164257, -0.008833411149680614, 0.015808088704943657, -0.06464853137731552, 0.04160023480653763, -0.03671441972255707, 0.03951137140393257, -0.017418991774320602, -0.04099835827946663, -0.013772333040833473, 0.006164800841361284, 0.014285697601735592, 0.013338628225028515, -0.04453880339860916, -0.027031300589442253, -0.07183563709259033, -0.00758097879588604, -0.03990082070231438, 0.019897304475307465, -0.015082297846674919, 0.07966002076864243, 0.02637631818652153, -0.05261101946234703, 0.025508910417556763, 0.012320750392973423, 0.014657444320619106, -0.0180208683013916, 0.02821735106408596, 0.021136458963155746, 0.04464501887559891, -0.04478663578629494, -0.07091512531042099, -0.03763493523001671, 0.014259143732488155, -0.026730364188551903, 0.05501852184534073, -0.015551406890153885, -0.019861899316310883, 0.0013619650853797793, 0.02118956670165062, -0.033793553709983826, -0.01740128919482231, 0.006726846564561129, 0.01013452559709549, 0.001865372178144753, 0.005456711631268263, -0.07279156148433685, -0.007558851037174463, -0.0066117821261286736, 0.05211535841226578, -0.06503798067569733, 0.05742602422833443, 0.012674794532358646, -0.05076998844742775, 0.00465126009657979, 0.021614419296383858, -0.026712661609053612, 0.07739413529634476, 0.019171511754393578, -0.013604161329567432, -0.00644361088052392, 0.01678171195089817, -0.03522743284702301, 0.04528229683637619, 0.008749325759708881, 0.029987573623657227, 0.06217022240161896, 0.01892368122935295, 0.040467292070388794, 0.022924384102225304, -0.061957795172929764, 0.04531770199537277, 0.043370455503463745, -0.015445193275809288, -0.013851992785930634, -0.05363775044679642, -0.028128840029239655, -0.018870573490858078, -0.045353107154369354, -0.024198945611715317, -0.033315591514110565, 0.06146213412284851, 0.019791090860962868, 0.03887408971786499, 0.04241453856229782, 0.0023521834518760443, -0.024464478716254234, -0.041989684104919434, 0.03189941495656967, -0.00895290169864893, -0.031138217076659203, -0.017091499641537666, -0.005045134574174881, -0.00015005403838586062, 0.008727198466658592, -0.011922449804842472, 0.001710477750748396, -0.028907736763358116, 0.02304830029606819, -0.06539202481508255, 0.06818898022174835, 0.05264642462134361, -0.008926347829401493, -0.05569120869040489, -0.01920691691339016, -0.002566823037341237, 0.01706494763493538, 0.01379003468900919, 0.018357209861278534, 0.03370504081249237, 0.02851828746497631, -0.06592309474945068, -0.03767034038901329, 0.0396529883146286, 0.023366939276456833, 0.03944056108593941, 0.024659203365445137, 0.031350646167993546, -0.03078417293727398, -0.05158429220318794, -0.03954677656292915, -0.0011235382407903671, 0.0362541601061821, -0.029792848974466324, 0.028943141922354698, -0.05565580353140831, 0.06149753928184509, -0.032996952533721924, 0.03034161776304245, -0.0024495457764714956, -0.04804384335875511, -0.0484686978161335, 0.04333505406975746, 0.03251899033784866, 0.06011676415801048, -0.049035169184207916, -0.0065940795466303825, -0.05445205047726631, 0.029031652957201004, 0.0688970685005188, 0.026181593537330627, -0.11421477049589157, -0.000674897397402674, 0.05076998844742775, 0.019419344142079353, -0.01816248521208763, 0.028890034183859825, 0.03292614221572876, 0.007421658840030432, -0.02469460666179657, 0.03156306967139244, 0.041387807577848434, 0.039582181721925735, 0.04113997519016266, -0.036537397652864456, 0.027562368661165237, -0.010630187578499317, 0.04163563996553421, -0.00892192218452692, -0.020994842052459717, -0.0628783106803894, 0.014445017091929913, 0.011780831962823868, 0.03214724361896515, 0.03643118217587471, -0.008700644597411156, -0.013382883742451668, 0.03386436030268669, 0.012347303330898285, 0.012674794532358646, -0.01614443212747574, 0.015294724144041538, -0.05703657492995262, 0.03823681175708771, -0.07148159295320511, -0.02088862843811512, 0.005239859223365784, -0.005089390557259321, -0.04758358746767044, -0.03876787796616554, 0.0588776096701622, 0.018109379336237907, -0.020924033597111702, -0.00574879813939333, -0.014498123899102211 ]
729,190
tables.vlarray
_g_copy_with_stats
Private part of Leaf.copy() for each kind of leaf.
def _g_copy_with_stats(self, group, name, start, stop, step, title, filters, chunkshape, _log, **kwargs): """Private part of Leaf.copy() for each kind of leaf.""" # Build the new VLArray object object = VLArray( group, name, self.atom, title=title, filters=filters, expectedrows=self._v_expectedrows, chunkshape=chunkshape, _log=_log) # Now, fill the new vlarray with values from the old one # This is not buffered because we cannot forsee the length # of each record. So, the safest would be a copy row by row. # In the future, some analysis can be done in order to buffer # the copy process. nrowsinbuf = 1 (start, stop, step) = self._process_range_read(start, stop, step) # Optimized version (no conversions, no type and shape checks, etc...) nrowscopied = SizeType(0) nbytes = 0 if not hasattr(self.atom, 'size'): # it is a pseudo-atom atomsize = self.atom.base.size else: atomsize = self.atom.size for start2 in range(start, stop, step * nrowsinbuf): # Save the records on disk stop2 = start2 + step * nrowsinbuf if stop2 > stop: stop2 = stop nparr = self._read_array(start=start2, stop=stop2, step=step)[0] nobjects = nparr.shape[0] object._append(nparr, nobjects) nbytes += nobjects * atomsize nrowscopied += 1 object.nrows = nrowscopied return (object, nbytes)
(self, group, name, start, stop, step, title, filters, chunkshape, _log, **kwargs)
[ 0.006004961207509041, 0.007372886873781681, -0.0446639284491539, 0.038468848913908005, -0.022665830329060555, -0.007484175730496645, -0.02732141502201557, -0.011796618811786175, -0.04210428521037102, -0.022072289139032364, -0.004579072818160057, -0.03169877454638481, 0.0028262732084840536, 0.019141683354973793, -0.02309243753552437, 0.04963482916355133, -0.00039646655204705894, 0.0209594015032053, -0.04280911386013031, 0.06810878217220306, -0.0339060053229332, -0.0054206945933401585, 0.007864412851631641, 0.020551342517137527, 0.0017284550704061985, 0.011332915164530277, 0.027043191716074944, -0.012807492166757584, 0.015228024683892727, 0.014764321967959404, 0.005239850375801325, -0.07003778964281082, 0.016071965917944908, -0.00663096085190773, -0.04154783859848976, -0.045702625066041946, -0.0062553612515330315, 0.024427903816103935, -0.05156383663415909, 0.0372261218726635, 0.016313090920448303, -0.04852193966507912, -0.03850594535470009, 0.016118336468935013, 0.06042984873056412, -0.0032621545251458883, 0.016405832022428513, -0.023463400080800056, -0.03440680354833603, -0.006436205469071865, -0.08576661348342896, 0.04770582169294357, -0.011240174062550068, 0.018770720809698105, -0.014411906711757183, 0.021775519475340843, 0.0618395060300827, 0.019568290561437607, -0.020644083619117737, 0.04633326083421707, -0.009830515831708908, 0.014059492386877537, 0.045591335743665695, -0.014337713830173016, -0.02848994731903076, -0.03702209144830704, -0.074452243745327, -0.041399452835321426, -0.031179428100585938, 0.03216248005628586, 0.007039020303636789, 0.05178641527891159, 0.05037675425410271, 0.03644710034132004, -0.07693769782781601, 0.09570841491222382, 0.01735178753733635, -0.0033177989535033703, 0.0703345537185669, -0.04759453237056732, 0.02125617116689682, 0.06428786367177963, -0.010952678509056568, 0.017379609867930412, 0.018557416275143623, 0.010034545324742794, 0.002483132528141141, -0.000023040271116769873, 0.030159279704093933, -0.034276966005563736, -0.01910458691418171, 0.02661658450961113, 0.030177827924489975, 0.0011865014676004648, 0.008717627264559269, -0.03589065745472908, -0.04915257915854454, 0.023055341094732285, -0.05345574766397476, 0.042178478091955185, 0.009362175129354, -0.046370357275009155, -0.001649625482968986, 0.011546218767762184, 0.009672855958342552, 0.011082515120506287, 0.05701699107885361, -0.040509141981601715, -0.05327026546001434, 0.0627669170498848, -0.011685329489409924, 0.05805568769574165, -0.025095637887716293, 0.03080846555531025, -0.019271520897746086, 0.03538985550403595, 0.007984975352883339, -0.007762397639453411, -0.09622776508331299, -0.005156383849680424, 0.032422155141830444, -0.006046694703400135, -0.0035542878322303295, 0.05479121208190918, -0.03503744304180145, 0.0143748102709651, 0.05850084125995636, -0.012798218056559563, -0.0068489015102386475, -0.03980431333184242, -0.01559898816049099, -0.04228976368904114, -0.043439749628305435, -0.025596436113119125, 0.02058843895792961, -0.027636732906103134, 0.019716676324605942, -0.04084300994873047, -0.04748324677348137, -0.03238505870103836, -0.012937329709529877, -0.00040950821130536497, 0.042549438774585724, 0.01321555208414793, 0.0015754328342154622, -0.027562540024518967, 0.03724467009305954, 0.01525584701448679, 0.020124735310673714, -0.016739698126912117, -0.022851312533020973, -0.007984975352883339, 0.021571489050984383, 0.014578839763998985, 0.024149682372808456, -0.004017991479486227, -0.006464027799665928, -0.06796039640903473, -0.01979086734354496, 0.007085390388965607, -0.051341257989406586, -0.00984906405210495, -0.03854304179549217, -0.009287982247769833, -0.041288167238235474, 0.04377361759543419, 0.04566552862524986, -0.039544641971588135, -0.08279890567064285, 0.026468198746442795, 0.026598036289215088, -0.023945651948451996, 0.030270569026470184, 0.041584935039281845, -0.08020216971635818, 0.08776981383562088, 0.0025573251768946648, 0.002251280704513192, 0.012371610850095749, -0.00862488616257906, -0.037393055856227875, 0.033998746424913406, 0.0008213349501602352, 0.02361178584396839, -0.02925042062997818, -0.0005457211518660188, -0.0027149843517690897, -0.02535531111061573, 0.05946534499526024, 0.047928400337696075, -0.04039785638451576, -0.004377361852675676, 0.002381117781624198, -0.013818366453051567, -0.012677655555307865, -0.0026570213958621025, -0.0563492588698864, 0.05278801545500755, -0.00543460575863719, 0.0694071501493454, -0.05623796954751015, -0.03236651048064232, -0.01747235096991062, -0.07745704054832458, -0.020347312092781067, 0.03060443513095379, -0.025670628994703293, 0.06566042453050613, -0.01296515204012394, 0.043328460305929184, 0.0024135771673172712, -0.0017597550759091973, 0.006593864876776934, 0.08020216971635818, 0.0335535891354084, -0.05393799766898155, -0.06907328218221664, -0.018409032374620438, 0.05160093307495117, 0.008035982958972454, -0.017203401774168015, -0.042772017419338226, -0.05052514001727104, -0.016711875796318054, -0.03538985550403595, 0.005633998196572065, 0.056126680225133896, -0.042549438774585724, 0.0005793396267108619, -0.026060139760375023, 0.039544641971588135, -0.06584590673446655, -0.016211077570915222, -0.04989450424909592, -0.017500173300504684, 0.00873617548495531, 0.011091789230704308, 0.017212675884366035, 0.0536041334271431, 0.02574482187628746, -0.06135725602507591, -0.08398599177598953, -0.010999049060046673, 0.023760171607136726, -0.022109385579824448, -0.05549604445695877, -0.011305092833936214, 0.01048897486180067, 0.032904405146837234, 0.030270569026470184, -0.0485590361058712, 0.0003651665465440601, -0.04651874303817749, -0.000051478342356858775, 0.04403328895568848, -0.023259371519088745, 0.009172056801617146, -0.023723075166344643, 0.001924369833432138, -0.053975094109773636, 0.002503999276086688, 0.003793095238506794, 0.02613433264195919, -0.010155107825994492, -0.031031042337417603, 0.054160576313734055, 0.07326516509056091, -0.029102036729454994, 0.02837865799665451, 0.062247566878795624, 0.012167581357061863, 0.11128885298967361, -0.05252834036946297, 0.018279194831848145, -0.03872852027416229, -0.020718274638056755, 0.004762235563248396, 0.012223226018249989, 0.024223875254392624, -0.05067352578043938, 0.05549604445695877, 0.04203009232878685, -0.01842758059501648, -0.0327560193836689, -0.0333310142159462, -0.04429296404123306, 0.016313090920448303, -0.014959077350795269, -0.06873941421508789, -0.031235072761774063, -0.03305279091000557, 0.010665182024240494, -0.02455774135887623, -0.024409355595707893, 0.009153508581221104, 0.033497944474220276, -0.04933806136250496, 0.0036678952164947987, -0.06399109214544296, 0.014105862937867641, -0.05979921296238899, -0.0723748505115509, 0.08302148431539536, 0.07048293948173523, -0.007563005201518536, 0.0013841551262885332, 0.0006312165060080588, -0.03980431333184242, 0.012816766276955605, -0.005082190968096256, 0.012074841186404228, -0.0027149843517690897, 0.04770582169294357, 0.03364633023738861, -0.01823282428085804, -0.015469150617718697, -0.0008137997356243432, 0.006468664854764938, -0.018937652930617332, 0.03928496688604355, -0.0419188030064106, -0.04210428521037102, -0.006273909471929073, -0.04700099304318428, 0.03861723467707634, -0.010118011385202408, 0.02299969643354416, 0.004998724441975355, 0.028063340112566948, 0.028842361643910408, -0.02975122071802616, 0.021608585491776466, 0.054568637162446976, 0.07092809677124023, -0.006927731446921825, 0.029176227748394012, 0.006218264810740948, -0.034870509058237076, -0.013391759246587753, -0.0588718056678772, 0.0025642807595431805, 0.04180751368403435, -0.04707518592476845, 0.0055922651663422585, 0.043736521154642105, -0.035352759063243866, 0.016656232997775078, -0.0372261218726635, -0.014421180821955204, 0.027822213247418404, 0.03947044909000397, 0.020625535398721695, -0.07586190104484558, 0.06202498823404312, 0.05779601261019707, 0.010303493589162827, 0.03958173468708992, -0.08725046366453171, -0.0003274906484875828, -0.0038881544023752213, 0.013818366453051567, 0.028304465115070343, 0.02409403771162033, -0.00809162762016058, 0.06966682523488998, -0.03307133913040161, -0.040805913507938385, -0.026301266625523567, -0.04592519998550415, -0.019735224545001984, -0.012028470635414124, -0.03511163592338562, 0.034759219735860825, -0.015617536380887032, 0.0015986179932951927, -0.026653680950403214, -0.023667430505156517, -0.03958173468708992, -0.043551038950681686, -0.004326354246586561, 0.020495697855949402, 0.031643129885196686, -0.0035519693046808243, 0.06421367079019547, 0.02173842303454876, 0.0060698795132339, -0.0014537107199430466, 0.044330060482025146, 0.01870580203831196, -0.0005234053824096918, 0.0347035750746727, 0.042660728096961975, 0.010210752487182617, -0.04388490691781044, -0.022276319563388824, 0.040026891976594925, -0.017398158088326454, -0.013317566365003586, -0.09110847860574722, -0.026931902393698692, -0.009436368010938168, -0.014495373703539371, -0.11284690350294113, 0.029176227748394012, -0.03255198895931244, -0.07304258644580841, 0.011926455423235893, -0.03526001796126366, -0.03451809287071228, 0.010182930156588554, 0.04533166065812111, -0.0003402424918022007, 0.035241469740867615, -0.012714751996099949, 0.04347684606909752, -0.002970021450892091, -0.012019196525216103, 0.003966983873397112, 0.006811805535107851, -0.005323316901922226, 0.015821564942598343, 0.06135725602507591, 0.03360923379659653, -0.009821241721510887, 0.020106187090277672, -0.02058843895792961, -0.03286730870604515, -0.004182606004178524, -0.0026686140336096287, 0.0004773248510900885, 0.018065890297293663, 0.01793605461716652, -0.041473645716905594, 0.02721012569963932, 0.012705477885901928, 0.0172404982149601, -0.0037235396448522806, 0.02837865799665451, 0.04106558859348297, 0.05004289001226425, 0.03509308770298958, 0.016211077570915222, 0.05531056225299835, -0.017898958176374435, -0.02732141502201557, -0.0028726435266435146, -0.01862233504652977, -0.021998098120093346, -0.0691845715045929, -0.03453664109110832, 0.06354593485593796, 0.016071965917944908, 0.03555678948760033, -0.04911548271775246, 0.029528643935918808, -0.027469798922538757, -0.060021787881851196, -0.05371542274951935, 0.015441329218447208, -0.0020287029910832644, 0.05171222239732742, 0.011731700040400028, -0.01521875150501728, 0.004335628356784582, 0.0033085248433053493, -0.04644455015659332, 0.050562236458063126, 0.0028540955390781164, 0.017203401774168015, -0.03366487845778465, 0.016888083890080452, -0.008958753198385239, -0.012640559114515781, 0.004020310007035732, 0.031550392508506775, 0.02144165337085724, -0.04073172062635422, -0.015914306044578552, -0.04633326083421707, -0.0014884884003549814, -0.017323965206742287, -0.014152232557535172, 0.03483341261744499, 0.02155294269323349, -0.05557023733854294, 0.039062388241291046, 0.013558692298829556, 0.06395399570465088, 0.020050542429089546, -0.019920704886317253, 0.0014397995546460152, -0.003213465679436922, -0.06907328218221664, 0.026598036289215088, -0.01175024826079607, 0.032422155141830444, 0.03381326422095299, 0.053789615631103516, 0.07052003592252731, -0.030289117246866226, -0.02144165337085724, -0.020829563960433006, 0.026375459507107735, -0.03928496688604355, 0.010980500839650631, 0.012807492166757584, 0.042363956570625305, 0.011490574106574059, -0.010526071302592754, -0.00009933399996953085, -0.03715192899107933, -0.014254247769713402, -0.056015390902757645, 0.05364122986793518, 0.004780783783644438, -0.002923650899901986, -0.014829239808022976, 0.03947044909000397, -0.032218124717473984, -0.02886090986430645, 0.039136581122875214, 0.028341561555862427, -0.017092114314436913, -0.07463772594928741, -0.035927753895521164, -0.029955251142382622, -0.0270246434956789, 0.033683426678180695, -0.002401984529569745, -0.0339060053229332, -0.03770837560296059, -0.028508495539426804, 0.052602533251047134, -0.003445317503064871, 0.05256543681025505, -0.025763370096683502, 0.007692842278629541, 0.002501680748537183, 0.012928055599331856, 0.01023857481777668, 0.00115172378718853, -0.014782869257032871, 0.011731700040400028, -0.03761563450098038, -0.03468502685427666, 0.07678931206464767, 0.023834362626075745, -0.014755047857761383, 0.04659293591976166, -0.018371935933828354, 0.05048804357647896, -0.02038440853357315, -0.00631100544705987, -0.004027265589684248, 0.00785050168633461, 0.05831535905599594, -0.06202498823404312, -0.05327026546001434, 0.036984995007514954, -0.03655838966369629, 0.03181006386876106, -0.02329646795988083, 0.007312605157494545, -0.007442442234605551, -0.03206973895430565, -0.01521875150501728, -0.04010108485817909, 0.0393962562084198, -0.0289721991866827, 0.006779346149414778, 0.015163106843829155, 0.06566042453050613, -0.025114186108112335, -0.008930930867791176, 0.047928400337696075, 0.00648721307516098, 0.015914306044578552, 0.06899908930063248, -0.005940042901784182, -0.04566552862524986, 0.02029166743159294, 0.048336461186409, 0.030085086822509766, -0.03483341261744499, 0.0075722793117165565, 0.044404253363609314, -0.0339060053229332, -0.001036377507261932, 0.0536041334271431, 0.031439103186130524, 0.03678096830844879, 0.09370521456003189, -0.054457347840070724, -0.021478749811649323, -0.013410307466983795, -0.04036075994372368, -0.033479396253824234, -0.04963482916355133, -0.07204098254442215, 0.013197003863751888, -0.0046555837616324425, 0.021590037271380424, -0.026876259595155716, 0.01619252935051918, -0.036614034324884415, -0.021571489050984383, -0.002390391891822219, -0.024056941270828247, 0.017889684066176414, 0.0474090538918972, 0.004868887364864349, 0.02146020159125328, 0.021886808797717094, -0.050562236458063126, -0.021515846252441406, -0.029268968850374222, 0.002338225254788995, -0.02865688130259514, 0.02056989073753357, 0.028230272233486176, -0.050747718662023544, -0.019290069118142128, -0.0038881544023752213, 0.012640559114515781, -0.039915602654218674, -0.08027636259794235, 0.016025595366954803, 0.027061739936470985, 0.029102036729454994, -0.017129208892583847, -0.0648072138428688, -0.014458277262747288, 0.019271520897746086, -0.059836309403181076, 0.0378011129796505, -0.006515034940093756, -0.002812362043187022, -0.003250562120229006, 0.015432055108249187, 0.06514107435941696, 0.0032250583171844482, -0.018946927040815353, 0.02984396182000637, -0.02719157747924328, -0.04143654927611351, -0.04369942471385002, 0.028341561555862427, 0.016535669565200806, 0.0008364053210243583, 0.022053740918636322, 0.003222739789634943, 0.06514107435941696, -0.024594837799668312, 0.03453664109110832, -0.030493145808577538, 0.08999558538198471, -0.001600936520844698, 0.036205973476171494, -0.010080915875732899, -0.03887690603733063, -0.04269782453775406, 0.014532470144331455, -0.014949803240597248, -0.06354593485593796, 0.05872341990470886, 0.053381554782390594, 0.0333310142159462, 0.04911548271775246, 0.03503744304180145, 0.02478031814098358, -0.08984719961881638, 0.006491850130259991, -0.004511835519224405, 0.034777767956256866, -0.05100739374756813, -0.027358509600162506, 0.03307133913040161, -0.002895828802138567, -0.03053024224936962, 0.000585135945584625, 0.014838513918220997, 0.03171732276678085, 0.004470102488994598, -0.02798914723098278, 0.0022466438822448254, 0.1028309017419815, -0.05697989463806152, -0.012751848436892033, 0.05939115211367607, 0.0174630768597126, 0.04407038539648056, 0.06150564178824425, 0.06636525690555573, 0.024427903816103935, -0.05356703698635101, 0.02670932561159134, 0.04132526367902756, -0.05838955193758011, 0.02826736867427826, 0.008569241501390934, 0.005620087031275034, -0.039915602654218674, -0.020347312092781067, 0.0025735548697412014, 0.006320279557257891, -0.010118011385202408, -0.053975094109773636, 0.044626832008361816, 0.014838513918220997, 0.02105214260518551, 0.012306693010032177, 0.06395399570465088, -0.023073889315128326, 0.035241469740867615, -0.005773109383881092, -0.005847301799803972, 0.007447079289704561, -0.005494887474924326, -0.046259067952632904, 0.020625535398721695, 0.029695576056838036, 0.03383181244134903, 0.06899908930063248, 0.045480046421289444, -0.0650668814778328, 0.053196072578430176, 0.02975122071802616, -0.044997792690992355, -0.009821241721510887, -0.028415754437446594, 0.015487698838114738, 0.04829936474561691, -0.002503999276086688, 0.012770396657288074, 0.02934316173195839, 0.03205119073390961, -0.014115136116743088, -0.02029166743159294, 0.020161831751465797, 0.032718922942876816, -0.022109385579824448, -0.021330364048480988, -0.011314366944134235, -0.01716630533337593, -0.09860192984342575, -0.01336393691599369, 0.06042984873056412, 0.020718274638056755, -0.03266327828168869, -0.017676379531621933, 0.04752034321427345, -0.02075537107884884, 0.00975632295012474, 0.06065242737531662, 0.005485613364726305, 0.009329715743660927, 0.04956063628196716, -0.052417051047086716, 0.043625231832265854, -0.02350049652159214, 0.012176855467259884, -0.03168022632598877, -0.06362012773752213, 0.06202498823404312, 0.019178779795765877, 0.013957477174699306, -0.013781270012259483, 0.03041895478963852 ]
729,191
tables.vlarray
_g_create
Create a variable length array (ragged array).
def _g_create(self): """Create a variable length array (ragged array).""" atom = self.atom self._v_version = obversion # Check for zero dims in atom shape (not allowed in VLArrays) zerodims = np.sum(np.array(atom.shape) == 0) if zerodims > 0: raise ValueError("When creating VLArrays, none of the dimensions " "of the Atom instance can be zero.") if not hasattr(atom, 'size'): # it is a pseudo-atom self._atomicdtype = atom.base.dtype self._atomicsize = atom.base.size self._basesize = atom.base.itemsize else: self._atomicdtype = atom.dtype self._atomicsize = atom.size self._basesize = atom.itemsize self._atomictype = atom.type self._atomicshape = atom.shape # Compute the optimal chunkshape, if needed if self._v_chunkshape is None: self._v_chunkshape = self._calc_chunkshape(self._v_expectedrows) self.nrows = SizeType(0) # No rows at creation time # Correct the byteorder if needed if self.byteorder is None: self.byteorder = correct_byteorder(atom.type, sys.byteorder) # After creating the vlarray, ``self._v_objectid`` needs to be # set because it is needed for setting attributes afterwards. self._v_objectid = self._create_array(self._v_new_title) # Add an attribute in case we have a pseudo-atom so that we # can retrieve the proper class after a re-opening operation. if not hasattr(atom, 'size'): # it is a pseudo-atom self.attrs.PSEUDOATOM = atom.kind return self._v_objectid
(self)
[ 0.04467025026679039, -0.0007036564638838172, -0.04001406580209732, 0.02893744595348835, 0.04739848151803017, 0.008816735818982124, -0.0620945580303669, -0.023099029436707497, -0.022044112905859947, -0.034139275550842285, -0.002919208025559783, 0.0033261694479733706, -0.021280208602547646, 0.007657237350940704, -0.04678008332848549, 0.030283372849225998, 0.006215821485966444, -0.0023303646594285965, -0.05681997537612915, 0.07726352661848068, -0.0206981860101223, 0.011176656931638718, -0.025245238095521927, 0.012740842998027802, 0.059184443205595016, -0.008812189102172852, 0.016178414225578308, 0.000571507727727294, 0.019897904247045517, -0.008493895642459393, -0.043433450162410736, -0.0214620903134346, 0.005347334314137697, 0.03892277553677559, 0.005283675622195005, -0.024335827678442, 0.007657237350940704, 0.04496126249432564, -0.019479574635624886, 0.023099029436707497, 0.040596090257167816, -0.0849025771021843, 0.003960483241826296, -0.01789720170199871, 0.0354488268494606, -0.034066520631313324, 0.0463799424469471, -0.031665679067373276, -0.061294276267290115, 0.051290757954120636, -0.006515927147120237, -0.010412751697003841, 0.002591820200905204, -0.01969783380627632, -0.07515369355678558, 0.09836184978485107, 0.05743837356567383, 0.08708515763282776, -0.033029794692993164, -0.01684228517115116, -0.0256817564368248, 0.03490317985415459, 0.050199467688798904, -0.029192080721259117, -0.034102898091077805, 0.051654525101184845, -0.014132240787148476, 0.011658644303679466, 0.010267245583236217, 0.0325750894844532, -0.010312716476619244, 0.039504796266555786, 0.02108013816177845, 0.0019734210800379515, 0.025990955531597137, 0.0770452693104744, -0.03077445551753044, -0.005406446289271116, 0.013486559502780437, -0.02066180855035782, 0.060566745698451996, 0.04936280846595764, 0.03310254588723183, 0.02255338430404663, 0.019206753000617027, 0.029192080721259117, -0.04510676860809326, 0.036940257996320724, 0.003705848241224885, -0.04681645706295967, 0.021916795521974564, 0.029228458181023598, -0.009739787317812443, 0.05132713541388512, -0.015741897746920586, -0.0360308475792408, -0.0022473810240626335, -0.06704175472259521, -0.0018131374381482601, 0.014550570398569107, -0.0002543507725931704, -0.02317178249359131, -0.008416594937443733, -0.016205696389079094, -0.03848625719547272, 0.04976294934749603, 0.016687685623764992, 0.0016323920572176576, -0.04026870056986809, 0.017042355611920357, 0.0022144147660583258, 0.09777983278036118, -0.012795407325029373, 0.05827503278851509, -0.06558669358491898, 0.04892629012465477, 0.03493955731391907, 0.04212389886379242, -0.017024166882038116, 0.0020450372248888016, 0.005420087371021509, -0.03790423646569252, -0.012195196002721786, 0.008703059516847134, -0.0068023912608623505, -0.01145857386291027, 0.007807290181517601, -0.019188564270734787, -0.019043058156967163, -0.015605485998094082, -0.03677656501531601, -0.01144947949796915, -0.05249118059873581, -0.0392865389585495, -0.00884401798248291, -0.031938500702381134, 0.05009033530950546, -0.06296759098768234, -0.039177410304546356, 0.002353099873289466, -0.010440033860504627, 0.05780214071273804, 0.02851911634206772, 0.00946696475148201, -0.06096688657999039, 0.03395739197731018, 0.06318584829568863, 0.03419383987784386, 0.029392151162028313, 0.005724739748984575, -0.04870803281664848, -0.01789720170199871, 0.023408228531479836, 0.05572868138551712, 0.022662512958049774, 0.018679294735193253, -0.039104655385017395, -0.06067587807774544, -0.004076432902365923, 0.027409635484218597, -0.08970426023006439, 0.003569436725229025, -0.05780214071273804, -0.037049390375614166, -0.03537607192993164, 0.0018893005326390266, 0.0076481434516608715, -0.05074511095881462, -0.08053740113973618, 0.056929104030132294, 0.034175653010606766, -0.03892277553677559, -0.07457166910171509, -0.0022962617222219706, 0.009262347593903542, 0.07311661541461945, -0.01697869598865509, 0.011067527346313, 0.03943204507231712, 0.04365171119570732, -0.0022780736908316612, 0.004472026601433754, 0.01646033301949501, -0.05547404661774635, 0.0076481434516608715, 0.009703411720693111, 0.03568527102470398, -0.022698888555169106, 0.07246183604001999, 0.04597980156540871, -0.013441088609397411, 0.0020348061807453632, 0.00740714929997921, 0.015259910374879837, 0.020971009507775307, -0.0026009143330156803, -0.022407878190279007, 0.0515453927218914, -0.04332432150840759, 0.02566356770694256, 0.007093403022736311, 0.022335125133395195, -0.01969783380627632, -0.04929005727171898, -0.02571813203394413, 0.016724061220884323, -0.02780977636575699, -0.07217082381248474, 0.02995598502457142, 0.006506832782179117, 0.012422549538314342, 0.010312716476619244, 0.01962508074939251, 0.010130834765732288, 0.002498605754226446, -0.05867517367005348, -0.04361533373594284, 0.03634004667401314, -0.009403306059539318, -0.01665130816400051, 0.03008330427110195, -0.009785258211195469, -0.07551746070384979, -0.019097622483968735, -0.04761673882603645, -0.034102898091077805, 0.0006951307295821607, 0.014086770825088024, -0.03906828165054321, 0.013159171678125858, 0.012004219926893711, 0.000974774535279721, -0.02604551985859871, -0.05099974945187569, 0.03222951292991638, 0.0072889262810349464, 0.04830789193511009, 0.049071796238422394, 0.006320403888821602, 0.03548520430922508, -0.03830437362194061, -0.0002756651083473116, 0.02646384947001934, 0.020843692123889923, 0.012067878618836403, 0.012422549538314342, -0.0017835815669968724, 0.06798753887414932, -0.011485856026411057, -0.005160905420780182, -0.07500819116830826, -0.06762377172708511, -0.04525227099657059, 0.02571813203394413, 0.06522292643785477, 0.006293121725320816, -0.0002576189872343093, 0.001383440918289125, 0.014914333820343018, -0.02173491381108761, -0.0028078053146600723, 0.021880419924855232, 0.037722352892160416, 0.04761673882603645, 0.005802039988338947, 0.04881716147065163, 0.04419735446572304, -0.006606868002563715, -0.028446365147829056, 0.05332783982157707, 0.044160980731248856, 0.0858483612537384, -0.028009846806526184, -0.021716725081205368, -0.01105843298137188, -0.0025349820498377085, 0.010285434313118458, 0.001332286512479186, 0.012422549538314342, 0.016451237723231316, -0.052709437906742096, -0.0228989589959383, 0.03994131460785866, 0.02075275033712387, -0.0339210145175457, -0.02575450949370861, -0.020298045128583908, -0.03939566761255264, -0.045506905764341354, -0.031629301607608795, -0.03899552673101425, 0.02388112246990204, -0.017869919538497925, 0.03352087736129761, 0.07922784984111786, -0.004833517596125603, -0.037358589470386505, 0.08250173181295395, -0.0052336580120027065, 0.012031502090394497, 0.004012774210423231, 0.0048426114954054356, 0.04208752512931824, 0.02108013816177845, -0.03186574950814247, -0.013277394697070122, -0.01445053517818451, 0.005397351924329996, 0.031265538185834885, 0.003876362694427371, -0.03597628325223923, 0.011731397360563278, -0.0004166237486060709, 0.061221521347761154, 0.012913631275296211, 0.0408143475651741, 0.008621213026344776, -0.03104727901518345, 0.016487615182995796, 0.013168266043066978, 0.006370421499013901, -0.0075753903947770596, -0.04106898233294487, -0.07111591100692749, -0.034794051200151443, 0.010139928199350834, -0.01395035907626152, -0.037685975432395935, -0.021171079948544502, 0.026263779029250145, 0.037758730351924896, 0.03470310941338539, -0.001689230208285153, 0.07446254044771194, -0.006193086504936218, -0.0011810970026999712, 0.02964678592979908, -0.03848625719547272, 0.015496357344090939, -0.04037783294916153, -0.0015414509689435363, 0.042305782437324524, -0.07158880680799484, 0.013513841666281223, 0.045506905764341354, -0.05547404661774635, 0.009876199066638947, -0.06103964149951935, 0.011822338216006756, -0.03957755118608475, 0.02853730507194996, -0.005579234100878239, -0.06082138419151306, 0.06973360478878021, 0.019734211266040802, -0.03579440340399742, -0.0019893357530236244, -0.00041605535079725087, -0.02675485983490944, 0.05114525184035301, -0.05685635283589363, 0.032702405005693436, 0.024099381640553474, -0.01964326947927475, -0.0006104419007897377, -0.047689493745565414, -0.02215324342250824, -0.014559663832187653, -0.02315359376370907, -0.017233330756425858, -0.009594282135367393, -0.07337124645709991, -0.015687333419919014, 0.021934984251856804, 0.03903190419077873, -0.01288634818047285, -0.06635060161352158, -0.03939566761255264, 0.008648495189845562, -0.045179519802331924, 0.0214620903134346, 0.028864692896604538, 0.05991197004914284, -0.03668562322854996, 0.028446365147829056, 0.032720595598220825, 0.02111651375889778, 0.0894860029220581, -0.005156358238309622, 0.01806998997926712, -0.0014959804248064756, -0.007325302343815565, 0.0072525497525930405, -0.019024869427084923, -0.015496357344090939, 0.05296407639980316, -0.012722654268145561, 0.008553006686270237, -0.0017347007524222136, -0.007175249978899956, -0.021916795521974564, -0.02571813203394413, -0.05150901898741722, 0.0429241806268692, -0.019061246886849403, -0.08155594766139984, 0.05871155112981796, 0.030210621654987335, -0.04110535979270935, 0.021625785157084465, 0.04321519285440445, 0.03497593104839325, -0.015050745569169521, -0.04463387280702591, 0.03250233456492424, -0.006211274769157171, -0.019061246886849403, -0.004135544877499342, 0.03577621281147003, 0.014905240386724472, 0.00378996878862381, 0.08984977006912231, 0.004626626614481211, 0.05649258941411972, -0.03573983907699585, 0.03797698765993118, -0.016396673396229744, 0.04634356498718262, -0.02715500071644783, -0.020934632048010826, 0.02895563468337059, 0.07711802423000336, 0.011485856026411057, -0.04252403974533081, -0.06533206254243851, -0.001863155048340559, -0.003828618675470352, -0.02042536251246929, 0.024408580735325813, 0.05743837356567383, 0.070533886551857, 0.014014017768204212, 0.035958096385002136, -0.007679972797632217, -0.008762171491980553, -0.02539074420928955, -0.02648203819990158, -0.01426865253597498, -0.024208510294556618, -0.04899904504418373, 0.022717077285051346, 0.03668562322854996, 0.05540129542350769, -0.00670235650613904, -0.02930120937526226, -0.03573983907699585, -0.01322283037006855, -0.03359362855553627, -0.03674018755555153, -0.04572516679763794, -0.029210269451141357, 0.017988141626119614, -0.029155705124139786, -0.011040245182812214, -0.01499618124216795, -0.03241139277815819, 0.005638346076011658, -0.03754046931862831, -0.0649682953953743, -0.05401898920536041, -0.008839471265673637, -0.009557905606925488, 0.04929005727171898, -0.04936280846595764, 0.02077093906700611, -0.008325654082000256, -0.016205696389079094, -0.024463145062327385, -0.03859538584947586, -0.03428478166460991, -0.032320454716682434, -0.02899201028048992, -0.03570346161723137, 0.06180354580283165, -0.015023463405668736, 0.08017364144325256, 0.03002873808145523, 0.054855648428201675, -0.005601969547569752, -0.046998340636491776, -0.053073205053806305, 0.029883233830332756, -0.06696899980306625, 0.08526633679866791, 0.09072280675172806, 0.04430648684501648, 0.03812249377369881, 0.014550570398569107, 0.02113470248878002, -0.007725443225353956, -0.013541123829782009, -0.06118514761328697, -0.054128121584653854, -0.04226940497756004, 0.00048255600268021226, -0.030847208574414253, 0.03110184334218502, -0.015405415557324886, -0.021553032100200653, -0.00945787038654089, -0.07835482060909271, -0.0536552257835865, -0.04827151447534561, -0.011749585159122944, 0.0015175789594650269, 0.05361885204911232, -0.008512083441019058, -0.03523056581616402, -0.04488850757479668, 0.014059488661587238, 0.0017994962399825454, -0.01860654167830944, -0.04103260859847069, -0.05292769894003868, -0.024208510294556618, -0.0018347359728068113, -0.07835482060909271, -0.024190323427319527, 0.02613646164536476, 0.01609656773507595, -0.012440737336874008, -0.06922433525323868, 0.04146912321448326, 0.04194201901555061, 0.008825830183923244, 0.0028487287927418947, 0.027718836441636086, 0.006661432795226574, -0.011176656931638718, -0.004385632928460836, -0.012004219926893711, -0.011722302995622158, 0.009703411720693111, 0.010385469533503056, -0.037322212010622025, 0.0242448877543211, 0.04798050597310066, -0.020097974687814713, 0.05067235976457596, -0.03779510408639908, -0.008493895642459393, 0.0029805933590978384, 0.05361885204911232, -0.017788071185350418, -0.0010679891565814614, -0.022753452882170677, -0.02499060332775116, -0.07573571801185608, 0.04226940497756004, 0.003760413033887744, 0.028118977323174477, 0.030137868598103523, -0.007388961501419544, 0.009321458637714386, -0.061985429376363754, 0.06333135813474655, -0.013823041692376137, 0.0293193981051445, 0.02106194943189621, 0.05540129542350769, 0.017224237322807312, -0.026718484237790108, -0.029737727716565132, 0.005947545636445284, 0.020789125934243202, 0.0017994962399825454, -0.015441792085766792, 0.03790423646569252, 0.0021587135270237923, -0.054128121584653854, -0.019788775593042374, 0.000821311492472887, -0.04597980156540871, -0.04277867451310158, 0.007057026494294405, 0.052345674484968185, 0.02326272428035736, 0.059111692011356354, 0.040195949375629425, -0.015196251682937145, 0.00669326214119792, 0.04296055808663368, -0.016205696389079094, 0.0030715344473719597, -0.029046574607491493, 0.05885705724358559, 0.007125232368707657, -0.00034586022957228124, -0.011658644303679466, -0.03683112934231758, -0.0163875799626112, 0.039868563413619995, -0.054091744124889374, 0.04194201901555061, -0.011740490794181824, -0.04932643100619316, -0.022589759901165962, -0.011340350843966007, 0.022626135498285294, -0.0015232628211379051, 0.016178414225578308, -0.03573983907699585, -0.008352936245501041, -0.026281967759132385, -0.01967964507639408, 0.03859538584947586, -0.026645731180906296, 0.05649258941411972, 0.04103260859847069, 0.013604782521724701, -0.025281615555286407, -0.026609355583786964, -0.012568054720759392, -0.03906828165054321, -0.03579440340399742, -0.029046574607491493, 0.04488850757479668, -0.02037079818546772, 0.042669545859098434, -0.03546701371669769, 0.02288077212870121, -0.009376023896038532, 0.004108262713998556, 0.004162827041000128, 0.04892629012465477, -0.02459046244621277, -0.04488850757479668, 0.038049738854169846, 0.028319045901298523, 0.08031914383172989, -0.021371150389313698, -0.003985492046922445, -0.011176656931638718, 0.00014593199011869729, 0.011303974315524101, -0.04852614924311638, 0.05209103971719742, 0.007920966483652592, 0.002371288137510419, 0.058384161442518234, 0.020934632048010826, -0.007661784533411264, -0.03112003207206726, 0.00044305349001660943, -0.05169089883565903, 0.09457870572805405, -0.046561822295188904, 0.0020416269544512033, -0.013195548206567764, -0.010540069080889225, -0.031010901555418968, 0.017142390832304955, -0.05045410245656967, -0.04929005727171898, 0.0235719233751297, 0.005506481509655714, 0.044160980731248856, 0.0200252216309309, 0.04499763622879982, 0.06875143945217133, -0.028064411133527756, 0.006720544304698706, 0.041687384247779846, 0.011203939095139503, -0.0030374315101653337, -0.06376787275075912, 0.013613876886665821, 0.07057026773691177, 0.02173491381108761, 0.02359011210501194, -0.021953172981739044, 0.04245128855109215, 0.02613646164536476, -0.06424076855182648, 0.042633168399333954, -0.06031211093068123, -0.04958106577396393, 0.02899201028048992, 0.020789125934243202, -0.03368457034230232, -0.0406324677169323, 0.07118866592645645, 0.08388403803110123, 0.011876902543008327, -0.04739848151803017, 0.0028805581387132406, 0.014614229090511799, -0.00946696475148201, 0.0025508967228233814, -0.02180766686797142, 0.040159571915864944, -0.028064411133527756, -0.054491885006427765, 0.02113470248878002, 0.022571571171283722, 0.050163090229034424, -0.015350851230323315, -0.0037149423733353615, -0.060566745698451996, 0.01694232039153576, 0.0023349118418991566, 0.059439077973365784, 0.04277867451310158, -0.03573983907699585, -0.010631009936332703, 0.015523639507591724, 0.016860472038388252, 0.05256393551826477, -0.01699688471853733, 0.019352257251739502, -0.010540069080889225, 0.04681645706295967, 0.07351675629615784, 0.038740891963243484, -0.0636223703622818, 0.02067999728024006, 0.025481685996055603, 0.004572061821818352, -0.003330716397613287, -0.04405185207724571, 0.025554439052939415, 0.03070170246064663, 0.005752022378146648, -0.018806612119078636, 0.022426065057516098, -0.00039417267544195056, -0.024335827678442, -0.007025197148323059, -0.013441088609397411, 0.05991197004914284, -0.05849329009652138, -0.020589057356119156, -0.06274933367967606, -0.034302968531847, -0.02686399035155773, 0.004728935193270445, 0.05176365375518799, -0.0033852809574455023, -0.06969723105430603, 0.010294528678059578, 0.05685635283589363, -0.028046224266290665, -0.024335827678442, 0.018333718180656433, -0.005160905420780182, -0.005924810189753771, 0.034084711223840714, -0.021262019872665405, -0.00008092333882814273, -0.08904948830604553, -0.047725871205329895, -0.05216379463672638, -0.04252403974533081, 0.03282972425222397, -0.03252052515745163, -0.005206375848501921, 0.014204993844032288, 0.002885105088353157 ]
729,200
tables.vlarray
_g_open
Get the metadata info for an array in file.
def _g_open(self): """Get the metadata info for an array in file.""" self._v_objectid, self.nrows, self._v_chunkshape, atom = \ self._open_array() # Check if the atom can be a PseudoAtom if "PSEUDOATOM" in self.attrs: kind = self.attrs.PSEUDOATOM if kind == 'vlstring': atom = VLStringAtom() elif kind == 'vlunicode': atom = VLUnicodeAtom() elif kind == 'object': atom = ObjectAtom() else: raise ValueError( "pseudo-atom name ``%s`` not known." % kind) elif self._v_file.format_version[:1] == "1": flavor1x = self.attrs.FLAVOR if flavor1x == "VLString": atom = VLStringAtom() elif flavor1x == "Object": atom = ObjectAtom() self.atom = atom return self._v_objectid
(self)
[ 0.07722492516040802, -0.03440310060977936, -0.030992982909083366, 0.049304597079753876, 0.0834057629108429, -0.021011289209127426, -0.01434202492237091, 0.019519362598657608, -0.02063830755650997, -0.04021095484495163, -0.028151219710707664, -0.02127770520746708, -0.02264530211687088, -0.004724431782960892, -0.02783152088522911, 0.013658225536346436, -0.03571741655468941, 0.04426046833395958, -0.04397629201412201, 0.0779353678226471, -0.007566195446997881, 0.036481138318777084, -0.06607100367546082, -0.06369102746248245, 0.04603656753897667, 0.035166822373867035, 0.03170342370867729, 0.019128620624542236, 0.048913855105638504, -0.04042408615350723, -0.0201942827552557, -0.04152527078986168, 0.01859579049050808, 0.037440232932567596, -0.02172173000872135, -0.03365713730454445, 0.01071877684444189, 0.03113507106900215, -0.01320531964302063, 0.013658225536346436, -0.006922358181327581, -0.058788981288671494, 0.04021095484495163, 0.00963535439223051, 0.0059233009815216064, -0.013658225536346436, 0.001084532355889678, -0.06298058480024338, -0.018737878650426865, 0.056551095098257065, 0.007566195446997881, 0.002499863738194108, -0.011127280071377754, -0.03918081521987915, -0.06344237178564072, 0.09903545677661896, 0.02875509485602379, 0.04720879718661308, -0.03296445682644844, 0.021917100995779037, -0.008778384886682034, 0.010505644604563713, 0.06330028176307678, -0.06450802832841873, -0.022627541795372963, 0.021490836516022682, 0.03680083900690079, -0.007575076073408127, -0.03598383069038391, 0.030779851600527763, 0.02896822616457939, -0.00011947062739636749, 0.005581401288509369, -0.0068468740209937096, -0.03289341181516647, 0.01372038945555687, -0.048274457454681396, -0.010070499032735825, 0.03582398220896721, 0.016100365668535233, -0.01717490889132023, 0.06472116708755493, 0.03616144135594368, 0.03417220711708069, 0.018897727131843567, 0.01103847473859787, 0.0296076238155365, 0.025806764140725136, -0.03161462023854256, 0.01560305804014206, 0.014350906014442444, 0.07665657252073288, 0.002999392570927739, 0.049588773399591446, -0.030762089416384697, -0.06518295407295227, -0.00493312394246459, 0.004733312409371138, 0.0022845114581286907, 0.026037657633423805, -0.033213112503290176, -0.08127443492412567, 0.030939700081944466, -0.0059233009815216064, -0.043834201991558075, 0.004795475862920284, 0.03722710162401199, 0.007006722968071699, -0.015958277508616447, 0.021029049530625343, -0.05317649990320206, 0.009963933378458023, -0.013418451882898808, 0.0622701421380043, 0.004990847315639257, 0.0020236463751643896, 0.0593218132853508, 0.044402554631233215, -0.007277578581124544, -0.03886111453175545, -0.04205809906125069, 0.010674374178051949, -0.012397193349897861, 0.005750130861997604, 0.046747010201215744, 0.002568687777966261, 0.04237779974937439, -0.05633796006441116, 0.03369265794754028, -0.06596443802118301, -0.011819960549473763, -0.02822226472198963, 0.008578573353588581, -0.016162529587745667, -0.002852864097803831, -0.017734380438923836, 0.04085034877061844, -0.0836188942193985, -0.05619587376713753, 0.005599162075668573, -0.006362886168062687, 0.010052738711237907, -0.01596715860068798, -0.058717940002679825, -0.08539499342441559, 0.02115337736904621, 0.03308878466486931, -0.035966068506240845, 0.007144371047616005, -0.021029049530625343, -0.017121626064181328, -0.06433042138814926, 0.0030793172772973776, 0.024154989048838615, 0.032769083976745605, -0.01149138156324625, -0.019981149584054947, -0.03985573351383209, -0.04500642791390419, 0.02767167240381241, -0.04536164924502373, 0.03369265794754028, -0.031064027920365334, 0.02594885230064392, -0.023302460089325905, 0.017476845532655716, 0.003767556743696332, -0.06354893743991852, -0.04163183644413948, 0.005417111795395613, 0.03918081521987915, -0.031969837844371796, -0.05505916848778725, -0.018400419503450394, 0.0038608021568506956, 0.07090199738740921, -0.011118399910628796, 0.01779654435813427, 0.05544991046190262, 0.046569399535655975, -0.02122442051768303, 0.02514960803091526, -0.02367544174194336, 0.026481684297323227, -0.0011833281023427844, 0.06642622500658035, 0.06592891365289688, -0.04198705777525902, 0.1105445995926857, 0.037546802312135696, 0.03925186023116112, 0.010860865004360676, -0.023568876087665558, 0.060778215527534485, 0.03353280946612358, -0.024545732885599136, -0.01882668398320675, 0.04202257841825485, -0.034420859068632126, 0.0511162206530571, 0.02930568717420101, 0.007206534501165152, -0.0058034141547977924, -0.00601654639467597, -0.035735175013542175, 0.0456458255648613, 0.04180944710969925, -0.04489986225962639, -0.0067935907281935215, 0.049588773399591446, -0.03205864503979683, -0.03289341181516647, -0.020229803398251534, 0.01689073257148266, 0.07008498907089233, -0.02094024419784546, -0.04955325275659561, 0.007761566434055567, -0.007060006260871887, 0.030992982909083366, 0.03665874898433685, 0.035735175013542175, -0.008698460645973682, -0.009626474231481552, -0.0065538170747458935, -0.02612646296620369, 0.018347134813666344, 0.01454627700150013, -0.010585568845272064, 0.04386972263455391, -0.03017597645521164, -0.0015585296787321568, -0.03829276189208031, 0.019661450758576393, 0.012157419696450233, 0.023533353582024574, 0.03957155719399452, 0.0326092354953289, -0.03193431720137596, 0.012210702523589134, -0.003652110230177641, 0.01183772087097168, -0.011278249323368073, 0.02498975768685341, -0.04436703398823738, -0.05527229979634285, 0.012361670844256878, 0.024936474859714508, -0.025256173685193062, -0.018400419503450394, 0.010701015591621399, -0.03641009330749512, 0.019323991611599922, 0.010052738711237907, 0.022378887981176376, -0.025344979017972946, -0.022005906328558922, -0.02816898003220558, -0.004555702209472656, -0.03559308871626854, -0.007188773714005947, 0.01368486788123846, 0.08511082082986832, 0.045716870576143265, 0.0030482353176921606, 0.057119447737932205, 0.0622701421380043, -0.026890186592936516, -0.003991789650171995, -0.0134894959628582, -0.005581401288509369, 0.10116678476333618, -0.052963368594646454, -0.0202475655823946, -0.03141924738883972, -0.05726153403520584, 0.03783097863197327, -0.034243252128362656, 0.014937019906938076, 0.011731155216693878, -0.05473947152495384, -0.011313770897686481, 0.004462456796318293, 0.0018138443119823933, -0.022165754809975624, -0.04589448124170303, -0.028790617361664772, -0.03349728882312775, -0.055805131793022156, -0.012263985350728035, -0.0377599336206913, 0.034545186907052994, -0.03708501532673836, -0.0013331867521628737, 0.04539717361330986, 0.017787663266062737, -0.02504304051399231, 0.06084926053881645, -0.005585841368883848, -0.02744077891111374, -0.006651502568274736, -0.006260760128498077, 0.008076825179159641, -0.00423600384965539, -0.0485941544175148, -0.003063776297494769, 0.02468782104551792, -0.008907152339816093, -0.020176520571112633, 0.01428874209523201, 0.030424630269408226, 0.024794386699795723, -0.01431538350880146, 0.08539499342441559, -0.016908492892980576, 0.011118399910628796, -0.020886961370706558, 0.014199936762452126, 0.026534967124462128, 0.03427877277135849, 0.021970383822917938, -0.028151219710707664, 0.009946172125637531, -0.06511190533638, 0.032644759863615036, -0.0009024819009937346, 0.0036410095635801554, -0.008516410365700722, 0.013986804522573948, 0.04781267046928406, 0.020602785050868988, 0.010132662951946259, 0.018453702330589294, 0.04117004945874214, 0.03541547805070877, 0.0352911502122879, -0.03307102248072624, -0.06425938010215759, 0.013924641534686089, -0.039962299168109894, -0.022005906328558922, -0.0045912242494523525, -0.04852311313152313, 0.00836988165974617, -0.026321833953261375, -0.03907424956560135, 0.04369211569428444, -0.11089982092380524, 0.011704513803124428, -0.05150696262717247, 0.01126048807054758, 0.02458125352859497, -0.08269532024860382, 0.01565634086728096, -0.016704240813851357, -0.007086647674441338, -0.012130778282880783, 0.009386700578033924, -0.02685466594994068, 0.06234118714928627, -0.026943469420075417, -0.005084092728793621, 0.037440232932567596, -0.037049490958452225, -0.04141870141029358, -0.0678471028804779, -0.03939394652843475, 0.01562969945371151, -0.00566132552921772, -0.008760623633861542, -0.04283958673477173, -0.023302460089325905, -0.021810535341501236, 0.0015907215420156717, 0.04774162545800209, 0.004269305616617203, -0.024670058861374855, -0.015212315134704113, -0.012681369669735432, -0.04781267046928406, 0.0011544664157554507, 0.031685661524534225, 0.02806241437792778, 0.0037608963903039694, -0.0376533679664135, -0.008196711540222168, -0.017139386385679245, 0.06198596581816673, -0.025416022166609764, 0.02008771523833275, -0.012299507856369019, 0.0024154989514499903, -0.0203541312366724, -0.018684595823287964, 0.007655000314116478, 0.0270322747528553, 0.026197507977485657, -0.0203541312366724, -0.021206660196185112, -0.022485453635454178, -0.0022867314983159304, -0.07750909775495529, -0.034545186907052994, 0.02795584872364998, -0.013134275563061237, -0.04550373926758766, 0.0026175305247306824, 0.007317541167140007, -0.03363937512040138, -0.0017428002320230007, 0.027813760563731194, 0.01602044142782688, 0.03621472418308258, -0.03387026861310005, 0.02651720494031906, 0.027902565896511078, -0.026339596137404442, 0.001447523245587945, 0.04010438919067383, 0.007535113487392664, -0.039962299168109894, 0.05893107131123543, -0.03477608039975166, 0.014439710415899754, -0.05125831067562103, -0.008303278125822544, -0.012263985350728035, 0.0269257090985775, 0.002879505744203925, 0.023178134113550186, -0.013382930308580399, 0.07459629327058792, 0.013001068495213985, -0.030264781787991524, -0.050441302359104156, 0.009431102313101292, -0.047031186521053314, -0.02339126542210579, 0.0377599336206913, 0.054846037179231644, 0.05630243942141533, 0.041205570101737976, 0.027192125096917152, 0.007872573100030422, -0.025362739339470863, -0.03388803079724312, -0.01748572662472725, 0.015665221959352493, 0.03204088285565376, -0.03388803079724312, -0.010567808523774147, 0.01900429278612137, 0.04955325275659561, -0.03133044391870499, -0.0034722797572612762, -0.037440232932567596, 0.001079537090845406, -0.013782553374767303, 0.01403120718896389, -0.04244884103536606, -0.0595349445939064, 0.014137773774564266, -0.019927866756916046, -0.09605160355567932, 0.03621472418308258, -0.04426046833395958, -0.018684595823287964, 0.03005164861679077, -0.05612482875585556, -0.05275023356080055, -0.0016473347786813974, -0.006358446087688208, 0.01699729822576046, 0.0032769085373729467, -0.012681369669735432, -0.014395308680832386, -0.015256717801094055, 0.00295943021774292, -0.028932705521583557, -0.044864341616630554, 0.004011770710349083, -0.06514742970466614, -0.0014342025388032198, 0.02834659069776535, 0.03170342370867729, 0.053531721234321594, 0.023426787927746773, -0.019022054970264435, -0.011535784229636192, -0.07686970382928848, 0.02110009454190731, 0.062376707792282104, -0.028186742216348648, 0.02127770520746708, 0.10820014774799347, 0.08511082082986832, 0.0350780189037323, -0.00022548172273673117, 0.00350114144384861, 0.013702628202736378, -0.015016944147646427, -0.04951772838830948, -0.02713884226977825, -0.06322924047708511, 0.0004690019995905459, -0.033674899488687515, -0.007837050594389439, -0.03712053596973419, -0.01576290652155876, -0.027760477736592293, -0.07495151460170746, -0.03854141756892204, -0.006127552594989538, -0.0029105874709784985, -0.007548434194177389, 0.0324493870139122, -0.021703969687223434, 0.009244611486792564, -0.049198031425476074, 0.05612482875585556, 0.01508798822760582, -0.06997842341661453, -0.06102687120437622, -0.04884281009435654, -0.042981673032045364, -0.04447359964251518, -0.06713666021823883, 0.009004837833344936, -0.017299234867095947, -0.007379704620689154, 0.018071839585900307, -0.05076099932193756, 0.010807582177221775, 0.007504031993448734, 0.017316997051239014, -0.02058502472937107, 0.07317540794610977, 0.037902019917964935, 0.020549502223730087, 0.03559308871626854, 0.01047012209892273, -0.004946444649249315, 0.0005070216720923781, 0.013960163109004498, 0.03530891239643097, -0.04163183644413948, 0.030193736776709557, -0.058824505656957626, 0.07438316196203232, -0.010896386578679085, 0.052679192274808884, -0.021188899874687195, 0.01774326153099537, -0.02076263539493084, -0.019696973264217377, 0.027813760563731194, 0.02236112579703331, -0.08916033059358597, 0.020673830062150955, -0.0488072894513607, 0.020336370915174484, 0.05811406299471855, -0.0787878930568695, 0.036871880292892456, -0.02822226472198963, 0.022290082648396492, 0.0022667504381388426, 0.038079630583524704, -0.017237070947885513, 0.02788480371236801, 0.021295465528964996, 0.03942946717143059, -0.0038030787836760283, 0.014439710415899754, 0.041383180767297745, 0.002122442238032818, -0.01927070878446102, 0.0759461298584938, 0.029412252828478813, -0.05800749734044075, 0.024261556565761566, 0.0012244004756212234, -0.015984918922185898, -0.009035919792950153, 0.0009080322342924774, 0.03609039634466171, -0.013498377054929733, 0.028737332671880722, 0.028790617361664772, -0.0175123680382967, -0.008738422766327858, -0.07964042574167252, -0.013196439482271671, -0.015176793560385704, -0.004755513742566109, 0.029003748670220375, 0.02166844718158245, -0.04916250705718994, -0.009990574792027473, -0.056835271418094635, -0.024954235181212425, -0.00027168812812305987, -0.06745636463165283, 0.017139386385679245, -0.022947240620851517, -0.0326092354953289, 0.013240842148661613, -0.004600104875862598, 0.02042517438530922, 0.014484113082289696, -0.00182827515527606, -0.015212315134704113, -0.03758232295513153, -0.03758232295513153, -0.016775285825133324, 0.06266088783740997, 0.0175123680382967, 0.052217405289411545, 0.02076263539493084, 0.0022723006550222635, 0.011740035377442837, -0.047706104815006256, 0.002264530397951603, -0.008307717740535736, -0.012068614363670349, 0.005936621688306332, 0.026996754109859467, 0.015389925800263882, 0.023764247074723244, -0.054206639528274536, 0.021970383822917938, 0.0010084930108860135, 0.012397193349897861, -0.012716892175376415, 0.05115174502134323, -0.028790617361664772, -0.010603330098092556, -0.01294778473675251, -0.03530891239643097, 0.12503759562969208, -0.047315362840890884, -0.008543051779270172, -0.0008874960476532578, -0.013382930308580399, -0.009795203804969788, -0.032307300716638565, 0.019839061424136162, 0.0038985442370176315, 0.04994399473071098, 0.021526359021663666, 0.012983307242393494, 0.03102850541472435, -0.028275547549128532, -0.012041972950100899, -0.021810535341501236, 0.0297674722969532, -0.004176060203462839, -0.027582867071032524, -0.033515047281980515, 0.003747575683519244, -0.02504304051399231, -0.005386029835790396, -0.013569421134889126, -0.05793645232915878, 0.05346067622303963, -0.022609781473875046, 0.005572520662099123, 0.035966068506240845, 0.054490815848112106, 0.04465121030807495, -0.05463290214538574, 0.08006668835878372, 0.07807745039463043, 0.008827228099107742, 0.01893324963748455, -0.05172009766101837, 0.0722518339753151, 0.0777222290635109, 0.05246605724096298, 0.08660273998975754, -0.026996754109859467, 0.05949942395091057, 0.05751018971204758, -0.01668648049235344, 0.009759681299328804, -0.010834223590791225, -0.007379704620689154, 0.0324493870139122, 0.03394131362438202, 0.01186436228454113, -0.027050036936998367, 0.05537886545062065, 0.07232288271188736, 0.001254372182302177, -0.03621472418308258, 0.003294669557362795, 0.022734107449650764, 0.019768018275499344, -0.0020547283347696066, -0.005838936194777489, 0.01816064491868019, -0.03530891239643097, 0.024083945900201797, -0.009786322712898254, 0.025469304993748665, -0.013072112575173378, -0.03610815852880478, 0.0269789919257164, -0.0834057629108429, 0.03232505917549133, -0.020460696890950203, 0.05555647611618042, 0.00493312394246459, -0.009990574792027473, 0.07086648046970367, 0.01702393963932991, -0.0175656508654356, 0.04745744913816452, -0.01040795911103487, 0.008307717740535736, -0.0024754423648118973, 0.03861246258020401, 0.07672761380672455, 0.1022324413061142, -0.025078563019633293, 0.03747575730085373, -0.004666708409786224, 0.0017039480153471231, -0.023124851286411285, -0.0016062624054029584, 0.00308597763068974, -0.047990281134843826, -0.054668426513671875, -0.0015685202088207006, -0.021650684997439384, 0.014617321081459522, 0.0015929416986182332, 0.00171837885864079, 0.025469304993748665, 0.03644561767578125, -0.05743914470076561, 0.030104931443929672, -0.12056181579828262, 0.027689432725310326, -0.03575293719768524, -0.008574133738875389, 0.03914529085159302, -0.010709896683692932, -0.04720879718661308, 0.04852311313152313, 0.029749711975455284, -0.0030215939041227102, -0.000569462776184082, 0.023746486753225327, 0.0015540893655270338, 0.008392082527279854, 0.02795584872364998, -0.012006450444459915, 0.07964042574167252, -0.029128076508641243, -0.02715660259127617, -0.0038474814500659704, -0.015594176948070526, 0.03882559388875961, -0.043372415006160736, 0.004875400569289923, -0.04276854172348976, -0.00821447279304266 ]
729,201
tables.vlarray
_g_post_init_hook
null
def _g_post_init_hook(self): super()._g_post_init_hook() self.nrowsinbuf = 100 # maybe enough for most applications
(self)
[ -0.015137074515223503, 0.018846970051527023, -0.06775809079408646, 0.020841913297772408, 0.010919692926108837, 0.06611313670873642, -0.04836864024400711, 0.01370211411267519, -0.0070085530169308186, -0.05767837539315224, 0.018164489418268204, -0.0015596436569467187, -0.032251592725515366, 0.022626863792538643, -0.02780671790242195, 0.006549190729856491, 0.019074464216828346, 0.03972388058900833, -0.01141842920333147, 0.002164470264688134, -0.05480845645070076, 0.0018560414901003242, -0.028996683657169342, 0.017272014170885086, -0.008176645264029503, 0.009659728035330772, -0.030239149928092957, -0.053933482617139816, 0.10499704629182816, 0.004549872130155563, -0.047913651913404465, -0.022661862894892693, 0.010937192477285862, 0.016283292323350906, 0.0005687340162694454, -0.07059301435947418, 0.051833540201187134, 0.0027496102266013622, -0.0031017877627164125, 0.04843863844871521, 0.047773655503988266, -0.06135327368974686, 0.036818962544202805, -0.014935829676687717, 0.0024061822332441807, 0.04854363575577736, -0.009510982781648636, 0.0036858338862657547, 0.02420181967318058, -0.009047245606780052, -0.03884890675544739, -0.012625894509255886, 0.026774246245622635, 0.03601398691534996, -0.029871659353375435, 0.024726804345846176, 0.0346665233373642, 0.015058326534926891, -0.016537034884095192, -0.02110440656542778, -0.01688702404499054, 0.016528284177184105, 0.019651947543025017, -0.02437681332230568, 0.006816058419644833, -0.04346877709031105, -0.004492998588830233, 0.02117440477013588, 0.0021174403373152018, 0.022714361548423767, -0.028681693598628044, 0.02542678453028202, -0.034229036420583725, 0.02603926695883274, -0.031709108501672745, 0.004175819922238588, -0.01987943984568119, 0.00044322971371002495, -0.014690836891531944, 0.03373904898762703, 0.04112384468317032, 0.06961303949356079, 0.00711354985833168, 0.05480845645070076, 0.015609560534358025, -0.026336759328842163, 0.03475402295589447, 0.037903934717178345, 0.028366701677441597, 0.04476374015212059, -0.04721366986632347, 0.034771520644426346, 0.04105384647846222, 0.019459452480077744, 0.002010256052017212, -0.050153590738773346, -0.019424453377723694, 0.0496986024081707, 0.015548312105238438, -0.030694136396050453, -0.04815864562988281, -0.01426209881901741, 0.07279795408248901, -0.05837835744023323, -0.01497957855463028, -0.025006797164678574, 0.02971416339278221, -0.03832392022013664, -0.03540150448679924, 0.02301185205578804, 0.007078550755977631, -0.02665174938738346, -0.00011408858699724078, 0.02005443535745144, -0.01872447319328785, 0.007975400425493717, -0.026126764714717865, 0.03608398512005806, 0.06460817903280258, 0.015819555148482323, -0.024901799857616425, 0.010980941355228424, -0.02628426067531109, -0.023256845772266388, -0.015592060983181, 0.04612870141863823, 0.051413554698228836, 0.07706782966852188, 0.0075466628186404705, -0.043118786066770554, 0.028944185003638268, -0.011654672212898731, -0.03391404449939728, -0.030151652172207832, 0.008531009778380394, -0.03741394728422165, 0.02035192772746086, -0.001045595621690154, -0.009633478708565235, -0.05239352583885193, 0.003208972280845046, 0.028611695393919945, 0.00720979692414403, -0.012004662305116653, -0.002745235338807106, 0.08182770013809204, 0.08210769295692444, 0.038988903164863586, -0.0017597941914573312, -0.07916777580976486, 0.019004466012120247, -0.009029746055603027, -0.08238767832517624, -0.015058326534926891, 0.019721945747733116, 0.046583689749240875, -0.03958388790488243, -0.03849891573190689, -0.006890431046485901, -0.028909185901284218, -0.028751691803336143, -0.009388485923409462, -0.01377211231738329, -0.026301760226488113, -0.06908805668354034, 0.0629982277750969, -0.04003887251019478, -0.050363581627607346, -0.025146791711449623, 0.021664390340447426, 0.031131623312830925, -0.031131623312830925, 0.049068618565797806, -0.01606454886496067, 0.014612088911235332, 0.11507676541805267, -0.01698327250778675, -0.026371758431196213, -0.027211735025048256, 0.0498385988175869, -0.011050938628613949, -0.036853961646556854, -0.010937192477285862, 0.009825973771512508, 0.009738476015627384, -0.027246734127402306, 0.0215768925845623, -0.03580399230122566, 0.017989493906497955, 0.016458287835121155, -0.00829039141535759, -0.0043726894073188305, -0.01181216724216938, -0.02315184846520424, 0.02239936962723732, 0.02070191688835621, 0.036573972553014755, 0.04504373297095299, 0.044203754514455795, -0.005429222248494625, -0.0495586059987545, -0.005035483278334141, -0.016222042962908745, -0.09344737231731415, -0.009423485025763512, 0.003305219579488039, -0.002994603244587779, 0.006470442749559879, -0.04220881313085556, 0.02988915890455246, -0.0173332616686821, -0.03961888700723648, 0.01797199435532093, 0.023064350709319115, 0.0016624531708657742, -0.030764134600758553, -0.0009395048255100846, 0.0062560741789639, 0.022889355197548866, -0.008430387824773788, 0.039268895983695984, 0.005341724492609501, -0.051518552005290985, -0.07741782069206238, -0.008084772154688835, -0.01589830219745636, 0.017849497497081757, -0.031096624210476875, 0.006610439158976078, 0.022521866485476494, -0.0340365432202816, 0.06345321238040924, -0.012520898133516312, 0.028384201228618622, 0.05592842772603035, 0.021436896175146103, 0.029084181413054466, 0.006207950413227081, -0.05197353661060333, 0.03587399050593376, -0.04945360869169235, 0.015417066402733326, 0.010289710946381092, -0.06121327728033066, -0.07328794151544571, 0.06387320160865784, 0.0346665233373642, 0.05428347364068031, 0.00961597915738821, 0.03141161799430847, -0.009248489513993263, -0.06502816826105118, 0.0015323006082326174, -0.012057160958647728, -0.015609560534358025, 0.010132214985787868, -0.01058720238506794, 0.04007387161254883, -0.02045692503452301, -0.022119376808404922, 0.014393345452845097, 0.007069800980389118, -0.06632313132286072, 0.028226705268025398, 0.024831801652908325, 0.03769394010305405, 0.02379932999610901, -0.010578452609479427, 0.03629397973418236, 0.017919495701789856, 0.1126968264579773, 0.0627182349562645, -0.07699783146381378, -0.010263461619615555, -0.026634249836206436, 0.001078953966498375, 0.01790199615061283, -0.026371758431196213, -0.015058326534926891, -0.005910458508878946, 0.08448762446641922, -0.007625410333275795, 0.05337349697947502, -0.010132214985787868, -0.0556134358048439, -0.0557534322142601, 0.0018921343144029379, 0.007218546699732542, -0.054143477231264114, -0.05641841143369675, -0.03632897883653641, 0.04150883108377457, 0.03457902744412422, 0.06282323598861694, 0.06971804052591324, -0.06593814492225647, -0.020684417337179184, 0.005608592182397842, -0.023956825956702232, 0.04896362125873566, -0.0562434159219265, -0.09484732896089554, -0.016773277893662453, 0.05102856457233429, 0.005433597136288881, -0.023396842181682587, 0.05372348800301552, -0.013483370654284954, -0.009178491309285164, -0.0371689535677433, 0.005822961218655109, 0.08028773963451385, 0.003626772901043296, -0.004628619644790888, -0.02624926157295704, -0.01579330489039421, 0.036608971655368805, 0.012608394958078861, -0.0017237014835700393, 0.03769394010305405, -0.04861363396048546, -0.03032664768397808, 0.006934179924428463, -0.0753878802061081, 0.0030077279079705477, 0.052953511476516724, 0.07762781530618668, 0.025409284979104996, -0.027071738615632057, -0.050398580729961395, -0.030011655762791634, -0.014270848594605923, -0.039058901369571686, -0.0037120829802006483, 0.031184121966362, -0.04882362484931946, -0.026389257982373238, -0.04101884737610817, -0.02232937142252922, -0.0740579143166542, -0.034124039113521576, -0.0217168889939785, -0.004654868971556425, -0.011409679427742958, 0.04840363934636116, -0.026336759328842163, 0.023099349811673164, -0.03604898601770401, 0.0043508149683475494, 0.021874384954571724, 0.03762394189834595, -0.017097018659114838, -0.03526150807738304, 0.0627182349562645, 0.030991628766059875, -0.02063191868364811, -0.015819555148482323, -0.04686368256807327, 0.016423288732767105, 0.025811774656176567, -0.014830832369625568, 0.05578843131661415, -0.020544422790408134, 0.014340846799314022, 0.006759184878319502, -0.03265408053994179, -0.05389848351478577, 0.011864665895700455, 0.036888960748910904, 0.04259380325675011, -0.02358933724462986, -0.049068618565797806, 0.0012227781116962433, 0.06989303231239319, 0.02651175484061241, -0.034841518849134445, -0.06485317647457123, 0.019564449787139893, -0.07321794331073761, -0.028979184105992317, -0.011479676701128483, -0.026126764714717865, -0.003068976104259491, -0.06674312055110931, -0.046723686158657074, 0.005954207386821508, -0.016843276098370552, 0.03144661709666252, 0.025111792609095573, -0.036713965237140656, -0.03463152423501015, 0.040318865329027176, 0.011943413875997066, 0.01085844449698925, 0.00024212209973484278, 0.03475402295589447, 0.015259570442140102, -0.004650494083762169, 0.01756075583398342, 0.009677227586507797, -0.02225937321782112, -0.0085791340097785, -0.021401897072792053, 0.056628406047821045, 0.023991825059056282, -0.03618898242712021, 0.021839385852217674, -0.04514873027801514, 0.02876919135451317, 0.011663421988487244, -0.009204740636050701, 0.03144661709666252, 0.022171875461935997, -0.034841518849134445, 0.008566008880734444, -0.04199881851673126, 0.011059688404202461, -0.03489401936531067, 0.06086328625679016, 0.023239346221089363, -0.011698421090841293, 0.09001746773719788, 0.02754422463476658, 0.08882749825716019, 0.02722923457622528, 0.01589830219745636, -0.045253727585077286, -0.008154770359396935, -0.041578829288482666, -0.0012052785605192184, -0.06954304128885269, 0.01633579097688198, -0.02290685474872589, 0.030589139088988304, -0.04745866358280182, 0.04609370231628418, 0.005608592182397842, -0.010980941355228424, -0.015259570442140102, 0.03727395087480545, 0.031096624210476875, 0.00029475733754225075, 0.04689868167042732, -0.026844244450330734, 0.07034802436828613, 0.006606064271181822, -0.004694242961704731, 0.0346665233373642, -0.03316156566143036, -0.002052911091595888, -0.045393723994493484, -0.03489401936531067, -0.03940889239311218, -0.005770462565124035, -0.02416682057082653, -0.03975887969136238, -0.04861363396048546, 0.014340846799314022, -0.03188410401344299, 0.010998440906405449, -0.0034124040976166725, 0.04070385545492172, -0.02369433268904686, 0.0006830276688560843, 0.04140383377671242, 0.013343374244868755, -0.004053323529660702, 0.01987943984568119, -0.059148337692022324, 0.010455955751240253, -0.037903934717178345, 0.06775809079408646, -0.016397038474678993, -0.05858835205435753, 0.020876912400126457, -0.04871862754225731, -0.004536747466772795, 0.01902196556329727, -0.013632116839289665, -0.011838416568934917, -0.007345418445765972, -0.0373789481818676, 0.06352321058511734, 0.010814695619046688, -0.02348433993756771, -0.028209205716848373, 0.0075685372576117516, -0.07104799896478653, 0.004891112446784973, -0.02110440656542778, 0.01147092692553997, 0.011987162753939629, 0.007848529145121574, 0.0250242967158556, 0.07321794331073761, -0.00440768850967288, 0.03699395805597305, 0.012792140245437622, 0.08392763882875443, -0.009589729830622673, -0.025794275104999542, -0.032286591827869415, -0.026704248040914536, -0.03127162158489227, -0.04094884917140007, -0.013982106931507587, -0.012870888225734234, 0.006632313597947359, -0.04448374733328819, -0.006111702881753445, 0.005669840611517429, -0.021401897072792053, -0.026774246245622635, 0.009843473322689533, 0.041683826595544815, -0.026634249836206436, 0.005184228997677565, 0.031131623312830925, -0.0187594722956419, 0.019004466012120247, 0.03148161247372627, 0.04721366986632347, 0.024184320122003555, -0.09148742258548737, 0.017587006092071533, 0.015749556943774223, 0.011514675803482533, 0.0125646460801363, 0.0310091283172369, 0.04822864383459091, 0.007450415287166834, -0.02736922912299633, 0.06289323419332504, 0.027054239064455032, 0.016799528151750565, 0.029189178720116615, 0.03291657567024231, -0.061633266508579254, 0.039303895086050034, -0.046688687056303024, -0.030099153518676758, -0.02668674848973751, 0.08525760471820831, -0.052883513271808624, -0.005464221350848675, 0.02276686020195484, -0.0002663206250872463, 0.050153590738773346, -0.004576121456921101, -0.04493873566389084, 0.002122909063473344, -0.04325878247618675, 0.03618898242712021, -0.06422319263219833, -0.021314401179552078, -0.030116653069853783, 0.05239352583885193, -0.016353290528059006, 0.0563834123313427, -0.012932135723531246, 0.007988525554537773, 0.033651553094387054, -0.04273379594087601, -0.0023274344857782125, 0.01429709792137146, -0.008714755065739155, -0.020649418234825134, 0.047878652811050415, -0.08252767473459244, 0.02348433993756771, 0.0011440303642302752, 0.014717086218297482, -0.03996887430548668, -0.012205906212329865, 0.0070348018780350685, -0.04689868167042732, 0.006120452657341957, 0.01790199615061283, 0.006544815842062235, -0.06306822597980499, 0.015005827881395817, 0.017070770263671875, -0.030116653069853783, -0.018356982618570328, 0.01395585760474205, 0.016860775649547577, -0.006509816739708185, 0.04735366627573967, -0.01797199435532093, -0.02376433089375496, -0.036643970757722855, 0.02812170796096325, -0.054108478128910065, -0.08896749466657639, 0.009817223995923996, 0.036573972553014755, 0.0009772381745278835, -0.02283685840666294, -0.00958098005503416, -0.01661578193306923, -0.04259380325675011, 0.05239352583885193, -0.08798752725124359, 0.0338265486061573, 0.02852419763803482, -0.08560758829116821, -0.014375845901668072, 0.03870891034603119, -0.012617144733667374, 0.045498721301555634, -0.03622398152947426, 0.003145536407828331, 0.03832392022013664, -0.02682674489915371, -0.10961691290140152, -0.029154179617762566, 0.023344343528151512, -0.06817808002233505, 0.125436469912529, 0.05344349518418312, -0.013247127644717693, 0.027719220146536827, 0.03302156925201416, 0.00801914930343628, -0.024516809731721878, -0.0186194758862257, -0.004217381123453379, -0.0187594722956419, 0.001813386450521648, -0.007848529145121574, -0.024114321917295456, 0.006606064271181822, 0.05512344837188721, -0.01247714925557375, 0.049033619463443756, 0.024971798062324524, -0.04861363396048546, -0.0027496102266013622, 0.014218349941074848, -0.010018467903137207, 0.04455374553799629, 0.0019522887887433171, 0.03253158554434776, -0.052778515964746475, 0.0016471411800011992, -0.03379154950380325, -0.01630079187452793, 0.014104602858424187, 0.04105384647846222, -0.018531978130340576, 0.017622003331780434, -0.004549872130155563, 0.025444284081459045, 0.030064154416322708, -0.059218332171440125, -0.001893228036351502, 0.00794915109872818, 0.04126383736729622, 0.035349003970623016, -0.02819170616567135, -0.04598870500922203, 0.012520898133516312, 0.030816633254289627, -0.01991443894803524, 0.03414154052734375, 0.01984444260597229, -0.006785434205085039, 0.002487117424607277, -0.014445843175053596, -0.03508651256561279, -0.014778334647417068, 0.006588564720004797, -0.02924167737364769, -0.006886056158691645, 0.022189375013113022, -0.04192882031202316, -0.005311100743710995, 0.0028611693996936083, 0.04598870500922203, 0.03818392753601074, -0.05064357444643974, 0.012897137552499771, -0.020439425483345985, -0.015049576759338379, -0.007091675419360399, 0.07122299820184708, -0.018444480374455452, 0.01644078828394413, 0.018216988071799278, 0.034089040011167526, 0.039093900471925735, -0.0010138776851817966, 0.040353864431381226, 0.007717282976955175, -0.07314794510602951, -0.027526725083589554, -0.03331906348466873, -0.08623757213354111, 0.003574274480342865, -0.018304485827684402, 0.049278613179922104, 0.016222042962908745, -0.008793503046035767, -0.01078844629228115, -0.019249457865953445, 0.017578255385160446, -0.04721366986632347, -0.031166622415184975, -0.08910749107599258, 0.0739879161119461, 0.047738656401634216, 0.04679368436336517, -0.02355433814227581, -0.03190160170197487, -0.010473455302417278, 0.08182770013809204, -0.049138616770505905, 0.015137074515223503, -0.03247908502817154, 0.021016908809542656, 0.010455955751240253, 0.018356982618570328, 0.0032155346125364304, 0.05487845465540886, -0.02372933179140091, -0.020036935806274414, -0.03993387520313263, -0.02304685115814209, 0.04563871771097183, 0.005726713687181473, 0.009589729830622673, -0.051378555595874786, -0.03989887610077858, 0.0689830556511879, 0.018916968256235123, -0.025724276900291443, 0.04724866896867752, -0.016895774751901627, 0.025776775553822517, -0.03449152782559395, -0.01980944350361824, -0.06082828715443611, 0.004121134057641029, 0.0500485934317112, 0.05872834846377373, 0.03720395267009735, 0.028646694496273994, 0.020789414644241333, -0.02617926336824894, 0.04679368436336517, 0.044273752719163895, 0.018426980823278427, 0.003130224533379078, 0.027176735922694206, -0.011217184364795685, 0.024866800755262375, 0.014542090706527233, 0.008570384234189987, -0.023361843079328537, 0.015819555148482323, 0.003495526732876897, -0.02668674848973751, -0.022609364241361618, 0.02491929940879345, 0.062368243932724, 0.015618310309946537, 0.036538973450660706, -0.00019727960170712322 ]
729,209
tables.vlarray
_getnobjects
Return the number of objects in a NumPy array.
def _getnobjects(self, nparr): """Return the number of objects in a NumPy array.""" # Check for zero dimensionality array zerodims = np.sum(np.array(nparr.shape) == 0) if zerodims > 0: # No objects to be added return 0 shape = nparr.shape atom_shape = self.atom.shape shapelen = len(nparr.shape) if isinstance(atom_shape, tuple): atomshapelen = len(self.atom.shape) else: atom_shape = (self.atom.shape,) atomshapelen = 1 diflen = shapelen - atomshapelen if shape == atom_shape: nobjects = 1 elif (diflen == 1 and shape[diflen:] == atom_shape): # Check if the leading dimensions are all ones # if shape[:diflen-1] == (1,)*(diflen-1): # nobjects = shape[diflen-1] # shape = shape[diflen:] # It's better to accept only inputs with the exact dimensionality # i.e. a dimensionality only 1 element larger than atom nobjects = shape[0] shape = shape[1:] elif atom_shape == (1,) and shapelen == 1: # Case where shape = (N,) and shape_atom = 1 or (1,) nobjects = shape[0] else: raise ValueError("The object '%s' is composed of elements with " "shape '%s', which is not compatible with the " "atom shape ('%s')." % (nparr, shape, atom_shape)) return nobjects
(self, nparr)
[ -0.023510565981268883, -0.02488081343472004, -0.056144095957279205, 0.02983894571661949, 0.0378260463476181, 0.012178977951407433, -0.04482152312994003, 0.004394708666950464, -0.007725672796368599, -0.007423677481710911, 0.014549866318702698, -0.002785569289699197, -0.024141600355505943, -0.05747828260064125, -0.018931053578853607, -0.010150650516152382, 0.014171245507895947, 0.02383509837090969, -0.01571277342736721, 0.032705649733543396, -0.030812542885541916, 0.06065148860216141, 0.028865348547697067, 0.013404988683760166, 0.022176377475261688, 0.006810671649873257, 0.06966627389192581, -0.005742419511079788, 0.010412079282104969, 0.015559522435069084, -0.07464244216680527, 0.009591734036803246, -0.0020238198339939117, 0.025854410603642464, 0.02077006921172142, 0.0107275964692235, 0.05805522948503494, 0.09548462927341461, -0.04402822256088257, 0.04911256209015846, -0.011863459832966328, -0.05722586810588837, 0.039484769105911255, -0.006008355878293514, 0.034382399171590805, -0.026251060888171196, 0.03061421774327755, 0.00975400023162365, -0.06898115575313568, 0.019381793215870857, 0.006499661598354578, -0.06386075168848038, 0.056144095957279205, 0.011421735398471355, -0.05711769312620163, 0.051636703312397, 0.03941265121102333, 0.03952082619071007, -0.059353359043598175, -0.00270894356071949, -0.04633600637316704, 0.0507352240383625, 0.049328915774822235, -0.06981050968170166, -0.021689578890800476, -0.019471939653158188, -0.04301856458187103, 0.021256867796182632, 0.01011459156870842, 0.03124525211751461, -0.013945875689387321, -0.00019071908900514245, 0.03387757018208504, 0.008036683313548565, 0.01514484267681837, -0.008117815479636192, 0.05495414510369301, 0.014324497431516647, 0.05142034590244293, -0.00349999126046896, 0.01539725624024868, 0.020517656579613686, 0.0076535544358193874, 0.026124853640794754, 0.04114348813891411, 0.033516980707645416, -0.0011617806740105152, 0.0381145216524601, -0.02149125374853611, -0.024051452055573463, 0.0032227863557636738, 0.01805661804974079, 0.007144218776375055, 0.011854445561766624, -0.03245323523879051, 0.0032137716189026833, 0.002452022163197398, -0.07543574273586273, 0.012665776535868645, -0.04604753479361534, -0.03216475993394852, -0.03742939606308937, -0.04009777307510376, 0.0115569569170475, -0.012314199469983578, 0.007914983667433262, 0.030758453533053398, -0.020553715527057648, -0.029550472274422646, 0.06180538237094879, -0.013215677812695503, 0.06014665961265564, -0.03851117193698883, 0.009853162802755833, 0.0007938647177070379, -0.03043392114341259, 0.002454275730997324, 0.03568052873015404, -0.021238839253783226, -0.03490525484085083, 0.01428843755275011, 0.0603269562125206, -0.023312238976359367, 0.005688330624252558, 0.042008910328149796, 0.0051023694686591625, 0.05358389392495155, -0.007820327766239643, -0.02343844622373581, -0.01611843891441822, 0.02749510109424591, -0.007612987887114286, -0.026359237730503082, -0.014640014618635178, -0.03825875744223595, 0.029243970289826393, -0.003779449500143528, -0.08560442179441452, -0.08149367570877075, -0.06065148860216141, 0.06057937070727348, 0.018309032544493675, 0.011836416088044643, 0.04420851543545723, -0.06793543696403503, 0.05329542234539986, 0.04673265665769577, -0.001692526275292039, -0.007423677481710911, -0.0053322468884289265, -0.08416205644607544, -0.027422983199357986, 0.01473917718976736, 0.023041795939207077, -0.029730768874287605, -0.005755941849201918, 0.04857167229056358, -0.10904286801815033, -0.046804774552583694, -0.03941265121102333, -0.052898772060871124, 0.031407520174980164, -0.028612934052944183, -0.016866667196154594, -0.04294644668698311, -0.009744985029101372, 0.029550472274422646, -0.05387236922979355, -0.05178093910217285, 0.027188599109649658, 0.03865540772676468, -0.03207461163401604, -0.039268411695957184, -0.01878681592643261, -0.004074683878570795, 0.07810411602258682, -0.01887696422636509, -0.040891073644161224, -0.005111384205520153, 0.0342201329767704, 0.018804846331477165, -0.03836693614721298, 0.0146309994161129, -0.02289756014943123, -0.0000017518971162644448, 0.03604111820459366, 0.01707400754094124, -0.03223687782883644, 0.048319261521101, 0.05408872291445732, -0.01593814417719841, 0.04958133026957512, -0.029766827821731567, 0.06494252383708954, 0.02763933688402176, 0.0006873775273561478, -0.009122964926064014, 0.07269524782896042, -0.03854722902178764, 0.036059148609638214, -0.0041287727653980255, 0.027783574536442757, -0.025746231898665428, -0.018858935683965683, 0.0016136469785124063, -0.027531160041689873, -0.014306467026472092, 0.011917549185454845, -0.015920113772153854, 0.017236273735761642, 0.0342201329767704, -0.05080734193325043, 0.02704436145722866, 0.014865384437143803, 0.06339198350906372, 0.02745904214680195, 0.035337965935468674, -0.011782326735556126, -0.01869666948914528, -0.04871591180562973, 0.019742384552955627, 0.035644467920064926, 0.0065312134101986885, 0.009519615210592747, -0.04327097907662392, -0.031984467059373856, -0.025115197524428368, 0.04813896492123604, 0.016902726143598557, -0.019435880705714226, -0.028522787615656853, 0.022176377475261688, -0.04554270580410957, 0.006310351192951202, 0.0630313903093338, 0.022230464965105057, 0.03214673325419426, -0.026629680767655373, -0.03548220172524452, -0.0295685026794672, -0.05639651045203209, -0.03728516027331352, -0.01999479904770851, -0.05423295870423317, -0.022284554317593575, 0.017668982967734337, 0.05214152857661247, 0.030055301263928413, -0.06209385395050049, -0.03905205801129341, -0.002848672680556774, -0.048463497310876846, -0.01648804545402527, -0.05304300785064697, 0.030001211911439896, -0.050951577723026276, -0.02230258285999298, -0.0011967129539698362, -0.013621343299746513, -0.0027810619212687016, 0.025385640561580658, 0.00787441711872816, 0.08091673254966736, 0.021653519943356514, 0.002319053979590535, 0.01734445057809353, 0.04976162686944008, 0.03414801508188248, -0.06104813888669014, 0.05563926696777344, 0.021599430590867996, 0.013062426820397377, 0.004372172057628632, -0.041972849518060684, -0.028162196278572083, -0.011547942645847797, 0.002366381697356701, 0.021563371643424034, -0.027332834899425507, 0.03548220172524452, -0.007784268818795681, -0.03319244831800461, -0.01661425270140171, -0.01869666948914528, -0.01422533392906189, -0.00972695555537939, 0.02515125647187233, -0.02194199152290821, -0.059894245117902756, -0.009988384321331978, 0.0054133799858391285, 0.029280029237270355, -0.020788099616765976, 0.0023573669604957104, -0.03742939606308937, 0.013666417449712753, -0.05390842631459236, -0.006842223461717367, 0.016947800293564796, 0.00891562458127737, 0.0014051799662411213, 0.012656761333346367, -0.014414644800126553, -0.07767140865325928, -0.00853700377047062, -0.008518974296748638, 0.038943879306316376, 0.015406271442770958, 0.03355303779244423, 0.04410034045577049, 0.021076573058962822, 0.03941265121102333, 0.02830643206834793, 0.041431963443756104, 0.03463481366634369, 0.020193124189972878, -0.0007414662395603955, 0.016091395169496536, -0.019976768642663956, 0.07175770401954651, 0.0372130423784256, -0.013666417449712753, -0.037717871367931366, -0.03274170681834221, -0.01589307002723217, -0.015153857879340649, -0.02040947787463665, -0.02113066054880619, -0.008406288921833038, 0.031858257949352264, 0.0027292268350720406, -0.027242686599493027, -0.0295685026794672, 0.030361803248524666, 0.05250212177634239, -0.043451275676488876, 0.04366762936115265, -0.03074042499065399, 0.00734705151990056, 0.031407520174980164, -0.00347745418548584, 0.013630358502268791, -0.06119237467646599, 0.03825875744223595, -0.014486762695014477, -0.040386248379945755, 0.05408872291445732, -0.02848672866821289, 0.018750756978988647, 0.02257302775979042, -0.009699910879135132, 0.05210547149181366, -0.029856976121664047, 0.024862783029675484, 0.005850596819072962, 0.0417204350233078, 0.0003696062776725739, 0.04103531315922737, 0.01742558367550373, 0.004408231005072594, -0.03218279033899307, 0.007013504393398762, 0.04031413048505783, -0.014441689476370811, -0.024952931329607964, -0.024736575782299042, -0.008239515125751495, 0.02013903483748436, -0.006702494341880083, -0.07226253300905228, -0.05430508032441139, -0.02488081343472004, -0.025746231898665428, -0.03977324068546295, 0.04168437793850899, 0.05834370478987694, -0.007432692218571901, -0.009240156970918179, 0.021256867796182632, -0.05816340819001198, -0.050771281123161316, 0.0031529217958450317, 0.03333668410778046, -0.032399144023656845, -0.056288331747055054, 0.027711456641554832, -0.03214673325419426, 0.0367623008787632, -0.01873272843658924, -0.010565330274403095, 0.030578158795833588, 0.008072742260992527, -0.014432674273848534, -0.0600384846329689, -0.03133540228009224, 0.03797028586268425, 0.033751364797353745, -0.008780403062701225, -0.06501464545726776, -0.023510565981268883, 0.01756982132792473, -0.047742314636707306, -0.024357955902814865, 0.0705316960811615, -0.011629075743258, -0.023817067965865135, 0.005458453670144081, -0.010240797884762287, -0.034742988646030426, 0.019255585968494415, 0.02424977719783783, 0.009537644684314728, 0.05960577353835106, -0.04071078076958656, -0.025746231898665428, 0.006639390718191862, -0.01133158802986145, -0.0036374665796756744, 0.06494252383708954, -0.006995474919676781, 0.0038966417778283358, 0.015370212495326996, 0.010583360679447651, 0.08113308250904083, -0.019219527021050453, -0.002366381697356701, 0.026809977367520332, -0.005990325938910246, 0.002255950588732958, 0.035428114235401154, -0.03259747102856636, -0.02140110544860363, -0.03178614005446434, -0.07788775861263275, -0.051672760397195816, -0.03717698156833649, 0.02320406213402748, -0.019489970058202744, -0.0032363086938858032, 0.07853682339191437, 0.05563926696777344, 0.07096440345048904, 0.029099732637405396, 0.031317371875047684, 0.00002827685239026323, 0.006585302297025919, 0.052754536271095276, -0.028955496847629547, -0.054521434009075165, -0.011827400885522366, 0.012548583559691906, -0.03746545687317848, 0.024177659302949905, -0.06865662336349487, 0.03627550229430199, -0.03851117193698883, 0.005521557293832302, -0.017010902985930443, -0.052898772060871124, -0.04687689244747162, -0.013134544715285301, 0.040205951780080795, -0.0019618431106209755, -0.01593814417719841, -0.05051886662840843, -0.047165367752313614, -0.013468092307448387, -0.020030857995152473, -0.0053322468884289265, -0.010538286529481411, 0.03128131106495857, 0.005480990745127201, -0.01203474123030901, -0.037321221083402634, 0.01851637288928032, 0.021869873628020287, 0.031443577259778976, 0.019634205847978592, -0.015451345592737198, -0.01476622186601162, -0.02334829978644848, -0.01873272843658924, 0.0226631760597229, -0.023113913834095, -0.017542775720357895, 0.0603269562125206, -0.03133540228009224, -0.011358631774783134, 0.013594299554824829, -0.036185357719659805, -0.0014603955205529928, 0.0036960628349334, -0.031046926975250244, 0.030091360211372375, 0.05376419052481651, 0.03319244831800461, 0.027296775951981544, -0.004263994283974171, 0.03764575347304344, 0.005169980693608522, 0.002693167654797435, 0.016109425574541092, 0.0063464101403951645, -0.040927134454250336, -0.040386248379945755, -0.02827037312090397, 0.007612987887114286, -0.009438482113182545, -0.007572421338409185, 0.010889862664043903, -0.07013504207134247, -0.01390981674194336, 0.01133158802986145, 0.018047604709863663, 0.010718582198023796, 0.049328915774822235, 0.04280221089720726, 0.02280741184949875, -0.032254908233881, 0.04208102822303772, 0.03340880200266838, -0.026196971535682678, -0.021797755733132362, -0.016587208956480026, -0.031173134222626686, 0.028685053810477257, -0.06447375565767288, -0.054521434009075165, 0.029911063611507416, 0.0417204350233078, -0.009438482113182545, -0.012476465664803982, -0.02875717170536518, 0.033300623297691345, 0.028414608910679817, -0.008230500854551792, 0.06166114658117294, 0.016154499724507332, 0.07933013141155243, 0.07904165238142014, 0.01653311960399151, -0.023059826344251633, 0.06620460003614426, -0.002151153516024351, 0.010439123958349228, 0.05268241837620735, 0.046119652688503265, -0.021527312695980072, -0.0006051175878383219, -0.011809371411800385, 0.037717871367931366, -0.04402822256088257, 0.032525353133678436, 0.05214152857661247, 0.06656518578529358, 0.027422983199357986, 0.00846939254552126, -0.11070159077644348, 0.015262034721672535, -0.0002101572317769751, 0.010718582198023796, 0.00699998252093792, -0.0066123465076088905, 0.011728238314390182, -0.060939960181713104, 0.011980651877820492, -0.011683164164423943, -0.0085550332441926, 0.018588490784168243, 0.06606036424636841, -0.0007397760055027902, 0.029730768874287605, -0.10579754412174225, -0.06104813888669014, 0.060290899127721786, 0.006738553289324045, -0.04799472913146019, 0.03387757018208504, -0.028522787615656853, -0.049689508974552155, 0.007594958413392305, -0.014189274981617928, 0.008221485652029514, -0.08055613934993744, 0.014117157086730003, 0.03559038043022156, -0.0765175148844719, -0.0073921256698668, 0.02827037312090397, 0.019435880705714226, -0.02605273574590683, 0.023095885291695595, -0.0132066635414958, -0.000045250006223795936, -0.007270426023751497, 0.07752717286348343, -0.017948441207408905, -0.013666417449712753, -0.016262676566839218, -0.057189811021089554, 0.009537644684314728, 0.018678639084100723, -0.0453263521194458, 0.06014665961265564, 0.014450703747570515, -0.05062704533338547, -0.049869801849126816, 0.015992233529686928, 0.015658685937523842, 0.0011240312596783042, 0.022591056302189827, -0.013576270081102848, 0.021076573058962822, -0.040566541254520416, -0.03869146853685379, 0.005683823488652706, -0.04060260206460953, 0.06533917784690857, 0.05142034590244293, 0.04958133026957512, 0.001116706756874919, 0.002882478293031454, 0.01593814417719841, -0.044677287340164185, -0.04247767850756645, -0.015406271442770958, 0.017497701570391655, -0.04370369017124176, 0.060254838317632675, -0.031587813049554825, 0.03052406944334507, -0.019471939653158188, 0.031101016327738762, -0.06717819720506668, 0.0011291020782664418, -0.018588490784168243, -0.05116793140769005, 0.01842622458934784, -0.036690182983875275, 0.064509816467762, 0.011061144061386585, 0.011106218211352825, -0.056108035147190094, -0.02361874282360077, -0.013089471496641636, -0.04568694159388542, 0.048427436500787735, -0.0033625157084316015, 0.0891382172703743, 0.02980288676917553, -0.00042763896635733545, -0.018660610541701317, -0.01203474123030901, -0.008077249862253666, 0.021238839253783226, 0.01990465074777603, -0.006666435394436121, -0.009853162802755833, -0.041251666843891144, -0.011124247685074806, 0.02022918313741684, -0.055927738547325134, -0.021184749901294708, -0.05459355190396309, 0.0456148236989975, -0.016866667196154594, 0.03461678326129913, -0.024412043392658234, 0.030091360211372375, 0.03679836168885231, -0.00430005369707942, 0.015586567111313343, 0.054341137409210205, 0.005602690391242504, 0.020391449332237244, 0.011043114587664604, -0.023907216265797615, 0.04792260751128197, 0.019111348316073418, -0.01959814690053463, -0.008108801208436489, 0.00013951791333965957, -0.021527312695980072, -0.007964564487338066, 0.02767539769411087, -0.06584400683641434, 0.000988246058113873, 0.001220376812852919, 0.043595511466264725, 0.0037997327744960785, -0.00291853747330606, 0.02199608087539673, 0.12498100847005844, 0.007189292926341295, -0.05877641215920448, 0.019526029005646706, -0.01280099805444479, 0.07695022225379944, -0.007635524962097406, 0.010619419626891613, 0.027170568704605103, -0.012251095846295357, -0.04496575891971588, -0.009032816626131535, -0.05956971272826195, 0.06104813888669014, -0.03277776762843132, -0.024321896955370903, -0.006157099734991789, -0.012314199469983578, -0.09620580822229385, 0.08091673254966736, 0.055242616683244705, -0.07435396313667297, -0.0567210428416729, 0.04586723819375038, 0.07680598646402359, 0.09534039348363876, -0.03097480908036232, -0.02109460160136223, -0.004935596138238907, 0.02812613546848297, 0.07824835181236267, 0.08639772236347198, -0.022320613265037537, 0.007635524962097406, 0.036996688693761826, -0.031804170459508896, -0.017146125435829163, -0.020301301032304764, -0.008298112079501152, 0.0051429360173642635, -0.02911776304244995, -0.023312238976359367, 0.024772634729743004, 0.011755282990634441, 0.0621299147605896, -0.05390842631459236, -0.020211152732372284, 0.007058578543365002, -0.0019077543402090669, -0.005976804066449404, -0.02194199152290821, -0.04438881203532219, 0.09043634682893753, -0.025674114003777504, 0.021419133991003036, 0.02524140477180481, -0.03652791678905487, -0.04330703988671303, 0.07630115747451782, 0.009600748308002949, 0.03200249373912811, -0.04813896492123604, -0.02122080884873867, 0.0010423348285257816, 0.0008935907972045243, -0.0313534289598465, 0.02365480177104473, -0.028234314173460007, -0.025097167119383812, -0.03724909946322441, -0.02500702068209648, 0.05960577353835106, 0.017227258533239365, 0.031443577259778976, -0.019832532852888107, -0.04604753479361534 ]
729,214
tables.vlarray
_read_coordinates
Read rows specified in `coords`.
def _read_coordinates(self, coords): """Read rows specified in `coords`.""" rows = [] for coord in coords: rows.append(self.read(idx2long(coord), idx2long(coord) + 1, 1)[0]) return rows
(self, coords)
[ -0.015828808769583702, 0.004158706869930029, -0.04489688202738762, 0.036322228610515594, -0.0029646861366927624, 0.03831154853105545, -0.0183840561658144, 0.0679798498749733, 0.06252636760473251, -0.01415675226598978, 0.02213975414633751, 0.02642708085477352, -0.049424298107624054, 0.02021903172135353, -0.010246709920465946, -0.020699212327599525, -0.0025295226369053125, 0.02399187907576561, -0.055941034108400345, -0.019824597984552383, -0.03112599067389965, -0.0025638211518526077, 0.0628693550825119, 0.012407522648572922, -0.04486258327960968, -0.009878000244498253, 0.050350360572338104, -0.0014148177579045296, 0.03392132744193077, -0.02934246137738228, -0.03301241248846054, 0.020939301699399948, -0.0019260813714936376, 0.05474058538675308, -0.04338774457573891, -0.016094623133540154, 0.015108538791537285, 0.026615722104907036, 0.03639082610607147, 0.051893800497055054, -0.055598050355911255, -0.045034077018499374, 0.058719221502542496, -0.04181000590324402, -0.03284091874957085, -0.008531779982149601, -0.00252523529343307, -0.08602091670036316, -0.05213388800621033, -0.014859873801469803, 0.019138624891638756, -0.013642272911965847, 0.043113354593515396, 0.015648741275072098, 0.04458819329738617, -0.01989319548010826, -0.016900639981031418, 0.04890982061624527, 0.02713020145893097, 0.028416398912668228, -0.016969237476587296, -0.024986539036035538, -0.030045583844184875, 0.01963595487177372, 0.056695606559515, -0.050659049302339554, 0.0018317601643502712, -0.059645283967256546, -0.010160963982343674, 0.03138323128223419, 0.011335691437125206, 0.03323535621166229, -0.0026152690406888723, -0.020030388608574867, -0.00048687952221371233, 0.013350734487175941, 0.0005193024408072233, 0.08451177924871445, 0.03277232497930527, 0.0066239191219210625, -0.025123732164502144, 0.017869576811790466, 0.05913080647587776, 0.037797071039676666, -0.031606171280145645, 0.007284167688339949, 0.05429470166563988, 0.06856292486190796, -0.005286273546516895, 0.05261407047510147, 0.01747514307498932, 0.01010094117373228, -0.07607431709766388, -0.022585636004805565, -0.012904852628707886, -0.00585220055654645, -0.021608125418424606, 0.02682151459157467, -0.014405417256057262, 0.012390373274683952, -0.015237158164381981, -0.03088589943945408, -0.0038414443843066692, 0.024146221578121185, -0.028502145782113075, -0.037556979805231094, -0.0052519747987389565, -0.008240241557359695, 0.01989319548010826, 0.04976728558540344, -0.015374352224171162, 0.03714539483189583, 0.01583738438785076, 0.03793426603078842, -0.06626491993665695, -0.030988795682787895, 0.0237174890935421, -0.005333433859050274, -0.05367732793092728, -0.014233923517167568, 0.046268828213214874, 0.02740459144115448, -0.014765552245080471, 0.06513306498527527, -0.03308100998401642, 0.048120953142642975, -0.0061866119503974915, -0.01716645434498787, 0.009955172426998615, -0.059062208980321884, 0.10063212364912033, -0.045960139483213425, 0.05539225786924362, -0.004557427950203419, 0.01841835491359234, -0.010006619617342949, 0.06002257019281387, -0.015605867840349674, 0.011112750507891178, -0.049012716859579086, 0.06108582764863968, 0.02431771531701088, 0.0603998564183712, -0.02117939293384552, -0.0034641597885638475, 0.0018392630154266953, 0.0047031971625983715, -0.0020300489850342274, -0.0118158720433712, -0.015297180972993374, -0.029651150107383728, 0.023203009739518166, -0.037556979805231094, -0.007687176112085581, -0.03704249858856201, -0.048738326877355576, -0.012364649213850498, -0.044348105788230896, 0.028759386390447617, -0.0013708726037293673, 0.0002658142475411296, -0.018281159922480583, 0.01804107055068016, -0.01215885765850544, -0.07874961197376251, 0.03080015257000923, -0.09164588898420334, -0.04770936816930771, -0.03200060501694679, -0.010855510830879211, 0.01776668056845665, 0.03556765988469124, 0.03865453600883484, -0.02184821479022503, -0.009286348707973957, -0.0274217389523983, -0.03762557730078697, 0.007841520011425018, 0.02306581661105156, 0.011850169859826565, -0.0012937007704749703, -0.027593232691287994, 0.00842459686100483, 0.0021404477301985025, 0.05820474401116371, 0.06846002489328384, 0.029754046350717545, -0.043765027076005936, 0.06074284017086029, 0.010075217112898827, -0.025706809014081955, -0.00014509919856209308, -0.05117352679371834, 0.022242650389671326, 0.02992553822696209, 0.006349530536681414, -0.01308492012321949, 0.06900880485773087, -0.07298744469881058, 0.026375632733106613, -0.034778792411088943, -0.008630388416349888, 0.019515909254550934, -0.0012368937022984028, -0.002801767783239484, 0.042838964611291885, -0.030680108815431595, -0.04544566199183464, -0.03789996728301048, 0.03263512998819351, 0.04397081956267357, -0.03934050723910332, -0.0827968493103981, -0.013719444163143635, 0.011995939537882805, 0.06509876251220703, -0.03711109608411789, -0.011455736123025417, 0.038483042269945145, 0.005792178213596344, 0.09185168147087097, 0.004420233424752951, -0.031640470027923584, -0.02839924953877926, 0.048738326877355576, 0.009080557152628899, 0.010255284607410431, -0.03398992493748665, -0.029479656368494034, 0.041604217141866684, -0.0009844773449003696, -0.0026838663034141064, 0.03591064736247063, -0.007622866425663233, 0.035979244858026505, 0.012861979193985462, 0.017320798709988594, 0.011447161436080933, 0.016669124364852905, 0.02582685463130474, -0.07820083200931549, 0.016617678105831146, 0.016403311863541603, -0.06396690756082535, -0.031246034428477287, -0.04383362457156181, -0.01041820365935564, 0.06136021763086319, -0.025912601500749588, 0.014508312568068504, 0.023254457861185074, 0.049081314355134964, 0.06811704486608505, -0.02829635515809059, 0.03673381358385086, -0.0324464850127697, 0.000655425013974309, -0.055255062878131866, -0.0033934188541024923, -0.00686400942504406, 0.03169191628694534, -0.005303422920405865, 0.013239264488220215, -0.007481384556740522, 0.0030225650407373905, 0.009629335254430771, -0.00936352089047432, 0.025964049622416496, -0.005406318698078394, 0.031246034428477287, 0.041021138429641724, 0.05357443168759346, -0.05676420032978058, 0.009535013698041439, 0.04733208566904068, -0.03230929374694824, 0.061223022639751434, -0.03213780000805855, -0.00740850018337369, 0.04987018182873726, -0.03889462724328041, 0.06900880485773087, -0.010846936143934727, 0.019413014873862267, -0.014662656001746655, -0.1016610860824585, 0.0318291112780571, -0.001358010689727962, -0.06015976518392563, -0.011189921759068966, -0.00264742411673069, 0.029788343235850334, 0.0005399351939558983, -0.05134502053260803, 0.02145378105342388, -0.029359610751271248, -0.021299438551068306, -0.004403084050863981, -0.01708928309381008, -0.01593170501291752, -0.003873599460348487, -0.02738744206726551, 0.010006619617342949, -0.008287401869893074, 0.010975555516779423, -0.039100416004657745, -0.040060777217149734, -0.008111621253192425, -0.011807297356426716, -0.029033774510025978, 0.025106582790613174, -0.029136670753359795, -0.03419571742415428, -0.053128547966480255, -0.047537874430418015, -0.004608876071870327, -0.04633742570877075, 0.06201189011335373, 0.034778792411088943, 0.004169424995779991, -0.026101242750883102, 0.01462835818529129, 0.04012937471270561, -0.024540657177567482, -0.03309816122055054, 0.06763686239719391, -0.025638211518526077, -0.010529673658311367, 0.005354870576411486, -0.0014780558412894607, 0.06482437252998352, -0.0034770218189805746, -0.02210545539855957, 0.005890786647796631, 0.08355141431093216, -0.04270176962018013, 0.008694698102772236, 0.0336812362074852, 0.019738851115107536, -0.021025048568844795, -0.01654050499200821, -0.06328094005584717, 0.04630312696099281, 0.009706507436931133, 0.026392782106995583, 0.003301241435110569, 0.01417390163987875, -0.05041895806789398, 0.026101242750883102, -0.005710718687623739, 0.029805492609739304, -0.017526591196656227, -0.049424298107624054, -0.003612072439864278, -0.012055962346494198, 0.07449658215045929, 0.01274193450808525, 0.0006221982766874135, 0.012253179214894772, 0.018932834267616272, -0.005299135576933622, -0.06852862238883972, 0.02334020473062992, -0.014576910063624382, -0.029513955116271973, 0.03230929374694824, -0.006100865546613932, -0.001318352879025042, -0.0095007149502635, 0.07010636478662491, -0.04489688202738762, 0.039066117256879807, -0.018555548042058945, 0.030285673215985298, -0.016772020608186722, -0.0472634881734848, 0.028553593903779984, 0.02800481580197811, -0.04702339693903923, -0.018847087398171425, -0.04150132089853287, -0.03964919596910477, 0.06310944259166718, 0.011352840811014175, -0.004261602647602558, 0.0239404309540987, -0.04393652081489563, -0.014191050082445145, -0.07833802700042725, 0.02551816776394844, 0.007794359233230352, 0.03278947249054909, -0.004548853263258934, -0.04246168211102486, -0.026066944003105164, -0.024712149053812027, 0.05889071524143219, 0.04448530077934265, 0.01708928309381008, -0.02426626719534397, -0.07188989222049713, -0.010804062709212303, -0.001334430300630629, 0.027919068932533264, -0.06352102756500244, -0.00403866171836853, -0.006825423799455166, -0.07902400195598602, 0.0068725841119885445, -0.03512177988886833, -0.006658217869699001, 0.06441279500722885, 0.10433637350797653, 0.03982068970799446, -0.00427875155583024, 0.059953972697257996, -0.03549906238913536, 0.003354832995682955, 0.013762317597866058, 0.04825814813375473, -0.019138624891638756, -0.03834584727883339, -0.04081534594297409, 0.011498609557747841, 0.027524635195732117, -0.010478225536644459, -0.04393652081489563, 0.004480256233364344, 0.011258519254624844, -0.011421437375247478, -0.043765027076005936, -0.04163851588964462, -0.017029261216521263, -0.06461858749389648, -0.03683670982718468, 0.018521249294281006, -0.006718240678310394, 0.027301695197820663, 0.0021350886672735214, -0.0065724714659154415, 0.06815133988857269, 0.04894411936402321, 0.05254547297954559, -0.023871833458542824, 0.007434224244207144, -0.042495980858802795, -0.025089433416724205, 0.03385272994637489, -0.008900489658117294, 0.000030697927286382765, -0.0017363672377541661, 0.00365280220285058, 0.029393909499049187, -0.06832283735275269, -0.004600301384925842, 0.024746447801589966, -0.01559729315340519, -0.02462640218436718, -0.01136141549795866, 0.021985409781336784, 0.03827724978327751, -0.02553531713783741, 0.01370229572057724, -0.10015194863080978, 0.03515607491135597, -0.04523986950516701, -0.08307123929262161, 0.004608876071870327, 0.0026710042729973793, -0.03652802109718323, 0.017903875559568405, 0.0015584431821480393, -0.004000075627118349, -0.05028176307678223, 0.023511698469519615, -0.0007213426870293915, 0.03762557730078697, 0.039066117256879807, 0.01294772606343031, -0.020356226712465286, -0.06900880485773087, -0.09754525125026703, 0.002553102793172002, -0.0350017324090004, 0.016394736245274544, 0.011730125173926353, -0.00887476559728384, -0.09061693400144577, -0.009878000244498253, -0.011884468607604504, 0.03834584727883339, 0.06712238490581512, 0.030285673215985298, -0.04352493956685066, 0.041604217141866684, 0.022619934752583504, 0.07408499717712402, 0.015614442527294159, 0.018847087398171425, 0.041604217141866684, 0.019224371761083603, 0.02052771858870983, 0.04349064081907272, -0.021899662911891937, 0.02275712788105011, 0.009140579961240292, 0.03882602974772453, -0.00544919166713953, -0.020098986104130745, -0.06070854142308235, -0.02279142662882805, 0.010143814608454704, 0.014362543821334839, 0.0057493047788739204, -0.015648741275072098, -0.0048789773136377335, -0.037282589823007584, 0.07511395961046219, -0.06653930991888046, 0.057210084050893784, -0.007674314547330141, 0.03308100998401642, -0.007412787526845932, 0.08169928938150406, -0.0023901844397187233, 0.017552314326167107, 0.002971117151901126, -0.006280933041125536, -0.008909064345061779, 0.014362543821334839, -0.007927266880869865, -0.00003093239138252102, -0.010349606163799763, -0.04208439588546753, 0.005256262142211199, 0.035018883645534515, 0.03961489722132683, -0.01688349060714245, 0.03954629972577095, 0.013590824790298939, 0.02992553822696209, -0.02399187907576561, 0.0324464850127697, -0.005402031354606152, -0.02987409010529518, -0.021385183557868004, -0.019721701741218567, 0.012013088911771774, 0.05072764679789543, -0.012673337012529373, 0.05772456154227257, -0.045925840735435486, 0.03241218626499176, -0.08259105682373047, 0.038002859801054, -0.0036763823591172695, -0.049355700612068176, -0.049664389342069626, -0.07998435944318771, 0.0024309142027050257, 0.050933439284563065, -0.003483452834188938, -0.038757432252168655, 0.04647461697459221, -0.07607431709766388, 0.027164500206708908, -0.0024352013133466244, -0.010409628972411156, -0.008047311566770077, -0.04304475709795952, 0.010409628972411156, 0.0031147426925599575, -0.03512177988886833, -0.007845807820558548, 0.028176309540867805, -0.04150132089853287, -0.009920873679220676, -0.10296443104743958, -0.020321927964687347, -0.027576083317399025, 0.03277232497930527, -0.010220985859632492, -0.03707679733633995, -0.04012937471270561, 0.01613749749958515, 0.06317804008722305, -0.038791730999946594, 0.01418247539550066, 0.0840315967798233, 0.001896070083603263, 0.08327703177928925, -0.0252609271556139, 0.006739676930010319, 0.008668974041938782, 0.008133058436214924, -0.02737029269337654, -0.017646634951233864, -0.031074542552232742, -0.04650891572237015, -0.028845131397247314, -0.060262661427259445, 0.029771193861961365, 0.003648514859378338, -0.021042197942733765, 0.001583095290698111, -0.06406980752944946, -0.008471757173538208, -0.018521249294281006, -0.05076194554567337, 0.08471757173538208, 0.016720572486519814, -0.02248273976147175, 0.02616984024643898, -0.027833323925733566, -0.013136368244886398, 0.005457766354084015, -0.01712358184158802, 0.01215885765850544, 0.0110441530123353, -0.011027003638446331, -0.015168560668826103, -0.03927190974354744, 0.04914991185069084, 0.008030162192881107, -0.04119263216853142, -0.010246709920465946, 0.014551186002790928, 0.03371553495526314, -0.0024845057632774115, 0.0616346038877964, -0.035636257380247116, -0.05696999281644821, 0.06787694990634918, 0.010778338648378849, -0.005432042758911848, -0.03789996728301048, -0.012793381698429585, -0.03793426603078842, -0.01898428052663803, -0.000162114534759894, -0.0017095714574679732, 0.04211869463324547, -0.020390523597598076, -0.05974818021059036, 0.011695826426148415, -0.05662700906395912, 0.017972473055124283, 0.04554855450987816, 0.033166758716106415, 0.032875217497348785, 0.012647612951695919, 0.04709199443459511, -0.017355097457766533, 0.04091824218630791, 0.01431109569966793, 0.02989123947918415, -0.04702339693903923, -0.0021822492126375437, 0.011455736123025417, 0.002051485702395439, 0.026289885863661766, 0.024146221578121185, 0.013659422285854816, -0.013273562304675579, -0.03580775111913681, -0.024729298427700996, -0.05882211774587631, 0.10419917851686478, 0.022174052894115448, 0.035361867398023605, 0.04273606836795807, -0.01434539444744587, 0.013496503233909607, -0.0033934188541024923, 0.05700429156422615, 0.011507184244692326, -0.0018231855938211083, -0.06856292486190796, -0.008763295598328114, 0.04853253439068794, -0.040060777217149734, 0.02551816776394844, 0.026684319600462914, 0.014439715072512627, 0.013968109153211117, 0.03807145729660988, 0.04801805689930916, 0.05072764679789543, 0.0017835277831181884, 0.004883264657109976, 0.042838964611291885, 0.037213992327451706, 0.05638691782951355, 0.03263512998819351, 0.00003560490586096421, 0.021025048568844795, -0.004338774364441633, 0.0024695000611245632, 0.012982024811208248, 0.054054610431194305, -0.02589545212686062, -0.0005101918359287083, 0.008694698102772236, 0.08128771185874939, 0.0052133891731500626, -0.04301045835018158, -0.025621062144637108, 0.008000151254236698, -0.04290756210684776, 0.0014791276771575212, -0.006958330981433392, -0.031623318791389465, -0.01383948978036642, 0.016711998730897903, -0.036562319844961166, 0.059988271445035934, 0.02123084105551243, -0.00968078337609768, 0.035070329904556274, -0.004336630459874868, -0.001689206575974822, 0.009011960588395596, -0.009543588384985924, 0.027936218306422234, -0.05707288905978203, 0.03892892226576805, -0.06482437252998352, -0.019224371761083603, -0.0032047764398157597, 0.002748176222667098, -0.04136412590742111, -0.026101242750883102, -0.022551337257027626, 0.05851343274116516, -0.053745925426483154, 0.014474013820290565, 0.016086049377918243, -0.013110644184052944, 0.004535991232842207, -0.007288455031812191, -0.05450049415230751, -0.0072455815970897675, 0.004042948596179485, 0.021299438551068306, -0.048155251890420914, -0.013770892284810543, 0.021007899194955826, 0.05367732793092728, -0.024746447801589966, 0.018572697415947914, 0.039066117256879807, 0.05504927039146423, 0.012836255133152008, 0.005903648678213358, -0.044725388288497925, -0.03248078376054764, -0.020956451073288918, -0.05288846045732498, -0.03265227749943733, 0.027816174551844597, -0.01834975741803646, 0.04349064081907272, -0.0973394587635994, 0.0735362246632576, -0.053437236696481705, -0.009637909941375256, -0.016394736245274544, 0.032909516245126724 ]
729,215
tables.vlarray
append
Add a sequence of data to the end of the dataset. This method appends the objects in the sequence to a *single row* in this array. The type and shape of individual objects must be compliant with the atoms in the array. In the case of serialized objects and variable length strings, the object or string to append is itself the sequence.
def append(self, sequence): """Add a sequence of data to the end of the dataset. This method appends the objects in the sequence to a *single row* in this array. The type and shape of individual objects must be compliant with the atoms in the array. In the case of serialized objects and variable length strings, the object or string to append is itself the sequence. """ self._g_check_open() self._v_file._check_writable() # Prepare the sequence to convert it into a NumPy object atom = self.atom if not hasattr(atom, 'size'): # it is a pseudo-atom sequence = atom.toarray(sequence) statom = atom.base else: try: # fastest check in most cases len(sequence) except TypeError: raise TypeError("argument is not a sequence") statom = atom if len(sequence) > 0: # The sequence needs to be copied to make the operation safe # to in-place conversion. nparr = convert_to_np_atom2(sequence, statom) nobjects = self._getnobjects(nparr) else: nobjects = 0 nparr = None self._append(nparr, nobjects) self.nrows += 1
(self, sequence)
[ -0.010470962151885033, 0.052460577338933945, -0.05196699500083923, 0.06018158793449402, 0.04139026626944542, -0.02660047449171543, -0.09187652170658112, 0.03426860272884369, 0.02030731923878193, -0.04093194380402565, -0.019796110689640045, -0.032347165048122406, 0.012224935926496983, 0.04047361761331558, -0.014384351670742035, 0.04861769825220108, 0.0055792247876524925, 0.0009530073730275035, -0.06303730607032776, 0.06208540126681328, -0.017513301223516464, 0.030355213209986687, -0.025771964341402054, 0.031166095286607742, 0.010982170701026917, 0.024150198325514793, 0.04833565279841423, 0.01553016435354948, 0.00446646474301815, 0.0378294363617897, -0.017971625551581383, -0.0835561603307724, -0.030919305980205536, -0.019919507205486298, 0.01622646488249302, 0.012797842733561993, 0.010074334219098091, 0.038887105882167816, 0.022916246205568314, 0.07974854111671448, -0.010118404403328896, -0.011043868027627468, 0.0012923440663143992, -0.023533223196864128, 0.05101509019732475, 0.017909927293658257, -0.009148870594799519, 0.048934999853372574, -0.04699593409895897, -0.0004913771990686655, 0.018949972465634346, -0.007531512528657913, 0.030989816412329674, -0.005711433943361044, -0.05757266283035278, 0.07128715515136719, 0.03534390404820442, 0.05676177889108658, -0.0037459249142557383, 0.027217449620366096, 0.03624292463064194, 0.0038605062291026115, 0.03976850211620331, -0.026723869144916534, -0.0063151889480650425, 0.0434703566133976, -0.04195436090230942, 0.004574435297399759, 0.04442226141691208, 0.015477280132472515, -0.006548758130520582, 0.02545466087758541, 0.012172052636742592, -0.0006863856688141823, -0.018385881558060646, 0.046290818601846695, -0.0417780801653862, 0.03990952670574188, -0.007284722290933132, -0.00672062998637557, 0.04015631601214409, 0.0459735170006752, 0.015609489753842354, 0.027393728494644165, -0.029791120439767838, 0.004816818982362747, -0.03920441120862961, 0.04569147154688835, -0.05154392868280411, -0.02097718045115471, 0.017804160714149475, 0.03314041718840599, 0.009422102943062782, 0.0071481061168015, 0.05566885322332382, -0.07029999047517776, -0.024749547243118286, -0.04565621539950371, -0.036049019545316696, -0.011193704791367054, -0.010955728590488434, -0.021629411727190018, 0.06571674346923828, -0.0016944801900535822, -0.05034523084759712, -0.036049019545316696, 0.0029174145311117172, 0.006667746230959892, -0.005909747444093227, 0.03344009071588516, -0.03673650696873665, 0.06582251191139221, -0.0006219337228685617, -0.03828775882720947, -0.031307119876146317, -0.004087465349584818, 0.036207668483257294, 0.01889709010720253, -0.044210728257894516, -0.010039079003036022, 0.0417780801653862, 0.055880386382341385, -0.008827161975204945, 0.04731323570013046, -0.004232895094901323, -0.04431649670004845, 0.03368688374757767, 0.010691310279071331, -0.010356380604207516, -0.09836357831954956, -0.03019656240940094, -0.0158474650233984, -0.030249444767832756, 0.00041397978202439845, -0.01792755536735058, -0.038040969520807266, 0.04227166250348091, -0.03969798982143402, -0.07996007055044174, -0.017037348821759224, 0.0035057449713349342, -0.0015082856407389045, 0.04198961332440376, 0.0006781225674785674, 0.01168728619813919, 0.03506185859441757, -0.005257515702396631, -0.017407532781362534, -0.045797236263751984, -0.014269770123064518, -0.052566345781087875, -0.013353120535612106, -0.011942890472710133, 0.015045396983623505, 0.015345071442425251, -0.025877730920910835, -0.02497870847582817, -0.046854909509420395, -0.005275143776088953, -0.021699922159314156, -0.03418046236038208, 0.008620033971965313, -0.03923966363072395, 0.033563487231731415, -0.07636398822069168, 0.05771368741989136, -0.020377831533551216, 0.0020800901111215353, -0.09328675270080566, 0.01974322833120823, 0.05045099928975105, -0.0093956608325243, 0.019602205604314804, 0.016473256051540375, -0.023022014647722244, 0.055774617940187454, 0.0016537157353013754, 0.05418810993432999, 0.0035255763214081526, -0.0021131422836333513, -0.015935605391860008, 0.007020303979516029, 0.015018955804407597, 0.007681349758058786, 0.008611219935119152, -0.03199460729956627, -0.018667927011847496, -0.011581518687307835, 0.09095986932516098, 0.03164204955101013, 0.037371110171079636, 0.0448453314602375, -0.013450074009597301, 0.026635730639100075, 0.04851192981004715, -0.02582484669983387, -0.018280113115906715, 0.045903004705905914, -0.041072964668273926, 0.0835561603307724, -0.01709023118019104, -0.029279911890625954, 0.03500897437334061, -0.0717807337641716, -0.020201552659273148, -0.02753475122153759, -0.002390781417489052, 0.04889974370598793, -0.04586774855852127, 0.009439731016755104, 0.04738374799489975, 0.00470223743468523, 0.02279285155236721, 0.015195234678685665, 0.04160180315375328, -0.035943251103162766, -0.06515265256166458, -0.03037284128367901, -0.016446813941001892, -0.020148668438196182, 0.03211800009012222, 0.01152863446623087, -0.036207668483257294, 0.026565218344330788, -0.05390606448054314, -0.022175876423716545, 0.02279285155236721, -0.02069513313472271, 0.01622646488249302, 0.022105364128947258, 0.007676942739635706, 0.04488058760762215, -0.03522050753235817, -0.04431649670004845, 0.048194628208875656, 0.05810149759054184, -0.017610253766179085, 0.053553506731987, 0.0007100731017999351, 0.00001193841399071971, -0.0434703566133976, 0.014833862893283367, -0.02420308254659176, -0.0370185524225235, -0.00228942115791142, 0.013256167061626911, 0.042765241116285324, 0.04632607474923134, -0.03199460729956627, -0.013097516261041164, 0.027975449338555336, 0.017504487186670303, 0.007624058984220028, -0.02459089457988739, 0.02363898977637291, -0.05143816024065018, 0.021699922159314156, -0.018297741189599037, 0.025771964341402054, -0.017592625692486763, 0.02714693918824196, -0.0018883869051933289, 0.07333198934793472, 0.050486255437135696, -0.07079357653856277, 0.025472288951277733, 0.0032611582428216934, -0.0006566385854966938, -0.021417876705527306, 0.07474222034215927, -0.006011107936501503, 0.04625556245446205, -0.03303465247154236, -0.03807622566819191, 0.015001327730715275, 0.04227166250348091, 0.037547387182712555, -0.008430534973740578, 0.03663073852658272, 0.034321486949920654, 0.023480338975787163, 0.022281643003225327, 0.009554311633110046, -0.060534145683050156, 0.03634869307279587, -0.01679937168955803, -0.009942125529050827, -0.004215267486870289, -0.042201150208711624, -0.030707770958542824, 0.00617416575551033, 0.008597999811172485, -0.03998003527522087, 0.03534390404820442, 0.006650118622928858, 0.013652794994413853, -0.05101509019732475, 0.01234833151102066, 0.020183924585580826, 0.016693605110049248, -0.00555278267711401, -0.012639191001653671, 0.07111087441444397, 0.002452478976920247, -0.07826779782772064, -0.04265947267413139, -0.012418842874467373, 0.019496437162160873, -0.04889974370598793, 0.010656055063009262, 0.005945003125816584, 0.04530365765094757, -0.002692658919841051, 0.04188384860754013, 0.024538012221455574, 0.0942034050822258, 0.009483800269663334, 0.014895560219883919, -0.006495874375104904, 0.0037238900549709797, -0.036489713937044144, -0.04142552241683006, -0.007095222361385822, -0.06321358680725098, -0.02043071575462818, -0.009519056417047977, 0.016579022631049156, -0.004979876801371574, -0.020360203459858894, 0.023004386574029922, 0.06821990013122559, -0.04110822081565857, 0.006896908860653639, 0.09808153659105301, 0.026441823691129684, 0.016869883984327316, -0.011872378177940845, -0.0807356983423233, 0.041531290858983994, 0.007236245553940535, -0.02848665788769722, 0.029597213491797447, -0.013159213587641716, -0.0008147386834025383, 0.02071276120841503, -0.06536418944597244, 0.027605263516306877, -0.002752152970060706, -0.014199258759617805, 0.03828775882720947, 0.003470489289611578, 0.03485032171010971, -0.07890240103006363, 0.0039618662558496, -0.018103834241628647, 0.004402563441544771, 0.005940596107393503, 0.011369983665645123, 0.008267476223409176, -0.016217650845646858, -0.009571939706802368, -0.012648005038499832, 0.00691012991592288, 0.002256368985399604, -0.0019864419009536505, 0.02621266059577465, -0.04036784917116165, 0.0034770998172461987, 0.018685555085539818, -0.041531290858983994, -0.027481868863105774, -0.025683823972940445, 0.04872346669435501, 0.030743027105927467, 0.032611582428216934, 0.004486295860260725, -0.03106032870709896, 0.011228960938751698, -0.030073165893554688, -0.05989954248070717, -0.009501428343355656, -0.05281313508749008, -0.00519581837579608, -0.0030474201776087284, 0.021100575104355812, 0.019972389563918114, 0.030831165611743927, 0.024467499926686287, -0.05080355703830719, 0.00831595342606306, 0.04188384860754013, 0.0208890400826931, 0.011986959725618362, -0.037371110171079636, -0.06437702476978302, 0.016182396560907364, -0.0017462620744481683, 0.009228195995092392, -0.040967196226119995, -0.022246386855840683, -0.006341630592942238, -0.056832291185855865, -0.031025072559714317, 0.056656014174222946, -0.0014686229405924678, -0.027517123147845268, -0.009483800269663334, -0.0518612302839756, -0.03902813047170639, 0.020201552659273148, 0.026635730639100075, 0.009078359231352806, 0.02448512800037861, -0.012780214659869671, 0.04632607474923134, 0.023515595123171806, 0.012780214659869671, -0.031289491802453995, 0.03909864276647568, 0.07297942787408829, 0.00647824676707387, 0.08059467375278473, -0.057678431272506714, 0.08214592933654785, -0.013547027483582497, -0.028275122866034508, 0.0010890725534409285, -0.012242564000189304, -0.015600675716996193, 0.006892501842230558, -0.021770434454083443, 0.0062623051926493645, -0.04650235176086426, -0.026424195617437363, -0.07269738614559174, -0.0005569308996200562, -0.000004075587185070617, -0.07819728553295135, 0.001991950673982501, 0.07153394818305969, 0.03368688374757767, 0.026812007650732994, -0.003895761910825968, -0.00850545335561037, -0.04939332604408264, -0.024555640295147896, 0.0008059247047640383, -0.02021918073296547, -0.037547387182712555, -0.0004682406142819673, 0.05418810993432999, -0.014225700870156288, 0.015486094169318676, 0.004777155816555023, -0.014181630685925484, -0.04502161219716072, 0.06162707507610321, -0.09095986932516098, -0.011740169487893581, -0.04858244210481644, -0.025049220770597458, 0.025525173172354698, 0.02318066544830799, -0.027517123147845268, -0.01937304250895977, -0.02771103009581566, -0.004900551401078701, -0.02735847234725952, -0.0434703566133976, 0.00030380551470443606, 0.014604699797928333, -0.04047361761331558, 0.03469167277216911, -0.07333198934793472, 0.035943251103162766, 0.024344105273485184, 0.01613832637667656, -0.018456391990184784, -0.01946118101477623, -0.014075864106416702, -0.052072763442993164, -0.07072306424379349, -0.030231818556785583, 0.03818199411034584, 0.007892884314060211, 0.09878665208816528, 0.020748017355799675, 0.015882721170783043, 0.02201722376048565, 0.015292187221348286, -0.012744958512485027, 0.03768841177225113, -0.05267211049795151, 0.032611582428216934, 0.06187386438250542, 0.04784207046031952, 0.03818199411034584, 0.017240067943930626, -0.020183924585580826, 0.0022354358807206154, 0.010074334219098091, 0.012180866673588753, -0.030178934335708618, -0.06945385783910751, -0.008205778896808624, -0.00921056792140007, 0.015970861539244652, -0.019108623266220093, -0.06353088468313217, -0.019249647855758667, -0.048476677387952805, -0.031289491802453995, -0.028733447194099426, 0.005253108683973551, -0.014877932146191597, 0.045338913798332214, -0.0028535134624689817, 0.008694952353835106, -0.020730389282107353, 0.03691278398036957, -0.011167263612151146, 0.011581518687307835, -0.03236479312181473, -0.046185050159692764, -0.05101509019732475, -0.031095582991838455, -0.07135766744613647, -0.0487939789891243, -0.013881957158446312, 0.02961484156548977, -0.021118203178048134, 0.01776009052991867, 0.04794783890247345, -0.015697628259658813, 0.07770370692014694, 0.06106298416852951, 0.10703650116920471, 0.025013964623212814, 0.05020420625805855, 0.0009028780623339117, -0.023427454754710197, -0.010426891967654228, 0.02839851751923561, -0.032153256237506866, -0.01613832637667656, 0.020748017355799675, 0.024749547243118286, -0.008483418263494968, 0.06652762740850449, 0.0005401293165050447, -0.03199460729956627, 0.008827161975204945, 0.03825250267982483, 0.06328409910202026, 0.02393866330385208, -0.05788996443152428, -0.006610455922782421, -0.04593826085329056, 0.020183924585580826, 0.003203867468982935, 0.01467521209269762, 0.027270333841443062, -0.012930051423609257, -0.010285869240760803, -0.026265544816851616, 0.04759528115391731, -0.0010125014232471585, 0.0016977853374555707, 0.007359640672802925, -0.0026133335195481777, 0.0075447335839271545, 0.04139026626944542, -0.09469698369503021, -0.06980641186237335, -0.004144755657762289, -0.011599146761000156, -0.07361403852701187, 0.03557306528091431, -0.04611453786492348, -0.035766974091529846, -0.02021918073296547, 0.04375240206718445, -0.016120698302984238, -0.0768575668334961, 0.044774819165468216, 0.028592424467206, -0.026336055248975754, 0.06504688411951065, -0.0012295447522774339, -0.005495492368936539, 0.004922586027532816, 0.034233346581459045, -0.023991547524929047, -0.012674447149038315, 0.033069904893636703, 0.014437234960496426, -0.003754738951101899, -0.005530748050659895, -0.009801102802157402, -0.021223969757556915, 0.0025780778378248215, 0.029456190764904022, -0.05841879919171333, 0.03456827625632286, -0.009730590507388115, -0.01538032665848732, -0.07079357653856277, 0.034515392035245895, -0.006764699704945087, 0.002120854565873742, 0.007394896354526281, 0.041531290858983994, 0.0138114457949996, -0.05771368741989136, -0.03344009071588516, -0.03231190890073776, -0.07939597964286804, -0.018006881698966026, 0.06744427978992462, 0.03139525651931763, 0.039451200515031815, -0.007500663865357637, 0.014498933218419552, -0.02051885426044464, -0.05855982378125191, -0.05894763767719269, -0.018932344391942024, 0.009571939706802368, 0.039839014410972595, -0.08940862119197845, -0.018280113115906715, -0.02630079910159111, 0.02963246963918209, -0.015045396983623505, 0.0364544615149498, -0.04699593409895897, -0.05658550187945366, 0.008818347938358784, 0.04445751756429672, 0.027393728494644165, 0.028045959770679474, -0.004486295860260725, -0.06303730607032776, -0.05757266283035278, -0.009422102943062782, -0.010576729662716389, 0.025278382003307343, -0.03990952670574188, 0.009219381958246231, 0.008902080357074738, 0.055210527032613754, 0.012595121748745441, -0.039063386619091034, -0.02402680367231369, 0.07195701450109482, 0.043540868908166885, -0.0030496236868202686, 0.026741497218608856, -0.0025846881326287985, 0.005107678938657045, -0.01533625740557909, -0.033475346863269806, -0.007615244947373867, -0.05337722599506378, 0.03913389891386032, -0.004622912034392357, 0.017909927293658257, 0.02906837686896324, 0.05951172858476639, 0.058630336076021194, -0.11317100375890732, -0.021805690601468086, 0.015010141767561436, 0.03326381370425224, 0.06279051303863525, -0.0358903668820858, -0.016173582524061203, 0.004336459096521139, 0.035467296838760376, 0.007809151895344257, 0.005491085350513458, 0.0157681405544281, 0.006301967892795801, -0.06155656278133392, -0.005187004338949919, 0.0191967636346817, 0.022087736055254936, 0.03410995006561279, -0.0015148961683735251, -0.061098240315914154, 0.03264683857560158, 0.03959222137928009, 0.0611334964632988, 0.012648005038499832, -0.011087938211858273, -0.019813738763332367, 0.02506684884428978, -0.008007465861737728, -0.03634869307279587, 0.0002017566148424521, 0.015882721170783043, 0.04251845180988312, -0.02041308768093586, 0.003759145736694336, 0.01319446973502636, -0.005892119370400906, -0.024608522653579712, 0.028592424467206, -0.008589185774326324, 0.022387409582734108, -0.007593210320919752, 0.107107013463974, 0.00629315385594964, -0.02744661271572113, -0.012498168274760246, 0.013088702224195004, 0.016305791214108467, 0.021981969475746155, -0.05443489924073219, 0.011281844228506088, -0.03093693219125271, 0.03923966363072395, 0.11514532566070557, 0.021329736337065697, -0.05908866226673126, 0.00458324933424592, -0.027605263516306877, 0.01357346959412098, 0.002514176769182086, 0.0030981001909822226, -0.023956291377544403, 0.029755864292383194, 0.02041308768093586, 0.017037348821759224, 0.009501428343355656, -0.018368253484368324, -0.04265947267413139, -0.029932143166661263, 0.006041956599801779, 0.030161306262016296, -0.06977115571498871, -0.020289693027734756, -0.009289894253015518, -0.029491446912288666, 0.009739404544234276, -0.061204005032777786, 0.025419406592845917, 0.04086143150925636, -0.02496108040213585, -0.032805487513542175, 0.061380285769701004, 0.016596650704741478, -0.05203750729560852, 0.03373976796865463, 0.04787732660770416, -0.00026868749409914017, 0.06663339585065842, 0.006610455922782421, 0.05975852161645889, -0.07453068345785141, -0.0687134861946106, -0.026159776374697685, 0.0066897813230752945, 0.043540868908166885, -0.011740169487893581, 0.02790493704378605, -0.030408095568418503, 0.02355085127055645 ]
729,223
tables.vlarray
iterrows
Iterate over the rows of the array. This method returns an iterator yielding an object of the current flavor for each selected row in the array. If a range is not supplied, *all the rows* in the array are iterated upon. You can also use the :meth:`VLArray.__iter__` special method for that purpose. If you only want to iterate over a given *range of rows* in the array, you may use the start, stop and step parameters. Examples -------- :: for row in vlarray.iterrows(step=4): print('%s[%d]--> %s' % (vlarray.name, vlarray.nrow, row)) .. versionchanged:: 3.0 If the *start* parameter is provided and *stop* is None then the array is iterated from *start* to the last line. In PyTables < 3.0 only one element was returned.
def iterrows(self, start=None, stop=None, step=None): """Iterate over the rows of the array. This method returns an iterator yielding an object of the current flavor for each selected row in the array. If a range is not supplied, *all the rows* in the array are iterated upon. You can also use the :meth:`VLArray.__iter__` special method for that purpose. If you only want to iterate over a given *range of rows* in the array, you may use the start, stop and step parameters. Examples -------- :: for row in vlarray.iterrows(step=4): print('%s[%d]--> %s' % (vlarray.name, vlarray.nrow, row)) .. versionchanged:: 3.0 If the *start* parameter is provided and *stop* is None then the array is iterated from *start* to the last line. In PyTables < 3.0 only one element was returned. """ (self._start, self._stop, self._step) = self._process_range( start, stop, step) self._init_loop() return self
(self, start=None, stop=None, step=None)
[ 0.024425411596894264, -0.04985583946108818, -0.0511121042072773, -0.0037261764518916607, -0.04432826489210129, 0.03758031874895096, -0.04231823980808258, -0.0077305263839662075, -0.01880810596048832, -0.0038136665243655443, 0.009314320050179958, -0.0262918658554554, -0.01315490622073412, 0.036539413034915924, -0.06941770017147064, -0.013648439198732376, -0.0020593798253685236, -0.0035960632376372814, -0.050932638347148895, 0.05412714555859566, -0.02038741298019886, 0.046266503632068634, 0.0210514385253191, 0.028194211423397064, 0.019328558817505836, 0.040990184992551804, 0.02193082496523857, -0.0024452332872897387, 0.0542348250746727, 0.023689599707722664, -0.026238026097416878, 0.018135106191039085, 0.0022646449506282806, 0.0011452216422185302, -0.025035599246621132, -0.009987319819629192, 0.009341239929199219, -0.053947675973176956, 0.04278485104441643, 0.08679007738828659, -0.0279429592192173, -0.02699178457260132, 0.07989855855703354, 0.015236719511449337, -0.02704562619328499, -0.042713064700365067, 0.0187542662024498, -0.0650746077299118, -0.02941458486020565, -0.0010425890795886517, 0.014025319367647171, 0.022774318233132362, 0.05057370290160179, -0.0466972254216671, -0.048707250505685806, 0.05272730439901352, -0.050896745175123215, -0.03076058439910412, -0.012598559260368347, 0.004782786592841148, -0.028840292245149612, -0.06266975402832031, 0.05197354406118393, 0.05649610236287117, 0.037436746060848236, -0.04282074421644211, -0.039518557488918304, 0.034331973642110825, 0.022828159853816032, 0.031406667083501816, -0.038728903979063034, 0.08233930170536041, 0.03526519984006882, 0.005922399926930666, -0.046481866389513016, 0.07451456040143967, -0.07724244892597198, 0.07106879353523254, 0.014949572272598743, -0.04454362392425537, 0.05789594352245331, 0.07246863842010498, 0.0017598948907107115, 0.01956186629831791, 0.04005695879459381, -0.021553944796323776, -0.05053780972957611, 0.02178725227713585, 0.04142090305685997, 0.010893626138567924, -0.020638665184378624, 0.02643543854355812, -0.008349685929715633, 0.013720226474106312, -0.009870666079223156, -0.0047872732393443584, -0.005060959607362747, 0.00752413971349597, -0.039482664316892624, -0.009269452653825283, 0.03826229274272919, -0.03303981199860573, 0.07602207362651825, -0.014088132418692112, 0.013684332370758057, -0.03612663969397545, -0.062203142791986465, -0.019292665645480156, 0.03941087797284126, 0.09138442575931549, -0.007918966002762318, 0.06974074244499207, -0.04307199642062187, 0.031155411154031754, -0.04615882411599159, -0.017785144969820976, 0.029073597863316536, 0.028194211423397064, -0.029809411615133286, -0.015622572973370552, 0.011593545787036419, -0.008861166425049305, 0.00234652659855783, 0.00565768638625741, 0.0018989816308021545, -0.003634199732914567, 0.019059360027313232, -0.000033194322895724326, 0.010086026042699814, -0.08241108804941177, 0.029163332656025887, -0.04985583946108818, 0.010866706259548664, -0.0681973323225975, -0.017345452681183815, -0.030634958297014236, 0.08312895894050598, -0.04120554402470589, 0.01208707969635725, 0.0019303882727399468, -0.004163626581430435, 0.03336285054683685, 0.0033448098693042994, 0.03323722630739212, -0.025268904864788055, -0.012266546487808228, 0.04511791840195656, 0.012903653085231781, 0.03689834475517273, 0.017838986590504646, -0.03546261042356491, -0.01099233329296112, 0.05965471640229225, 0.029594052582979202, 0.004029026720672846, -0.00006400510028470308, -0.04992762580513954, -0.0586497038602829, -0.006240953225642443, -0.029719678685069084, -0.02494586631655693, -0.0033829465974122286, -0.04066714644432068, 0.018987571820616722, -0.04195930436253548, 0.05886506289243698, -0.058398451656103134, -0.003903399920091033, -0.07609385997056961, 0.0003586529055610299, 0.04156447947025299, -0.02415621280670166, 0.030024772509932518, -0.007977292872965336, -0.03969802334904671, 0.1068185567855835, 0.026238026097416878, 0.038190506398677826, 0.023940851911902428, 0.02476639859378338, 0.003286483231931925, 0.047163836658000946, -0.026848211884498596, 0.02045919932425022, 0.021661626175045967, -0.025107385590672493, 0.0016937166219577193, -0.04317967966198921, 0.03987749293446541, 0.010696212761104107, -0.019238825887441635, -0.061449382454156876, 0.0062947929836809635, 0.006321712862700224, -0.023743439465761185, 0.025250958278775215, -0.010005266405642033, 0.08937439322471619, -0.016995493322610855, 0.05348106473684311, -0.027691705152392387, -0.02781733125448227, -0.020961705595254898, -0.012894679792225361, 0.015981506556272507, -0.02571757137775421, -0.0053929733112454414, -0.04508202522993088, 0.01746210642158985, -0.014366306364536285, -0.010301386006176472, -0.040236424654722214, -0.008982306346297264, 0.07275578379631042, 0.05832666531205177, 0.03488831967115402, -0.05872149020433426, -0.025304798036813736, 0.000585509988013655, 0.0035915765911340714, 0.03553439676761627, -0.004926359746605158, -0.05114799737930298, -0.09662485122680664, 0.011010279878973961, -0.02862493135035038, 0.028840292245149612, -0.02489202469587326, -0.028194211423397064, 0.03623431921005249, -0.03973391652107239, 0.026094451546669006, 0.014509879052639008, 0.00863234605640173, 0.014106079004704952, 0.04806116968393326, -0.013783039525151253, 0.0663667693734169, 0.03693423792719841, 0.033452585339546204, -0.025322744622826576, 0.01432143896818161, 0.02632775902748108, -0.06281333416700363, -0.04221055656671524, 0.013406159356236458, -0.023563971742987633, 0.075375996530056, -0.03142461180686951, 0.013809959404170513, -0.044220585376024246, -0.053301598876714706, 0.03320133313536644, 0.003185533219948411, 0.062239035964012146, 0.011073092930018902, 0.07939604669809341, -0.01965159922838211, 0.022899946197867393, -0.00036313958116807044, 0.05681914463639259, -0.04131322354078293, -0.015182879753410816, 0.0590086355805397, -0.007053039502352476, 0.039590343832969666, -0.00751516642048955, -0.004805219825357199, 0.04465130344033241, 0.10143455862998962, -0.037185490131378174, 0.08600042015314102, -0.012643425725400448, -0.012221679091453552, 0.032806504517793655, -0.012320386245846748, -0.017587732523679733, -0.03092210553586483, -0.03490626439452171, -0.04691258445382118, -0.023240933194756508, 0.01726469211280346, -0.05416303873062134, -0.018682479858398438, -0.03007861226797104, -0.10200884938240051, -0.0040492163971066475, -0.018099213019013405, -0.019884906709194183, -0.014249652624130249, 0.008035619743168354, 0.005774339661002159, -0.04224644973874092, -0.002902873093262315, 0.04827653244137764, -0.019472133368253708, -0.03479858487844467, 0.027386611327528954, -0.015568732284009457, -0.010732105933129787, 0.005025066435337067, -0.07142773270606995, 0.038836583495140076, 0.06923823803663254, -0.04468719661235809, 0.00563076650723815, 0.00852915272116661, 0.04579989239573479, -0.018224839121103287, -0.03919551894068718, 0.009915532544255257, -0.0014020833186805248, -0.041026078164577484, -0.08233930170536041, -0.02422799915075302, -0.021482158452272415, 0.020082319155335426, 0.025502212345600128, -0.057680584490299225, 0.014025319367647171, -0.04296431690454483, 0.008250979706645012, -0.00039566788473166525, -0.013442052528262138, -0.018503012135624886, 0.04730741307139397, 0.07903711497783661, 0.012508826330304146, -0.04644596949219704, 0.022828159853816032, 0.04820474609732628, 0.0323578380048275, 0.01316387951374054, 0.07544778287410736, 0.020172052085399628, -0.02930690534412861, 0.044938452541828156, 0.027422506362199783, -0.027637865394353867, 0.038190506398677826, 0.018592745065689087, -0.03783157095313072, -0.019328558817505836, -0.06704874336719513, 0.04020053148269653, -0.014132999815046787, 0.011091039516031742, -0.01288570649921894, 0.07343775779008865, 0.021500105038285255, 0.03151434659957886, 0.05409125238656998, -0.025035599246621132, 0.026022665202617645, -0.03298597037792206, -0.00972709245979786, 0.01886194571852684, -0.03641378507018089, -0.01239217258989811, 0.03415250405669212, -0.024622825905680656, 0.029055651277303696, -0.012024265713989735, 0.028337785974144936, -0.009547626599669456, -0.0013145932462066412, -0.07551956921815872, -0.007591439876705408, -0.03255525231361389, 0.07652458548545837, -0.02099759876728058, -0.002280348213389516, 0.06780250370502472, 0.02776349149644375, 0.020154105499386787, -0.04314378648996353, -0.04644596949219704, -0.020871972665190697, -0.003524276427924633, 0.007407486438751221, 0.06263386458158493, -0.013074145652353764, 0.04680490493774414, -0.001107084914110601, -0.004253359977155924, -0.030563171952962875, -0.02322298474609852, -0.000887238304130733, -0.0525837317109108, -0.001228224951773882, -0.020010532811284065, 0.03190917149186134, 0.022810211405158043, -0.015245692804455757, -0.01963365264236927, -0.029665838927030563, -0.022200025618076324, -0.011907612904906273, 0.021518051624298096, -0.07982677221298218, -0.03905194625258446, 0.036647092550992966, -0.03605485334992409, 0.04501023888587952, -0.0285890381783247, -0.020602772012352943, 0.02185903862118721, -0.0707816481590271, 0.009161773137748241, -0.04533327743411064, 0.013343346305191517, 0.015245692804455757, -0.030276024714112282, -0.019202932715415955, 0.04289253056049347, 0.023725492879748344, -0.03478064015507698, 0.027727598324418068, 0.012302439659833908, 0.0696689561009407, 0.006918439641594887, 0.007443379610776901, -0.007129312958568335, 0.027350718155503273, 0.0027323798276484013, -0.02345629222691059, 0.01586485281586647, -0.029683785513043404, 0.04529738426208496, -0.020818132907152176, -0.01593663915991783, -0.020620718598365784, -0.002929793205112219, -0.02112322486937046, -0.029863251373171806, -0.03183738514780998, -0.05057370290160179, -0.002236603293567896, 0.03185533359646797, -0.011378185823559761, 0.059295784682035446, 0.019131146371364594, 0.04289253056049347, -0.037939250469207764, -0.001882156589999795, -0.02119501307606697, 0.009736066684126854, -0.04289253056049347, -0.022810211405158043, 0.014877785928547382, 0.02045919932425022, 0.022738425061106682, 0.02175135910511017, -0.027745544910430908, -0.007026119623333216, 0.004993659909814596, -0.06396191567182541, -0.03391920030117035, 0.0015994965797290206, 0.0093771331012249, 0.05746522545814514, 0.025250958278775215, 0.007452352903783321, -0.04386164993047714, 0.018170999363064766, -0.028337785974144936, -0.02936074510216713, 0.00013158551882952452, -0.009332266636192799, -0.07297114282846451, -0.01238319929689169, 0.008076000027358532, -0.014931625686585903, -0.008008699864149094, 0.09088191390037537, 0.03609074652194977, -0.04167215898633003, -0.001034737448208034, -0.04888671636581421, -0.043287359178066254, -0.08341610431671143, -0.038872476667165756, 0.026812318712472916, -0.01054366584867239, -0.0003213574818801135, 0.03156818449497223, 0.012356279417872429, 0.019795171916484833, -0.007299806457012892, -0.06830500811338425, 0.020172052085399628, -0.0051237731240689754, -0.04314378648996353, 0.056962717324495316, 0.03930319845676422, -0.026220079511404037, 0.07982677221298218, -0.0007094541215337813, 0.026937944814562798, 0.02191287837922573, 0.014420146122574806, 0.013513839803636074, 0.0404517836868763, 0.018341492861509323, 0.01766849309206009, 0.049461010843515396, 0.07063807547092438, 0.024586932733654976, -0.01610713265836239, -0.022774318233132362, 0.005859586410224438, -0.006389013025909662, -0.053947675973176956, 0.004657160025089979, -0.011153852567076683, -0.07458634674549103, -0.053804103285074234, 0.036647092550992966, -0.011719172820448875, 0.03596511855721474, 0.034296076744794846, 0.015694359317421913, -0.03969802334904671, 0.04590757191181183, -0.019095253199338913, 0.042533598840236664, 0.0048590595833957195, -0.025358639657497406, 0.009121392853558064, -0.0024026099126785994, 0.002938766498118639, 0.013899692334234715, 0.059941865503787994, 0.022038506343960762, -0.037436746060848236, -0.013406159356236458, -0.01575717329978943, -0.004262333270162344, 0.04242591932415962, 0.031101571395993233, 0.021356532350182533, 0.0301503986120224, -0.017130091786384583, 0.011853773146867752, -0.02336655929684639, -0.002718919888138771, -0.019059360027313232, -0.038226399570703506, 0.031334877014160156, 0.009861692786216736, 0.03156818449497223, 0.007407486438751221, 0.06252618134021759, 0.007057526148855686, -0.057752370834350586, 0.06152116879820824, -0.033649999648332596, -0.033434636890888214, 0.0019584298133850098, -0.031209252774715424, 0.021410372108221054, -0.004217466339468956, -0.05502447858452797, -0.004334119614213705, 0.013800986111164093, 0.038693010807037354, 0.047056157141923904, 0.035013943910598755, 0.01237422600388527, 0.04755866527557373, 0.003423326415941119, 0.022792264819145203, -0.04325146600604057, 0.037687998265028, 0.018027426674962044, -0.005276319570839405, -0.0021569649688899517, -0.03189122676849365, -0.048671357333660126, -0.09612233936786652, -0.020961705595254898, -0.02347423881292343, 0.005110313184559345, -0.051614612340927124, -0.03862122446298599, 0.031316932290792465, -0.07853461056947708, 0.041097864508628845, -0.0006191599532030523, 0.008708619512617588, 0.03496010601520538, -0.03567797318100929, -0.1009320467710495, 0.0009063066099770367, -0.010767999105155468, 0.02419210597872734, -0.014716265723109245, -0.031101571395993233, -0.020136158913373947, 0.012284493073821068, -0.05961882323026657, 0.06514639407396317, -0.010471879504621029, 0.04152858629822731, -0.016627585515379906, -0.017838986590504646, -0.0009147191303782165, -0.02421005256474018, 0.016887811943888664, 0.04131322354078293, 0.00580574618652463, -0.0002691999834496528, 0.01957981288433075, -0.050824958831071854, -0.05972650274634361, 0.0017666249768808484, 0.010893626138567924, 0.014025319367647171, 0.06729999929666519, -0.009951426647603512, -0.029271012172102928, -0.03707781061530113, 0.029791465029120445, 0.003445759881287813, -0.039626237004995346, -0.02776349149644375, 0.011234613135457039, -0.008722079917788506, 0.03908783942461014, -0.04443594440817833, -0.04221055656671524, -0.017013439908623695, 0.01889783889055252, -0.040379997342824936, 0.004035756457597017, -0.030329864472150803, -0.008049079217016697, -0.048707250505685806, -0.018592745065689087, -0.006729999557137489, -0.004524803254753351, 0.053158022463321686, -0.010059106163680553, 0.006061486434191465, 0.02776349149644375, -0.026184186339378357, -0.00034379083081148565, 0.02496381290256977, 0.014509879052639008, -0.012715213000774384, 0.014420146122574806, 0.013899692334234715, -0.004269063007086515, -0.003732906421646476, -0.06403370201587677, 0.028337785974144936, 0.03244757279753685, 0.022289758548140526, 0.0529426634311676, 0.0037284197751432657, -0.00752862635999918, 0.020907865837216377, -0.019167039543390274, -0.08068820834159851, 0.06798197329044342, 0.010265492834150791, 0.07232506573200226, 0.059295784682035446, -0.01584690622985363, 0.03637789189815521, -0.046374183148145676, 0.06482335925102234, -0.04619471728801727, 0.0072863465175032616, 0.04727151617407799, 0.008390066213905811, -0.04361039772629738, -0.11026431620121002, 0.01757875829935074, -0.00843941979110241, -0.08707722276449203, 0.03623431921005249, -0.027476346120238304, -0.0008462974801659584, -0.03623431921005249, 0.03088621236383915, -0.015416186302900314, 0.041779838502407074, 0.03844175860285759, -0.04910207912325859, 0.00039987414493225515, 0.021338585764169693, 0.005783312954008579, 0.019077306613326073, -0.03851354494690895, -0.00486354622989893, 0.028804399073123932, -0.029881197959184647, 0.01018473319709301, 0.05961882323026657, 0.045656319707632065, 0.008740026503801346, -0.01288570649921894, 0.050178878009319305, -0.00021017227845732123, 0.021464211866259575, -0.007192126475274563, -0.033506426960229874, 0.00008748999971430749, 0.05118389055132866, 0.00040492165135219693, 0.04601525142788887, -0.02187698520720005, -0.028822345659136772, 0.004998146556317806, 0.030634958297014236, -0.009341239929199219, -0.012751106172800064, -0.02099759876728058, 0.02778143808245659, 0.03076058439910412, 0.004769326653331518, -0.021589839830994606, 0.025268904864788055, -0.05635252967476845, 0.050214771181344986, -0.060731519013643265, 0.09533268958330154, -0.01212297286838293, 0.03641378507018089, -0.0054647596552968025, 0.003995376639068127, -0.012697266414761543, -0.012033239006996155, 0.004533776547759771, -0.017623625695705414, -0.02555605210363865, 0.0030913131777197123, 0.041097864508628845, -0.011988372541964054, -0.046481866389513016, -0.016071239486336708, 0.010418039746582508, -0.04885082319378853, 0.019184986129403114, 0.022756371647119522, 0.023546025156974792, 0.037975143641233444, -0.0025170198641717434, -0.016241732984781265, 0.024263892322778702, -0.021428318694233894, -0.005294266622513533, 0.031388718634843826, 0.02480229176580906, -0.030796479433774948, 0.0262918658554554, -0.06414138525724411, -0.034188397228717804, -0.009103446267545223, -0.02706357277929783, 0.04303610324859619, 0.012751106172800064, 0.06349530071020126, -0.021697519347071648, -0.014141973108053207, 0.03693423792719841, 0.017874879762530327 ]
729,225
tables.vlarray
read
Get data in the array as a list of objects of the current flavor. Please note that, as the lengths of the different rows are variable, the returned value is a *Python list* (not an array of the current flavor), with as many entries as specified rows in the range parameters. The start, stop and step parameters can be used to select only a *range of rows* in the array. Their meanings are the same as in the built-in range() Python function, except that negative values of step are not allowed yet. Moreover, if only start is specified, then stop will be set to start + 1. If you do not specify neither start nor stop, then *all the rows* in the array are selected.
def read(self, start=None, stop=None, step=1): """Get data in the array as a list of objects of the current flavor. Please note that, as the lengths of the different rows are variable, the returned value is a *Python list* (not an array of the current flavor), with as many entries as specified rows in the range parameters. The start, stop and step parameters can be used to select only a *range of rows* in the array. Their meanings are the same as in the built-in range() Python function, except that negative values of step are not allowed yet. Moreover, if only start is specified, then stop will be set to start + 1. If you do not specify neither start nor stop, then *all the rows* in the array are selected. """ self._g_check_open() start, stop, step = self._process_range_read(start, stop, step) if start == stop: listarr = [] else: listarr = self._read_array(start, stop, step) atom = self.atom if not hasattr(atom, 'size'): # it is a pseudo-atom outlistarr = [atom.fromarray(arr) for arr in listarr] else: # Convert the list to the right flavor flavor = self.flavor outlistarr = [internal_to_flavor(arr, flavor) for arr in listarr] return outlistarr
(self, start=None, stop=None, step=1)
[ 0.04111438989639282, -0.018853159621357918, -0.08904492110013962, -0.04600895941257477, 0.02329452894628048, 0.04289093613624573, -0.004133192822337151, -0.00817121285945177, -0.0069566345773637295, -0.042310841381549835, 0.005107574630528688, 0.01607956923544407, -0.043833594769239426, -0.01650557853281498, -0.026865752413868904, 0.025306740775704384, -0.020375914871692657, 0.002732801716774702, -0.022460639476776123, 0.0956435278058052, 0.010387365706264973, 0.013296916149556637, -0.023892754688858986, 0.026974519714713097, 0.03649174049496651, 0.028569787740707397, 0.04858314245939255, -0.004244226962327957, 0.01244489848613739, -0.046335265040397644, -0.017185380682349205, -0.0059867845848202705, -0.004754078108817339, 0.030926432460546494, -0.014266765676438808, -0.024998564273118973, 0.04669782519340515, 0.020502811297774315, -0.004776738118380308, 0.09897908568382263, -0.017729220911860466, -0.08433163166046143, 0.039192818105220795, 0.0014377799816429615, -0.012861843220889568, -0.034787703305482864, 0.03507775440812111, -0.04909072816371918, -0.04611772671341896, 0.0017108336323872209, 0.024436594918370247, 0.011121551506221294, 0.01239051390439272, -0.014384598471224308, -0.04419615492224693, 0.03625607490539551, -0.032014116644859314, 0.015064399689435959, 0.02251502312719822, 0.06196163222193718, -0.03226790577173233, 0.007282939273864031, 0.07446997612714767, -0.07229461520910263, 0.01990458555519581, 0.02363896183669567, -0.0005970922647975385, -0.005107574630528688, -0.007400771602988243, 0.04205704852938652, 0.004867378156632185, 0.05674075707793236, 0.010033869184553623, -0.0027781217359006405, -0.02305886335670948, 0.052970126271247864, 0.016714051365852356, 0.04724166542291641, 0.0052027469500899315, -0.050976041704416275, 0.00673003401607275, 0.12493843585252762, 0.012762138620018959, 0.022333743050694466, 0.001578272320330143, 0.004405113402754068, 0.003596149617806077, 0.028025947511196136, -0.045863937586545944, -0.010323917493224144, -0.02590496651828289, 0.04499379172921181, -0.033228691667318344, 0.05170116573572159, 0.0033695490565150976, -0.05492795631289482, -0.06286803632974625, -0.021916797384619713, -0.06268675625324249, 0.02153610810637474, 0.010831502266228199, -0.020901627838611603, 0.0165871549397707, -0.0005795307224616408, 0.010187957435846329, -0.023657089099287987, -0.02773589827120304, 0.011330023407936096, -0.04107813537120819, 0.06217917054891586, -0.012689626775681973, 0.08715960383415222, -0.013958589173853397, 0.0111578069627285, -0.03723498806357384, 0.03785134479403496, 0.03571223467588425, 0.05032343417406082, -0.05347771197557449, -0.048981957137584686, 0.00030052888905629516, -0.0029865943361073732, 0.0003928685619030148, 0.03854020684957504, 0.00732372747734189, 0.03382691740989685, 0.010405493900179863, -0.013224403373897076, 0.015635432675480843, -0.03190534561872482, -0.010487070307135582, -0.04503004625439644, -0.03843143954873085, -0.055145490914583206, -0.011991697363555431, -0.012943418696522713, 0.055036723613739014, -0.05228126049041748, -0.008665202185511589, -0.02722831256687641, 0.023783985525369644, 0.012626178562641144, 0.0165871549397707, -0.026503192260861397, -0.08505675196647644, -0.0008367222617380321, 0.06290429085493088, 0.03460642322897911, -0.001369799836538732, 0.043797340244054794, -0.07454249262809753, 0.033536870032548904, 0.02539738081395626, -0.014067357406020164, 0.038612719625234604, -0.026031862944364548, -0.05177367478609085, -0.05902489274740219, -0.031850963830947876, 0.02566930092871189, -0.07577519863843918, 0.021789900958538055, -0.04245586320757866, 0.003256248775869608, -0.030618255957961082, 0.07323727011680603, -0.04513881355524063, -0.047894276678562164, -0.05880735442042351, 0.02898673340678215, -0.0050214664079248905, -0.0006293827900663018, 0.038213904947042465, -0.01966892182826996, 0.008085104636847973, 0.08549182862043381, 0.0008486188016831875, 0.02543363720178604, 0.06696496903896332, 0.032177265733480453, -0.04521132633090019, -0.0069702304899692535, -0.0370718389749527, -0.007146978750824928, 0.014366470277309418, 0.03101707249879837, 0.0007704416057094932, -0.0370718389749527, 0.04985210299491882, 0.030128799378871918, 0.015363512560725212, -0.010251405648887157, 0.0024404870346188545, 0.02566930092871189, -0.010985590517520905, -0.015218487940728664, -0.03962789103388786, 0.07059057801961899, -0.009471899829804897, 0.03393568843603134, -0.018599366769194603, -0.005189151037484407, 0.018227742984890938, -0.01696784421801567, -0.017856117337942123, 0.034787703305482864, 0.014085485599935055, -0.03215913847088814, 0.02441846765577793, 0.048510629683732986, -0.015907352790236473, -0.0308176651597023, -0.026394423097372055, -0.01318814791738987, 0.08056099712848663, -0.003206396708264947, -0.01154755987226963, -0.04140443727374077, 0.025216100737452507, 0.02106478065252304, 0.008202937431633472, -0.010015740990638733, -0.04194828122854233, -0.01039642933756113, -0.011085295118391514, 0.017339468002319336, -0.009299683384597301, -0.027155801653862, -0.028062202036380768, 0.009589731693267822, -0.045356351882219315, -0.05369524657726288, -0.0040946705266833305, -0.028823580592870712, 0.07976336777210236, 0.10739049315452576, 0.034189481288194656, 0.03562159463763237, 0.029548700898885727, 0.033736277371644974, -0.04550137370824814, 0.006807078141719103, 0.003761567873880267, -0.03788759931921959, -0.039700403809547424, 0.012535538524389267, 0.034189481288194656, 0.011846672743558884, -0.025759940966963768, -0.022533150389790535, -0.027572745457291603, -0.0006798013928346336, 0.04444994777441025, -0.014067357406020164, 0.0409693643450737, -0.021517980843782425, 0.03148840367794037, -0.04872816428542137, 0.004509349353611469, -0.014076421037316322, 0.04869190976023674, -0.06645738333463669, 0.06692871451377869, 0.06370192766189575, -0.012272682040929794, 0.040788084268569946, 0.007654563989490271, -0.003371814964339137, 0.02441846765577793, 0.07040929794311523, -0.050432201474905014, 0.06341187655925751, -0.06141779199242592, -0.00014445780834648758, 0.003922454081475735, 0.016297105699777603, 0.055036723613739014, -0.03210475668311119, 0.008669734001159668, 0.014602134935557842, -0.0515923947095871, 0.021372957155108452, -0.005143830552697182, -0.010749926790595055, 0.0002659723104443401, -0.09912411123514175, 0.015118783339858055, -0.003136150538921356, -0.01736666075885296, 0.0034058052115142345, 0.015744201838970184, 0.03351874276995659, -0.034896474331617355, -0.07359983026981354, 0.08984255790710449, 0.04361606016755104, -0.015218487940728664, 0.000023616017642780207, -0.03598415479063988, -0.03941035270690918, 0.01872626319527626, -0.05449288338422775, 0.03984542563557625, 0.06420951336622238, -0.05735711008310318, -0.023439552634954453, -0.001974823186174035, -0.01939699985086918, -0.022623790428042412, -0.047894276678562164, 0.018853159621357918, -0.025252357125282288, 0.012227362021803856, -0.01912507973611355, -0.03690868616104126, 0.014783415012061596, -0.04310847446322441, 0.058698587119579315, -0.0034896472934633493, 0.011765096336603165, -0.04956205561757088, 0.018708135932683945, 0.01830025389790535, 0.00136300188023597, 0.02207995019853115, 0.05209998041391373, -0.03399007022380829, 0.013242531567811966, 0.022134333848953247, 0.017955821007490158, 0.019415128976106644, 0.02059345133602619, 0.007650032173842192, 0.10390990972518921, 0.04408738762140274, -0.02844289131462574, 0.05445662513375282, -0.01317001972347498, -0.008538305759429932, -0.031234608963131905, -0.0010610567405819893, -0.00428274879232049, -0.0004056148463860154, 0.0037932919804006815, 0.055036723613739014, 0.004812994040548801, 0.04111438989639282, -0.032014116644859314, 0.039664145559072495, 0.021789900958538055, 0.022406253963708878, 0.00491723045706749, -0.031760323792696, 0.06457207351922989, -0.0031769387423992157, -0.0069566345773637295, 0.0016768435016274452, -0.021880540996789932, 0.005723928101360798, 0.008320769295096397, 0.011375343427062035, 0.0015907352790236473, 0.009426579810678959, 0.012997803278267384, -0.01388607732951641, -0.024237187579274178, -0.07526761293411255, -0.006879590451717377, -0.010441750288009644, 0.05394903942942619, -0.03457016870379448, -0.008071509189903736, -0.00039003606070764363, 0.007962740957736969, 0.015979865565896034, -0.06979294866323471, -0.018907543271780014, -0.023457681760191917, 0.00975288450717926, 0.02614063024520874, -0.008588157594203949, 0.017185380682349205, -0.018245870247483253, 0.026811368763446808, -0.013351299799978733, -0.0053976234048604965, -0.03696306794881821, -0.012653370387852192, -0.012381450273096561, 0.013577900826931, -0.003988168202340603, 0.01872626319527626, -0.01244489848613739, -0.0032902387902140617, -0.027808411046862602, 0.003967774100601673, -0.009535348042845726, -0.011873864568769932, 0.035404056310653687, -0.028587915003299713, -0.020194634795188904, 0.015771392732858658, -0.024237187579274178, 0.046480290591716766, -0.027681514620780945, -0.04212956130504608, 0.02044842764735222, -0.07635529339313507, -0.01899818331003189, -0.01008825283497572, 0.05481918528676033, 0.032014116644859314, 0.03745252639055252, -0.005116638727486134, 0.022061822935938835, 0.04872816428542137, -0.050976041704416275, 0.0011805885005742311, 0.018780646845698357, 0.04669782519340515, 0.012245489284396172, 0.014284893870353699, -0.002176497597247362, 0.038141392171382904, -0.007536731660366058, -0.022170590236783028, 0.027047032490372658, 0.024527234956622124, 0.017538877204060555, 0.001790143782272935, 0.016161145642399788, 0.03785134479403496, -0.0533689446747303, -0.07882070541381836, -0.04310847446322441, -0.03203224390745163, -0.045827679336071014, -0.033772535622119904, 0.03582100197672844, -0.0013743318850174546, 0.03098081611096859, 0.04459497332572937, 0.05858981981873512, -0.0028370379004627466, -0.012218297459185123, -0.041223157197237015, -0.0436885729432106, -0.033736277371644974, -0.026031862944364548, -0.056559477001428604, -0.030727025121450424, -0.005492795258760452, 0.047894276678562164, -0.012843715026974678, 0.04764048382639885, -0.027065159752964973, -0.02590496651828289, -0.022696303203701973, -0.018245870247483253, -0.02501669153571129, 0.06696496903896332, 0.019451385363936424, -0.011429728008806705, -0.08752216398715973, 0.01682281866669655, -0.007115255109965801, -0.007156042847782373, 0.012363322079181671, -0.05166490748524666, -0.04764048382639885, 0.01568981632590294, 0.01193731278181076, 0.040679316967725754, -0.0400267094373703, 0.029349293559789658, 0.057683415710926056, -0.01154755987226963, 0.03043697588145733, -0.01665966771543026, -0.041767001152038574, -0.023439552634954453, -0.09194540977478027, -0.015517600812017918, 0.012463025748729706, -0.0796908512711525, 0.050939787179231644, 0.017892373725771904, -0.006639393977820873, -0.007872100919485092, -0.08491172641515732, 0.008905398659408092, 0.024200931191444397, -0.02505294792354107, 0.0075593916699290276, 0.05228126049041748, 0.039664145559072495, 0.07693539559841156, 0.007006486877799034, 0.042238328605890274, 0.02965747006237507, 0.011946377344429493, -0.006362941116094589, -0.0072648110799491405, -0.0030591064132750034, -0.02204369381070137, -0.0016496514435857534, 0.020158378407359123, 0.0003937183355446905, -0.022805072367191315, -0.025850582867860794, -0.021753644570708275, 0.01767483726143837, -0.004153586458414793, -0.022841326892375946, -0.024364082142710686, -0.014547750353813171, -0.028533531352877617, 0.022134333848953247, -0.08135863393545151, 0.07381737232208252, -0.003219992620870471, -0.017058484256267548, -0.03487834334373474, 0.07287470996379852, -0.02820722758769989, -0.020267145708203316, -0.022261230275034904, -0.05935119464993477, -0.016795627772808075, -0.02634003944694996, 0.04814806953072548, -0.02079285867512226, 0.04575516656041145, -0.01833651028573513, 0.016641538590192795, -0.018835030496120453, 0.028297867625951767, -0.012381450273096561, 0.045392606407403946, 0.037198733538389206, 0.03571223467588425, 0.02688387967646122, 0.023403296247124672, 0.026031862944364548, -0.035603467375040054, -0.03582100197672844, 0.029095500707626343, -0.0400267094373703, 0.07824061065912247, 0.00856549758464098, 0.04974333569407463, -0.01584390550851822, 0.07073560357093811, -0.0016847745282575488, 0.0032902387902140617, -0.003018318209797144, 0.007650032173842192, -0.050577227026224136, 0.0036822576075792313, -0.058626074343919754, -0.0018705868860706687, 0.02130044437944889, -0.05398529767990112, 0.04412364587187767, -0.04154946282505989, 0.06381069123744965, 0.000026802586944540963, 0.04350728914141655, -0.026267526671290398, -0.05463790521025658, 0.04028049856424332, 0.041803255677223206, -0.01310657151043415, 0.058698587119579315, 0.09354067593812943, 0.019179463386535645, 0.02356644906103611, -0.018073653802275658, -0.02478102780878544, -0.09441082179546356, 0.028624171391129494, -0.02079285867512226, -0.04749545827507973, -0.07889322191476822, -0.01876251958310604, 0.06457207351922989, -0.055145490914583206, 0.0009239634382538497, 0.023004479706287384, -0.03415322303771973, 0.09325062483549118, 0.0013154157204553485, -0.009852588176727295, 0.01090401504188776, -0.012852778658270836, -0.01156568806618452, -0.017575133591890335, -0.05779218301177025, -0.055072978138923645, 0.009127466939389706, -0.038721490651369095, 0.06134527921676636, 0.0006424123421311378, -0.021517980843782425, 0.016795627772808075, -0.024400338530540466, -0.009861652739346027, -0.06239670515060425, 0.022551279515028, 0.04361606016755104, -0.005873484071344137, -0.03690868616104126, -0.02847914770245552, -0.03328307718038559, -0.011021846905350685, 0.01318814791738987, 0.012254553847014904, -0.0018807839369401336, 0.0329386442899704, -0.004398315213620663, 0.022460639476776123, -0.055072978138923645, 0.05228126049041748, 0.008651605807244778, -0.011819480918347836, -0.02965747006237507, -0.017149124294519424, 0.01462932676076889, -0.012771202251315117, -0.05536302924156189, 0.027173928916454315, -0.005161958746612072, 0.04361606016755104, -0.028044074773788452, -0.012898098677396774, -0.007011018693447113, -0.026485063135623932, -0.0134600680321455, -0.01649651490151882, 0.021554237231612206, 0.010097317397594452, 0.03748878091573715, 0.0056967358104884624, -0.011601944454014301, 0.0007993331528268754, -0.08215627074241638, 0.026503192260861397, 0.03078140877187252, 0.029349293559789658, 0.025923093780875206, -0.02014024928212166, 0.03803262487053871, -0.022605663165450096, 0.0322316512465477, -0.057175830006599426, 0.02278694324195385, 0.02251502312719822, 0.0045569357462227345, 0.008719585835933685, 0.0006673383759334683, -0.02289571240544319, 0.0557255893945694, -0.012907163240015507, -0.06830644607543945, 0.018708135932683945, -0.022315613925457, 0.027101416140794754, 0.0920904353260994, 0.033573124557733536, 0.09259802103042603, -0.034624554216861725, 0.055145490914583206, 0.03850395232439041, 0.012200169265270233, 0.03284800425171852, 0.00861988216638565, 0.0331743098795414, -0.027844665572047234, 0.025886837393045425, 0.004028956405818462, -0.013822629116475582, 0.019632665440440178, -0.008787566795945168, 0.014266765676438808, 0.015635432675480843, 0.05688578262925148, -0.030563872307538986, 0.011112486943602562, 0.0055924998596310616, 0.007156042847782373, 0.00899603869765997, 0.06645738333463669, 0.03752503916621208, 0.012172977440059185, -0.02965747006237507, 0.0009919435251504183, -0.03190534561872482, -0.035657849162817, -0.012209233827888966, 0.023348912596702576, 0.044341180473566055, -0.023620832711458206, 0.009490028023719788, 0.031705938279628754, 0.037198733538389206, -0.03399007022380829, -0.0436885729432106, 0.0004169448802713305, -0.041295669972896576, 0.04347103461623192, 0.010749926790595055, 0.09926913678646088, -0.029131757095456123, -0.004359792917966843, 0.040207989513874054, -0.025234228000044823, -0.034896474331617355, 0.02017650566995144, -0.046951618045568466, 0.03980917111039162, -0.009589731693267822, 0.02349393628537655, 0.03020131029188633, 0.03244918957352638, -0.06112774461507797, 0.06279551982879639, -0.04495753347873688, 0.03145214542746544, -0.08244631439447403, -0.006122744642198086, -0.0018581239273771644, -0.012064209207892418, -0.02004960924386978, 0.0014706370420753956, -0.02110103704035282, -0.0373075008392334, 0.004776738118380308, 0.007065402809530497, 0.03206849843263626, -0.008198404684662819, -0.08375153690576553, -0.03273923695087433, -0.04053429141640663, -0.00004468277984415181, -0.029004860669374466, -0.025342997163534164, 0.042782168835401535, -0.012499282136559486, -0.03667302057147026, 0.022460639476776123, 0.007156042847782373, -0.03890277072787285, 0.008628945797681808, 0.05003338307142258, 0.014094549231231213, -0.01903443969786167, -0.027826538309454918, -0.06790763139724731, -0.014738094992935658, -0.044341180473566055, -0.05398529767990112, 0.04444994777441025, -0.0344795286655426, 0.0708443745970726, -0.009589731693267822, -0.024164674803614616, 0.012363322079181671, -0.032757364213466644 ]
729,230
tables.atom
VLStringAtom
Defines an atom of type ``vlstring``. This class describes a *row* of the VLArray class, rather than an atom. It differs from the StringAtom class in that you can only add *one instance of it to one specific row*, i.e. the :meth:`VLArray.append` method only accepts one object when the base atom is of this type. This class stores bytestrings. It does not make assumptions on the encoding of the string, and raw bytes are stored as is. To store a string you will need to *explicitly* convert it to a bytestring before you can save them:: >>> s = 'A unicode string: hbar = ℏ' >>> bytestring = s.encode('utf-8') >>> VLArray.append(bytestring) # doctest: +SKIP For full Unicode support, using VLUnicodeAtom (see :ref:`VLUnicodeAtom`) is recommended. Variable-length string atoms do not accept parameters and they cause the reads of rows to always return Python bytestrings. You can regard vlstring atoms as an easy way to save generic variable length strings.
class VLStringAtom(_BufferedAtom): """Defines an atom of type ``vlstring``. This class describes a *row* of the VLArray class, rather than an atom. It differs from the StringAtom class in that you can only add *one instance of it to one specific row*, i.e. the :meth:`VLArray.append` method only accepts one object when the base atom is of this type. This class stores bytestrings. It does not make assumptions on the encoding of the string, and raw bytes are stored as is. To store a string you will need to *explicitly* convert it to a bytestring before you can save them:: >>> s = 'A unicode string: hbar = \u210f' >>> bytestring = s.encode('utf-8') >>> VLArray.append(bytestring) # doctest: +SKIP For full Unicode support, using VLUnicodeAtom (see :ref:`VLUnicodeAtom`) is recommended. Variable-length string atoms do not accept parameters and they cause the reads of rows to always return Python bytestrings. You can regard vlstring atoms as an easy way to save generic variable length strings. """ kind = 'vlstring' type = 'vlstring' base = UInt8Atom() def _tobuffer(self, object_): if isinstance(object_, str): warnings.warn("Storing non bytestrings in VLStringAtom is " "deprecated.", DeprecationWarning) elif not isinstance(object_, bytes): raise TypeError(f"object is not a string: {object_!r}") return np.bytes_(object_) def fromarray(self, array): return array.tobytes()
()
[ 0.04005822539329529, -0.009117862209677696, -0.061578866094350815, 0.03885079547762871, 0.0368620902299881, -0.04517203941941261, -0.0304520633071661, 0.02894277684390545, 0.05323340371251106, -0.0655207633972168, -0.009233278222382069, 0.003955217078328133, -0.036471448838710785, 0.02924463339149952, -0.0377143919467926, 0.024539213627576828, -0.017152590677142143, -0.00738218380138278, -0.015430228784680367, 0.08118182420730591, -0.007781700696796179, 0.027362465858459473, 0.0420469306409359, 0.090699203312397, 0.0524166114628315, 0.002414857503026724, 0.01859085075557232, -0.028072718530893326, -0.037998493760824203, 0.0026390308048576117, 0.003109572920948267, -0.0524166114628315, 0.0009211082942783833, -0.005486698355525732, -0.0031362073495984077, -0.055364158004522324, 0.02709612064063549, 0.004439076408743858, -0.0010010116966441274, -0.01688624545931816, 0.005189280025660992, -0.02848111279308796, 0.03537055850028992, -0.052913788706064224, 0.020615069195628166, -0.0456337034702301, -0.012269606813788414, 0.019372127950191498, -0.021414102986454964, 0.022443968802690506, 0.018138065934181213, 0.015323691070079803, -0.002410418353974819, -0.041798342019319534, -0.05188392475247383, 0.0734400749206543, 0.02164493501186371, 0.07585493475198746, -0.0303100124001503, 0.012251850217580795, -0.012669123709201813, 0.022177625447511673, 0.06299936771392822, -0.02072160877287388, -0.027469003573060036, -0.0007174657075665891, 0.031446415930986404, 0.0072223772294819355, 0.029617516323924065, 0.00935757253319025, -0.041940391063690186, -0.014196165837347507, -0.038140542805194855, -0.020916927605867386, 0.007333354093134403, 0.058560293167829514, -0.04918496310710907, 0.025302734225988388, -0.0033492830116301775, 0.03339960798621178, 0.07883799076080322, 0.021840255707502365, 0.052168022841215134, -0.015421350486576557, -0.020313212648034096, -0.03838913142681122, -0.07003086805343628, 0.027486760169267654, 0.04023578763008118, 0.010165484622120857, 0.012606976553797722, 0.013033127412199974, -0.022408457472920418, 0.07180649787187576, -0.028658676892518997, -0.048474714159965515, 0.0562874861061573, -0.05987425893545151, -0.039063870906829834, 0.007559746969491243, -0.014400362968444824, 0.023935498669743538, 0.014560170471668243, -0.06207604333758354, -0.08459103852510452, 0.009419719688594341, -0.011053299531340599, -0.008727223612368107, 0.003959656227380037, 0.014329338446259499, -0.004727615974843502, 0.025941962376236916, -0.05525762215256691, 0.014924174174666405, -0.021236540749669075, 0.0524166114628315, -0.023385053500533104, -0.01210980024188757, 0.027735348790884018, -0.02176922932267189, 0.05373057723045349, 0.018200213089585304, -0.03576119989156723, -0.014000846073031425, -0.01263361144810915, 0.023100953549146652, 0.053837116807699203, 0.009615039452910423, 0.013068640604615211, 0.004616639111191034, -0.008278877474367619, 0.014045237563550472, -0.007253450807183981, -0.0346958190202713, 0.055364158004522324, -0.03895733132958412, 0.026563432067632675, -0.029475465416908264, -0.03153519704937935, 0.03210340067744255, 0.029653029516339302, 0.05682017654180527, 0.0428992323577404, -0.01995808631181717, -0.03810502961277962, 0.00982811488211155, 0.045882292091846466, -0.035104215145111084, 0.001737898332066834, 0.00872278492897749, -0.05525762215256691, -0.04265064373612404, -0.05419224128127098, 0.09524481743574142, 0.03624061867594719, 0.02494760788977146, 0.004470149986445904, -0.07020843029022217, 0.04502999037504196, 0.006592028308659792, -0.024432675912976265, -0.03286692127585411, -0.07056355476379395, 0.0007024838123470545, -0.025213953107595444, 0.011355157010257244, 0.01722361519932747, -0.035548120737075806, -0.08487513661384583, 0.029120340943336487, 0.01195887103676796, -0.019212322309613228, -0.06914304941892624, 0.041052576154470444, 0.0390283577144146, 0.04645049199461937, -0.029599759727716446, 0.06200501695275307, 0.03483787178993225, -0.03746580332517624, -0.01209204364567995, 0.02649240754544735, -0.020330969244241714, -0.029191365465521812, 0.030238987877964973, 0.003402551868930459, 0.020171161741018295, 0.03444723039865494, 0.03299121558666229, 0.013361619785428047, 0.015039590187370777, -0.029315659776329994, 0.013681232929229736, 0.011834577657282352, -0.014160653576254845, 0.007098082918673754, 0.017294641584157944, -0.0023615886457264423, -0.07571288198232651, 0.0022095502354204655, 0.005832946393638849, 0.03565466031432152, 0.04051988944411278, -0.03364819660782814, 0.01301537174731493, -0.03998719900846481, -0.004958448000252247, -0.03535280376672745, -0.02088141441345215, -0.0031051337718963623, 0.010822467505931854, 0.023349540308117867, -0.00027369678718969226, 0.01241165678948164, 0.031464170664548874, -0.06871689856052399, -0.062360141426324844, 0.0630703940987587, 0.017978258430957794, -0.021840255707502365, 0.08011645078659058, -0.0019165711710229516, -0.021236540749669075, 0.038602206856012344, -0.04048437625169754, -0.004239317961037159, 0.003486894303932786, 0.009499623440206051, 0.017942747101187706, 0.08302848041057587, 0.010378560051321983, 0.00734667107462883, 0.03482011333107948, -0.01790723390877247, -0.004032900556921959, 0.014791002497076988, 0.02084590122103691, 0.02389998733997345, -0.012970981188118458, 0.009126740507781506, -0.01790723390877247, -0.0011730259284377098, -0.00889590848237276, 0.02860540710389614, 0.025071902200579643, -0.029280146583914757, 0.03757234290242195, 0.08025849610567093, -0.04051988944411278, -0.02480555884540081, 0.006148120388388634, -0.005087181460112333, -0.022443968802690506, -0.012606976553797722, 0.0699598416686058, -0.03183705359697342, 0.03165949136018753, 0.036169592291116714, 0.007022618781775236, -0.01561667025089264, -0.004834154155105352, -0.0006963800988160074, 0.054902493953704834, 0.04488793760538101, -0.011008908972144127, 0.012331753969192505, -0.03011469356715679, 0.024894339963793755, 0.0045811268500983715, 0.054121218621730804, 0.007826091721653938, 0.03746580332517624, -0.027202658355236053, 0.027753105387091637, -0.04403563588857651, -0.002845447976142168, -0.01636243425309658, -0.0039308019913733006, 0.03437620773911476, -0.031446415930986404, -0.05202597379684448, -0.013565816916525364, 0.01744556985795498, -0.0363471545279026, 0.06914304941892624, -0.03348839282989502, -0.010227631777524948, -0.08750306814908981, -0.06076207384467125, -0.02741573564708233, -0.006130364257842302, -0.026368113234639168, -0.026297086849808693, 0.008944738656282425, 0.0450655035674572, 0.025160683318972588, -0.02160942368209362, 0.03867323324084282, 0.04339640960097313, -0.041620779782533646, -0.02999039925634861, -0.0032915750052779913, 0.03789195418357849, 0.019833792001008987, -0.02846335619688034, -0.02661670185625553, -0.06502358615398407, 0.010156606324017048, 0.0072223772294819355, 0.001535920426249504, 0.005402355920523405, 0.020916927605867386, -0.03496216610074043, 0.028871752321720123, 0.015572279691696167, 0.1382150799036026, 0.008993568830192089, -0.021414102986454964, -0.0003881417214870453, -0.021680448204278946, 0.02874745801091194, -0.09979043155908585, -0.05969669669866562, -0.06473948806524277, -0.010875736363232136, -0.029653029516339302, 0.0428992323577404, -0.008571856655180454, 0.010582758113741875, 0.003453601384535432, 0.08132387697696686, 0.0033759174402803183, -0.005402355920523405, 0.03428742662072182, 0.027806373313069344, -0.016797464340925217, -0.01630028709769249, -0.050605468451976776, 0.0012773441849276423, -0.021964550018310547, 0.06115271523594856, 0.02301217056810856, -0.050783030688762665, 0.015687694773077965, 0.01915905252099037, -0.009588404558598995, -0.003269379725679755, -0.0026323723141103983, 0.03877976909279823, 0.015350325964391232, 0.012198581360280514, -0.03817605599761009, -0.09524481743574142, -0.02178698591887951, -0.015527889132499695, -0.02588869258761406, 0.01346815750002861, -0.0017878379439935088, 0.018040405586361885, -0.02160942368209362, -0.008589612320065498, -0.008691711351275444, 0.015705451369285583, -0.019265590235590935, -0.04616639390587807, -0.029457710683345795, -0.00989026203751564, 0.017623132094740868, 0.01963847316801548, 0.014355972409248352, -0.009162253700196743, 0.005677578505128622, 0.015554523095488548, -0.037678878754377365, 0.02082814648747444, -0.005872897803783417, -0.06317692995071411, -0.01430270355194807, -0.06566281616687775, -0.11378240585327148, 0.025533566251397133, -0.01811143197119236, 0.013459279201924801, -0.02480555884540081, 0.054121218621730804, 0.05113815888762474, 0.026279332116246223, 0.07812774181365967, 0.005988313816487789, 0.045882292091846466, 0.018697388470172882, 0.034038837999105453, 0.021343078464269638, -0.02088141441345215, -0.04762240871787071, 0.01722361519932747, -0.0357789546251297, 0.01171028334647417, 0.030043667182326317, 0.033257558941841125, 0.013565816916525364, 0.0031584028620272875, -0.08139490336179733, 0.038140542805194855, -0.035246264189481735, 0.0377143919467926, -0.005686456803232431, 0.01992257498204708, -0.08885254710912704, 0.015332569368183613, 0.029013803228735924, 0.0010809150990098715, 0.03718170151114464, -0.10490424931049347, 0.00890478678047657, -0.020064624026417732, -0.003859776770696044, -0.04858125001192093, 0.030700651928782463, 0.013867674395442009, -0.07628108561038971, 0.0072223772294819355, 0.012979858554899693, 0.034624796360731125, -0.01416953094303608, 0.018803926184773445, 0.013308350928127766, -0.0006908312207087874, 0.005278061609715223, 0.005064986180514097, 0.029866104945540428, 0.009117862209677696, -0.01917680911719799, -0.07237470149993896, -0.0642068013548851, -0.000931096263229847, -0.017214737832546234, -0.06871689856052399, 0.013974212110042572, 0.04488793760538101, 0.026883045211434364, 0.02072160877287388, 0.015039590187370777, 0.05802760645747185, -0.007022618781775236, 0.009348694235086441, -0.05252315104007721, 0.005446746479719877, 0.00004404395804158412, -0.028054961934685707, -0.030718408524990082, 0.030079180374741554, -0.013441522605717182, 0.0055976752191782, 0.00020586216123774648, -0.04673459380865097, 0.022106599062681198, -0.06225360557436943, -0.05387263000011444, -0.011603745631873608, -0.04137219116091728, 0.020313212648034096, 0.004501223098486662, 0.0008412049501203001, -0.026101768016815186, -0.004510101396590471, 0.02223089337348938, -0.022443968802690506, -0.037075165659189224, -0.04183385521173477, -0.02574664168059826, -0.024432675912976265, 0.06303488463163376, -0.019904818385839462, 0.04123013839125633, 0.008926982060074806, -0.040697451680898666, -0.0363471545279026, -0.06161437928676605, -0.04517203941941261, -0.05749491602182388, -0.03263608738780022, 0.021378591656684875, -0.00688500702381134, -0.0012806735467165709, 0.0390283577144146, 0.09481866657733917, 0.02754002809524536, 0.050321366637945175, 0.01424055639654398, -0.06374513357877731, 0.10639578104019165, -0.033861272037029266, 0.05479595810174942, 0.06079758703708649, 0.06292834132909775, -0.01217194739729166, 0.0417628288269043, -0.003924143500626087, -0.0024592482950538397, -0.016611022874712944, -0.059306059032678604, -0.06001631170511246, -0.046059854328632355, 0.029120340943336487, -0.028711944818496704, 0.034926652908325195, -0.00015675487520638853, -0.009677186608314514, -0.052132509648799896, -0.05618095025420189, -0.048190612345933914, 0.0010021214839071035, -0.0390283577144146, -0.013698989525437355, 0.01962071657180786, -0.017782939597964287, -0.030203474685549736, -0.01790723390877247, 0.019762767478823662, -0.044213198125362396, -0.027451246976852417, -0.02906707115471363, -0.10831346362829208, -0.006485490594059229, -0.03435844928026199, -0.05145777016878128, -0.052452124655246735, -0.03077167645096779, 0.047409333288669586, -0.010875736363232136, -0.008194535039365292, 0.007648528553545475, -0.045740243047475815, 0.07244572788476944, 0.06115271523594856, 0.03364819660782814, 0.052736226469278336, 0.05586133524775505, 0.02924463339149952, -0.03588549420237541, -0.013210690580308437, 0.029280146583914757, -0.020774876698851585, 0.0007507587433792651, 0.018981490284204483, 0.018803926184773445, -0.0083321463316679, 0.03913489729166031, -0.022781338542699814, -0.01771191507577896, -0.008292194455862045, -0.02587093599140644, 0.02148512937128544, -0.07031496614217758, -0.07535775750875473, -0.06530769169330597, -0.028125986456871033, 0.044816914945840836, 0.027664322406053543, 0.0303100124001503, 0.07091867923736572, -0.0025724447332322598, 0.008989129215478897, -0.018644120544195175, 0.06793562322854996, -0.04151424020528793, -0.015270422212779522, 0.02999039925634861, 0.0303100124001503, 0.05887990817427635, -0.028711944818496704, -0.007945946417748928, -0.015128372237086296, -0.005428990349173546, 0.006525442004203796, -0.002263928996399045, 0.0028299111872911453, 0.020295456051826477, -0.016229262575507164, -0.017640888690948486, 0.03774990513920784, -0.0022028915118426085, -0.04030681401491165, 0.03640042617917061, 0.04556267708539963, 0.019816037267446518, 0.08231823146343231, -0.05294930189847946, 0.011674770154058933, 0.0138587960973382, 0.03316877782344818, 0.04492345079779625, 0.018839439377188683, 0.03258281946182251, -0.01469334214925766, 0.0028343501035124063, 0.03909938409924507, 0.030523087829351425, -0.031925834715366364, -0.01688624545931816, -0.01255370769649744, -0.09652327746152878, 0.015394716523587704, 0.04037783667445183, -0.009712698869407177, -0.024699021130800247, 0.008829322643578053, 0.0046521518379449844, 0.06832626461982727, 0.0031584028620272875, -0.015057346783578396, 0.01515500620007515, -0.01393869984894991, 0.006671931594610214, 0.024716775864362717, -0.030381036922335625, -0.00627685384824872, 0.03682657703757286, 0.011754673905670643, 0.016815220937132835, 0.03703965246677399, -0.0022672582417726517, -0.056713636964559555, -0.05916400998830795, -0.024414919316768646, -0.015261543914675713, 0.03485562652349472, 0.019691742956638336, -0.10064273327589035, -0.01515500620007515, 0.0241840872913599, 0.033896785229444504, -0.012180824764072895, -0.012287363409996033, -0.012216337956488132, -0.048190612345933914, -0.02375793643295765, 0.02635035663843155, 0.05983874946832657, 0.030238987877964973, -0.010085580870509148, -0.005579918622970581, 0.020757120102643967, -0.012642488814890385, 0.03764336556196213, 0.03226320445537567, -0.02070385217666626, -0.012305119074881077, 0.009401963092386723, 0.004170512314885855, 0.02038423903286457, 0.02359812892973423, -0.005500015337020159, -0.0012851125793531537, 0.09020202606916428, -0.011035543866455555, -0.007368866354227066, 0.020970195531845093, 0.003449162235483527, -0.022177625447511673, -0.018963733687996864, -0.026598945260047913, -0.05522210896015167, 0.00513601116836071, -0.00643222127109766, 0.0554351843893528, 0.05827619135379791, 0.05096059665083885, -0.023189734667539597, -0.009730455465614796, 0.004896301310509443, 0.015465741977095604, -0.04048437625169754, 0.04123013839125633, -0.04311230778694153, -0.004072852432727814, 0.03364819660782814, 0.010618270374834538, -0.006525442004203796, -0.011417304165661335, 0.010715929791331291, 0.007235694210976362, -0.047586895525455475, -0.007249011658132076, 0.01933661662042141, -0.02267480082809925, 0.06718985736370087, 0.03379024937748909, -0.06623101979494095, -0.01702829636633396, 0.05618095025420189, 0.011221984401345253, 0.00019226748554501683, 0.002279465552419424, 0.011816821061074734, 0.02342056669294834, -0.050285857170820236, -0.010058946907520294, -0.02844560146331787, 0.04613088071346283, -0.015030711889266968, -0.045598190277814865, 0.0051315720193088055, 0.014027480967342854, 0.02088141441345215, 0.008926982060074806, -0.02800169214606285, -0.014009724371135235, 0.03240525722503662, 0.0163801908493042, 0.07166444510221481, 0.02040199376642704, -0.0806136280298233, 0.004538955632597208, 0.01242053508758545, 0.02285236492753029, 0.008807127363979816, -0.011976627632975578, 0.04328987002372742, -0.0008439793600700796, -0.0073289149440824986, 0.04946906492114067, 0.055790308862924576, -0.027451246976852417, 0.012811173684895039, -0.07663621008396149, 0.04609536752104759, -0.025213953107595444, 0.004379148595035076, -0.019691742956638336, 0.041052576154470444, -0.024734532460570335, 0.03240525722503662, -0.0037421411834657192, 0.018750658258795738, -0.029049314558506012, -0.02068609558045864, 0.006916080601513386, 0.06978227943181992, -0.02343832328915596, -0.002216208726167679, -0.0313931480050087, -0.02327851578593254, -0.008101314306259155, 0.021875767037272453, 0.048332661390304565, 0.057779017835855484, -0.020295456051826477, 0.019425397738814354, 0.045278578996658325, -0.022124355658888817, -0.07177098840475082, 0.02391774207353592, 0.036151837557554245, -0.03130436688661575, 0.03537055850028992, 0.0015792014310136437, -0.01889270916581154, -0.0197982806712389, -0.04737382009625435, -0.03732375428080559, -0.016611022874712944, 0.04417768493294716, -0.04154975339770317, 0.014329338446259499, -0.02466350793838501, 0.048936378210783005 ]
729,232
tables.atom
_tobuffer
null
def _tobuffer(self, object_): if isinstance(object_, str): warnings.warn("Storing non bytestrings in VLStringAtom is " "deprecated.", DeprecationWarning) elif not isinstance(object_, bytes): raise TypeError(f"object is not a string: {object_!r}") return np.bytes_(object_)
(self, object_)
[ 0.008487959392368793, -0.02616298757493496, -0.05798747390508652, -0.033643029630184174, 0.01017354242503643, -0.08049622178077698, -0.0018775160424411297, 0.08708415180444717, 0.02060442604124546, -0.03798351064324379, 0.02708941511809826, -0.00824777502566576, -0.02528802864253521, 0.03853250667452812, -0.04529199376702309, 0.03942462056875229, -0.061590246856212616, -0.038360945880413055, 0.04446850344538689, 0.06913891434669495, -0.04697328433394432, 0.0029444084502756596, 0.038669753819704056, 0.10273047536611557, -0.006394920405000448, 0.013664799742400646, 0.01609238237142563, -0.0061718919314444065, -0.02039855346083641, 0.022320030257105827, -0.00897261779755354, -0.0948386862874031, 0.05596306174993515, 0.041346099227666855, -0.028444744646549225, -0.028084466233849525, 0.060355011373758316, 0.06807523965835571, 0.0017252560937777162, -0.07637877017259598, -0.03726295754313469, 0.0055371178314089775, -0.019952494651079178, -0.021393604576587677, 0.01988387107849121, -0.05297790467739105, -0.024035636335611343, 0.04148334637284279, -0.009221380576491356, 0.04385088384151459, 0.031584303826093674, 0.019454969093203545, -0.004261136054992676, -0.000931788410525769, -0.045978233218193054, 0.03201320394873619, 0.02250874787569046, 0.07095745205879211, -0.020158367231488228, 0.04573804885149002, -0.04367932304739952, 0.051674045622348785, 0.03093237243592739, -0.06773211807012558, 0.0045592221431434155, -0.025888491421937943, -0.00978753063827753, 0.0050438810139894485, 0.016881560906767845, 0.02734675630927086, -0.05170835927128792, -0.0010073822923004627, -0.04337051510810852, 0.01717321388423443, -0.05757572874426842, -0.02837611921131611, 0.009976247325539589, 0.024584630504250526, -0.043713636696338654, 0.02770703285932541, 0.06587926298379898, 0.022697463631629944, 0.012712638825178146, -0.006922469474375248, 0.015946555882692337, -0.03504982590675354, -0.06642825901508331, 0.051159363240003586, -0.012712638825178146, -0.005339823197573423, 0.032201919704675674, -0.03746882826089859, -0.053012218326330185, 0.07802575081586838, -0.024653254076838493, -0.036713965237140656, 0.025202248245477676, -0.00757868867367506, -0.02153085172176361, 0.019403500482439995, -0.027381068095564842, 0.0066222380846738815, -0.0018249755958095193, 0.007565821520984173, -0.04789971187710762, 0.004593534395098686, 0.04673309996724129, -0.02168525755405426, 0.03249357268214226, 0.019283408299088478, -0.013965031132102013, 0.04807127267122269, -0.05215441435575485, -0.019952494651079178, -0.01346750557422638, 0.018254045397043228, -0.030692188069224358, -0.026969322934746742, 0.018048172816634178, -0.012420985847711563, 0.02446453832089901, 0.024190042167901993, -0.015191689133644104, 0.02780997008085251, 0.00015668306150473654, 0.05308084189891815, 0.03422633558511734, 0.00639920961111784, 0.03915012255311012, -0.023726828396320343, -0.025734087452292442, 0.026025740429759026, -0.05613462254405022, 0.007617289666086435, 0.015080174431204796, 0.009847576729953289, 0.0033111190423369408, -0.027432536706328392, -0.007355659734457731, 0.039184436202049255, 0.04096866771578789, 0.005185418296605349, 0.07644739001989365, -0.03770901635289192, -0.002108050510287285, 0.012832731008529663, 0.06526164710521698, -0.041449036449193954, -0.062207866460084915, -0.022182783111929893, -0.023572422564029694, -0.0013263777364045382, -0.020878922194242477, 0.04995844140648842, -0.01649555005133152, 0.02938832715153694, 0.009221380576491356, -0.059840328991413116, 0.05112505331635475, -0.01362190954387188, -0.009684594348073006, 0.02348664216697216, -0.04580667242407799, 0.025219405069947243, 0.023349395021796227, 0.019969651475548744, 0.04741934314370155, -0.03504982590675354, -0.05308084189891815, -0.04683603718876839, -0.014582648873329163, 0.007775983307510614, -0.060766756534576416, 0.05894821509718895, 0.050130002200603485, 0.07088883221149445, -0.03280238062143326, 0.06265392154455185, 0.010276478715240955, -0.011305841617286205, 0.008243485353887081, 0.020587269216775894, -0.004447707906365395, 0.04162059724330902, 0.005549984518438578, -0.01655559614300728, 0.02302343025803566, 0.014805678278207779, 0.016409769654273987, -0.029165297746658325, 0.026231613010168076, 0.04131178557872772, 0.008715277537703514, -0.01326163299381733, -0.006489278748631477, -0.04601254686713219, 0.005670077167451382, -0.025631150230765343, -0.11556320637464523, 0.054968010634183884, 0.00951303355395794, -0.01931772008538246, 0.009152757003903389, -0.00832497701048851, -0.008445069193840027, -0.030349066480994225, -0.008256352506577969, -0.003231772454455495, -0.034775327891111374, 0.009075554087758064, 0.011400200426578522, 0.0005747279501520097, -0.041243162006139755, 0.00036188558442518115, 0.022285718470811844, -0.0074028391391038895, -0.02127351239323616, 0.024584630504250526, 0.01972946710884571, 0.012095021083950996, 0.04470868781208992, 0.003986638970673084, -0.04762521758675575, 0.006489278748631477, -0.02616298757493496, 0.012558233924210072, -0.006832399871200323, -0.022217094898223877, 0.011940616182982922, 0.012120754458010197, 0.01870010234415531, 0.005176840350031853, -0.00837644562125206, 0.009392941370606422, 0.011211483739316463, 0.020690206438302994, 0.027569783851504326, -0.025888491421937943, -0.06186474487185478, -0.0025219405069947243, -0.003727153642103076, -0.034003306180238724, 0.019540749490261078, 0.04779677838087082, 0.03420918062329292, 0.0029851540457457304, 0.02364104799926281, 0.03223623335361481, -0.05297790467739105, -0.021719569340348244, 0.020278459414839745, 0.002238865476101637, -0.02611151896417141, -0.05170835927128792, 0.008419334888458252, -0.06471265107393265, 0.035787537693977356, -0.010722535662353039, -0.018923131749033928, 0.005957440938800573, -0.0021059061400592327, -0.024756191298365593, -0.010782582685351372, 0.026540420949459076, 0.03192742168903351, -0.0026913564652204514, -0.08166283369064331, 0.03448367491364479, -0.003130980534479022, 0.04944375902414322, 0.023092053830623627, 0.001698449719697237, -0.029697135090827942, 0.05685517564415932, -0.019249096512794495, -0.050747618079185486, -0.017602115869522095, 0.025682618841528893, 0.03175586462020874, 0.003229627851396799, -0.021719569340348244, -0.014308151789009571, 0.008595185354351997, -0.015852198004722595, 0.05112505331635475, -0.004889476578682661, 0.03026328608393669, -0.020055431872606277, -0.002099472563713789, -0.026488952338695526, -0.021771037951111794, 0.03125833719968796, -0.03709139674901962, 0.0021487963385879993, -0.005507094319909811, 0.07733950763940811, -0.013390302658081055, -0.00772022595629096, 0.09518180787563324, 0.005738701205700636, -0.007707358803600073, 0.037022773176431656, 0.003555593080818653, 0.04096866771578789, -0.00840217899531126, -0.013982187025249004, -0.03915012255311012, -0.006266250275075436, -0.021101951599121094, 0.03007456846535206, 0.05181129276752472, -0.028702083975076675, 0.023881232365965843, 0.007917520590126514, 0.029731448739767075, 0.033951837569475174, 0.02847905643284321, 0.01380204875022173, -0.005374134983867407, 0.030863747000694275, 0.012626858428120613, -0.07685913890600204, -0.010259322822093964, -0.02420719712972641, 0.0002429994783597067, -0.03657671436667442, 0.020827453583478928, -0.0014722042251378298, 0.02925107814371586, 0.021856818348169327, 0.02446453832089901, 0.0022817556746304035, 0.02420719712972641, 0.01942065730690956, 0.06536457687616348, -0.004248268902301788, -0.03541010245680809, -0.04903201386332512, -0.039287373423576355, -0.010765425860881805, 0.06800661236047745, 0.015388984233140945, 0.0073771048337221146, 0.07102607935667038, -0.008706699125468731, -0.025425277650356293, -0.02456747554242611, -0.03228770196437836, 0.036096345633268356, -0.002356813522055745, -0.06666844338178635, -0.006437810603529215, -0.03474101796746254, -0.003465523710474372, -0.018631478771567345, -0.0009430470527149737, -0.0026870674919337034, 0.04580667242407799, 0.0038858470506966114, 0.001833553658798337, -0.018236888572573662, 0.017241837456822395, 0.03422633558511734, -0.04707622155547142, -0.023418018594384193, 0.006360608618706465, -0.019094692543148994, 0.027878593653440475, 0.012378095649182796, 0.012060708366334438, -0.03623359277844429, 0.047762464731931686, -0.06484989821910858, -0.023829763755202293, -0.022937649860978127, 0.014179482124745846, -0.06165887042880058, -0.01675289124250412, -0.07016827911138535, -0.03504982590675354, 0.01104850135743618, -0.013424615375697613, 0.020381396636366844, -0.01146024651825428, 0.028702083975076675, 0.06018345057964325, -0.014514025300741196, 0.01839129440486431, -0.003257506527006626, -0.018271202221512794, 0.03254504129290581, -0.005018146708607674, 0.025768399238586426, 0.03347146883606911, -0.027260975912213326, 0.018271202221512794, 0.03187595680356026, 0.01587793231010437, 0.007531509269028902, 0.030126037076115608, -0.012429564259946346, -0.014960082247853279, -0.11590632796287537, 0.02868492901325226, -0.05637480691075325, 0.03196173533797264, 0.018682947382330894, 0.052600473165512085, -0.05349258705973625, 0.013836360536515713, 0.03474101796746254, -0.03429495915770531, 0.02173672430217266, -0.059016838669776917, 0.01593797840178013, -0.006793798878788948, -0.004304025787860155, -0.035787537693977356, 0.003096668515354395, 0.0020179813727736473, -0.05778160318732262, 0.042993079870939255, 0.006356319412589073, 0.005901684053242207, 0.003694985993206501, 0.015654902905225754, 0.005691522266715765, -0.03026328608393669, 0.06014913693070412, 0.03777763992547989, 0.012815575115382671, -0.011142859235405922, -0.028461899608373642, -0.0909271091222763, -0.008929727599024773, 0.03582184761762619, -0.011640384793281555, -0.014033655636012554, 0.011580338701605797, 0.06992809474468231, 0.056820861995220184, 0.012069286778569221, 0.055070944130420685, 0.03429495915770531, -0.01614385098218918, 0.0009703895193524659, -0.03571891039609909, 0.02286902442574501, -0.008487959392368793, -0.0038043558597564697, 0.04014517366886139, -0.031018152832984924, 0.022937649860978127, -0.06656550616025925, -0.039596181362867355, -0.030743654817342758, 0.050438810139894485, -0.036096345633268356, -0.03722864389419556, -0.025305185467004776, -0.06193336844444275, -0.01854569837450981, -0.005790169350802898, -0.022165626287460327, -0.01659848541021347, 0.018580010160803795, -0.008200595155358315, 0.00545991538092494, 0.018236888572573662, -0.017035964876413345, 0.01395645271986723, -0.05634049326181412, 0.058570779860019684, -0.04120885208249092, 0.06502145528793335, 0.02801584266126156, -0.019403500482439995, 0.013742002658545971, -0.05174266919493675, -0.048585955053567886, -0.06701156497001648, -0.049409445375204086, 0.019969651475548744, 0.015706371515989304, -0.013656222261488438, 0.046492915600538254, 0.06581063568592072, 0.030091725289821625, 0.02168525755405426, 0.029697135090827942, -0.057644352316856384, 0.15769848227500916, -0.07816299796104431, -0.014059389010071754, 0.06110987812280655, 0.08790764212608337, -0.018631478771567345, 0.02933685854077339, -0.04014517366886139, 0.03439789637923241, -0.01998680643737316, -0.03685121238231659, -0.04553217813372612, -0.07047708332538605, 0.0036413732450455427, -0.07692776620388031, 0.04632135480642319, -0.018888819962739944, -0.01988387107849121, -0.016950184479355812, -0.05623755604028702, 0.04714484512805939, -0.03031475469470024, 0.00018228311091661453, -0.02889080159366131, 0.030040256679058075, -0.017542069777846336, -0.02055295743048191, -0.06457540392875671, -0.0020480044186115265, -0.029920164495706558, 0.05596306174993515, -0.002699934644624591, -0.13690534234046936, 0.04656153917312622, -0.08591753989458084, -0.05833059549331665, -0.02317783422768116, -0.0009730701567605138, -0.0026527554728090763, -0.021702412515878677, -0.0057258340530097485, 0.03890993818640709, -0.0070125386118888855, 0.04210096597671509, 0.009564502164721489, 0.06701156497001648, 0.03139558434486389, 0.01495150476694107, -0.0010867289965972304, -0.03125833719968796, -0.04642429202795029, 0.0017177503323182464, -0.050130002200603485, -0.006223360076546669, 0.06272254884243011, 0.00853084959089756, 0.024996375665068626, -0.01421379391103983, -0.02451600693166256, -0.018477074801921844, -0.04748796671628952, -0.026763450354337692, 0.09106435626745224, -0.06406071782112122, -0.07857474684715271, -0.042890142649412155, 0.007557243574410677, 0.02431013435125351, 0.013990765437483788, 0.009573080576956272, 0.011683274991810322, -0.024739034473896027, 0.05812472477555275, -0.05544837936758995, 0.06869285553693771, -0.03386605903506279, 0.023520955815911293, 0.012712638825178146, 0.029216766357421875, 0.06361465901136398, -0.030554939061403275, 0.006244805175811052, -0.015260313637554646, 0.030554939061403275, -0.01629825495183468, -0.044640060514211655, 0.016015179455280304, 0.025562526658177376, -0.018356982618570328, 0.006146157626062632, 0.023418018594384193, -0.023349395021796227, -0.038772691041231155, 0.06656550616025925, -0.02101617120206356, 0.03880700096487999, 0.04669879004359245, 0.0021434349473565817, -0.023606736212968826, 0.00452062115073204, 0.025253716856241226, 0.03657671436667442, -0.021462228149175644, 0.029371170327067375, 0.018048172816634178, 0.0027128015644848347, 0.0005463132401928306, 0.0068066660314798355, -0.06334016472101212, 0.034260645508766174, 0.027209507301449776, -0.04618410766124725, 0.04783108830451965, 0.07445728778839111, 0.027518317103385925, -0.06172749400138855, 0.009358629584312439, 0.019798090681433678, 0.03911581262946129, -0.020896079018712044, 0.012566812336444855, 0.022937649860978127, -0.008741011843085289, -0.01313296239823103, 0.00832497701048851, -0.028393276035785675, -0.017233259975910187, -0.03558166325092316, 0.057472795248031616, 0.027020791545510292, 0.07569252699613571, -0.009530190378427505, -0.0023439463693648577, -0.029422638937830925, -0.03415771201252937, 0.005674365907907486, -0.010362259112298489, 0.04415969178080559, -0.07713363319635391, 0.005605741869658232, 0.012318049557507038, 0.054041583091020584, 0.010130652226507664, -0.019489280879497528, 0.008496537804603577, -0.061487309634685516, 0.014222372323274612, 0.017825143411755562, 0.029422638937830925, 0.04656153917312622, -0.020741673186421394, -0.016950184479355812, -0.02899373695254326, -0.02158232033252716, -0.00765589065849781, 0.03884131461381912, -0.034466519951820374, -0.022062690928578377, -0.0033497202675789595, -0.02827318385243416, 0.006390631664544344, 0.0027599807363003492, -0.009950513020157814, 0.02364104799926281, 0.12318049371242523, 0.0009473360842093825, 0.012566812336444855, 0.018013861030340195, 0.0011805512476712465, -0.005777302663773298, 0.0039244480431079865, -0.022165626287460327, -0.04378226026892662, -0.020896079018712044, 0.003201749175786972, -0.0031910266261547804, 0.030486315488815308, 0.031224025413393974, -0.018031015992164612, -0.006793798878788948, 0.03760607913136482, 0.006133290473371744, -0.060457948595285416, 0.011374466121196747, -0.02461894229054451, 0.001801386009901762, 0.011434512212872505, 0.02822171524167061, -0.010988455265760422, -0.019592218101024628, -0.004269714001566172, -0.050232935696840286, -0.025613993406295776, -0.04405675455927849, -0.017387663945555687, -0.021650945767760277, 0.05572287365794182, 0.018580010160803795, -0.05637480691075325, 0.01799670420587063, 0.010293634608387947, 0.018219733610749245, -0.012987135909497738, 0.0039909277111291885, 0.042581334710121155, -0.016178162768483162, -0.008655231446027756, 0.01978093385696411, -0.003068789839744568, 0.032510727643966675, -0.046938974410295486, -0.03468954935669899, 0.03575322404503822, 0.01882019452750683, -0.034037619829177856, 0.026334548369050026, -0.02889080159366131, -0.024395914748311043, -0.006866712123155594, -0.016469815745949745, 0.042478397488594055, 0.011271529830992222, -0.08639790862798691, -0.019798090681433678, 0.015200267545878887, -0.022543059661984444, 0.024138573557138443, 0.008826791308820248, 0.0032467839773744345, -0.03585616126656532, -0.03674827516078949, 0.08042760193347931, 0.05232597514986992, 0.030692188069224358, 0.007128342054784298, -0.07534940540790558, 0.04302739351987839, -0.0030537783168256283, -0.01272121723741293, 0.027724189683794975, 0.014754209667444229, -0.00506103690713644, -0.011468824930489063, -0.009615970775485039, 0.01146024651825428, -0.055276818573474884, -0.07178094238042831, -0.031893111765384674, 0.08406468480825424, -0.023400863632559776, 0.04481162130832672, -0.03305972367525101, 0.02811877802014351, 0.019540749490261078, -0.026025740429759026, 0.06358034908771515, 0.03007456846535206, 0.008397890254855156, -0.0030151770915836096, 0.050438810139894485, 0.006240515969693661, -0.038669753819704056, 0.015637746080756187, 0.09085848182439804, -0.04628704488277435, -0.013973608613014221, 0.05181129276752472, 0.005661499220877886, -0.020535800606012344, -0.05805610120296478, -0.002369680441915989, -0.024704722687602043, 0.029130985960364342, -0.08207458257675171, 0.021445071324706078, -0.012678327038884163, -0.011597494594752789 ]
729,233
tables.atom
fromarray
null
def fromarray(self, array): return array.tobytes()
(self, array)
[ -0.01824842393398285, -0.0008843133691698313, 0.0006362083368003368, -0.005504796747118235, -0.015567375347018242, -0.031238533556461334, -0.06123167648911476, 0.022918635979294777, 0.034317415207624435, -0.024458076804876328, 0.019095979630947113, -0.008246384561061859, 0.02464834414422512, 0.02840181067585945, -0.021154332906007767, -0.014944680035114288, -0.0020507853478193283, 0.009720960631966591, 0.029145585373044014, 0.10246792435646057, 0.0027588848024606705, 0.017106816172599792, 0.01625925861299038, 0.04414215683937073, -0.004601024091243744, 0.0010043119546025991, 0.01900949515402317, -0.017176004126667976, -0.0227629616856575, -0.004151300061494112, -0.015766290947794914, -0.04898533970117569, 0.04351946339011192, 0.05939818546175957, -0.006183707155287266, -0.03218987211585045, 0.010949053801596165, 0.044937822967767715, -0.030010439455509186, 0.006797753740102053, -0.004030220210552216, -0.06994940340518951, -0.02499428577721119, -0.011563099920749664, 0.03494010865688324, -0.020860282704234123, 0.008553408086299896, -0.012782544828951359, -0.09714042395353317, 0.04950425401329994, 0.038330335170030594, 0.011986878700554371, 0.04632158949971199, 0.039402756839990616, -0.017504649236798286, 0.08814593404531479, -0.005850738380104303, -0.01890571229159832, -0.013586859218776226, 0.0705375075340271, -0.029768280684947968, 0.013206323608756065, 0.06974183768033981, -0.08323356509208679, 0.0042291367426514626, 0.049815598875284195, -0.004404270090162754, 0.047947514802217484, 0.021396491676568985, 0.020375965163111687, 0.024354293942451477, 0.07071048021316528, -0.053032856434583664, 0.0007335044210776687, -0.03412714600563049, 0.047809138894081116, -0.006430190987884998, 0.024596452713012695, -0.05317123606801033, 0.029595309868454933, 0.04355405643582344, 0.031221235170960426, 0.04922749847173691, 0.06960346549749374, 0.01790248043835163, -0.05524688586592674, 0.008367463946342468, 0.054555002599954605, -0.04998857155442238, 0.006490730680525303, 0.025582386180758476, 0.016285203397274017, -0.06638620793819427, 0.10897162556648254, -0.025789951905608177, -0.0645873099565506, 0.032674189656972885, 0.05407068133354187, -0.05227178707718849, 0.006291814148426056, -0.02554779313504696, -0.02167324535548687, 0.03635846823453903, -0.01833490841090679, -0.03500929847359657, 0.008925295434892178, 0.023178091272711754, 0.018871117383241653, 0.025167256593704224, -0.00023621329455636442, 0.029232071712613106, 0.013785775750875473, 0.00045431870967149734, 0.005150206387042999, -0.004605348687618971, -0.019372733309864998, 0.06559053808450699, -0.008393409661948681, 0.02521914802491665, 0.004639942664653063, 0.04832804948091507, 0.04033679887652397, -0.0210159569978714, -0.016510065644979477, 0.015377107076346874, 0.0654175728559494, 0.05029992014169693, 0.0038356282748281956, 0.07244018465280533, -0.03666981682181358, -0.009651772677898407, 0.0005599930882453918, -0.04787832871079445, -0.021188927814364433, -0.011744719929993153, -0.04843183234333992, 0.02630886435508728, -0.04386540502309799, -0.007839903235435486, 0.024181323125958443, 0.039506539702415466, 0.022088374942541122, 0.1119467243552208, -0.004544808529317379, 0.04355405643582344, -0.02897261455655098, 0.029993142932653427, -0.018040858209133148, -0.02565157413482666, 0.0028410458471626043, -0.04158218950033188, 0.001269173459149897, 0.02466564066708088, -0.025703465566039085, 0.030477460473775864, -0.021258115768432617, 0.004257244523614645, -0.05452040582895279, -0.005431284196674824, -0.03324499353766441, 0.0067112683318555355, 0.028263434767723083, -0.037084948271512985, -0.015264675952494144, -0.04258541762828827, -0.01326686330139637, -0.029716389253735542, 0.009764203801751137, -0.0689115822315216, -0.014564144425094128, -0.014529550448060036, -0.05130314826965332, -0.052029628306627274, -0.00729936920106411, 0.03902221843600273, -0.017746808007359505, 0.021828919649124146, 0.01790248043835163, -0.018715444952249527, 0.024838611483573914, -0.02442348189651966, 0.04445350542664528, 0.0160430446267128, 0.03513037785887718, 0.05652686953544617, -0.010594463907182217, 0.02696615271270275, 0.03251851722598076, 0.05019613727927208, -0.03933356702327728, 0.0351649709045887, 0.032501220703125, -0.003502659499645233, -0.00923664215952158, 0.03812277317047119, -0.05144152790307999, -0.03528605028986931, 0.004270217381417751, -0.04995397850871086, 0.0617159940302372, -0.028384514153003693, -0.02464834414422512, 0.04068274050951004, -0.051026396453380585, -0.05296367034316063, 0.0213273037225008, 0.01734032668173313, 0.01089716237038374, 0.01615547575056553, -0.028834238648414612, 0.06901536136865616, 0.006663701497018337, -0.006624782923609018, -0.03905681520700455, 0.05241016298532486, -0.03308932110667229, 0.039852481335401535, -0.028938019648194313, -0.0030226653907448053, 0.04732482135295868, 0.0006556675652973354, 0.0643797442317009, -0.005353447515517473, -0.06638620793819427, -0.0068928878754377365, 0.01723654381930828, -0.03461146354675293, -0.01925165392458439, -0.024492669850587845, 0.019718674942851067, 0.05348258092999458, 0.0119436364620924, -0.016518713906407356, -0.0105079784989357, 0.020064616575837135, 0.04168597236275673, 0.01802356168627739, -0.05912142992019653, -0.04023301601409912, -0.011139322072267532, 0.015186838805675507, -0.0256342776119709, 0.019286248832941055, 0.0003408065822441131, 0.017210597172379494, -0.01459009014070034, 0.03464605659246445, 0.010689597576856613, -0.06157761812210083, -0.039748698472976685, 0.009478801861405373, -0.06351488828659058, 0.02421591617166996, -0.029699092730879784, 0.04957344010472298, -0.023731598630547523, 0.08544759452342987, -0.029681794345378876, -0.023178091272711754, 0.05005775764584541, -0.007333963178098202, -0.044384315609931946, -0.019770566374063492, -0.019424624741077423, -0.008808540180325508, 0.021067848429083824, -0.049262095242738724, 0.020064616575837135, 0.0351649709045887, 0.05673443526029587, 0.05005775764584541, 0.01878463290631771, -0.03739629313349724, 0.012384711764752865, 0.01680411584675312, -0.05282529443502426, -0.0011643099132925272, 0.019597595557570457, 0.03227635845541954, -0.004510214552283287, -0.03625468537211418, -0.03180933743715286, -0.009478801861405373, -0.001685384544543922, 0.013076595030725002, 0.0015448457561433315, -0.013794424012303352, -0.01723654381930828, -0.005855062510818243, 0.0048085893504321575, 0.010430141352117062, 0.014131717383861542, -0.06095492094755173, -0.03094448149204254, -0.04459188133478165, -0.006840996444225311, -0.023506736382842064, 0.015558726154267788, 0.041512999683618546, -0.019493812695145607, -0.022607287392020226, 0.03379850089550018, -0.01756518892943859, 0.02177702821791172, -0.04708266258239746, -0.012540385127067566, -0.06559053808450699, 0.033210400491952896, -0.0537247397005558, 0.016536012291908264, 0.002091865986585617, -0.01702897809445858, 0.01648412086069584, 0.025789951905608177, 0.020721906796097755, 0.04127084091305733, 0.055454447865486145, 0.045837271958589554, 0.01712411269545555, 0.0399908572435379, -0.001644304022192955, -0.02409483678638935, -0.023385656997561455, -0.0015232244040817022, -0.012030121870338917, -0.01244525145739317, 0.006642079912126064, -0.03372931107878685, -0.007891794666647911, 0.01833490841090679, 0.06693971157073975, 0.02265917882323265, 0.04414215683937073, 0.012203092686831951, 0.010862568393349648, 0.07005318999290466, -0.018386799842119217, -0.03049475885927677, -0.048708587884902954, -0.02454456128180027, -0.0016702496213838458, -0.023299170657992363, 0.0053620957769453526, 0.04611402377486229, -0.012177146971225739, -0.045041605830192566, -0.08800756186246872, -0.022382425144314766, -0.0018551121465861797, -0.032656893134117126, -0.003656171029433608, -0.046390779316425323, -0.022814853116869926, 0.08565516024827957, 0.0057945228181779385, -0.027121827006340027, 0.009063671343028545, 0.04601024091243744, 0.015515483915805817, 0.013093892484903336, 0.002432402456179261, 0.018300313502550125, 0.0023372683208435774, -0.04386540502309799, 0.009158805944025517, 0.019926240667700768, -0.06081654503941536, -0.02577265352010727, -0.021915404126048088, 0.027554253116250038, -0.021154332906007767, -0.016786819323897362, -0.022295940667390823, 0.006845320574939251, 0.0157922375947237, -0.05822198465466499, -0.08932214230298996, 0.039195191115140915, 0.006412893533706665, -0.0005297231837175786, -0.01657925359904766, 0.001500522019341588, 0.002202135045081377, 0.02310890331864357, 0.031117452308535576, 0.04324270784854889, -0.0074636912904679775, 0.0225553959608078, -0.017418162897229195, -0.029387744143605232, -0.004812913481146097, 0.007775038946419954, -0.039506539702415466, -0.03108285926282406, -0.016103584319353104, 0.035562802106142044, 0.02433699555695057, 0.033106617629528046, 0.03052935190498829, -0.02807316556572914, 0.01553278136998415, -0.060539793223142624, -0.021586760878562927, 0.016881953924894333, -0.02786560170352459, -0.015403052791953087, -0.009366370737552643, -0.012168497778475285, -0.0030529352370649576, -0.02983746863901615, 0.04874318093061447, 0.02765803597867489, 0.0011070133186876774, -0.0559733621776104, 0.024285105988383293, 0.02322998270392418, -0.07005318999290466, -0.0073080179281532764, 0.020721906796097755, -0.01911327801644802, 0.004769670777022839, 0.06202734261751175, -0.03142879903316498, -0.024682937189936638, 0.03284716233611107, -0.005422635469585657, 0.018750037997961044, 0.030719619244337082, 0.03791520744562149, 0.074239082634449, 0.05216800421476364, -0.026602914556860924, 0.001980516128242016, -0.07202505320310593, -0.03902221843600273, 0.015005219727754593, -0.024959690868854523, -0.031134750694036484, 0.012064715847373009, 0.0736163854598999, 0.019839754328131676, 0.005409662611782551, 0.06555594503879547, -0.010983647778630257, -0.010378249920904636, -0.06278841197490692, -0.06759700179100037, -0.01471116952598095, -0.00441940501332283, -0.04050976783037186, 0.018317611888051033, -0.050161540508270264, 0.06994940340518951, -0.07589960098266602, 0.014313336461782455, 0.009253939613699913, 0.06379164010286331, -0.02265917882323265, 0.003712386591359973, -0.03225906193256378, -0.03857249766588211, -0.020877579227089882, 0.003989140037447214, -0.08309518545866013, 0.023039715364575386, -0.0533096119761467, -0.0672510638833046, 0.02366241067647934, 0.04213569685816765, -0.020064616575837135, 0.0019934887532144785, -0.03040827251970768, 0.041512999683618546, -0.003321039956063032, 0.05175287276506424, 0.04137462377548218, -0.013595507480204105, 0.016112232580780983, -0.0723709985613823, -0.04345027357339859, -0.07472340017557144, -0.08178061246871948, -0.0451107919216156, 0.0012637681793421507, -0.012082012370228767, 0.01426144503057003, 0.00934907328337431, -0.008782594464719296, 0.027052639052271843, -0.0005337771726772189, -0.06680133938789368, 0.0957566574215889, -0.06303057074546814, 0.003329688450321555, 0.06410299241542816, 0.05901764705777168, 0.02267647720873356, 0.004175083711743355, -0.04690968990325928, 0.005288583226501942, -0.03490551561117172, 0.019493812695145607, -0.025703465566039085, -0.06531378626823425, -0.01161499135196209, -0.04642537236213684, 0.011364183388650417, -0.0281942468136549, -0.010343655943870544, 0.02786560170352459, -0.058429546654224396, 0.045595113188028336, -0.08648541569709778, -0.0294223390519619, 0.0070528858341276646, 0.01869814656674862, -0.02698344923555851, -0.03402336314320564, -0.03601252660155296, 0.039091408252716064, -0.022244049236178398, 0.09444207698106766, -0.044280532747507095, -0.0026140217669308186, -0.009132860228419304, -0.04742860421538353, -0.06538297235965729, -0.029906656593084335, -0.0227629616856575, 0.033106617629528046, 0.017833292484283447, -0.007658283691853285, 0.05960575118660927, 0.01892300881445408, 0.011874447576701641, -0.0006010736688040197, 0.03594334051012993, 0.009816095232963562, -0.005772901698946953, 0.02719101496040821, -0.01055122073739767, 0.026378052309155464, 0.01978786289691925, -0.045941054821014404, -0.00084647600306198, 0.04389999806880951, -0.0397832915186882, 0.01681276597082615, 0.008415031246840954, 0.01691654697060585, -0.02696615271270275, 0.012946867384016514, 0.04576808214187622, 0.03020070679485798, 0.02862667292356491, -0.08108872920274734, -0.017176004126667976, 0.017383567988872528, -0.013854963704943657, 0.013353348709642887, -0.022088374942541122, -0.032777972519397736, -0.0656251311302185, 0.025945624336600304, -0.04026760905981064, 0.10315980762243271, -0.0028237488586455584, 0.06635161489248276, 0.0012626871466636658, -0.016553308814764023, 0.04324270784854889, -0.012834436260163784, -0.06282300502061844, 0.023939164355397224, 0.06707809120416641, 0.025288335978984833, -0.0508534237742424, -0.002938342047855258, 0.0031199613586068153, -0.05254853889346123, 0.011078782379627228, 0.012946867384016514, -0.06382624059915543, -0.035874150693416595, 0.03767304867506027, 0.003919951617717743, 0.03438660129904747, 0.007926388643682003, -0.011649585328996181, -0.052929073572158813, 0.013076595030725002, -0.05206422135233879, 0.015325215645134449, 0.07216343283653259, 0.001581602031365037, 0.006343705113977194, -0.04134003072977066, 0.0016237637028098106, -0.003457254497334361, -0.047255631536245346, 0.05216800421476364, 0.026447240263223648, -0.002449699444696307, 0.01890571229159832, 0.08849187940359116, 0.04009464010596275, -0.06877320259809494, -0.011424724012613297, 0.012125255540013313, 0.06181977689266205, 0.0000622627412667498, -0.012341468594968319, 0.007480988744646311, -0.06884238868951797, 0.030339084565639496, 0.0371195413172245, -0.03680819272994995, -0.052686914801597595, -0.05088802054524422, 0.045525923371315, 0.023420250043272972, 0.04753238707780838, -0.032656893134117126, 0.04057895764708519, -0.04929668828845024, -0.008570704609155655, 0.01923435740172863, 0.03217257559299469, 0.03487091884016991, -0.05109558627009392, 0.04746319726109505, -0.015351161360740662, 0.04320811480283737, -0.02253809943795204, -0.036427658051252365, -0.05825657770037651, -0.04466107115149498, 0.044522691518068314, 0.03040827251970768, 0.023835381492972374, 0.027796413749456406, -0.007212883792817593, -0.047255631536245346, -0.05237556993961334, 0.009755554609000683, -0.05690740421414375, -0.011770665645599365, -0.04324270784854889, -0.05514310300350189, -0.015109002590179443, -0.047705356031656265, 0.015074408613145351, -0.03570118173956871, 0.04237785562872887, -0.018525175750255585, 0.014763060957193375, 0.04843183234333992, 0.03139420598745346, -0.022918635979294777, 0.019545704126358032, -0.02720831148326397, 0.04002545028924942, -0.0032669866923242807, -0.04753238707780838, 0.023610519245266914, 0.03149798884987831, 0.02089487761259079, 0.07451583445072174, 0.0119436364620924, -0.025616981089115143, -0.020860282704234123, 0.06783916056156158, -0.020981362089514732, -0.04787832871079445, 0.08088116347789764, -0.004084273707121611, 0.007506933994591236, -0.02099865861237049, 0.03487091884016991, -0.011467966251075268, -0.01243660319596529, 0.04158218950033188, 0.00566911930218339, 0.01553278136998415, 0.002009704941883683, -0.024682937189936638, -0.0074680158868432045, 0.06271922588348389, -0.013733884319663048, -0.036531440913677216, 0.013033352792263031, 0.024717532098293304, -0.002763209166005254, -0.008034495636820793, -0.0031869877129793167, 0.06974183768033981, -0.004882101900875568, -0.03391958028078079, -0.05275610461831093, 0.004110219422727823, 0.005431284196674824, -0.05673443526029587, -0.009625826962292194, 0.04400378093123436, 0.04033679887652397, -0.028055869042873383, 0.012843084521591663, -0.03867627680301666, -0.03801899030804634, 0.0031005023047327995, -0.03174014762043953, 0.013664696365594864, -0.014546846970915794, -0.01781599596142769, -0.02222675271332264, 0.023593220859766006, -0.0789438858628273, 0.02731209434568882, -0.00934907328337431, 0.03594334051012993, -0.03836493194103241, 0.0007978279609233141, 0.026239676401019096, 0.08613947778940201, -0.026481835171580315, 0.029820172116160393, -0.0031026643700897694, 0.008220438845455647, -0.04645996540784836, 0.02577265352010727, 0.00957393553107977, -0.03992166742682457, 0.006209652870893478, -0.01747005432844162, -0.03293364867568016, 0.009522044099867344, -0.04912371560931206, -0.0002214837440988049, 0.03154987841844559, 0.0011675531277433038, -0.022607287392020226, 0.004782643634825945, -0.022745665162801743, 0.016388986259698868, -0.012384711764752865, -0.02509806863963604, 0.08025846630334854, -0.016086287796497345, -0.006443163380026817, 0.02310890331864357, -0.012618222273886204, 0.04521457478404045, -0.037327107042074203, 0.05427824705839157, 0.047705356031656265, -0.009582583792507648, -0.03867627680301666, 0.023714302107691765, -0.018594365566968918, -0.03549361601471901, -0.027000747621059418, 0.019390029832720757, 0.0019610568415373564, -0.0013524156529456377, 0.01580953411757946, 0.00956528726965189, 0.026568319648504257, -0.04701347276568413 ]
729,235
tables.atom
VLUnicodeAtom
Defines an atom of type vlunicode. This class describes a *row* of the VLArray class, rather than an atom. It is very similar to VLStringAtom (see :ref:`VLStringAtom`), but it stores Unicode strings (using 32-bit characters a la UCS-4, so all strings of the same length also take up the same space). This class does not make assumptions on the encoding of plain input strings. Plain strings are supported as long as no character is out of the ASCII set; otherwise, you will need to *explicitly* convert them to Unicode before you can save them. Variable-length Unicode atoms do not accept parameters and they cause the reads of rows to always return Python Unicode strings. You can regard vlunicode atoms as an easy way to save variable length Unicode strings.
class VLUnicodeAtom(_BufferedAtom): """Defines an atom of type vlunicode. This class describes a *row* of the VLArray class, rather than an atom. It is very similar to VLStringAtom (see :ref:`VLStringAtom`), but it stores Unicode strings (using 32-bit characters a la UCS-4, so all strings of the same length also take up the same space). This class does not make assumptions on the encoding of plain input strings. Plain strings are supported as long as no character is out of the ASCII set; otherwise, you will need to *explicitly* convert them to Unicode before you can save them. Variable-length Unicode atoms do not accept parameters and they cause the reads of rows to always return Python Unicode strings. You can regard vlunicode atoms as an easy way to save variable length Unicode strings. """ kind = 'vlunicode' type = 'vlunicode' base = UInt32Atom() # numpy.unicode_ no more implements the buffer interface in Python 3 # # When the Python build is UCS-2, we need to promote the # Unicode string to UCS-4. We *must* use a 0-d array since # NumPy scalars inherit the UCS-2 encoding from Python (see # NumPy ticket #525). Since ``_tobuffer()`` can't return an # array, we must override ``toarray()`` itself. def toarray(self, object_): if isinstance(object_, bytes): warnings.warn("Storing bytestrings in VLUnicodeAtom is " "deprecated.", DeprecationWarning) elif not isinstance(object_, str): raise TypeError(f"object is not a string: {object_!r}") ustr = str(object_) uarr = np.array(ustr, dtype='U') return np.ndarray( buffer=uarr, dtype=self.base.dtype, shape=len(ustr)) def _tobuffer(self, object_): # This works (and is used) only with UCS-4 builds of Python, # where the width of the internal representation of a # character matches that of the base atoms. if isinstance(object_, bytes): warnings.warn("Storing bytestrings in VLUnicodeAtom is " "deprecated.", DeprecationWarning) elif not isinstance(object_, str): raise TypeError(f"object is not a string: {object_!r}") return np.str_(object_) def fromarray(self, array): length = len(array) if length == 0: return '' # ``array.view('U0')`` raises a `TypeError` return array.view('U%d' % length).item()
()
[ 0.02469494938850403, -0.014117917977273464, -0.02907542884349823, 0.05899044871330261, 0.023362552747130394, -0.02365458570420742, -0.03453277423977852, 0.020058942958712578, 0.06475807726383209, -0.03832918778061867, 0.02055174671113491, 0.0004805407952517271, 0.004485427867621183, 0.029184939339756966, -0.051178593188524246, 0.04847729951143265, 0.0035979244858026505, 0.019876422360539436, -0.005881705321371555, 0.10483945906162262, -0.02159211039543152, 0.0006947165820747614, 0.05307679995894432, 0.08133088797330856, 0.02409263327717781, 0.0032511365134269, 0.018297625705599785, -0.02606384828686714, -0.03108314797282219, -0.036576997488737106, -0.017932584509253502, 0.006661978084594011, 0.025297265499830246, 0.01998593471944332, 0.01372550055384636, -0.05986654385924339, 0.028655631467700005, 0.019255854189395905, 0.0026374133303761482, -0.0087883360683918, -0.0031188095454126596, -0.06687530875205994, 0.05815085768699646, -0.05512102320790291, 0.011781662702560425, -0.03188623487949371, -0.011316237039864063, 0.005763067398220301, -0.06651026755571365, 0.024804461747407913, 0.024457672610878944, 0.012292718514800072, -0.0010146968998014927, -0.03197749704122543, -0.06632775068283081, 0.07826455682516098, -0.004312033765017986, 0.07034318894147873, -0.05972052738070488, -0.012274466454982758, -0.04110349342226982, 0.013314830139279366, 0.07070823013782501, -0.018744798377156258, -0.0233077984303236, -0.012292718514800072, 0.03719756752252579, -0.013278326019644737, 0.024238649755716324, 0.023672837764024734, -0.031849730759859085, 0.030353067442774773, -0.023983120918273926, -0.016317283734679222, 0.04595852270722389, 0.06238532066345215, -0.04672510549426079, 0.027615267783403397, -0.0014670040691271424, 0.03352891653776169, 0.08512730151414871, 0.047199659049510956, 0.053405337035655975, 0.016846591606736183, 0.024713201448321342, -0.02986026369035244, -0.05063103511929512, 0.041687555611133575, 0.010202865116298199, 0.022011905908584595, 0.004709014669060707, -0.0058999573811888695, 0.00208186823874712, 0.07173033803701401, -0.035956431180238724, -0.017786569893360138, 0.035609643906354904, -0.027743032202124596, -0.0669483169913292, -0.006520525086671114, -0.009801321662962437, 0.02544328197836876, 0.031101400032639503, -0.046141043305397034, -0.0661817342042923, 0.04577600210905075, -0.01409966591745615, 0.013123184442520142, -0.0005988935590721667, 0.007907676510512829, -0.025863077491521835, 0.04289218783378601, -0.002676198724657297, 0.004845904652029276, -0.028600875288248062, 0.0008344583911821246, -0.03763561323285103, 0.0093997772783041, 0.02243170142173767, -0.006401887163519859, 0.01783219911158085, 0.03467879071831703, -0.014984888024628162, -0.013287452049553394, -0.00409757299348712, -0.020387478172779083, 0.05278477072715759, 0.04289218783378601, 0.03265281766653061, 0.016326408833265305, -0.024202145636081696, 0.015988748520612717, -0.0166093148291111, -0.053697369992733, 0.06483108550310135, -0.020789021626114845, 0.01980341412127018, -0.041468530893325806, -0.032470300793647766, 0.04351275786757469, 0.03484305739402771, 0.041213005781173706, 0.048075754195451736, 0.005489287432283163, -0.0512516014277935, 0.01967565156519413, 0.07315399497747421, -0.01648155227303505, -0.0008367398986592889, -0.01455596648156643, -0.07512520998716354, -0.028016813099384308, -0.007204975001513958, 0.08979981392621994, 0.032506804913282394, 0.004241307266056538, 0.004583532456308603, -0.06968611478805542, 0.045228444039821625, 0.026684416458010674, -0.031502943485975266, -0.010750425048172474, -0.08658746629953384, 0.009144249372184277, -0.029476972296833992, 0.01949313096702099, 0.019748657941818237, -0.04865982010960579, -0.06421051919460297, 0.01718425378203392, 0.018379759043455124, -0.030626848340034485, -0.027158968150615692, 0.04825827479362488, 0.04384129121899605, 0.032415542751550674, -0.03909577429294586, 0.031010139733552933, 0.028801647946238518, -0.001202350133098662, 0.019602643325924873, 0.01805122382938862, -0.018963823094964027, -0.03414948284626007, 0.027304984629154205, 0.0031690027099102736, 0.0281993318349123, 0.014902753755450249, 0.04471738636493683, 0.00038044003304094076, 0.0093358950689435, -0.014857123605906963, 0.009180753491818905, 0.02829059213399887, 0.017211630940437317, 0.006999640259891748, 0.006693919189274311, 0.0166093148291111, -0.09403427690267563, -0.04657909274101257, 0.001513774855993688, 0.026118604466319084, 0.039059270173311234, -0.023636333644390106, -0.013561232015490532, -0.048513803631067276, -0.00426184106618166, -0.03396696224808693, -0.0007694356609135866, -0.02396486885845661, 0.04267316311597824, -0.000967926112934947, 0.007738845888525248, 0.021190566942095757, -0.007419435773044825, -0.06924807280302048, -0.04402381181716919, 0.039716340601444244, 0.026994701474905014, 0.006301501300185919, 0.06581669300794601, -0.008601252920925617, -0.02838185243308544, 0.014939257875084877, -0.041505035012960434, -0.0021754095796495676, -0.009518415667116642, 0.03508033603429794, 0.03477004915475845, 0.07465066015720367, 0.021446093916893005, -0.020095447078347206, 0.015441187657415867, -0.005420842673629522, 0.008350287564098835, 0.019182845950126648, 0.026739172637462616, 0.036138951778411865, -0.0010529119754210114, 0.03042607568204403, -0.03632146865129471, -0.014957509934902191, 0.016116511076688766, 0.03424074128270149, 0.014765864238142967, -0.024074381217360497, 0.040409915149211884, 0.0737745612859726, -0.037015046924352646, -0.024457672610878944, -0.03133867681026459, -0.0004023994551971555, -0.015751471742987633, 0.0035340425092726946, 0.043877795338630676, -0.03738008439540863, 0.013880642130970955, 0.014181800186634064, 0.007159344851970673, 0.00017909769667312503, -0.011553512886166573, 0.023380804806947708, 0.05417191982269287, 0.054317936301231384, -0.006474895402789116, -0.006114418152719736, -0.005338708404451609, 0.021665118634700775, -0.021665118634700775, 0.054317936301231384, -0.019201098009943962, 0.03508033603429794, -0.03340115025639534, 0.016673197969794273, -0.03728882595896721, 0.017731813713908195, 0.004307470750063658, -0.008738142438232899, 0.03152119368314743, -0.0003080024034716189, -0.06019508093595505, -0.020223209634423256, -0.0004160884418524802, -0.020314469933509827, 0.04924388229846954, -0.04486340284347534, -0.00981957372277975, -0.08074682950973511, -0.06088865548372269, -0.029440468177199364, 0.019255854189395905, -0.03389395400881767, -0.030809367075562477, 0.006050536409020424, 0.02679392881691456, 0.019876422360539436, -0.036704763770103455, 0.034642286598682404, 0.06304238736629486, -0.05110558494925499, -0.05325932055711746, 0.0196391474455595, 0.05439094454050064, 0.02164686657488346, -0.023399056866765022, -0.044133324176073074, -0.0686274990439415, -0.004236744251102209, -0.006839935202151537, 0.02221267856657505, -0.014063161797821522, -0.024238649755716324, -0.02089853398501873, 0.032251276075839996, -0.021738126873970032, 0.09972889721393585, 0.021190566942095757, -0.004366789944469929, 0.028454860672354698, -0.01800559274852276, 0.03159420192241669, -0.07505220174789429, -0.03477004915475845, -0.05723825469613075, -0.01923760212957859, -0.01558720413595438, 0.02164686657488346, -0.003643554402515292, 0.011480504646897316, 0.024731453508138657, 0.05147062614560127, 0.00830465741455555, -0.03411297872662544, 0.03290834650397301, 0.0048002745024859905, -0.015413809567689896, -0.01483887154608965, -0.026720920577645302, 0.01090556662529707, -0.01910983957350254, 0.003219195641577244, 0.02679392881691456, -0.0590999610722065, 0.01272164098918438, 0.02299751341342926, -0.009609675034880638, -0.019219350069761276, -0.00553035456687212, 0.028692135587334633, 0.01032150350511074, 0.02728673256933689, -0.0306451003998518, -0.0703066885471344, -0.038110166788101196, -0.03453277423977852, -0.0590999610722065, 0.0034450639504939318, -0.018854310736060143, 0.03380269557237625, 0.004407856613397598, -0.018197238445281982, -0.02277849055826664, 0.03732533007860184, -0.057128746062517166, -0.036175455898046494, -0.05190867558121681, -0.0044557685032486916, -0.01460159569978714, -0.010029471479356289, 0.011544386856257915, -0.007747971918433905, 0.03380269557237625, 0.011444000527262688, -0.034204237163066864, 0.005671807564795017, 0.01639029197394848, -0.040774956345558167, -0.000699279538821429, -0.10199214518070221, -0.1046934425830841, 0.022139670327305794, -0.004512805957347155, -0.009372399188578129, 0.0013791663805022836, 0.04084796458482742, 0.02080727368593216, -0.0167370792478323, 0.07359204441308975, -0.02745100110769272, 0.057420775294303894, 0.006082477513700724, 0.027250228449702263, 0.046980634331703186, -0.0032625440508127213, -0.024676697328686714, 0.03832918778061867, -0.025698808953166008, 0.017102118581533432, 0.0334741584956646, 0.024202145636081696, -0.02509649284183979, -0.00999296735972166, -0.06526913493871689, 0.05172615498304367, -0.03703329712152481, 0.05285777896642685, 0.010777803137898445, 0.013707248494029045, -0.08001674711704254, 0.031502943485975266, 0.011945930309593678, 0.010193739086389542, 0.04245414212346077, -0.08578437566757202, 0.0033743376843631268, -0.017430655658245087, -0.054536961019039154, -0.05928248167037964, 0.03685077652335167, 0.03183148056268692, -0.0683719739317894, 0.011599143035709858, 0.0016791835660114884, 0.03152119368314743, 0.004136358387768269, 0.022066662088036537, 0.010111604817211628, 0.0038352005649358034, 0.01870829425752163, 0.023545073345303535, 0.026921693235635757, -0.004941727500408888, 0.010604409500956535, -0.09388826042413712, -0.05972052738070488, 0.0013460846384987235, -0.023837106302380562, -0.023618081584572792, 0.000544422771781683, 0.04446186125278473, 0.0290389247238636, 0.05680020898580551, 0.023289546370506287, 0.03825618326663971, 0.01754016801714897, 0.010038597509264946, -0.04971843585371971, 0.027560511603951454, -0.048294778913259506, -0.030718106776475906, -0.010832559317350388, 0.05285777896642685, -0.01516740769147873, -0.04285568371415138, 0.011471378616988659, -0.0366317555308342, 0.025917833670973778, -0.05001046508550644, -0.02829059213399887, -0.0029750752728432417, -0.013542979955673218, 0.01840713620185852, 0.019620895385742188, -0.0224682055413723, -0.026428889483213425, -0.0010141264647245407, 0.04427934065461159, -0.02829059213399887, -0.041724059730768204, -0.03891325369477272, -0.027524009346961975, -0.009783069603145123, 0.06147271767258644, -0.018334129825234413, 0.012849404476583004, 0.0009143108618445694, -0.04110349342226982, -0.014857123605906963, -0.05464647337794304, -0.05658118426799774, -0.05307679995894432, -0.028801647946238518, 0.022705482318997383, -0.015213037841022015, -0.005480161402374506, 0.040811460465192795, 0.09505639225244522, 0.00802631489932537, 0.025279013440012932, 0.005589673295617104, -0.03851170837879181, 0.0920630618929863, -0.07403009384870529, 0.05063103511929512, 0.05037550628185272, 0.055194031447172165, 0.009390651248395443, 0.011316237039864063, -0.003196380566805601, -0.010339755564928055, 0.012584750540554523, -0.037015046924352646, -0.0368872806429863, -0.07457765191793442, 0.02513299696147442, -0.00990170706063509, 0.05793183296918869, 0.009043863974511623, -0.005813260562717915, -0.06519612669944763, -0.0959324836730957, -0.016271652653813362, -0.018690042197704315, -0.08089283853769302, 0.0123292226344347, 0.029221443459391594, -0.030937131494283676, -0.05092306435108185, -0.022961009293794632, 0.009627927094697952, -0.04639657214283943, -0.005493850447237492, -0.02829059213399887, -0.06818945705890656, -0.01259387657046318, -0.010065975598990917, -0.03256155923008919, -0.02662966027855873, -0.023198286071419716, 0.029257947579026222, -0.02619161270558834, -0.03873073309659958, -0.009892581030726433, -0.02067951112985611, 0.04993745684623718, 0.049864448606967926, 0.027213724330067635, 0.05077705159783363, 0.047418683767318726, 0.06793392449617386, -0.030590344220399857, 0.02321653813123703, 0.02579006925225258, -0.05512102320790291, 0.015240415930747986, 0.018607908859848976, -0.02942221611738205, -0.01809685304760933, 0.024457672610878944, -0.004341693129390478, -0.03601118549704552, -0.015988748520612717, -0.001553701120428741, 0.07052570581436157, -0.057639800012111664, -0.046798113733530045, -0.02911193296313286, -0.02693994529545307, 0.03542712330818176, 0.024256901815533638, 0.014482958242297173, 0.04424283653497696, -0.03997186943888664, 0.003397152526304126, -0.0580778494477272, 0.06406450271606445, -0.04062893986701965, 0.023618081584572792, 0.026556652039289474, 0.03898626193404198, 0.038146670907735825, -0.013935398310422897, -0.030152296647429466, -0.013022798113524914, -0.011179346591234207, -0.009527541697025299, -0.009837825782597065, -0.014200052246451378, 0.04354926198720932, -0.024950476363301277, -0.014829745516180992, 0.025589296594262123, -0.001439626095816493, -0.03997186943888664, 0.060012560337781906, 0.01674620620906353, 0.04183357208967209, 0.08038178831338882, -0.01967565156519413, -0.043001700192689896, 0.013889768160879612, 0.01073217298835516, 0.04106698930263519, 0.01425480842590332, 0.027049455791711807, -0.010677416808903217, -0.02710421197116375, 0.029349207878112793, 0.045629989355802536, -0.04621405154466629, 0.0038580154068768024, -0.03287184238433838, -0.08023577183485031, -0.0011749721597880125, 0.04760120436549187, -0.012977168895304203, -0.023399056866765022, -0.00432800455018878, 0.016362912952899933, 0.049207378178834915, -0.008824839256703854, -0.025260761380195618, 0.00915793888270855, -0.026209864765405655, 0.0031849730294197798, 0.006625473964959383, -0.03365667909383774, -0.025863077491521835, 0.014464706182479858, 0.03436850756406784, -0.005516665522009134, 0.012447861023247242, -0.030316563323140144, -0.050339002162218094, -0.05866191163659096, -0.00963705312460661, -0.014263934455811977, 0.06724034994840622, 0.026958197355270386, -0.050521522760391235, -0.0026054722256958485, 0.01416354812681675, 0.04205259680747986, 0.005169877782464027, -0.031137904152274132, -0.018607908859848976, -0.08184194564819336, -0.0224682055413723, 0.043914299458265305, 0.05723825469613075, 0.031119652092456818, -0.032725825905799866, 0.025279013440012932, 0.02986026369035244, -0.021719874814152718, 0.020496990531682968, 0.017978215590119362, -0.013962776400148869, -0.01342434249818325, 0.021738126873970032, -0.001593627268448472, 0.027834292501211166, 0.034204237163066864, -0.008505430072546005, -0.02308877371251583, 0.08366714417934418, -0.04227162152528763, -0.008240776136517525, 0.02237694524228573, 0.02418389357626438, -0.02653839997947216, -0.008934351615607738, -0.021500850096344948, -0.05019298568367958, 0.035481877624988556, -0.015943117439746857, 0.039278294891119, 0.04307470843195915, 0.04165105149149895, -0.022888001054525375, -0.014875375665724277, 0.01998593471944332, 0.016381165012717247, -0.038146670907735825, 0.033382900059223175, -0.0224682055413723, 0.022486457601189613, 0.033072613179683685, 0.03268932178616524, -0.00015015117242000997, 0.002854155609384179, 0.02622811682522297, -0.007273420225828886, -0.03142993524670601, -0.021354833617806435, 0.014309563674032688, -0.02513299696147442, 0.050339002162218094, 0.048331283032894135, -0.07191286236047745, 0.005849764216691256, 0.07826455682516098, 0.020716015249490738, 0.007930492050945759, -0.024147389456629753, 0.012712514959275723, 0.031010139733552933, -0.027524009346961975, -0.031758472323417664, -0.0019894675351679325, 0.06326141208410263, -0.061582230031490326, -0.04935339465737343, 0.008934351615607738, -0.002406981773674488, 0.05555907264351845, -0.02509649284183979, -0.0246584452688694, 0.0007580281817354262, 0.04070194810628891, 0.0196391474455595, 0.05972052738070488, 0.013679870404303074, -0.07746146619319916, 0.0010797196300700307, 0.011708654463291168, -0.004439797718077898, 0.041432030498981476, 0.002822214737534523, 0.044133324176073074, 0.005525791551917791, 0.00346559751778841, 0.058698415756225586, 0.08023577183485031, -0.040373414754867554, 0.03380269557237625, -0.08746355772018433, 0.01622602343559265, -0.019219350069761276, 0.01326919998973608, -0.030462579801678658, 0.04785672947764397, -0.03117440827190876, 0.025607548654079437, -0.031101400032639503, 0.010412762872874737, -0.03745309263467789, -0.05037550628185272, 0.008824839256703854, 0.06570718437433243, -0.055376552045345306, -0.025498036295175552, -0.04836778715252876, 0.02872863970696926, -0.027085959911346436, 0.024804461747407913, 0.043220724910497665, 0.05482899397611618, 0.009746565483510494, 0.025771817192435265, 0.0471266508102417, -0.024293405935168266, -0.09009184688329697, 0.018671790137887, 0.05687321722507477, -0.01932886242866516, 0.02212141826748848, -0.003324144519865513, -0.024366414174437523, -0.017759190872311592, -0.07238741219043732, -0.008870469406247139, -0.056033626198768616, 0.05570508912205696, -0.04267316311597824, -0.00870163831859827, -0.00859212689101696, 0.033163875341415405 ]
729,237
tables.atom
_tobuffer
null
def _tobuffer(self, object_): # This works (and is used) only with UCS-4 builds of Python, # where the width of the internal representation of a # character matches that of the base atoms. if isinstance(object_, bytes): warnings.warn("Storing bytestrings in VLUnicodeAtom is " "deprecated.", DeprecationWarning) elif not isinstance(object_, str): raise TypeError(f"object is not a string: {object_!r}") return np.str_(object_)
(self, object_)
[ 0.006450098939239979, -0.013587034307420254, -0.05061456561088562, -0.014423565939068794, 0.02729734778404236, -0.08939441293478012, -0.00896849948912859, 0.07104355096817017, 0.01658974215388298, -0.044239312410354614, 0.0326511487364769, -0.024937447160482407, -0.01953081227838993, 0.045472096651792526, -0.04131585732102394, 0.030326472595334053, -0.036208610981702805, -0.04853644594550133, 0.03990695998072624, 0.08087059110403061, -0.03317948430776596, 0.010804465971887112, 0.04628221318125725, 0.08206815272569656, -0.028706243261694908, 0.005450664088129997, 0.012186944484710693, 0.010610743425786495, -0.028019405901432037, -0.005956985522061586, -0.02053464949131012, -0.0737556740641594, 0.053502801805734634, 0.03330276533961296, -0.03363737463951111, -0.020781205967068672, 0.05762381851673126, 0.06403429061174393, 0.005217315629124641, -0.05677848309278488, -0.045366428792476654, -0.0026680955197662115, -0.011200717650353909, -0.01454684417694807, 0.01025851909071207, -0.05607403442263603, -0.017399856820702553, 0.04032962769269943, -0.01173785887658596, 0.0306610856205225, 0.01813952811062336, -0.004129824694246054, -0.00907856971025467, -0.014053731225430965, -0.059983719140291214, 0.029199356213212013, 0.013305255211889744, 0.05864526703953743, -0.041280634701251984, 0.025113560259342194, -0.039695627987384796, 0.05649670213460922, 0.035768330097198486, -0.06727474927902222, 0.007216185797005892, -0.03562743961811066, -0.004387388005852699, 0.005173287820070982, 0.02148565463721752, 0.032844871282577515, -0.030396917834877968, 0.022471880540251732, -0.03560983017086983, 0.008902457542717457, -0.06625330448150635, -0.0193899217993021, 0.0021760829258710146, 0.012600807473063469, -0.023123495280742645, 0.016721826046705246, 0.06146305799484253, 0.04205552488565445, 0.015013541094958782, 0.009237069636583328, 0.0399421826004982, -0.04346442222595215, -0.07262855768203735, 0.05160079151391983, -0.03351409733295441, -0.0011403246317058802, 0.036772169172763824, -0.04145674407482147, -0.031858645379543304, 0.08650617301464081, -0.03966040536761284, -0.022013990208506584, 0.038004953414201736, 0.0044864509254693985, -0.02699795737862587, 0.003106174059212208, -0.03698350116610527, -0.002064912347123027, -0.0038128229789435863, 0.012169333174824715, -0.06410473585128784, 0.019072920083999634, 0.04783199727535248, -0.006001013796776533, 0.023704664781689644, 0.028723854571580887, -0.03545133024454117, 0.060159832239151, -0.009818239137530327, -0.033144261687994, -0.016360796988010406, -0.005195301491767168, -0.054207246750593185, 0.00037836545379832387, 0.019601255655288696, -0.01194038800895214, 0.02712123468518257, 0.031048530712723732, 0.0064412932842969894, 0.017523135989904404, 0.005058814771473408, 0.04681054875254631, 0.024972669780254364, 0.019196199253201485, 0.02993902564048767, -0.03166492283344269, -0.03937862440943718, 0.029604412615299225, -0.047021880745887756, 0.007282227743417025, 0.028213128447532654, 0.0279665719717741, -0.01588529534637928, -0.03205236792564392, -0.009650933556258678, 0.04966356232762337, 0.04578910022974014, 0.002469969680532813, 0.08087059110403061, -0.036349501460790634, -0.024673279374837875, 0.03217564895749092, 0.08523816615343094, -0.0368778370320797, -0.05163601413369179, -0.033954378217458725, -0.029322633519768715, -0.0007049980340525508, -0.0136310625821352, 0.05385502427816391, -0.007731313351541758, 0.018773529678583145, 0.010364186018705368, -0.05047367513179779, 0.06840186566114426, 0.007180963642895222, -0.013939258642494678, 0.041985079646110535, -0.06375251710414886, 0.025342505425214767, 0.01912575401365757, 0.025254448875784874, 0.01596454530954361, -0.03138314560055733, -0.042231637984514236, -0.05751815065741539, -0.0040285601280629635, -0.015189653262495995, -0.02543056011199951, 0.060512054711580276, 0.04131585732102394, 0.06512618809938431, -0.04938178136944771, 0.05963149666786194, 0.006899184547364712, -0.022753659635782242, 0.033690210431814194, -0.0026262688916176558, 0.00047935463953763247, 0.045507319271564484, 0.0027803669217973948, -0.016695410013198853, 0.035645052790641785, 0.011913971044123173, 0.015216069296002388, -0.02500789240002632, 0.020710760727524757, 0.04846600070595741, -0.004325748886913061, -0.011200717650353909, -0.0016235316870734096, -0.03603249788284302, 0.023792719468474388, -0.02490222454071045, -0.12010832875967026, 0.03400721028447151, -0.005983402486890554, -0.006648224778473377, 0.01364867389202118, -0.018650252372026443, 0.00752438185736537, -0.04811377450823784, -0.007189768832176924, 0.005899749230593443, -0.030396917834877968, 0.0008090141345746815, 0.01025851909071207, -0.003139195032417774, -0.018773529678583145, 0.009888684377074242, 0.011931582354009151, -0.02120387554168701, -0.0413510799407959, 0.009104985743761063, 0.03118942119181156, 0.022736048325896263, 0.03162970021367073, -0.006863961927592754, -0.03383110091090202, 0.0004724752507172525, -0.022859327495098114, 0.0019944675732403994, -0.010936549864709377, -0.0063136122189462185, 0.028864743188023567, 0.01618468575179577, 0.008308080025017262, -0.020059147849678993, -0.03166492283344269, 0.004171650856733322, -0.003878864925354719, 0.021309541538357735, 0.02909368835389614, -0.024955058470368385, -0.07121966034173965, -0.011015800759196281, -0.013049893081188202, -0.022471880540251732, 0.02137998677790165, 0.03356693312525749, 0.03189386799931526, -0.004829869139939547, 0.02416255511343479, 0.035204771906137466, -0.06741563975811005, -0.02969246916472912, 0.0006075861165300012, 0.010769243352115154, -0.019301867112517357, -0.04064663127064705, -0.009210653603076935, -0.061110835522413254, -0.0026306717190891504, -0.028741465881466866, -0.036349501460790634, 0.02712123468518257, -0.00914901401847601, 0.013815980404615402, -0.006529349368065596, 0.03684261441230774, 0.04931133612990379, -0.008629484102129936, -0.08566083759069443, 0.03233414888381958, -0.003247063374146819, 0.02798418328166008, 0.014062536880373955, -0.002340087201446295, -0.04103407636284828, 0.054911695420742035, -0.019178587943315506, -0.03346126526594162, -0.01940753310918808, 0.039026401937007904, 0.0034275781363248825, -0.005248134955763817, -0.030696308240294456, -0.012653641402721405, -0.0062871952541172504, -0.03448271378874779, 0.03152403235435486, -0.008180398494005203, 0.03666650131344795, -0.015656350180506706, -0.004341158550232649, -0.007330658379942179, -0.01912575401365757, 0.028723854571580887, -0.03383110091090202, 0.03610294312238693, 0.0030423332937061787, 0.06586585938930511, 0.016096629202365875, -0.0020660129375755787, 0.09453687816858292, 0.005274551920592785, -0.009272292256355286, 0.04304175451397896, 0.012371862307190895, 0.03670172393321991, -0.019090531393885612, -0.03217564895749092, -0.041280634701251984, -0.027948960661888123, -0.02152087725698948, 0.03587399795651436, 0.04821944236755371, -0.020886873826384544, 0.03295053914189339, 0.014071342535316944, 0.03120703250169754, 0.028195519000291824, 0.02292977087199688, -0.0022960591595619917, -0.001034107175655663, 0.03106614202260971, 0.003762190928682685, -0.0742487832903862, 0.00685955910012126, -0.03166492283344269, 0.003854649607092142, -0.027050791308283806, 0.01612304523587227, 0.010038379579782486, 0.02937546744942665, 0.014141786843538284, -0.0005107245524413884, -0.007224991451948881, 0.008268454112112522, 0.009606905281543732, 0.066535085439682, -0.003401161404326558, -0.03138314560055733, -0.020059147849678993, -0.03458838164806366, -0.0028464088682085276, 0.0723467767238617, 0.009844656102359295, 0.010126435197889805, 0.07040954381227493, -0.005054411944001913, -0.021468043327331543, -0.014714150689542294, -0.027174068614840508, 0.031171809881925583, -0.0003569018153939396, -0.05399591475725174, -0.006978434976190329, -0.023845553398132324, -0.02210204489529133, -0.03286248445510864, 0.011438469402492046, -0.008492996916174889, 0.051107678562402725, 0.008268454112112522, 0.006124292034655809, -0.016255129128694534, 0.001528871594928205, 0.04797288775444031, -0.05512303113937378, -0.03694827854633331, -0.005023592617362738, -0.017664024606347084, 0.018491750583052635, 0.01612304523587227, 0.015180847607553005, -0.03723005950450897, 0.06635896861553192, -0.05438335984945297, -0.02361660823225975, -0.031118975952267647, 0.044063203036785126, -0.04783199727535248, -0.009034541435539722, -0.08051837235689163, -0.05755337327718735, 0.019301867112517357, -0.010593132115900517, 0.011271162889897823, -0.001841470249928534, 0.00569722056388855, 0.04881822317838669, -0.02418016642332077, 0.014221037738025188, -0.02363421954214573, -0.009404376149177551, 0.028935188427567482, 0.007458339910954237, 0.04991011694073677, 0.02923457883298397, -0.02997424826025963, 0.025941286236047745, 0.043253086507320404, 0.01624632440507412, 0.0059349718503654, 0.048571668565273285, -0.019284255802631378, -0.011825915426015854, -0.0846041664481163, 0.02558906190097332, -0.06424562633037567, 0.03050258383154869, 0.018025055527687073, 0.042795196175575256, -0.05357324704527855, 0.027226902544498444, 0.009932711720466614, -0.015999767929315567, 0.0285477414727211, -0.048184219747781754, 0.009571682661771774, -0.023704664781689644, -0.03501104936003685, -0.04008307307958603, 0.009104985743761063, 0.011156690306961536, -0.07509411871433258, 0.03881506621837616, -0.014863845892250538, 0.02178504504263401, -0.008550233207643032, 0.01504876371473074, 0.014582066796720028, -0.005635581444948912, 0.06988120824098587, 0.04578910022974014, -0.004763827193528414, -0.02192593365907669, -0.021115818992257118, -0.0982000082731247, -0.018368473276495934, 0.02419777773320675, -0.018456529825925827, 0.005322982557117939, 0.011323995888233185, 0.06149828061461449, 0.06262540072202682, 0.03356693312525749, 0.05498214066028595, 0.03495821729302406, -0.0025580255314707756, 0.005772068165242672, -0.021749822422862053, 0.02264799177646637, -0.032545480877161026, 0.014722956344485283, 0.04691621661186218, -0.0193899217993021, 0.011834721080958843, -0.07213544100522995, -0.019794980064034462, -0.03740617260336876, 0.03684261441230774, -0.02476133592426777, -0.032105203717947006, -0.021837877109646797, -0.06340029090642929, -0.008629484102129936, 0.005736845545470715, -0.029445912688970566, -0.02321154996752739, 0.031999535858631134, 0.010461048223078251, 0.007916230708360672, 0.008175996132194996, -0.012653641402721405, 0.00011908192391274497, -0.04004785045981407, 0.04740932956337929, -0.05072023347020149, 0.05808170884847641, 0.0153921814635396, -0.025782784447073936, 0.009677349589765072, -0.03885028883814812, -0.03955473750829697, -0.06709863990545273, -0.050262343138456345, 0.023933609947562218, 0.005807290319353342, -0.0013725722674280405, 0.061956170946359634, 0.0678735300898552, 0.038744620978832245, -0.012116500176489353, 0.03641994297504425, -0.03624383360147476, 0.16131851077079773, -0.10672382265329361, -0.012371862307190895, 0.035081494599580765, 0.10461048036813736, -0.017302995547652245, 0.003167813178151846, -0.053502801805734634, 0.03934340178966522, -0.0172149408608675, -0.031154198572039604, -0.042548637837171555, -0.09031019359827042, -0.004277318250387907, -0.05484125018119812, 0.036349501460790634, -0.027174068614840508, -0.029481135308742523, -0.025342505425214767, -0.0733330026268959, 0.041386302560567856, -0.031242255121469498, -0.012107694521546364, -0.013243616558611393, 0.021855488419532776, -0.010240907780826092, -0.03589160740375519, -0.05892704799771309, -0.00235769827850163, -0.02687467820942402, 0.04585954174399376, -0.008774776011705399, -0.12046055495738983, 0.048148997128009796, -0.06692253053188324, -0.027649570256471634, -0.002043999033048749, -0.003332918044179678, 0.009959128685295582, -0.02447955682873726, 0.005780873820185661, 0.030027082189917564, 0.019372310489416122, 0.036772169172763824, 0.024127332493662834, 0.05244613066315651, 0.03222848102450371, 0.019601255655288696, 0.012433500960469246, -0.028864743188023567, -0.04695143550634384, 0.0234933290630579, -0.06917676329612732, 0.0023929206654429436, 0.04628221318125725, 0.02238382399082184, -0.012864975258708, -0.0001518965291325003, -0.024268222972750664, -0.019865423440933228, -0.05727159604430199, -0.02292977087199688, 0.096791110932827, -0.06354118138551712, -0.06907109171152115, -0.013446144759654999, 0.012565585784614086, 0.01643124222755432, 0.014141786843538284, 0.009862267412245274, 0.018209971487522125, -0.010091212578117847, 0.04733888432383537, -0.06125172600150108, 0.06170961633324623, -0.037053946405649185, 0.04821944236755371, 0.012776919640600681, 0.03344365209341049, 0.05033278465270996, -0.009545265696942806, -0.011817109771072865, -0.03231653571128845, 0.005477080587297678, -0.02153848670423031, -0.061780061572790146, 0.011429663747549057, 0.02419777773320675, -0.007982272654771805, -0.006555766332894564, 0.032703984528779984, -0.021027762442827225, -0.042830418795347214, 0.07523500919342041, -0.01784013770520687, 0.044380202889442444, 0.042936086654663086, 0.0029322635382413864, -0.0556865893304348, 0.012398279272019863, 0.004382985178381205, 0.04103407636284828, -0.03504627197980881, 0.03723005950450897, 0.020041536539793015, -0.024867001920938492, 0.01594693399965763, -0.00007271495996974409, -0.06361162662506104, 0.03413049131631851, 0.008030703291296959, -0.060652945190668106, 0.08185681700706482, 0.07544634491205215, 0.015471432358026505, -0.029921414330601692, 0.007269019261002541, 0.010698799043893814, 0.034940604120492935, -0.03023841604590416, 0.013208393938839436, 0.02067553997039795, -0.03288009390234947, -0.03666650131344795, -0.01278572529554367, -0.020728372037410736, -0.031999535858631134, -0.01981259137392044, 0.055897921323776245, 0.015497848391532898, 0.07643257081508636, -0.026363953948020935, 0.0032272508833557367, -0.020992539823055267, -0.005107245407998562, 0.015559487976133823, 0.014115369878709316, 0.043816644698381424, -0.07065609842538834, 0.011200717650353909, 0.01954842358827591, 0.032422203570604324, -0.003911885898560286, -0.03680739179253578, 0.01747910864651203, -0.0812932625412941, 0.018879197537899017, 0.010892522521317005, 0.029727691784501076, 0.04585954174399376, -0.014115369878709316, -0.00028343012672849, -0.023651830852031708, -0.021591320633888245, -0.014670122414827347, 0.030573029071092606, -0.018051471561193466, -0.01898486539721489, -0.0002758628106676042, -0.03404243290424347, 0.01828041672706604, 0.008651497773826122, -0.015585904940962791, 0.03330276533961296, 0.10672382265329361, -0.011139078997075558, -0.004457832779735327, 0.005155676510185003, 0.016140656545758247, 0.0007363679469563067, -0.01785774901509285, -0.00727782491594553, -0.060089386999607086, -0.0015068575739860535, -0.021855488419532776, -0.00942198745906353, 0.021873099729418755, 0.0325278714299202, -0.02236621268093586, -0.012389473617076874, 0.03501104936003685, 0.005367010831832886, -0.05769426375627518, 0.006982837338000536, -0.01559471059590578, 0.014784595929086208, 0.02305305004119873, 0.05093156546354294, -0.01759358122944832, -0.001078685512766242, -0.002985097002238035, -0.050966788083314896, -0.03476449102163315, -0.013789563439786434, -0.02083403989672661, -0.03793450817465782, 0.04230208322405815, 0.023370051756501198, -0.033672597259283066, 0.024215389043092728, 0.01798102632164955, 0.01954842358827591, -0.017954610288143158, -0.010161657817661762, 0.041421521455049515, -0.013049893081188202, 0.01074282731860876, 0.006414876785129309, -0.006780308671295643, 0.04371097683906555, -0.0455777645111084, -0.03062586300075054, 0.0401887409389019, 0.02571233920753002, -0.01334928348660469, 0.018007444217801094, -0.026117397472262383, -0.0020737177692353725, 0.00028260459657758474, -0.0033417236991226673, 0.05906793847680092, 0.005477080587297678, -0.07241722196340561, -0.021045373752713203, 0.017549552023410797, -0.028706243261694908, 0.047021880745887756, 0.00597899965941906, 0.02079881727695465, -0.029357856139540672, -0.024550002068281174, 0.09136686474084854, 0.06755653023719788, 0.02951635792851448, 0.019213810563087463, -0.07150144129991531, 0.04364053159952164, -0.012547974474728107, -0.01886158622801304, 0.009783017449080944, 0.017100466415286064, -0.01680988259613514, -0.010240907780826092, -0.005767665337771177, 0.030837196856737137, -0.053080130368471146, -0.08439283072948456, -0.028424464166164398, 0.06942331790924072, -0.04469720646739006, 0.024990281090140343, -0.03120703250169754, 0.02768479287624359, 0.01898486539721489, -0.0032206466421484947, 0.05114290118217468, 0.03641994297504425, 0.018227582797408104, 0.006696655880659819, 0.0737556740641594, 0.0066218082793056965, -0.03187625855207443, -0.003953712526708841, 0.09059196710586548, -0.037617504596710205, -0.03490538150072098, 0.04511987417936325, 0.005441858433187008, -0.01658974215388298, -0.06815531104803085, -0.017100466415286064, -0.03273920714855194, 0.03899117931723595, -0.08009570091962814, 0.03617338836193085, -0.0010440134210512042, -0.004292727913707495 ]
729,238
tables.atom
fromarray
null
def fromarray(self, array): length = len(array) if length == 0: return '' # ``array.view('U0')`` raises a `TypeError` return array.view('U%d' % length).item()
(self, array)
[ -0.018926547840237617, -0.01065269485116005, 0.023979416117072105, -0.012085208669304848, 0.0345713347196579, -0.0036767858546227217, 0.005586804356426001, 0.018284086138010025, 0.06987195461988449, -0.025142790749669075, 0.006068650167435408, 0.024986516684293747, 0.019725283607840538, 0.006641655694693327, -0.023441137745976448, 0.006454994436353445, 0.006550495512783527, 0.017085984349250793, 0.016243839636445045, 0.0991126000881195, 0.027452176436781883, 0.0012718987418338656, 0.0336163267493248, 0.041950952261686325, -0.03583889454603195, -0.015670834109187126, 0.0269833542406559, -0.011772659607231617, 0.004705591127276421, -0.046639181673526764, -0.022208306938409805, -0.028303002938628197, 0.010687422007322311, 0.07723420858383179, 0.01146011147648096, -0.032591864466667175, -0.006246629171073437, 0.008295558393001556, 0.0026219345163553953, 0.010053643025457859, -0.007770302705466747, -0.09543147683143616, 0.020454563200473785, -0.019030731171369553, -0.01838826946914196, -0.04344424232840538, 0.03604726120829582, -0.046465542167425156, -0.10036279261112213, 0.038651831448078156, 0.05497380718588829, 0.05229978263378143, 0.022989679127931595, 0.03269604593515396, -0.06480172276496887, 0.07181669771671295, -0.004171654116362333, 0.016886301338672638, -0.0077789849601686, 0.03417196869850159, -0.03319959715008736, 0.006771883927285671, 0.039033833891153336, -0.05226505547761917, 0.05521690100431442, 0.017954174429178238, 0.038443464785814285, 0.0970289409160614, 0.025924161076545715, -0.009115997701883316, 0.0009566371445544064, 0.07730366289615631, -0.028250912204384804, -0.02387523278594017, 0.06139841675758362, 0.045111168175935745, -0.02854609675705433, 0.026514530181884766, -0.038061462342739105, 0.02326750010251999, 0.037262726575136185, 0.07751202583312988, 0.03271340951323509, 0.0598703995347023, 0.008304240182042122, -0.05011194199323654, -0.009159407578408718, 0.021426936611533165, -0.09689003229141235, 0.016269885003566742, 0.04361787810921669, 0.008325944654643536, -0.07139996439218521, 0.09362563490867615, -0.058967482298612595, -0.02012464962899685, 0.021861031651496887, 0.01861399970948696, -0.01164243184030056, -0.0063030612654984, 0.0021986919455230236, -0.02422250807285309, 0.02330222725868225, -0.0021867542527616024, -0.043166421353816986, 0.03304332122206688, 0.046291906386613846, 0.058377113193273544, 0.04007566347718239, 0.013856316916644573, 0.009471955709159374, 0.01899600215256214, -0.013621904887259007, 0.015861835330724716, -0.028719734400510788, -0.010748195461928844, 0.043895699083805084, -0.006880407687276602, 0.023007042706012726, -0.013031535781919956, 0.011338564567267895, 0.0012686430709436536, -0.046882275491952896, -0.0127189876511693, 4.832699573853461e-7, 0.02700071781873703, 0.011842114850878716, -0.010965242981910706, 0.07910949736833572, -0.04518062248826027, -0.0004623113200068474, -0.02170475758612156, -0.05969676375389099, -0.04545844346284866, -0.021218569949269295, -0.024552421644330025, 0.0197600107640028, -0.019829465076327324, -0.01524542085826397, 0.049417391419410706, 0.007904872298240662, 0.03540479764342308, 0.06820502877235413, 0.019430099055171013, 0.03965893015265465, -0.025872070342302322, 0.04771573841571808, 0.0485144704580307, 0.024795513600111008, 0.003961117938160896, -0.08299899101257324, 0.006693746894598007, 0.06549627333879471, 0.012189391069114208, 0.033772602677345276, -0.044902801513671875, -0.013925772160291672, -0.06643392145633698, 0.025542156770825386, -0.02720908261835575, 0.02599361725151539, 0.0028932441491633654, -0.06511426717042923, -0.0036746154073625803, -0.04288860037922859, -0.028893372043967247, -0.00718427449464798, 0.011876842938363552, -0.09070851653814316, 0.012996808625757694, 0.01447273138910532, -0.0551474466919899, -0.03425878658890724, -0.012536667287349701, 0.018231995403766632, -0.013100991025567055, 0.010583239607512951, 0.042541321367025375, -0.013274629600346088, 0.03722799941897392, -0.0058298977091908455, 0.04639608785510063, -0.0048705474473536015, -0.003381601069122553, 0.03127221390604973, 0.011208336800336838, 0.003553068730980158, 0.015887882560491562, 0.04771573841571808, -0.025125427171587944, 0.039242200553417206, 0.047646280378103256, -0.0006538557936437428, -0.023406408727169037, 0.029640015214681625, -0.024969151243567467, -0.08147097378969193, 0.019464826211333275, -0.04504171013832092, 0.028250912204384804, -0.034119877964258194, 0.010635330341756344, 0.03892965242266655, -0.011694522574543953, -0.06862176209688187, -0.00291060796007514, 0.024934424087405205, 0.01291867159307003, 0.027434812858700752, -0.01897863857448101, 0.06636446714401245, 0.022954950109124184, -0.005682305432856083, -0.002195436041802168, 0.031619489192962646, -0.03200149163603783, 0.03813091665506363, -0.029205920174717903, 0.004944343585520983, 0.05261233076453209, 0.016226476058363914, 0.01880500093102455, 0.012441166676580906, -0.0227118581533432, -0.014681097120046616, 0.004173824563622475, -0.06160677969455719, -0.004366997163742781, -0.02208676002919674, 0.06285697221755981, 0.05025085434317589, -0.017598217353224754, 0.008733994327485561, -0.031949400901794434, 0.009515365585684776, 0.04403461143374443, 0.02892809920012951, -0.027920998632907867, -0.005131004378199577, 0.0030495182145386934, -0.025177517905831337, -0.006932499352842569, 0.005803851876407862, 0.00937645509839058, 0.018700817599892616, 0.0126061225309968, -0.008152307011187077, 0.009072588756680489, -0.06612136960029602, -0.05716164782643318, -0.02031565271317959, 0.0182146318256855, 0.03163685277104378, 0.030647115781903267, 0.03580416738986969, 0.00007026914681773633, 0.054313983768224716, -0.0297094713896513, -0.029778925701975822, 0.036672357469797134, 0.003138507716357708, -0.042332958430051804, 0.0028020842000842094, 0.00684133917093277, -0.04966048151254654, -0.002265976509079337, -0.04420824721455574, 0.027920998632907867, 0.02677498757839203, 0.030386660248041153, -0.00045851297909393907, 0.05299433320760727, -0.014307775534689426, -0.0324355885386467, 0.028216183185577393, -0.02033301629126072, 0.013665314763784409, 0.023753685876727104, 0.03054293431341648, 0.011408019810914993, -0.059384215623140335, -0.022381944581866264, -0.024986516684293747, 0.007140865083783865, 0.02465660311281681, -0.0030039383564144373, 0.02717435546219349, -0.021861031651496887, -0.004631794989109039, 0.03203622251749039, 0.03674181178212166, 0.0009262504754588008, -0.07772039622068405, -0.0016842890763655305, -0.076678566634655, -0.010340145789086819, -0.05931475758552551, 0.05257760360836983, 0.04521534964442253, -0.042367685586214066, -0.019256459549069405, 0.025924161076545715, -0.061884600669145584, 0.009445910342037678, -0.02149639092385769, -0.03965893015265465, -0.096126027405262, 0.023753685876727104, -0.038235098123550415, 0.0240315068513155, -0.01751139760017395, -0.036672357469797134, -0.021392207592725754, 0.025767887011170387, 0.027643177658319473, 0.07181669771671295, 0.028459277004003525, 0.025333791971206665, 0.04083966836333275, 0.012111254036426544, 0.019430099055171013, -0.03837401047348976, -0.02505597099661827, 0.005690987221896648, -0.050389762967824936, -0.0039025151636451483, -0.014073364436626434, -0.04139531031250954, -0.05591145157814026, 0.04983412101864815, 0.045284803956747055, 0.008351990021765232, -0.002836811589077115, 0.005434871185570955, 0.0042780074290931225, 0.058620207011699677, -0.004531953018158674, -0.023909959942102432, -0.05167468637228012, -0.008191375061869621, -0.0010895788436755538, -0.01995101198554039, -0.016686616465449333, 0.052924878895282745, 0.034901250153779984, -0.02955319732427597, -0.053862523287534714, -0.045701537281274796, 0.054661259055137634, -0.058377113193273544, -0.02679235115647316, -0.053897250443696976, -0.035665255039930344, 0.035873621702194214, 0.003965458832681179, -0.032366134226322174, 0.004343121778219938, 0.07355307787656784, 0.011008652858436108, 0.0048314789310097694, -0.020107286050915718, -0.005057208240032196, 0.015922609716653824, -0.07056650519371033, 0.012067845091223717, -0.012224119156599045, -0.02305913344025612, -0.02076711133122444, -0.0520566888153553, 0.018631363287568092, 0.00445381598547101, 0.001228489214554429, -0.010626648552715778, -0.0022486126981675625, 0.016478251665830612, -0.050355035811662674, -0.056814372539520264, 0.022434037178754807, -0.01201575342565775, -0.03851291909813881, -0.0032991229090839624, -0.00576478336006403, 0.006810952443629503, 0.032175131142139435, 0.00937645509839058, 0.030213020741939545, -0.07987350225448608, 0.037089087069034576, -0.043722063302993774, -0.03729745373129845, 0.0004945971304550767, -0.003922049421817064, -0.018822364509105682, -0.02109702304005623, -0.01837090589106083, 0.03563052788376808, 0.02012464962899685, 0.008959723636507988, 0.04875756427645683, -0.03580416738986969, 0.011599021963775158, -0.06598246097564697, -0.03347741812467575, 0.03155003488063812, -0.038651831448078156, 0.0052916198037564754, 0.004045766778290272, -0.013500358909368515, -0.015401694923639297, -0.0347970649600029, 0.06316952407360077, 0.04101330786943436, 0.018822364509105682, -0.06632973998785019, 0.06066913530230522, 0.02995256334543228, -0.030265113338828087, 0.024187780916690826, -0.01319649163633585, -0.018822364509105682, -0.0139691811054945, 0.04455552622675896, -0.04858392849564552, -0.02345850132405758, 0.004835819825530052, -0.000023078260710462928, 0.0227118581533432, 0.027087535709142685, 0.05417507141828537, 0.06945522129535675, -0.0035096590872853994, -0.04073548689484596, 0.015653470531105995, -0.08598556369543076, -0.04500698298215866, -0.001510651083663106, -0.04406933858990669, -0.007574960123747587, -0.016096247360110283, 0.031966764479875565, 0.05125795304775238, 0.01956900954246521, 0.04955630004405975, 0.015167283825576305, 0.004731636960059404, -0.07008031755685806, -0.07153888046741486, -0.0049269795417785645, -0.055876724421978, -0.04775046557188034, 0.003362066810950637, -0.017771854996681213, 0.05354997515678406, -0.045111168175935745, 0.03743636608123779, 0.025142790749669075, 0.016417477279901505, 0.007874486036598682, 0.04827138036489487, -0.01572292484343052, -0.05570308864116669, 0.02252085506916046, 0.0038243781309574842, -0.08695793896913528, 0.033928874880075455, -0.009098634123802185, -0.02305913344025612, -0.006745838560163975, -0.0209407489746809, -0.01577501744031906, -0.028129365295171738, -0.049417391419410706, 0.07271961867809296, -0.006997613701969385, 0.03073393553495407, 0.040422938764095306, -0.02799045480787754, 0.02305913344025612, -0.03250504285097122, -0.023823140189051628, -0.04597935825586319, -0.06626027822494507, -0.0331127755343914, 0.0057691242545843124, -0.024778150022029877, 0.0610511414706707, -0.013265946879982948, -0.008291217498481274, -0.020020468160510063, -0.00459706736728549, -0.0700455904006958, 0.08626338839530945, -0.06476699560880661, 0.003118973458185792, 0.0418814979493618, 0.06820502877235413, 0.04465970769524574, 0.017276985570788383, -0.03965893015265465, 0.005591145250946283, 0.012545349076390266, 0.0029930858872830868, 0.023562684655189514, -0.06803139299154282, -0.018874457105994225, -0.017849991098046303, -0.0003345245495438576, -0.0038265485782176256, -0.004501566756516695, -0.04153422266244888, -0.059974584728479385, 0.047646280378103256, -0.06966358423233032, -0.03363369032740593, 0.033338505774736404, 0.030473478138446808, -0.025698432698845863, -0.05104958638548851, -0.036707084625959396, 0.03754054754972458, -0.009949460625648499, 0.049209024757146835, -0.06598246097564697, 0.029240647330880165, 0.004614431411027908, -0.028268275782465935, -0.032991230487823486, 0.002836811589077115, 0.012857898138463497, 0.03601253405213356, 0.024569785222411156, 0.004475520923733711, 0.015106510370969772, 0.05882857367396355, 0.008985769003629684, -0.00801339652389288, 0.015584015287458897, 0.011303837411105633, 0.0326613187789917, 0.03750582039356232, -0.007792007643729448, 0.07153888046741486, 0.021010205149650574, -0.0038656170945614576, 0.034519243985414505, -0.008499582298099995, -0.02892809920012951, 0.030421387404203415, 0.01146011147648096, 0.01636538654565811, -0.047264277935028076, -0.0012892625527456403, 0.038825467228889465, 0.031810492277145386, 0.0044885436072945595, -0.060530226677656174, -0.02797309122979641, 0.02286813221871853, -0.008464855141937733, -0.017311714589595795, -0.00919413473457098, -0.055459994822740555, -0.026254072785377502, 0.051362134516239166, -0.042332958430051804, 0.10723885893821716, -0.018353542312979698, 0.042749688029289246, 0.01709466613829136, -0.02741744928061962, 0.015523241832852364, -0.06528791040182114, -0.06146787106990814, 0.030195657163858414, 0.030195657163858414, -0.003926390316337347, -0.04056185111403465, -0.009263589978218079, 0.020680291578173637, 0.014967599883675575, 0.03010883927345276, 0.024100961163640022, -0.05275123938918114, -0.045493170619010925, 0.037054359912872314, -0.0020478437654674053, 0.03847819194197655, 0.015089146792888641, -0.04167313128709793, -0.0610511414706707, 0.04521534964442253, -0.07133051007986069, 0.004019720945507288, 0.09251435846090317, 0.019082821905612946, 0.01894391141831875, -0.03851291909813881, -0.005499985534697771, 0.020107286050915718, -0.028441913425922394, 0.04167313128709793, 0.03847819194197655, -0.004953025374561548, 0.019898921251296997, 0.06382934749126434, 0.020836565643548965, -0.02875446155667305, 0.004670863505452871, 0.029640015214681625, 0.02873709797859192, 0.020298289135098457, -0.00009495831181993708, -0.015089146792888641, -0.03543952852487564, 0.015106510370969772, 0.026705533266067505, -0.04639608785510063, -0.031220121309161186, -0.031063847243785858, 0.03385942056775093, 0.01409940980374813, 0.020645564422011375, -0.04736845940351486, 0.032539770007133484, -0.03269604593515396, -0.004592726472765207, 0.04323587566614151, 0.054279256612062454, 0.029657378792762756, -0.07556728273630142, 0.07251124829053879, -0.04504171013832092, 0.0110607435926795, -0.046882275491952896, -0.053480520844459534, -0.027712633833289146, -0.05945366993546486, 0.055459994822740555, 0.015983382239937782, 0.045701537281274796, -0.016339341178536415, -0.013960499316453934, -0.007904872298240662, -0.010973924770951271, 0.038061462342739105, -0.0908474326133728, 0.0034380333963781595, 0.0018036653054878116, -0.027643177658319473, 0.021965213119983673, -0.044520795345306396, 0.02349322848021984, 0.004390872083604336, 0.013526404276490211, -0.012224119156599045, 0.029119102284312248, 0.02345850132405758, -0.022989679127931595, -0.04056185111403465, 0.033703144639730453, -0.052508145570755005, 0.008933678269386292, 0.01901336759328842, -0.028719734400510788, 0.06139841675758362, 0.02069765515625477, 0.03465815633535385, 0.06004403904080391, 0.01757217012345791, -0.018492452800273895, -0.046048812568187714, 0.061919331550598145, 0.005552076734602451, -0.02835509367287159, 0.10682213306427002, -0.019082821905612946, 0.061155322939157486, -0.023545319214463234, 0.01280580647289753, -0.01587051898241043, 0.005803851876407862, 0.011572976596653461, -0.02095811255276203, -0.02778208814561367, 0.0018264552345499396, -0.04122167453169823, -0.011494839563965797, 0.049209024757146835, 0.002159623196348548, -0.03431088104844093, 0.0266187135130167, 0.01322253793478012, -0.00108632305637002, -0.026740260422229767, -0.0418814979493618, 0.05549472197890282, -0.014559551142156124, 0.007574960123747587, -0.05771728977560997, 0.018162541091442108, 0.03868655860424042, -0.03559580072760582, -0.026462439447641373, 0.00286502786912024, 0.02618461847305298, -0.009619547985494137, -0.017520079389214516, -0.00856469664722681, -0.03300859406590462, -0.02858082391321659, -0.031046483665704727, 0.022746585309505463, 0.012614804320037365, -0.0025720137637108564, 0.005265573970973492, -0.01856190711259842, -0.07376144826412201, 0.058967482298612595, -0.026149891316890717, 0.04073548689484596, -0.00738395843654871, -0.01291867159307003, 0.016400113701820374, 0.0802207812666893, -0.02856346033513546, 0.053688887506723404, 0.010817650705575943, 0.0011427553836256266, -0.05282069742679596, 0.030664479359984398, -0.01859663613140583, -0.04399988427758217, 0.006068650167435408, -0.033946238458156586, -0.021808939054608345, 0.021999942138791084, -0.01996837556362152, 0.009142043069005013, 0.0430622361600399, -0.0314805805683136, -0.0387907400727272, -0.015323557890951633, -0.008916313759982586, 0.04577099159359932, -0.03917274624109268, -0.039381109178066254, 0.03854764625430107, -0.01861399970948696, -0.011373292654752731, 0.05282069742679596, -0.015332239679992199, 0.019048094749450684, -0.033546872437000275, 0.044902801513671875, 0.04104803502559662, -0.04219404608011246, -0.023007042706012726, 0.008642833679914474, 0.003270906861871481, -0.05709219351410866, -0.024153053760528564, 0.011850797571241856, 0.011572976596653461, 0.006975908763706684, -0.019482189789414406, -0.010730831883847713, 0.026948625221848488, -0.05424452945590019 ]
729,239
tables.atom
toarray
null
def toarray(self, object_): if isinstance(object_, bytes): warnings.warn("Storing bytestrings in VLUnicodeAtom is " "deprecated.", DeprecationWarning) elif not isinstance(object_, str): raise TypeError(f"object is not a string: {object_!r}") ustr = str(object_) uarr = np.array(ustr, dtype='U') return np.ndarray( buffer=uarr, dtype=self.base.dtype, shape=len(ustr))
(self, object_)
[ -0.01574854552745819, 0.01689567230641842, -0.006335876882076263, -0.02470325119793415, 0.00763862207531929, -0.0496554896235466, -0.021999944001436234, 0.06744040548801422, 0.03203063830733299, 0.012289377860724926, 0.013294225558638573, 0.006455925293266773, 0.006673790514469147, 0.05324804410338402, -0.029042771086096764, 0.0334356464445591, -0.04994004964828491, -0.04887295514345169, 0.006153581663966179, 0.09333524852991104, -0.06285189837217331, 0.013916698284447193, 0.05509767681360245, 0.09490031749010086, 0.007785347755998373, -0.011649121530354023, -0.001569518935866654, -0.018603023141622543, 0.004890852142125368, -0.014379105530679226, -0.01879865862429142, -0.02011474221944809, 0.019047647714614868, 0.06729812920093536, 0.006091334391385317, -0.028135739266872406, 0.056129198521375656, 0.045636098831892014, 0.02728206291794777, -0.01712687499821186, -0.025165658444166183, -0.04488913342356682, 0.0075674825347959995, -0.011506841517984867, 0.02601933479309082, -0.056484900414943695, -0.012387195602059364, 0.018158400431275368, -0.037917446345090866, 0.03741946816444397, 0.03555205091834068, 0.010644272901117802, 0.009870629757642746, -0.011898109689354897, -0.051007144153118134, 0.04844611510634422, 0.010359714739024639, 0.0514339804649353, -0.02328045666217804, 0.020719429478049278, -0.04118986800312996, 0.03741946816444397, 0.062567338347435, -0.030003156512975693, 0.0195100549608469, -0.01981239765882492, 0.018656378611922264, 0.03042999468743801, 0.011586873792111874, 0.013196408748626709, -0.052252087742090225, 0.028206879273056984, -0.02130633220076561, -0.026108259335160255, -0.007122859358787537, 0.01849631406366825, -0.014450245536863804, 0.030767908319830894, -0.04709446057677269, 0.05556008219718933, 0.024134133011102676, 0.07014371454715729, 0.02959410287439823, 0.008630131371319294, 0.021395256742835045, -0.041509997099637985, -0.04666762426495552, 0.024489831179380417, -0.03067898377776146, 0.006682682782411575, 0.044426724314689636, -0.06153581663966179, -0.03436046093702316, 0.09739021211862564, -0.029914231970906258, -0.02262241579592228, 0.002678853226825595, -0.000705283135175705, -0.025592496618628502, 0.004944207146763802, -0.024614326655864716, -0.016095351427793503, 0.06715584546327591, 0.0009742800029926002, -0.04709446057677269, 0.022035513073205948, 0.020434871315956116, -0.008976937271654606, 0.019012076780200005, 0.039055678993463516, -0.01128453016281128, 0.05644932761788368, 0.015259459614753723, 0.0006163585348986089, -0.04005163535475731, 0.0017284717177972198, -0.020363731309771538, -0.033328935503959656, 0.001846296712756157, -0.017580391839146614, 0.013480967842042446, 0.05267892777919769, 0.019136572256684303, 0.027264278382062912, -0.001912990235723555, 0.024311982095241547, 0.0037415020633488894, 0.010999972000718117, 0.030518919229507446, -0.02237342670559883, -0.010804337449371815, -0.0028633717447519302, -0.058583520352840424, -0.056378189474344254, 0.013916698284447193, -0.012698431499302387, 0.06715584546327591, -0.03962479531764984, 0.023298243060708046, 0.0330621637403965, 0.049442071467638016, 0.04161670804023743, 0.06285189837217331, -0.015712974593043327, -0.028331374749541283, 0.03245747461915016, 0.07555033266544342, 0.026286108419299126, -0.04937093332409859, -0.05872579663991928, -0.08885344862937927, -0.005077593959867954, 0.02464989572763443, 0.048801813274621964, -0.028758211061358452, -0.026037119328975677, -0.0014305743388831615, -0.057516422122716904, 0.06591090559959412, 0.00939932931214571, -0.015908608213067055, 0.0478769987821579, -0.07291816174983978, -0.00031846118508838117, 0.0012938528088852763, 0.030767908319830894, 0.07633286714553833, -0.04773471876978874, -0.08010327070951462, -0.026357248425483704, -0.03581882268190384, -0.023120392113924026, -0.022426780313253403, 0.047058891505002975, 0.03994492441415787, 0.014459137804806232, -0.0034169272985309362, 0.06548406928777695, 0.022302286699414253, 0.011853647418320179, -0.0027788933366537094, 0.04289722070097923, -0.001660666661337018, -0.004566277842968702, 0.01109778881072998, -0.011951464228332043, 0.021946588531136513, 0.029558533802628517, 0.03144373372197151, -0.04254152253270149, 0.04937093332409859, 0.048197127878665924, 0.003405811730772257, 0.022604631260037422, 0.019047647714614868, -0.03377356007695198, -0.042221393436193466, -0.0007680861162953079, -0.13388486206531525, 0.00790984183549881, 0.04225696623325348, 0.011409024707973003, 0.01530392188578844, -0.008527868427336216, -0.015801899135112762, -0.03092797100543976, -0.004841943737119436, -0.027442127466201782, 0.017055736854672432, -0.015712974593043327, 0.06615989655256271, 0.02959410287439823, -0.03060784377157688, 0.018354035913944244, 0.0015395069494843483, 0.002765554701909423, 0.009897306561470032, -0.0039126817137002945, 0.030750121921300888, 0.029398469254374504, -0.001920771086588502, 0.0372416190803051, -0.03734832629561424, 0.00261882902123034, -0.05210980772972107, 0.0059890709817409515, -0.02984309196472168, 0.013249763287603855, 0.023902928456664085, 0.0036014458164572716, 0.00957717839628458, 0.0007691977079957724, -0.014725911431014538, -0.039767075330019, 0.01653997413814068, 0.0772576853632927, 0.0330621637403965, -0.0035480910446494818, -0.037988584488630295, 0.02441869117319584, -0.03788187354803085, -0.06214050203561783, -0.008265540935099125, 0.01790941134095192, 0.018727518618106842, 0.03544533997774124, 0.030714552849531174, 0.03137259557843208, -0.04439115524291992, -0.041438858956098557, 0.021413041278719902, 0.021626459434628487, 0.015134965069591999, -0.01616648957133293, 0.019296634942293167, -0.04428444430232048, 0.04346633702516556, -0.01086658425629139, -0.013151946477591991, -0.002098620170727372, 0.027370987460017204, -0.004828605335205793, 0.008807980455458164, 0.06118011847138405, -0.008123260922729969, 0.002259796019643545, -0.040905311703681946, 0.04937093332409859, -0.03610338270664215, 0.026303892955183983, -0.0006385897286236286, -0.0001283848687307909, -0.03229741007089615, 0.052252087742090225, 0.011293422430753708, 0.0031345917377620935, 0.008936921134591103, -0.006184705067425966, -0.014628094621002674, 0.03073233738541603, -0.05050916597247124, -0.009746135212481022, 0.024400906637310982, -0.031070251017808914, 0.06822294741868973, -0.047058891505002975, 0.01357878465205431, -0.0279934611171484, -0.04567166790366173, 0.001128786476328969, -0.022604631260037422, -0.005869023036211729, -0.07284702360630035, -0.01735807955265045, -0.01169358380138874, 0.07540804892778397, -0.03251082822680473, 0.010377499274909496, 0.056378189474344254, 0.0032546399161219597, -0.01922549679875374, 0.07028599828481674, -0.021875448524951935, 0.016975704580545425, -0.026357248425483704, -0.016371017321944237, -0.013320903293788433, 0.01689567230641842, -0.03551648184657097, 0.012689538300037384, 0.02034594491124153, -0.038344282656908035, -0.010021801106631756, -0.007358509581536055, -0.01807836815714836, 0.06932561099529266, 0.01736697182059288, 0.013836666010320187, 0.02208886854350567, -0.013569892384111881, 0.011729152873158455, -0.049086373299360275, -0.006438140291720629, -0.05232322961091995, 0.010217435657978058, -0.024436477571725845, -0.00525099691003561, -0.015108287334442139, -0.0021508634090423584, 0.00582011416554451, 0.042043544352054596, -0.026712946593761444, -0.016513295471668243, 0.024721035733819008, 0.04293278977274895, 0.012155991047620773, -0.03336450457572937, -0.030305499210953712, -0.021822094917297363, -0.011480164714157581, -0.0010665393201634288, 0.03738389536738396, -0.03549869731068611, 0.07889389246702194, -0.007620837073773146, -0.021679814904928207, -0.04314621165394783, -0.02029259130358696, 0.03396919369697571, -0.032137345522642136, -0.03605002909898758, 0.02733541838824749, -0.02923840470612049, -0.01600642502307892, -0.03562318906188011, -0.026357248425483704, -0.015117179602384567, 0.06349215656518936, 0.024329766631126404, -0.005042023956775665, -0.025628065690398216, -0.003114583669230342, 0.05090043321251869, -0.0924815684556961, -0.00291672651655972, -0.017171338200569153, 0.007002811413258314, 0.0027455466333776712, 0.005637818947434425, 0.022408995777368546, -0.033044375479221344, 0.07839591801166534, -0.058334529399871826, -0.01071541290730238, 0.0020708313677459955, 0.03677920997142792, -0.02649952657520771, -0.022462351247668266, -0.07003700733184814, -0.06416798382997513, 0.03037663921713829, -0.030465563759207726, 0.011586873792111874, -0.026214968413114548, 0.032670892775058746, 0.049691058695316315, -0.008527868427336216, 0.05922377482056618, -0.016371017321944237, -0.015134965069591999, 0.05008232966065407, -0.0020308152306824923, 0.01730472408235073, 0.03539198637008667, -0.005037577822804451, 0.006389231886714697, 0.026303892955183983, 0.03265310823917389, 0.01605978049337864, 0.0075408052653074265, -0.017286939546465874, -0.007980981841683388, -0.09795932471752167, 0.006882763002067804, -0.05676945671439171, 0.013312011025846004, -0.0028411406092345715, 0.03085683286190033, -0.03629901632666588, -0.005717851221561432, 0.05349703133106232, -0.01587303914129734, 0.056129198521375656, -0.05687616765499115, -0.0013205301947891712, 0.0041839019395411015, -0.006113565526902676, -0.03050113469362259, 0.01844296045601368, -0.0157040823251009, -0.043359629809856415, 0.05477754771709442, -0.020434871315956116, 0.0018451851792633533, 0.02690858021378517, 0.04656091332435608, 0.02256906032562256, -0.014805943705141544, 0.06576862186193466, 0.02148418128490448, 0.012324947863817215, 0.006246952340006828, -0.0164688341319561, -0.09034737944602966, -0.0352141372859478, 0.02794010564684868, -0.028989415615797043, -0.023920714855194092, -0.016273200511932373, 0.023849574849009514, 0.024098563939332962, 0.019172141328454018, 0.041261009871959686, 0.025734776630997658, 0.008727948181331158, -0.02237342670559883, -0.05061587691307068, 0.0027588852681219578, -0.025948194786906242, -0.0519319586455822, -0.002736654132604599, -0.01089326199144125, 0.017438111826777458, -0.06267405301332474, -0.03364906460046768, 0.03549869731068611, 0.08280657976865768, -0.02310260757803917, -0.020719429478049278, -0.04030062258243561, -0.042221393436193466, -0.03354235365986824, 0.030750121921300888, -0.042648233473300934, -0.017740454524755478, 0.038166433572769165, -0.013356473296880722, -0.03251082822680473, 0.008483406156301498, -0.016371017321944237, 0.0007808690425008535, -0.04175898805260658, 0.08650583773851395, -0.0580144003033638, 0.04545824974775314, 0.032439690083265305, -0.01702016592025757, -0.0003823757288046181, -0.045031409710645676, -0.03151487559080124, -0.05538223311305046, -0.05602249130606651, 0.015961963683366776, 0.006820515729486942, -0.022160006687045097, 0.03137259557843208, 0.07654628902673721, -0.004441783297806978, -0.023529445752501488, -0.02173316851258278, -0.0395180881023407, 0.13075470924377441, -0.07355841994285583, 0.014930438250303268, 0.08721723407506943, 0.07896503806114197, 0.003290209686383605, 0.018763087689876556, -0.052785634994506836, 0.04481799155473709, 0.02130633220076561, -0.011738046072423458, -0.0458495169878006, -0.07384297996759415, -0.00994176883250475, -0.023013683035969734, 0.03944694623351097, -0.031532660126686096, -0.01749146729707718, -0.011471271514892578, -0.08935142308473587, 0.04901523143053055, -0.06185594201087952, -0.04677433520555496, -0.010021801106631756, 0.05072258412837982, -0.002420971868559718, -0.005806775763630867, -0.07238461822271347, 0.018638594076037407, -0.028918275609612465, 0.00841226615011692, -0.020506009459495544, -0.09283726662397385, 0.017260262742638588, -0.049619920551776886, -0.07334499806165695, 0.0010320809669792652, -0.004301726818084717, -0.0014016737695783377, -0.00868348591029644, -0.046881042420864105, -0.017864950001239777, 0.010902154259383678, 0.009257049299776554, 0.021288545802235603, 0.040549613535404205, 0.06605318188667297, 0.06640888005495071, 0.04069188982248306, -0.017384756356477737, 0.0006841635331511497, 0.021199621260166168, -0.002972304355353117, 0.015179427340626717, 0.04215025529265404, 0.005411060992628336, 0.0038370960392057896, -0.011417916975915432, 0.018229540437459946, 0.009274834766983986, -0.025681421160697937, -0.0033702419605106115, 0.07754223793745041, -0.02089727856218815, -0.07313158363103867, -0.017411435022950172, -0.01220934558659792, -0.006269183475524187, 0.027655547484755516, -0.006291414611041546, -0.00687831686809659, -0.015784114599227905, 0.05616477131843567, -0.06196265295147896, 0.1046464592218399, -0.04755686968564987, 0.054172858595848083, 0.011800292879343033, 0.037632886320352554, 0.025805914774537086, -0.04677433520555496, -0.05712515488266945, -0.011746938340365887, 0.01032414473593235, -0.031176960095763206, -0.037988584488630295, -0.025805914774537086, 0.02829580381512642, 0.0013138607610017061, -0.0023765095975250006, 0.015712974593043327, -0.02374286577105522, -0.049868907779455185, 0.06630217283964157, -0.005282120779156685, 0.08622127771377563, 0.08515418320894241, -0.00023954060452524573, -0.04279051348567009, 0.007025042548775673, 0.025983763858675957, 0.01885201223194599, 0.03450274094939232, 0.004250595346093178, -0.006744930054992437, 0.014912653714418411, -0.009514930658042431, 0.03078569285571575, -0.07405639439821243, 0.05353260040283203, 0.017989443615078926, -0.03389805182814598, 0.006500387564301491, 0.05698287487030029, 0.022302286699414253, -0.041509997099637985, -0.027122000232338905, 0.014432461000978947, 0.04624078422784805, -0.021768739446997643, -0.04464014247059822, -0.007807578891515732, -0.021875448524951935, 0.009692779742181301, 0.02100398764014244, -0.04528040066361427, -0.03155044466257095, -0.03307994827628136, 0.04094088077545166, 0.0022686885204166174, 0.045991797000169754, -0.02941625379025936, 0.013258656486868858, -0.05033131688833237, -0.023227103054523468, 0.005148733500391245, 0.02464989572763443, 0.08124150335788727, -0.057018447667360306, 0.02794010564684868, 0.008852442726492882, 0.023316027596592903, -0.008305556140840054, -0.013080807402729988, -0.009016953408718109, -0.10094719380140305, 0.018887583166360855, 0.01885201223194599, 0.007656407076865435, 0.028775997459888458, -0.023404952138662338, -0.004810820333659649, 0.005157626233994961, -0.02810017019510269, -0.022071082144975662, 0.005606695078313351, -0.038771118968725204, -0.031354811042547226, 0.01958119496703148, 0.013240871019661427, 0.0035147443413734436, -0.010839907452464104, 0.0012004819000139832, -0.028278019279241562, 0.07234904170036316, -0.04257709160447121, -0.00007447434472851455, 0.020506009459495544, 0.012725108303129673, -0.030999111011624336, 0.0002709421096369624, -0.03980264440178871, -0.02543243207037449, 0.02004360221326351, 0.01945669949054718, 0.010359714739024639, 0.042470384389162064, 0.043359629809856415, -0.0031568228732794523, -0.006816069595515728, 0.033453430980443954, 0.06142910569906235, -0.044675711542367935, 0.040016066282987595, 0.004806374199688435, 0.012547259218990803, -0.0046818796545267105, 0.06701356917619705, -0.003939359448850155, -0.040976449847221375, 0.003841542173177004, -0.04528040066361427, -0.03880669176578522, -0.008767964318394661, -0.027246493846178055, 0.0034813976380974054, 0.049619920551776886, 0.014574740082025528, -0.07046384364366531, 0.007167321629822254, 0.05090043321251869, 0.02201772853732109, -0.0061269039288163185, 0.020025817677378654, 0.0478769987821579, -0.011702476069331169, -0.004475129768252373, -0.001795165124349296, 0.012155991047620773, 0.03688592091202736, -0.06295860558748245, -0.05580907315015793, 0.04012277349829674, 0.03341786190867424, -0.005633372813463211, 0.014263504184782505, -0.013116376474499702, -0.013098591938614845, 0.005780098028481007, -0.003185723442584276, 0.028811566531658173, 0.01688678003847599, -0.09105877578258514, 0.02148418128490448, -0.003845988539978862, -0.031532660126686096, 0.05730300396680832, 0.010048478841781616, -0.016611112281680107, -0.015214997343719006, -0.02614382840692997, 0.05125613138079643, 0.062567338347435, -0.0036525775212794542, 0.019598979502916336, -0.04033619165420532, 0.04513812065124512, -0.01203149650245905, -0.01927885040640831, -0.031532660126686096, 0.026339463889598846, -0.019741259515285492, -0.024311982095241547, -0.04602736607193947, 0.00343248900026083, -0.057551994919776917, -0.06509280204772949, -0.03788187354803085, 0.04766358062624931, -0.0309101864695549, -0.011560196056962013, -0.011755830608308315, 0.017055736854672432, 0.02895384654402733, -0.03199506551027298, 0.05082929506897926, 0.003779294900596142, 0.030269930139183998, 0.028598148375749588, 0.016451049596071243, -0.01417457964271307, -0.0458495169878006, 0.03098132647573948, 0.057800982147455215, -0.02226671762764454, -0.010421961545944214, 0.022160006687045097, 0.010377499274909496, -0.03396919369697571, -0.09255271404981613, -0.016522187739610672, -0.038771118968725204, 0.03418261185288429, -0.05477754771709442, -0.004157224670052528, 0.025503572076559067, -0.027086429297924042 ]
729,247
tables.path
check_name_validity
Check the validity of the `name` of a Node object, which more limited than attribute names. If the name is not valid, a ``ValueError`` is raised. If it is valid but it can not be used with natural naming, a `NaturalNameWarning` is issued. >>> warnings.simplefilter("ignore") >>> check_name_validity('a') >>> check_name_validity('a_b') >>> check_name_validity('a:b') # NaturalNameWarning >>> check_name_validity('/a/b') Traceback (most recent call last): ... ValueError: the ``/`` character is not allowed in object names: '/a/b' >>> check_name_validity('.') Traceback (most recent call last): ... ValueError: ``.`` is not allowed as an object name >>> check_name_validity('') Traceback (most recent call last): ... ValueError: the empty string is not allowed as an object name
def check_name_validity(name): """Check the validity of the `name` of a Node object, which more limited than attribute names. If the name is not valid, a ``ValueError`` is raised. If it is valid but it can not be used with natural naming, a `NaturalNameWarning` is issued. >>> warnings.simplefilter("ignore") >>> check_name_validity('a') >>> check_name_validity('a_b') >>> check_name_validity('a:b') # NaturalNameWarning >>> check_name_validity('/a/b') Traceback (most recent call last): ... ValueError: the ``/`` character is not allowed in object names: '/a/b' >>> check_name_validity('.') Traceback (most recent call last): ... ValueError: ``.`` is not allowed as an object name >>> check_name_validity('') Traceback (most recent call last): ... ValueError: the empty string is not allowed as an object name """ check_attribute_name(name) # Check whether `name` is a valid HDF5 name. # http://hdfgroup.org/HDF5/doc/UG/03_Model.html#Structure if name == '.': raise ValueError("``.`` is not allowed as an object name") elif '/' in name: raise ValueError("the ``/`` character is not allowed " "in object names: %r" % name)
(name)
[ 0.004204117227345705, 0.04084780439734459, 0.022191179916262627, 0.009956879541277885, -0.041649457067251205, -0.005807420704513788, -0.011869912967085838, -0.009319202043116093, 0.07127413153648376, -0.03532733768224716, 0.020879385992884636, 0.06340336799621582, 0.07899913936853409, 0.009437628090381622, -0.002493774751201272, -0.03711283579468727, 0.030244136229157448, 0.07659418880939484, -0.010366815142333508, 0.02827644534409046, -0.0347260981798172, 0.02403133548796177, 0.027565890923142433, -0.006659175734966993, -0.0030859040562063456, 0.05130571499466896, 0.039718203246593475, 0.057536736130714417, -0.010366815142333508, -0.019312521442770958, -0.07105550169944763, 0.009191666729748249, 0.06821328401565552, 0.03294060006737709, 0.06216445565223694, -0.06394995003938675, -0.0048326849937438965, -0.014165552332997322, -0.0990404412150383, -0.05334628373384476, 0.0017137584509328008, 0.0674116313457489, -0.06788533180952072, -0.006791266147047281, 0.012789989821612835, -0.01618790067732334, 0.024760110303759575, 0.08271589130163193, -0.11383455991744995, 0.01317259669303894, -0.021662818267941475, 0.0053792656399309635, 0.02588970959186554, 0.015158507041633129, 0.006777601782232523, 0.004188175313174725, 0.03877079859375954, 0.049957484006881714, -0.0010436277370899916, -0.030317014083266258, -0.029260290786623955, 0.01244382280856371, -0.0024664457887411118, -0.06901493668556213, -0.0443459190428257, -0.02091582491993904, 0.02271954156458378, -0.04427304491400719, -0.07236729562282562, 0.01452993880957365, -0.013719177804887295, -0.0030175813008099794, -0.0005386098055168986, 0.042523983865976334, 0.029733994975686073, 0.00983845442533493, -0.03230292350053787, 0.04952022060751915, 0.009856673888862133, 0.01089517679065466, -0.0005648001679219306, -0.017654558643698692, -0.0019745230674743652, -0.05852058157324791, 0.010831409133970737, 0.007337846793234348, -0.06974370777606964, -0.009683589451014996, 0.02774808369576931, 0.02998906560242176, -0.03589213639497757, -0.015240494161844254, -0.022974612191319466, 0.021972548216581345, -0.011286892928183079, 0.0025438780430704355, 0.062929667532444, -0.02898700162768364, -0.007465382572263479, 0.008185047656297684, -0.0032476007472723722, 0.04117575287818909, -0.0072740791365504265, 0.029624678194522858, -0.018346894532442093, -0.029041659086942673, 0.0024573360569775105, -0.021881449967622757, -0.010394144803285599, -0.0412486307322979, -0.026363413780927658, -0.05177941918373108, 0.0395360104739666, 0.02527025155723095, 0.04671443626284599, -0.018328676000237465, -0.012735332362353802, -0.04864569008350372, -0.04751608893275261, -0.06409570574760437, 0.06606339663267136, 0.007761447224766016, -0.045147571712732315, -0.01379205472767353, 0.03261265158653259, 0.012780880555510521, 0.0030198588501662016, 0.0007817244040779769, 0.0033432524651288986, 0.02789383940398693, 0.011851693503558636, 0.044200167059898376, -0.042050279676914215, 0.05895784869790077, 0.0051697432063519955, 0.019494714215397835, 0.0031838330905884504, 0.014329526573419571, -0.03807846084237099, -0.015987487509846687, 0.01681646890938282, 0.0014791842550039291, 0.012999513186514378, -0.021280212327837944, 0.005324607715010643, -0.02091582491993904, -0.0412486307322979, -0.02674601972103119, 0.0002014093188336119, -0.017007771879434586, -0.028786588460206985, 0.014630145393311977, 0.043762899935245514, 0.004236001055687666, 0.03532733768224716, -0.03598323464393616, 0.012398273684084415, -0.09962345659732819, -0.048317741602659225, -0.015923719853162766, -0.002125971484929323, -0.014484390616416931, -0.028659053146839142, -0.029515361413359642, 0.0024846650194376707, -0.020278146490454674, 0.017253734171390533, -0.05946798995137215, -0.008535769768059254, 0.03379691019654274, 0.009023137390613556, 0.01742681674659252, -0.013864932581782341, 0.0784161239862442, -0.03527268022298813, -0.011441757902503014, -0.0017114810179919004, 0.005629782099276781, 0.010794970206916332, -0.024049554020166397, 0.001550922985188663, -0.003318200819194317, -0.0025302134454250336, -0.021972548216581345, -0.0075063761323690414, -0.00034588316339068115, -0.03215716779232025, 0.019877320155501366, 0.02255556732416153, 0.029879748821258545, -0.018729502335190773, 0.017809424549341202, 0.0012070325901731849, 0.05648001283407211, 0.04901007562875748, -0.01713530719280243, 0.02217295952141285, 0.05309121310710907, 0.05688083916902542, 0.0017980230040848255, 0.04132150858640671, 0.02627231553196907, -0.013773835264146328, -0.007456272840499878, 0.025215594097971916, 0.010011537931859493, -0.01783675327897072, 0.026782458648085594, -0.011423538438975811, -0.012589577585458755, -0.00009501111344434321, 0.043434951454401016, 0.0031246200669556856, 0.10137251764535904, -0.006604517810046673, 0.014839667826890945, 0.00011109538900200278, 0.013117938302457333, 0.04481962323188782, 0.0031177878845483065, 0.030444549396634102, 0.06271103769540787, 0.08708854019641876, -0.003411574987694621, 0.012635125778615475, -0.039171621203422546, 0.0027921167202293873, 0.04518401250243187, 0.03006194345653057, 0.0029583685100078583, 0.03038989193737507, -0.046058539301157, -0.005643446464091539, 0.014575487934052944, -0.01898457296192646, -0.0011728712124750018, 0.025561761111021042, -0.028968781232833862, -0.009501395747065544, -0.03323211148381233, -0.046933069825172424, -0.05717235058546066, -0.06737519055604935, -0.007192092016339302, 0.06307542324066162, -0.07167495787143707, 0.000040032773540588096, 0.03629296272993088, -0.028968781232833862, -0.01905745081603527, -0.03401554375886917, 0.027329038828611374, 0.0010703873122110963, -0.02301105111837387, -0.012953964062035084, 0.000303466193145141, -0.09685411304235458, -0.046313609927892685, 0.03705817833542824, 0.005392930470407009, -0.012744441628456116, 0.018173810094594955, -0.030244136229157448, 0.06169075146317482, 0.00033392669865861535, -0.04747965186834335, 0.023156804963946342, 0.012680673971772194, -0.031974975019693375, -0.03993683680891991, -0.092117078602314, 0.009437628090381622, -0.004518401343375444, 0.015604881569743156, 0.013937809504568577, -0.0639135092496872, 0.03618364781141281, 0.025853270664811134, -0.001946055330336094, 0.005156078841537237, -0.021334869787096977, -0.02186323143541813, -0.015987487509846687, 0.05028543248772621, -0.000514696876052767, -0.03037167154252529, -0.008868273347616196, -0.03924449905753136, -0.06351269036531448, 0.0011472502956166863, -0.016242558136582375, -0.042742617428302765, 0.0003251016896683723, -0.011259564198553562, -0.054767392575740814, 0.03720393031835556, 0.0058165304362773895, -0.04022834450006485, -0.005629782099276781, -0.02765698730945587, 0.00999331846833229, 0.02395845763385296, -0.004714259412139654, -0.041029997169971466, -0.010594557039439678, -0.04146726056933403, -0.057791806757450104, 0.00653164042159915, -0.009392079897224903, 0.03153771162033081, -0.01844710111618042, 0.002486942568793893, -0.04106643423438072, 0.020788289606571198, 0.09393901377916336, 0.08242437988519669, 0.07225798070430756, -0.06941575556993484, -0.005438478663563728, 0.05290902033448219, 0.004472852684557438, 0.035618849098682404, -0.048864323645830154, -0.022847076877951622, -0.07644843310117722, -0.03255799412727356, 0.02915097586810589, 0.011551073752343655, -0.007078221067786217, 0.022956393659114838, -0.017180856317281723, -0.041357945650815964, 0.03939025476574898, -0.02379448339343071, -0.027839181944727898, 0.02308392897248268, 0.002178352093324065, -0.0040834140963852406, 0.0345621258020401, 0.02417708933353424, 0.047625403851270676, 0.02977043390274048, -0.002680523321032524, -0.018100934103131294, 0.0010931615252047777, -0.008795395493507385, -0.001200200291350484, 0.010011537931859493, 0.0533098466694355, 0.03164702653884888, -0.034452807158231735, 0.05349203944206238, -0.06548038125038147, -0.03789626806974411, 0.029260290786623955, 0.03734968602657318, 0.045366205275058746, -0.0075200404971838, -0.019640469923615456, -0.0018993682460859418, 0.05185229703783989, -0.05043118819594383, 0.01398335862904787, -0.06085266172885895, 0.004097078461199999, -0.04492894187569618, 0.06970726698637009, 0.022519128397107124, 0.004377201199531555, -0.034671440720558167, -0.023211464285850525, -0.004333930090069771, -0.000715679198037833, -0.06577188521623611, -0.02851329743862152, -0.010858737863600254, 0.08315315842628479, -0.0333414264023304, 0.007456272840499878, 0.021280212327837944, 0.03093647211790085, 0.01197922881692648, 0.059723060578107834, 0.002289945725351572, 0.0009889695793390274, -0.03325033187866211, -0.010722093284130096, 0.015094739384949207, -0.03069962002336979, 0.026527388021349907, 0.026308754459023476, 0.02548888325691223, 0.03487185388803482, 0.039171621203422546, -0.03518158197402954, 0.011341551318764687, 0.009305537678301334, -0.02712862566113472, -0.08592250198125839, 0.016798248514533043, -0.025543542578816414, 0.01658872701227665, -0.06905137002468109, 0.045694153755903244, -0.005934956483542919, 0.03620186820626259, 0.04798979312181473, 0.023302560672163963, -0.010867848061025143, 0.029023438692092896, 0.04503825679421425, -0.02665492333471775, -0.023922018706798553, -0.04620429500937462, 0.056152064353227615, 0.024122431874275208, 0.023830922320485115, -0.025980805978178978, 0.04890076071023941, -0.05473095551133156, -0.05108708515763283, -0.012243409641087055, 0.04011902958154678, 0.09189844876527786, 0.016370095312595367, -0.02858617529273033, -0.033141013234853745, -0.03217538818717003, -0.012416493147611618, 0.02015061117708683, -0.08701565861701965, -0.028567954897880554, -0.027529451996088028, -0.0983845442533493, 0.035309117287397385, -0.08519372344017029, -0.0474432110786438, -0.012680673971772194, -0.03068140149116516, -0.014830558560788631, -0.01953115314245224, 0.0028467748779803514, 0.04857281222939491, 0.03365115821361542, -0.018638404086232185, -0.02424996718764305, 0.010858737863600254, -0.0004244541341904551, -0.013272803276777267, -0.03625652566552162, 0.0010071889264509082, -0.0017593068769201636, 0.007761447224766016, -0.0790720209479332, 0.001432497170753777, 0.0045252335257828236, -0.058229073882102966, 0.016005707904696465, 0.015213165432214737, 0.006504311226308346, -0.06817684322595596, 0.08701565861701965, 0.00048765254905447364, 0.0013915036106482148, -0.042742617428302765, 0.06278391182422638, 0.011669499799609184, 0.037021737545728683, 0.06380419433116913, -0.02124377340078354, -0.019184986129403114, 0.009250879287719727, 0.03294060006737709, 0.013536984100937843, 0.009692699648439884, 0.0015907777706161141, -0.0550224669277668, 0.02503339946269989, 0.02208186313509941, 0.01605125516653061, 0.0190756693482399, -0.05349203944206238, 0.050030361860990524, 0.028039593249559402, 0.015850841999053955, -0.047552529722452164, -0.03303169831633568, 0.031464833766222, -0.008221485652029514, -0.03789626806974411, -0.0343981496989727, -0.025397786870598793, 0.002580316737294197, 0.019203204661607742, 0.011450867168605328, 0.002138497307896614, 0.0016591004095971584, 0.03567350655794144, -0.017308391630649567, -0.027183284983038902, -0.023539412766695023, 0.02131665125489235, 0.03281306475400925, -0.019567592069506645, 0.04784403741359711, 0.03385157138109207, 0.009209886193275452, -0.015568442642688751, 0.06045183539390564, -0.0319567546248436, -0.05633426085114479, 0.0300801619887352, 0.057536736130714417, 0.07298675179481506, -0.017809424549341202, 0.03427061438560486, -0.007925420999526978, 0.000015230245480779558, -0.009319202043116093, -0.005556904710829258, -0.0031041232869029045, -0.03201141580939293, 0.02215474098920822, -0.009401189163327217, -0.021881449967622757, 0.006199136842042208, -0.015030971728265285, -0.029424265027046204, -0.00010924498928943649, 0.03960888832807541, 0.023357218131422997, 0.03942669555544853, 0.03498116880655289, -0.020642533898353577, -0.016543177887797356, 0.010767641477286816, -0.054913148283958435, 0.01000242866575718, -0.037021737545728683, 0.06719299405813217, 0.032266486436128616, 0.011050041764974594, 0.06996233761310577, 0.0130632808431983, -0.04175877198576927, 0.004122130107134581, 0.017809424549341202, 0.02527025155723095, -0.027383696287870407, -0.017791204154491425, 0.04580346867442131, -0.009137008339166641, -0.04223247617483139, -0.04733389616012573, 0.025160934776067734, -0.029551800340414047, 0.009619821794331074, -0.0068322597071528435, -0.004659601021558046, 0.024905864149332047, -0.04908295348286629, -0.037859827280044556, 0.07349689304828644, -0.05349203944206238, -0.01960403099656105, -0.02131665125489235, -0.04186808690428734, -0.06114416942000389, 0.02224583737552166, 0.024832986295223236, -0.013819384388625622, 0.04325275868177414, 0.07739584147930145, 0.004165401216596365, -0.03115510381758213, 0.033432524651288986, 0.00399459432810545, 0.0770314484834671, -0.04070204868912697, -0.04168589413166046, 0.06956151127815247, 0.008039291948080063, -0.0639135092496872, -0.012534919194877148, 0.010785860940814018, -0.009947770275175571, 0.00299480720423162, 0.0167527012526989, -0.045001816004514694, 0.01587817259132862, -0.006709279026836157, -0.04270617663860321, 0.03906230628490448, -0.04365358501672745, -0.0059167370200157166, 0.04984816908836365, -0.007192092016339302, -0.020952263846993446, 0.031464833766222, -0.0075838081538677216, -0.0395360104739666, 0.010539899580180645, 0.023812701925635338, 0.011104699224233627, 0.029406046494841576, 0.040957119315862656, 0.0116968285292387, 0.013281912542879581, -0.008854608982801437, -0.0055113560520112514, 0.022901734337210655, 0.0078115505166351795, 0.0051424140110611916, 0.006718388758599758, 0.025525322183966637, 0.0366026945412159, 0.013117938302457333, -0.024377502501010895, -0.01743592694401741, 0.018929913640022278, -0.0013687293976545334, -0.02705574780702591, 0.032831285148859024, -0.023266121745109558, -0.004714259412139654, -0.0656261295080185, 0.012908415868878365, -0.040264785289764404, -0.026909993961453438, -0.06333049386739731, -0.03851572424173355, -0.042596861720085144, -0.053747110068798065, -0.07218509912490845, -0.04008258879184723, -0.007187537383288145, 0.018729502335190773, -0.02572573535144329, -0.016916675493121147, 0.03498116880655289, -0.012935745529830456, -0.025470664724707603, -0.04070204868912697, 0.03567350655794144, -0.029715774580836296, 0.03913518413901329, 0.03906230628490448, -0.030444549396634102, 0.0784161239862442, 0.008986699394881725, 0.00660907244309783, 0.06686504930257797, 0.0639135092496872, -0.03541843593120575, 0.08963924646377563, 0.08009230345487595, -0.03141017630696297, -0.03255799412727356, -0.04518401250243187, -0.021826792508363724, -0.005429368931800127, -0.07950928062200546, 0.0009508228395134211, 0.04901007562875748, 0.03257621452212334, 0.035691723227500916, 0.016625165939331055, -0.013373009860515594, -0.028167130425572395, 0.022847076877951622, -0.0515972264111042, 0.05531397461891174, 0.04901007562875748, -0.04015546664595604, 0.023466534912586212, -0.007674905005842447, 0.0086815245449543, -0.024067774415016174, 0.005192517302930355, 0.03490829095244408, -0.022901734337210655, 0.012862867675721645, 0.01011174451559782, -0.011997448280453682, 0.03549131378531456, 0.014165552332997322, -0.0038420073688030243, 0.019859101623296738, 0.062419526278972626, 0.027729865163564682, -0.020715411752462387, 0.043981533497571945, 0.018656624481081963, 0.0666828528046608, -0.06420502066612244, -0.02596258744597435, 0.05301833525300026, 0.0935017541050911, 0.009701808914542198, -0.018693063408136368, 0.004174510948359966, 0.023994896560907364, -0.024049554020166397, -0.01460281666368246, 0.003252155613154173, -0.018875256180763245, -0.053892865777015686, 0.01391048077493906, 0.04277905449271202, -0.0037577429320663214, -0.04977529123425484, -0.004466020502150059, 0.021334869787096977, -0.07236729562282562, 0.0018572359113022685, -0.026363413780927658, 0.01719907484948635, 0.006527085322886705, 0.050795573741197586, 0.0047233691439032555, 0.036456938832998276, 0.01806449517607689, 0.0251062773168087, -0.005729988683015108, -0.07783310115337372, -0.005784646607935429, -0.0440179705619812, -0.08052957057952881, 0.0026440846268087626, 0.0008881937828846276, -0.012917526066303253, 0.11616663634777069, -0.026909993961453438, 0.07725008577108383, 0.02062431536614895, -0.013136157765984535, 0.019512934610247612, 0.017463255673646927, -0.010703873820602894, 0.04671443626284599, 0.026800677180290222, 0.0030403556302189827, -0.013400338590145111, -0.08125834167003632, 0.00430204626172781, 0.018483540043234825, -0.003662091214209795, 0.05790112540125847, -0.003422962035983801, 0.023830922320485115, 0.0656261295080185, -0.02417708933353424, -0.03775051236152649, 0.022537346929311752, 0.0423053540289402, -0.03332320973277092, 0.02062431536614895, -0.0116968285292387, -0.010630995966494083, -0.043434951454401016, -0.006331227254122496, 0.059249356389045715, 0.00391033012419939, 0.011396209709346294, -0.05666220933198929, -0.0137556167319417, 0.014657475054264069, 0.031974975019693375 ]
729,250
tables.file
copy_file
An easy way of copying one PyTables file to another. This function allows you to copy an existing PyTables file named srcfilename to another file called dstfilename. The source file must exist and be readable. The destination file can be overwritten in place if existing by asserting the overwrite argument. This function is a shorthand for the :meth:`File.copy_file` method, which acts on an already opened file. kwargs takes keyword arguments used to customize the copying process. See the documentation of :meth:`File.copy_file` for a description of those arguments.
def copy_file(srcfilename, dstfilename, overwrite=False, **kwargs): """An easy way of copying one PyTables file to another. This function allows you to copy an existing PyTables file named srcfilename to another file called dstfilename. The source file must exist and be readable. The destination file can be overwritten in place if existing by asserting the overwrite argument. This function is a shorthand for the :meth:`File.copy_file` method, which acts on an already opened file. kwargs takes keyword arguments used to customize the copying process. See the documentation of :meth:`File.copy_file` for a description of those arguments. """ # Open the source file. srcfileh = open_file(srcfilename, mode="r") try: # Copy it to the destination file. srcfileh.copy_file(dstfilename, overwrite=overwrite, **kwargs) finally: # Close the source file. srcfileh.close()
(srcfilename, dstfilename, overwrite=False, **kwargs)
[ -0.04399381950497627, -0.06656581163406372, 0.014188366010785103, -0.0231111329048872, -0.04870230704545975, -0.027837593108415604, 0.007700715679675341, 0.05934133753180504, 0.012337318621575832, -0.05240440368652344, -0.01946295239031315, -0.017396248877048492, -0.024728551506996155, 0.05660969391465187, 0.009246249683201313, 0.03328290581703186, 0.034756556153297424, 0.02623814344406128, -0.027424251660704613, 0.03281565010547638, 0.021349942311644554, 0.0026642498560249805, 0.01137585286051035, -0.007952313870191574, -0.013810968026518822, 0.048055339604616165, -0.03576295077800751, -0.0030371551401913166, 0.017629876732826233, -0.004250220023095608, 0.05014001578092575, 0.00011330362758599222, 0.025716975331306458, 0.045000214129686356, -0.021637482568621635, 0.021439798176288605, 0.017405234277248383, 0.0039469534531235695, -0.09115059673786163, -0.03766791149973869, -0.034864384680986404, -0.04212480038404465, 0.08015213906764984, 0.028933843597769737, 0.024441011250019073, -0.009506834670901299, -0.051613662391901016, -0.028430646285414696, 0.009542777203023434, -0.008352176286280155, 0.013586326502263546, 0.04388599097728729, 0.017279434949159622, -0.0202716626226902, -0.03242028132081032, 0.041621603071689606, -0.05589083954691887, 0.051110465079545975, -0.1052401140332222, 0.03702094405889511, 0.013909810222685337, -0.027244538068771362, 0.013792997226119041, -0.014682577922940254, 0.034217413514852524, -0.044676728546619415, -0.02348853088915348, -0.0602758452296257, 0.018833955749869347, 0.031521715223789215, -0.028089191764593124, 0.06527187675237656, 0.014808377251029015, 0.034684669226408005, 0.05732854828238487, 0.08008025586605072, -0.030533291399478912, -0.08209304511547089, 0.03328290581703186, -0.038566477596759796, -0.024872323498129845, -0.058011457324028015, -0.009416977874934673, -0.0037897045258432627, -0.00829376932233572, -0.009165379218757153, 0.02298533357679844, -0.0058541614562273026, 0.018744098022580147, 0.030946632847189903, 0.00572386896237731, 0.00649663619697094, -0.027064824476838112, -0.01174426544457674, 0.024674637243151665, -0.04978058859705925, -0.031773313879966736, 0.025339577347040176, -0.03020980767905712, 0.015563173219561577, -0.03520583733916283, -0.01305617205798626, 0.031683456152677536, -0.007273896597325802, 0.022482136264443398, -0.031503744423389435, 0.017540019005537033, 0.07476074248552322, -0.013891839422285557, -0.048091284930706024, -0.041441891342401505, -0.023937813937664032, 0.04284365475177765, -0.0015915860421955585, 0.01354139856994152, -0.06972876936197281, 0.03560120612382889, -0.011097297072410583, -0.00655055046081543, 0.02312910370528698, 0.0056564765982329845, 0.021278057247400284, -0.018025245517492294, -0.02339867316186428, 0.054596904665231705, -0.03313913568854332, -0.0006582000060006976, -0.012373262085020542, -0.009425963275134563, 0.04345468059182167, -0.02036151848733425, -0.03587077930569649, 0.03545743599534035, 0.018959755077958107, 0.004061521030962467, -0.038566477596759796, 0.047552142292261124, 0.05894596874713898, 0.024297241121530533, -0.015662014484405518, 0.07335897535085678, -0.07792369276285172, 0.012130648829042912, 0.00404130294919014, 0.012355290353298187, -0.021313998848199844, 0.0041603632271289825, -0.04086680710315704, 0.020846744999289513, 0.08741255849599838, -0.019031640142202377, -0.00584966829046607, -0.08353074640035629, 0.005961989052593708, 0.0031090404372662306, -0.024081584066152573, 0.008801459334790707, -0.08942534774541855, -0.01634492538869381, -0.01706377975642681, 0.012301376089453697, -0.031701426953077316, 0.01621014066040516, -0.012112677097320557, -0.0035605700686573982, 0.024099554866552353, -0.02945501171052456, 0.004690517671406269, 0.027118738740682602, -0.05966481938958168, -0.0007778216968290508, -0.012175576761364937, 0.024764494970440865, 0.024315211921930313, 0.03612237796187401, -0.07260417938232422, 0.021134285256266594, -0.04686923325061798, -0.012328333221375942, 0.006209095008671284, 0.06325908750295639, -0.022607935592532158, -0.06750032305717468, 0.07483262568712234, 0.048306938260793686, 0.03522380813956261, 0.004360294435173273, 0.04284365475177765, 0.003580787917599082, 0.02036151848733425, 0.02979646809399128, -0.029023701325058937, 0.00975843332707882, 0.017108706757426262, -0.025159863755106926, -0.08209304511547089, 0.020738916471600533, 0.014026624150574207, -0.005876625422388315, 0.10430561006069183, -0.015554187819361687, -0.01305617205798626, 0.03950098529458046, 0.05301542952656746, 0.0299582090228796, -0.017881475389003754, 0.0455034114420414, 0.022068794816732407, -0.06254023313522339, -0.05039161443710327, 0.048091284930706024, -0.054489076137542725, 0.031180260702967644, 0.006847077514976263, 0.03020980767905712, 0.03006603755056858, -0.06271994858980179, 0.001789270667359233, -0.05851465463638306, 0.03971664234995842, 0.010980483144521713, 0.04906173422932625, -0.06002424657344818, 0.02970661036670208, 0.05326702818274498, -0.04345468059182167, 0.027819620445370674, 0.03313913568854332, 0.02645380049943924, 0.0018746345303952694, -0.0009558501769788563, 0.015733901411294937, 0.031593602150678635, -0.0076153515838086605, 0.027783678844571114, 0.0049376231618225574, -0.006164166610687971, -0.006164166610687971, -0.01643478311598301, 0.0008957585669122636, -0.014413007535040379, 0.031503744423389435, 0.065235935151577, 0.027316423133015633, 0.035151924937963486, -0.051433950662612915, -0.015706943348050117, -0.00832521915435791, -0.0540577657520771, 0.03400176018476486, 0.07634221762418747, -0.017962345853447914, -0.055423587560653687, 0.0327078215777874, 0.01491620484739542, 0.021080370992422104, 0.020792830735445023, -0.0527997724711895, -0.006541564594954252, 0.030659090727567673, -0.04708489030599594, -0.05384210869669914, 0.025016093626618385, -0.030892718583345413, -0.006510114762932062, -0.03277970850467682, -0.06714089214801788, 0.011124254204332829, -0.051721490919589996, -0.03667948767542839, 0.08396206051111221, 0.03881807625293732, 0.009605676867067814, 0.007071719039231539, 0.017225520685315132, -0.0782112330198288, -0.0009766295552253723, 0.01625506952404976, 0.10674970597028732, -0.013074143789708614, 0.04949304834008217, 0.012939359061419964, -0.03286956623196602, -0.03702094405889511, -0.031449828296899796, -0.0031180260702967644, -0.024458982050418854, -0.06642203778028488, -0.051829319447278976, -0.00405253516510129, 0.015985500067472458, 0.04888202250003815, -0.024566810578107834, 0.028502531349658966, -0.04057926684617996, 0.05308731272816658, 0.004852259531617165, -0.04934927448630333, 0.01984035037457943, -0.018744098022580147, -0.03860241919755936, 0.007399695925414562, 0.013316757045686245, 0.051793377846479416, -0.04952898994088173, -0.041801318526268005, 0.01299327239394188, 0.0046231248416006565, -0.06067121401429176, 0.02354244515299797, 0.0146646061912179, -0.08928157389163971, -0.014745477586984634, 0.014880262315273285, -0.017809590324759483, -0.002621568040922284, -0.028879929333925247, 0.006703306455165148, -0.008671167306602001, -0.028879929333925247, -0.07849877327680588, -0.0043310909532010555, 0.0030349085573107004, 0.04237639904022217, 0.06573913246393204, -0.03276173770427704, 0.054704733192920685, 0.0029585305601358414, -0.038422707468271255, 0.005611548200249672, -0.008554353378713131, 0.0535186268389225, 0.013945753686130047, 0.022482136264443398, -0.0455034114420414, -0.018151044845581055, -0.020541232079267502, 0.00365042663179338, 0.03675137460231781, 0.015832742676138878, 0.04287959635257721, -0.0013298785779625177, 0.024153469130396843, -0.07019601762294769, 0.0000601618412474636, -0.015823757275938988, -0.05010407045483589, -0.04891796410083771, 0.02381201460957527, -0.021960966289043427, 0.037919510155916214, 0.03971664234995842, 0.006986354943364859, -0.005319514311850071, -0.01157353725284338, 0.01354139856994152, 0.048163168132305145, -0.05873031169176102, 0.047911569476127625, -0.037488196045160294, 0.02997618168592453, 0.024926235899329185, -0.022050824016332626, -0.06512810289859772, -0.018052201718091965, 0.02668742649257183, -0.024710580706596375, 0.005494734738022089, -0.10473691672086716, 0.018636271357536316, -0.02936515584588051, -0.014763448387384415, 0.013065158389508724, -0.006429243832826614, -0.0161741990596056, -0.013891839422285557, 0.007844486273825169, 0.03592469170689583, -0.02303924784064293, 0.0025451898109167814, 0.06552347540855408, -0.05082292482256889, -0.04248422756791115, 0.01674029603600502, -0.005575605668127537, -0.01684812270104885, -0.04564718157052994, 0.010549171827733517, 0.0010721022263169289, -0.03644585981965065, 0.002186886500567198, 0.04241234064102173, -0.0025362041778862476, -0.013739082962274551, 0.022446192800998688, -0.018160030245780945, 0.04845070838928223, 0.054992273449897766, -0.031575627624988556, -0.010863670147955418, -0.013801982626318932, -0.013289799913764, -0.027765708044171333, 0.03276173770427704, -0.04967276006937027, 0.011986877769231796, 0.07569524645805359, 0.02690308354794979, 0.08396206051111221, 0.02634597197175026, 0.018959755077958107, -0.01305617205798626, -0.03676934540271759, -0.0014107495080679655, -0.028412675485014915, 0.00847348291426897, -0.0540577657520771, -0.03950098529458046, 0.05394993722438812, 0.010360472835600376, -0.031719401478767395, -0.03632006049156189, 0.012570946477353573, 0.00404130294919014, 0.017890460789203644, -0.028879929333925247, 0.009219293482601643, 0.03572700545191765, 0.02618422918021679, 0.008850880898535252, -0.00247555086389184, 0.008024199865758419, 0.02943704091012478, 0.028017306700348854, 0.0670330673456192, -0.018258873373270035, 0.04406570643186569, -0.03849459066987038, 0.06609855592250824, 0.061713553965091705, 0.027711793780326843, -0.02339867316186428, 0.02670539915561676, -0.017674803733825684, -0.13061563670635223, -0.0013961477670818567, -0.025555232539772987, -0.06990847736597061, 0.0002781344228424132, 0.07131024450063705, 0.005845175590366125, 0.018833955749869347, 0.01708175055682659, -0.021673426032066345, -0.02287750504910946, -0.025105949491262436, -0.06836294382810593, -0.02361433021724224, -0.0010558157227933407, 0.04996030032634735, 0.01014481671154499, 0.0327078215777874, 0.12716513872146606, -0.024656666442751884, 0.037955451756715775, -0.017531033605337143, -0.01960672251880169, 0.00021705999097321182, 0.007130126003175974, 0.006829105783253908, -0.004203045275062323, 0.0015185775700956583, -0.035385552793741226, -0.00035718022263608873, 0.05578301474452019, -0.005616040900349617, 0.015473316423594952, 0.013460527174174786, -0.005090379621833563, 0.06724872440099716, 0.028736159205436707, -0.04546746984124184, -0.03328290581703186, -0.018708156421780586, 0.04248422756791115, 0.03436118736863136, 0.005553141236305237, 0.0024014192167669535, 0.008028692565858364, -0.03763196989893913, -0.0028192526660859585, -0.030677063390612602, -0.02611234411597252, -0.054381247609853745, -0.03610440343618393, 0.027244538068771362, -0.00029849258135072887, 0.022571992129087448, -0.007817529141902924, -0.004088477697223425, -0.004281669855117798, -0.0034055672585964203, 0.007943328469991684, -0.028951814398169518, -0.048019398003816605, 0.04600660875439644, 0.017216535285115242, -0.027981363236904144, -0.01491620484739542, -0.0012108184164389968, 0.00581821845844388, 0.03218665346503258, -0.0478396862745285, 0.04032766819000244, 0.048522595316171646, 0.02665148489177227, -0.04395787790417671, 0.025447405874729156, -0.02690308354794979, -0.03022778034210205, 0.005921553820371628, -0.010108874179422855, 0.0398244708776474, -0.02715468220412731, -0.031324028968811035, 0.025267692282795906, 0.02683119848370552, 0.025752918794751167, 0.010594099760055542, -0.02675931341946125, -0.0011305090738460422, -0.02979646809399128, -0.023847956210374832, -0.03617629036307335, 0.021439798176288605, 0.004874723497778177, -0.0538780502974987, -0.0006492143729701638, 0.01662348210811615, 0.004641096573323011, 0.024153469130396843, 0.011510637588799, -0.013388642109930515, -0.03596063330769539, 0.001459047431126237, -0.02296736091375351, -0.10423371940851212, 0.00651910062879324, 0.027837593108415604, -0.02005600556731224, 0.006438229698687792, -0.004915159195661545, 0.025375520810484886, -0.0031494759023189545, -0.008675660006701946, 0.06635015457868576, -0.01987629197537899, 0.004090724512934685, 0.018061188980937004, 0.03401973098516464, 0.00841058325022459, -0.05671752244234085, 0.05301542952656746, -0.02375810034573078, -0.009030594490468502, -0.01948092319071293, -0.015365488827228546, 0.05632215365767479, -0.028879929333925247, -0.023955784738063812, 0.05725666135549545, 0.08417771756649017, -0.014943161979317665, 0.0075120166875422, 0.030407492071390152, -0.031413886696100235, 0.009273206815123558, 0.023021275177598, -0.002278989413753152, -0.013730097562074661, -0.03612237796187401, 0.018654242157936096, 0.012687760405242443, 0.02645380049943924, -0.019139468669891357, 0.03957287222146988, -0.06200109422206879, 0.012400218285620213, 0.02316504716873169, -0.041729431599378586, -0.019265267997980118, 0.03896184638142586, -0.001026612357236445, -0.02314707450568676, -0.021960966289043427, -0.013065158389508724, -0.04219668731093407, 0.00572386896237731, 0.012669788673520088, 0.0032438253983855247, -0.0331571064889431, 0.0006211341242305934, -0.025537261739373207, -0.00655055046081543, 0.024045642465353012, 0.03723659738898277, -0.03996824100613594, -0.04845070838928223, 0.02000209130346775, -0.003812168724834919, 0.005234150215983391, 0.04672546312212944, 0.015437373891472816, -0.05722071975469589, -0.019283238798379898, 0.00413565244525671, 0.009542777203023434, -0.04410164803266525, -0.019211353734135628, 0.017575962468981743, -0.06530781835317612, 0.06563130021095276, 0.03676934540271759, 0.048199109733104706, -0.017162621021270752, -0.034307271242141724, -0.04320308193564415, -0.01946295239031315, -0.034325242042541504, -0.028915872797369957, -0.05222468823194504, -0.05660969391465187, 0.03448698669672012, 0.05524387210607529, 0.011312953196465969, -0.03436118736863136, -0.015437373891472816, -0.05689723417162895, -0.02278764918446541, 0.08899403363466263, 0.0394650436937809, -0.015275632031261921, 0.04751620069146156, 0.0032101289834827185, -0.04985247179865837, 0.013074143789708614, -0.01700088009238243, -0.03299536556005478, 0.004544500261545181, -0.04079492390155792, 0.027568021789193153, 0.022230537608265877, -0.017261464148759842, 0.00337411742657423, 0.07224475592374802, -0.04701300337910652, 0.01142976712435484, -0.054668791592121124, 0.06002424657344818, 0.0526200570166111, 0.0335165336728096, -0.020649060606956482, 0.031036488711833954, -0.006334894336760044, 0.05100264027714729, -0.0036077448166906834, 0.024746524170041084, -0.05891002342104912, -0.0673924908041954, 0.021439798176288605, -0.02947298437356949, 0.006892005447298288, -0.03353450447320938, -0.013137043453752995, 0.048091284930706024, -0.01634492538869381, 0.0231111329048872, -0.00371332629583776, 0.013676183298230171, -0.028089191764593124, 0.05330296978354454, -0.004605153575539589, 0.034648727625608444, -0.064517080783844, -0.04198103025555611, 0.12464915215969086, -0.02323693223297596, 0.01678522303700447, -0.038674306124448776, -0.05711289122700691, 0.015697957947850227, 0.08058345317840576, -0.05046349763870239, 0.0009873000672087073, -0.02708279713988304, -0.024944208562374115, 0.02339867316186428, 0.012301376089453697, -0.013388642109930515, 0.01479040551930666, -0.009641619399189949, 0.03272579610347748, 0.058047402650117874, 0.01982237957417965, -0.02003803476691246, 0.021691396832466125, -0.0163539107888937, -0.0024845364969223738, 0.024980150163173676, -0.04988841712474823, 0.017656832933425903, -0.02334475889801979, 0.03777574002742767, 0.018708156421780586, 0.04104652255773544, -0.03376813232898712, -0.038674306124448776, 0.006712292321026325, -0.03392987325787544, 0.0022239522077143192, -0.00003871558510581963, -0.03303130716085434, -0.00327976793050766, -0.03272579610347748, -0.027550050988793373, -0.0774923786520958, -0.0709148719906807, -0.031629543751478195, 0.010845698416233063, 0.031000547111034393, 0.03272579610347748, 0.02368621528148651, -0.014538806863129139, -0.0019251789199188352, -0.002439608331769705, -0.03038952127099037, 0.004023331683129072, 0.04708489030599594, 0.10315544158220291, -0.008078113198280334, -0.005939525086432695, 0.024225354194641113, 0.01299327239394188, 0.0037335441447794437, 0.03401973098516464, 0.009425963275134563, -0.01676725223660469, -0.006896498613059521, -0.010324530303478241, 0.06509216129779816, 0.03322899341583252, -0.0001244655140908435, 0.005103858187794685, 0.018564386293292046, 0.05891002342104912, -0.07116647064685822, 0.00042934634257107973, -0.008078113198280334, -0.0039581856690347195, 0.008689139038324356, -0.037488196045160294, -0.002515986328944564, -0.0013208928285166621, 0.0160394124686718, 0.03788356855511665, 0.04219668731093407, 0.009008130058646202, 0.03599657863378525 ]
729,251
tables.description
descr_from_dtype
Get a description instance and byteorder from a (nested) NumPy dtype.
def descr_from_dtype(dtype_, ptparams=None): """Get a description instance and byteorder from a (nested) NumPy dtype.""" fields = {} fbyteorder = '|' for name in dtype_.names: dtype, offset = dtype_.fields[name][:2] kind = dtype.base.kind byteorder = dtype.base.byteorder if byteorder in '><=': if fbyteorder not in ['|', byteorder]: raise NotImplementedError( "structured arrays with mixed byteorders " "are not supported yet, sorry") fbyteorder = byteorder # Non-nested column if kind in 'biufSUc': col = Col.from_dtype(dtype, pos=offset, _offset=offset) # Nested column elif kind == 'V' and dtype.shape in [(), (1,)]: if dtype.shape != (): warnings.warn( "nested descriptions will be converted to scalar") col, _ = descr_from_dtype(dtype.base, ptparams=ptparams) col._v_pos = offset col._v_offset = offset else: raise NotImplementedError( "structured arrays with columns with type description ``%s`` " "are not supported yet, sorry" % dtype) fields[name] = col return Description(fields, ptparams=ptparams), fbyteorder
(dtype_, ptparams=None)
[ 0.050642646849155426, -0.013446308672428131, 0.02775953896343708, 0.010249536484479904, 0.01629992388188839, -0.0462719164788723, 0.053676869720220566, -0.01921675354242325, 0.019307056441903114, -0.016643080860376358, -0.05230424553155899, 0.02635079249739647, -0.05952858924865723, -0.03157037869095802, -0.0009837523102760315, 0.03236505761742592, 0.0171216931194067, 0.013365034945309162, -0.02781372144818306, -0.011965318582952023, 0.012769026681780815, 0.03148007392883301, 0.03473103046417236, -0.039481036365032196, -0.03223863244056702, 0.003740855259820819, -0.007553953677415848, -0.021239569410681725, -0.014087469317018986, -0.025267140939831734, -0.0407814159989357, -0.04229852929711342, -0.040636930614709854, 0.055302347987890244, -0.03577855974435806, 0.048475343734025955, 0.007955808192491531, 0.009545163251459599, -0.007946777157485485, 0.02049907296895981, -0.008660181425511837, -0.015803251415491104, -0.007445588707923889, -0.06696966290473938, 0.030577031895518303, 0.0124800531193614, 0.02273862063884735, -0.05371299013495445, -0.06881187111139297, 0.017627397552132607, 0.020769987255334854, -0.01711266301572323, 0.006876671686768532, -0.05154568701982498, -0.01811503991484642, -0.020842229947447777, 0.03814453259110451, 0.030631214380264282, -0.025863148272037506, 0.055302347987890244, -0.06827004253864288, 0.029023798182606697, -0.05241261050105095, -0.022684438154101372, -0.08228527009487152, -0.0214382391422987, 0.01434935163706541, -0.058228205889463425, 0.014033286832273006, -0.00496673583984375, 0.001471959869377315, -0.027326077222824097, -0.014936329796910286, 0.030775701627135277, 0.05270158499479294, -0.033159736543893814, -0.035038065165281296, -0.09998490661382675, 0.0765780359506607, 0.04616355150938034, -0.06028714403510094, 0.004501668736338615, 0.0016706293681636453, 0.012082713656127453, 0.051798541098833084, 0.022865045815706253, 0.012931574136018753, 0.06212935224175453, 0.050389792770147324, -0.00693988474085927, 0.03969776630401611, -0.04229852929711342, -0.0232623852789402, 0.012669691815972328, -0.03317779675126076, -0.016868840903043747, 0.015911616384983063, 0.04247913882136345, 0.012669691815972328, 0.024526644498109818, 0.012633570469915867, -0.0407814159989357, 0.0034676846116781235, -0.0012902225134894252, -0.04768066480755806, -0.010096019133925438, 0.0010040708584710956, 0.053315650671720505, -0.001751903211697936, -0.047716785222291946, -0.01407843828201294, -0.013374065048992634, 0.010944879613816738, -0.029764294624328613, 0.03552570566534996, -0.006682517472654581, 0.07990123331546783, -0.020535195246338844, -0.032058022916316986, -0.044790927320718765, -0.018431104719638824, 0.03299718722701073, -0.027596991509199142, -0.009752863086760044, -0.02822912111878395, -0.020372647792100906, -0.0015769386664032936, 0.006524485070258379, 0.02057131752371788, -0.015378820709884167, 0.005454379133880138, 0.020733864977955818, -0.01028565876185894, 0.06516357511281967, 0.05172629654407501, 0.019885005429387093, 0.050570402294397354, -0.01945154368877411, -0.022341281175613403, -0.0001187360321637243, 0.03706087917089462, -0.04219016432762146, 0.018322739750146866, 0.0008212046232074499, 0.027542809024453163, -0.012498113326728344, -0.002627854933962226, -0.04428522288799286, -0.022919228300452232, 0.04305708408355713, -0.06570540368556976, -0.008502149023115635, 0.02635079249739647, -0.008958185091614723, 0.08459705859422684, -0.03879472240805626, -0.008637605234980583, -0.042515259236097336, -0.05067876726388931, 0.046488646417856216, 0.028319425880908966, -0.02739832177758217, -0.043562788516283035, -0.000127766455989331, -0.0026820374187082052, 0.030992431566119194, 0.0011615388793870807, -0.09767311811447144, -0.005996204912662506, -0.023768089711666107, 0.015938706696033478, 0.01788927987217903, -0.010195353999733925, 0.013654008507728577, 0.021365994587540627, 0.03680802881717682, 0.006741215009242296, 0.04959511756896973, -0.04804188385605812, -0.08271872997283936, 0.05266546085476875, 0.0737244188785553, -0.07343544811010361, 0.04323769360780716, 0.00696697598323226, 0.028680643066763878, -0.003156134858727455, -0.014213895425200462, -0.005260224919766188, 0.03325003758072853, -0.011468645185232162, 0.04580233618617058, -0.01177567895501852, 0.03184129297733307, 0.05938410013914108, -0.01270581316202879, 0.03861411288380623, 0.05002857744693756, -0.004871916491538286, 0.1108214259147644, 0.07220730930566788, 0.0050164032727479935, 0.04143160954117775, 0.03796392306685448, 0.010908758267760277, 0.04255137965083122, -0.0021086051128804684, -0.020083673298358917, -0.04237077385187149, -0.05111222714185715, 0.012832239270210266, -0.028030451387166977, 0.034044716507196426, -0.0031606501433998346, 0.016336046159267426, -0.010981001891195774, -0.09998490661382675, 0.014538990333676338, -0.07354381680488586, -0.03803616762161255, 0.029240528121590614, 0.007066310849040747, 0.022594133391976357, 0.0431293286383152, -0.0286264605820179, 0.008014505729079247, 0.026657825335860252, -0.0026436580810695887, 0.027596991509199142, 0.01876523159444332, -0.049414508044719696, -0.013897829689085484, 0.003271272871643305, -0.011920166201889515, 0.04623579606413841, -0.01724812015891075, -0.04703047499060631, 0.007621682249009609, 0.02237740345299244, 0.010592693462967873, -0.02044489048421383, -0.03601334989070892, -0.016733385622501373, -0.01583034172654152, -0.03073957934975624, -0.06541642546653748, 0.0270551647990942, 0.006190359126776457, -0.008000959642231464, -0.019307056441903114, -0.036844149231910706, -0.046199675649404526, 0.04670538008213043, -0.008326055482029915, 0.029710112139582634, -0.005743352696299553, 0.024111244827508926, -0.03458654135465622, 0.012019501067698002, -0.018512379378080368, -0.027795659378170967, 0.03050478920340538, 0.015559429302811623, 0.07155711948871613, 0.021709151566028595, -0.038180653005838394, 0.06696966290473938, -0.036266203969717026, -0.006172297988086939, -0.024508584290742874, 0.03039642423391342, 0.061732012778520584, -0.0005356172914616764, -0.04540499672293663, -0.045730091631412506, -0.01683272048830986, 0.04323769360780716, -0.025736723095178604, 0.05439930409193039, 0.007355284411460161, 0.0006925210473127663, -0.031245283782482147, -0.027217712253332138, 0.04717496037483215, 0.0015983859775587916, 0.05732516199350357, -0.037422098219394684, -0.0071611301973462105, -0.03455042093992233, 0.020896412432193756, -0.0068044280633330345, 0.016408288851380348, 0.03511030599474907, 0.047355569899082184, 0.014891177415847778, 0.04457419738173485, 0.011730527505278587, 0.017157815396785736, 0.017798975110054016, 0.012859330512583256, -0.05288219079375267, 0.03785555809736252, 0.03785555809736252, 0.04229852929711342, -0.055952537804841995, 0.009161369875073433, 0.007802290841937065, -0.04692211002111435, -0.027217712253332138, -0.001730455900542438, 0.0074275280348956585, 0.035435404628515244, -0.0222148559987545, 0.10778719931840897, 0.007716501597315073, -0.010791362263262272, -0.017898309975862503, -0.007373345084488392, 0.057289041578769684, 0.03388217091560364, 0.028680643066763878, -0.013428247533738613, -0.012461991980671883, -0.027777599170804024, 0.03511030599474907, -0.028373608365654945, -0.007048249710351229, -0.03534509986639023, 0.07621681690216064, 0.03588692471385002, 0.033972471952438354, -0.0721350684762001, 0.04255137965083122, -0.01566779427230358, -0.005982659291476011, -0.03259984776377678, 0.011315127834677696, -0.09861228615045547, -0.0661388635635376, -0.011405431665480137, 0.02226903848350048, -0.01735648512840271, -0.0007997573702596128, -0.007933232001960278, 0.023099837824702263, -0.04778902977705002, 0.0352909155189991, -0.08387462049722672, 0.07715598493814468, 0.05457991361618042, 0.002222614362835884, -0.03092018887400627, -0.019866943359375, 0.024057062342762947, -0.009093642234802246, -0.015586520545184612, 0.03552570566534996, 0.014204864390194416, 0.007621682249009609, -0.009770924225449562, 0.030866006389260292, 0.02075192518532276, 0.035435404628515244, -0.020011430606245995, -0.01445771660655737, -0.014918268658220768, -0.016453441232442856, -0.02033652551472187, 0.019830821081995964, 0.020697742700576782, 0.0009679491049610078, 0.015740036964416504, 0.015243364498019218, -0.011423492804169655, -0.019704395905137062, -0.07343544811010361, -0.09341076016426086, -0.0030161633621901274, 0.0016774021787568927, -0.016913993284106255, -0.031173041090369225, -0.030866006389260292, 0.017808005213737488, 0.051870785653591156, -0.026567522436380386, 0.0037227943539619446, -0.018187284469604492, 0.061732012778520584, -0.06516357511281967, -0.012714844197034836, -0.04135936498641968, 0.007946777157485485, -0.025971513241529465, 0.06267117708921432, -0.026495277881622314, -0.04529663175344467, -0.003436078317463398, -0.023930637165904045, -0.017609337344765663, -0.00656060641631484, -0.057180676609277725, -0.03635650873184204, -0.07282137870788574, -0.004880947060883045, 0.009134278632700443, 0.03592304512858391, 0.007310132030397654, 0.017519032582640648, -0.039589401334524155, 0.009161369875073433, 0.05819208547472954, 0.04190118983387947, 0.017979584634304047, -0.015649734064936638, 0.02833748608827591, -0.008249296806752682, 0.008768546395003796, 0.009969593957066536, 0.054543789476156235, -0.008366692811250687, -0.02360554039478302, -0.04605518653988838, 0.041214875876903534, -0.014557051472365856, -0.022016186267137527, 0.05497725307941437, -0.01589355431497097, 0.05461603403091431, 0.02114926464855671, -0.007382375653833151, -0.017564184963703156, 0.07050959020853043, -0.025212958455085754, -0.02203424647450447, 0.0277053564786911, -0.040167346596717834, 0.016453441232442856, 0.00019796393462456763, 0.018187284469604492, 0.030667336657643318, -0.003786007408052683, 0.04930614307522774, -0.001549847424030304, -0.02723577432334423, -0.016742415726184845, 0.039408791810274124, 0.07155711948871613, 0.018837474286556244, 0.011062275618314743, -0.03120916336774826, 0.06332136690616608, 0.016606958582997322, 0.1061256006360054, -0.018205344676971436, -0.007120493333786726, -0.02817493863403797, 0.04439358785748482, -0.005382135510444641, 0.006420635152608156, 0.009016883559525013, -0.005373105406761169, -0.016336046159267426, 0.009554194286465645, -0.012109804898500443, -0.0014990512281656265, -0.043093208223581314, 0.04995633289217949, -0.026152122765779495, -0.005653048399835825, 0.028933493420481682, 0.08040694147348404, 0.01118870172649622, 0.07307422906160355, 0.0037995530292391777, 0.0014538990799337626, 0.002740735188126564, -0.01583034172654152, -0.00325772725045681, -0.04576621204614639, 0.0009352138149552047, 0.016444411128759384, -0.040456321090459824, -0.03709700331091881, -0.03839738294482231, -0.00896721612662077, 0.017157815396785736, -0.03184129297733307, 0.0609012134373188, -0.030342241749167442, -0.008899487555027008, -0.053857479244470596, 0.04638028144836426, 0.016408288851380348, -0.008447966538369656, 0.0930495411157608, 0.02548387087881565, 0.014195834286510944, -0.009125248529016972, -0.005549198482185602, -0.004000479821115732, 0.01718490570783615, -0.05324340984225273, 0.00905751995742321, -0.05970919504761696, 0.01676047593355179, -0.10576438158750534, 0.06447726488113403, 0.07256852835416794, 0.023930637165904045, -0.017166845500469208, -0.031299468129873276, 0.00693988474085927, -0.007260465063154697, -0.01700429804623127, -0.05877003073692322, 0.032148327678442, 0.015469124540686607, 0.012245262041687965, 0.02407512441277504, 0.009012368507683277, 0.03792780265212059, 0.010412084870040417, -0.013103152625262737, 0.011721496470272541, 0.0008471671026200056, 0.03641068935394287, -0.024508584290742874, 0.02454470656812191, 0.008899487555027008, 0.06635559350252151, -0.0012676464393734932, -0.023984819650650024, 0.027615051716566086, 0.0045897155068814754, -0.01671532355248928, -0.000899092061445117, 0.004912553355097771, 0.06223771721124649, -0.02548387087881565, 0.02295535057783127, 0.028373608365654945, -0.006994067225605249, 0.03969776630401611, -0.03218444809317589, -0.01687787100672722, 0.07007613033056259, 0.034098900854587555, -0.025321323424577713, 0.013608856126666069, -0.048186369240283966, 0.015649734064936638, 0.03832514211535454, -0.026838434860110283, 0.017780914902687073, -0.019668273627758026, 0.05067876726388931, -0.021239569410681725, 0.0038921148516237736, 0.036898333579301834, -0.02355135791003704, 0.0015961283352226019, 0.04096202552318573, 0.032581787556409836, 0.0011530729243531823, 0.05476051941514015, 0.015026633627712727, -0.004862885922193527, 0.021456299349665642, -0.06812555342912674, -0.037891678512096405, -0.009071066044270992, -0.014385472983121872, 0.03120916336774826, -0.011586040258407593, -0.0281026940792799, -0.005210557486861944, -0.032509543001651764, 0.020535195246338844, -0.015351729467511177, -0.018205344676971436, -0.04500765725970268, -0.009680619463324547, -0.007933232001960278, 0.0011519440449774265, -0.02629661001265049, -0.042334649711847305, -0.0037566584069281816, -0.023569419980049133, 0.00698503665626049, -0.029601745307445526, 0.031642623245716095, -0.020950594916939735, 0.03133558854460716, -0.02219679392874241, 0.0040727234445512295, 0.004111102782189846, -0.03771107271313667, 0.059095125645399094, 0.006253572180867195, 0.001079700654372573, -0.02185363881289959, -0.02331656776368618, -0.006917308550328016, 0.03592304512858391, 0.033213917165994644, -0.02172721177339554, 0.04670538008213043, -0.012868361547589302, 0.08279097080230713, -0.038072288036346436, 0.011820831336081028, 0.049992453306913376, -0.005485985428094864, -0.0026572037022560835, -0.023984819650650024, -0.03471297025680542, -0.0074275280348956585, -0.05714455619454384, -0.011622161604464054, -0.02961980737745762, -0.0077661690302193165, 0.03213026747107506, 0.04381564259529114, -0.062201593071222305, -0.08163508027791977, -0.027831781655550003, -0.03745821863412857, -0.08806474506855011, 0.012543265707790852, -0.06270729750394821, 0.004217210225760937, 0.04226240888237953, -0.003427047748118639, -0.027452504262328148, -0.06678905338048935, -0.053676869720220566, -0.0029710112139582634, -0.03771107271313667, 0.024616949260234833, 0.09001531451940536, 0.03727760910987854, -0.005057040136307478, -0.049342263489961624, 0.0016378940781578422, 0.008637605234980583, -0.016787568107247353, 0.03254566714167595, -0.0721350684762001, -0.011324157938361168, 0.004867400974035263, -0.025845088064670563, 0.04562172666192055, 0.01606513373553753, -0.032979127019643784, -0.006407089531421661, 0.041576094925403595, 0.019433483481407166, -0.010213415138423443, -0.0344962403178215, 0.017031388357281685, 0.037891678512096405, -0.09868452697992325, 0.024327974766492844, -0.04099814593791962, 0.022865045815706253, -0.005138313863426447, 0.023750027641654015, 0.03455042093992233, 0.023045655339956284, -0.04190118983387947, 0.0165347158908844, 0.04475480690598488, 0.046597015112638474, -0.054254818707704544, -0.002402094192802906, 0.0025985059328377247, 0.01892777904868126, 0.0365912988781929, 0.029529502615332603, 0.0037544008810073137, 0.06906472146511078, 0.07751720398664474, 0.003438335843384266, -0.027326077222824097, 0.0006360808620229363, -0.03756658360362053, 0.021871699020266533, -0.027596991509199142, -0.03872247785329819, -0.07238791882991791, 0.012850300408899784, 0.00022576072660740465, 0.012434900738298893, -0.0286264605820179, -0.05006469786167145, -0.03814453259110451, 0.03511030599474907, -0.005517592187970877, 0.003650550963357091, 0.005296346731483936, -0.015532338060438633, 0.011965318582952023, 0.009364554658532143, 0.048186369240283966, 0.04898104816675186, 0.0661388635635376, 0.024508584290742874, -0.009924441576004028, 0.01023147627711296, -0.04623579606413841, -0.02763311192393303, 0.04851146414875984, 0.0034654270857572556, -0.08792025595903397, 0.003808583365753293, -0.023768089711666107, -0.00493964459747076, 0.017221027985215187, -0.0343698114156723, 0.013419217430055141, 0.004129163455218077, 0.014529960229992867, 0.04898104816675186, 0.06165976822376251, -0.019144508987665176, 0.026856495067477226, -0.061334673315286636, 0.000831363839097321, -0.012642600573599339, -0.035218674689531326, 0.012904482893645763, -0.009626436978578568, -0.010583662427961826, -0.044790927320718765, -0.060576118528842926, 0.019126448780298233, -0.014827963896095753, 0.0038108411245048046, 0.07498868554830551, 0.07556662708520889, -0.08734230697154999, 0.09817882627248764, -0.04132324457168579, 0.05002857744693756, -0.042623624205589294, 0.008502149023115635, -0.016164468601346016, 0.024273792281746864, 0.02571866102516651, -0.008371207863092422, 0.006163267884403467, -0.020119795575737953, -0.09268832206726074, -0.06288790702819824, -0.004646155517548323, -0.058986760675907135, -0.003124528331682086, -0.0011169512290507555, -0.017455819994211197, -0.01258841808885336, 0.016805628314614296, -0.07455521821975708, 0.022521890699863434, 0.045152146369218826, -0.06783658266067505, 0.010511419735848904, -0.0024856256786733866, 0.005558229051530361 ]
729,253
tables.description
dtype_from_descr
Get a (nested) NumPy dtype from a description instance and byteorder. The descr parameter can be a Description or IsDescription instance, sub-class of IsDescription or a dictionary.
def dtype_from_descr(descr, byteorder=None, ptparams=None): """Get a (nested) NumPy dtype from a description instance and byteorder. The descr parameter can be a Description or IsDescription instance, sub-class of IsDescription or a dictionary. """ if isinstance(descr, dict): descr = Description(descr, ptparams=ptparams) elif (type(descr) == type(IsDescription) and issubclass(descr, IsDescription)): descr = Description(descr().columns, ptparams=ptparams) elif isinstance(descr, IsDescription): descr = Description(descr.columns, ptparams=ptparams) elif not isinstance(descr, Description): raise ValueError('invalid description: %r' % descr) dtype_ = descr._v_dtype if byteorder and byteorder != '|': dtype_ = dtype_.newbyteorder(byteorder) return dtype_
(descr, byteorder=None, ptparams=None)
[ 0.05431118980050087, 0.025526966899633408, 0.014755011536180973, -0.001981570618227124, -0.008935323916375637, -0.0328734926879406, 0.02855408936738968, -0.00004840519977733493, -0.028784221038222313, 0.016622623428702354, -0.01906556449830532, 0.03657330945134163, -0.064543217420578, -0.02188025787472725, -0.01841057278215885, 0.017596257850527763, -0.0048460522666573524, 0.024500222876667976, -0.0403970442712307, -0.003536069067195058, -0.013099830597639084, 0.024783462285995483, 0.039688944816589355, 0.03260795772075653, -0.021189860999584198, -0.029952585697174072, 0.0011351711582392454, -0.007682873401790857, -0.041494596749544144, -0.05264715477824211, -0.016578366979956627, -0.041352976113557816, -0.029793262481689453, 0.10331163555383682, -0.023969149217009544, 0.03490927815437317, 0.001734842429868877, 0.018268952146172523, 0.004155655857175589, 0.01579945720732212, -0.014586837962269783, -0.0088600879535079, 0.00421761441975832, -0.05462983250617981, 0.04981476068496704, 0.025827908888459206, 0.03138648718595505, -0.06001138314604759, -0.05133717134594917, 0.02858949452638626, 0.029793262481689453, -0.019437314942479134, 0.03211228549480438, -0.0413883812725544, -0.0500979982316494, 0.0004021780623588711, 0.006527787074446678, 0.05360309034585953, -0.03237782418727875, 0.05243472754955292, -0.07725359499454498, 0.030642980709671974, -0.044893473386764526, -0.013020168989896774, -0.05098312348127365, -0.008196244947612286, -0.003000569297000766, -0.03613074868917465, 0.00951507966965437, 0.025774801149964333, 0.004463236313313246, 0.004191060550510883, -0.02272997610270977, 0.014852374792098999, 0.05335525423288345, -0.007050009910017252, -0.009984195232391357, -0.07070367783308029, 0.04723019897937775, 0.04708857834339142, -0.060259219259023666, 0.014339003711938858, 0.03706897795200348, 0.008005943149328232, 0.023473478853702545, 0.023438075557351112, -0.029669346287846565, 0.08596321195363998, 0.04995638132095337, -0.05530252680182457, 0.03228931128978729, -0.024340901523828506, -0.03731681406497955, 0.02188025787472725, 0.005801985505968332, -0.042167291045188904, 0.018481383100152016, 0.025155214592814445, 0.003219637321308255, 0.005930328741669655, 0.01656951569020748, -0.009966492652893066, 0.014400961808860302, -0.012763483449816704, -0.02890813909471035, -0.017118291929364204, 0.026536008343100548, 0.015241829678416252, -0.007780237123370171, -0.017056332901120186, -0.0020059114322066307, 0.020782703533768654, -0.002260384615510702, -0.03413036838173866, 0.02425238862633705, 0.009152178652584553, 0.06595941632986069, -0.0072624399326741695, -0.041884053498506546, -0.015693243592977524, -0.0237567201256752, 0.05986976623535156, 0.01429474726319313, 0.04340646415948868, -0.003719732165336609, -0.03721059858798981, 0.008351141586899757, -0.005368275102227926, 0.025774801149964333, -0.0024628567043691874, 0.028766518458724022, 0.012798888608813286, -0.00968325324356556, 0.046026431024074554, 0.06036543473601341, 0.01720680482685566, 0.06755264103412628, -0.0003172615251969546, -0.040821902453899384, -0.01696782000362873, 0.05098312348127365, -0.018587596714496613, 0.01973825879395008, -0.03126256912946701, 0.008922046981751919, 0.006872985512018204, -0.02706708200275898, -0.06521591544151306, -0.04227350652217865, 0.029350701719522476, -0.06457862257957458, -0.016835052520036697, 0.03894544020295143, 0.03322754427790642, 0.0352456234395504, -0.04322943836450577, -0.008528166450560093, -0.07112853974103928, -0.043512679636478424, 0.0364316888153553, 0.02772207371890545, -0.01245369017124176, -0.029864072799682617, -0.029209081083536148, 0.003297085640951991, 0.0388038232922554, -0.007266865111887455, -0.07229690253734589, -0.022924702614545822, -0.003586963750422001, 0.004020674154162407, 0.028713412582874298, 0.03092622198164463, 0.008899918757379055, 0.0072270347736775875, 0.01579945720732212, -0.002761585870757699, 0.034679144620895386, -0.011010938324034214, -0.06266675889492035, 0.06291458755731583, 0.09339825063943863, -0.05668332055211067, 0.03474995493888855, 0.028323957696557045, 0.035812102258205414, -0.015277234837412834, -0.01851678639650345, 0.013285706751048565, 0.005536448676139116, 0.041530001908540726, 0.06447240710258484, 0.0036290071438997984, 0.00647025415673852, 0.09007018804550171, -0.023119430989027023, 0.055833600461483, 0.051549602299928665, -0.006678258068859577, 0.15209965407848358, 0.06238351762294769, 0.002845672657713294, 0.0354403518140316, 0.03276727721095085, 0.012170450761914253, 0.0068906876258552074, 0.0022282989230006933, -0.007864323444664478, 0.0057488782331347466, -0.043831322342157364, -0.0008602295420132577, -0.0237567201256752, -0.007156224921345711, 0.010293988510966301, 0.016144655644893646, 0.009338054805994034, -0.12519189715385437, 0.011232219636440277, -0.021614719182252884, -0.0776076465845108, 0.04273376986384392, 0.013374218717217445, 0.0038525008130818605, 0.021685529500246048, -0.025650883093476295, -0.011072897352278233, 0.007288993336260319, -0.0030912943184375763, 0.04160081222653389, 0.03993678092956543, -0.0360422357916832, -0.039865970611572266, 0.009762913919985294, -0.041211359202861786, 0.09892141819000244, -0.01631283015012741, -0.03430739417672157, 0.003901182673871517, 0.025296835228800774, 0.0037684140261262655, -0.015710944309830666, -0.03731681406497955, -0.02655371092259884, -0.006828729063272476, -0.04163621738553047, -0.006492381915450096, 0.0026133276987820864, 0.0030758047942072153, -0.019455017521977425, -0.016224317252635956, -0.026978569105267525, -0.017490044236183167, 0.04708857834339142, -0.00048571161460131407, 0.05778087303042412, 0.03565278276801109, 0.05664791539311409, -0.06185244396328926, 0.03174053505063057, -0.038343556225299835, -0.019295696169137955, 0.042662959545850754, 0.020641084760427475, 0.0730758085846901, 0.030377443879842758, -0.03689195588231087, 0.06234811246395111, -0.026358982548117638, 0.0054479362443089485, -0.023013215512037277, -0.010471013374626637, 0.046876151114702225, 0.019154075533151627, -0.04659290984272957, -0.01904786191880703, -0.0032439783681184053, 0.06341025978326797, -0.022676868364214897, 0.06808371096849442, 0.011993425898253918, -0.011550864204764366, -0.03929949179291725, -0.024677248671650887, 0.03605993837118149, -0.006700386293232441, 0.062064871191978455, -0.00431055249646306, -0.0012657268671318889, -0.03073149360716343, -0.0016275211237370968, -0.008855662308633327, 0.04181324318051338, 0.0374230295419693, 0.02272997610270977, 0.022783083841204643, 0.016923565417528152, 0.009523930959403515, 0.0037307962775230408, 0.0328734926879406, 0.022765381261706352, -0.06100272387266159, 0.019012456759810448, 0.04889423027634621, 0.04241512715816498, -0.02789909765124321, 0.006704811938107014, 0.031156353652477264, -0.029350701719522476, -0.05342606455087662, 0.007173927500844002, 0.021650124341249466, 0.040326233953237534, -0.0524701327085495, 0.0785989835858345, 0.006040968932211399, -0.010984384454786777, -0.018322059884667397, 0.009072517976164818, 0.023473478853702545, 0.025845611467957497, 0.03632547706365585, 0.04567238315939903, -0.033174436539411545, -0.04832775145769119, 0.047123983502388, -0.028500981628894806, -0.0009465291514061391, -0.03189985826611519, 0.06730480492115021, 0.04800910875201225, 0.051549602299928665, -0.017950307577848434, 0.055231716483831406, -0.009054815396666527, 0.02455333061516285, -0.007373080123215914, 0.04616805166006088, -0.060082193464040756, -0.05827654153108597, 0.008085604757070541, 0.01669343188405037, -0.033864833414554596, -0.010435608215630054, -0.008359992876648903, -0.005235506687313318, -0.037529245018959045, 0.012843144126236439, -0.0637643113732338, 0.0778200700879097, 0.01420623529702425, -0.015949929133057594, 0.002319023944437504, -0.00313555053435266, 0.03413036838173866, 0.01002845074981451, 0.004739837255328894, 0.040715690702199936, 0.05664791539311409, 0.0036799015942960978, -0.04245053231716156, 0.009444269351661205, -0.003536069067195058, 0.040998928248882294, -0.06925207376480103, -0.028678007423877716, 0.0029408233240246773, 0.004562812391668558, -0.026500603184103966, -0.021260671317577362, 0.011294177733361721, 0.0004566684947349131, 0.024801164865493774, 0.013922994956374168, 0.018676109611988068, 0.00021713190653827041, -0.060719482600688934, -0.10479864478111267, -0.010488715954124928, -0.0162331685423851, -0.014569135382771492, -0.04723019897937775, -0.028642602264881134, 0.05898464098572731, 0.034183476120233536, -0.0101966243237257, 0.01061263307929039, -0.0328734926879406, 0.016958968713879585, -0.054877668619155884, -0.011143706738948822, -0.030979327857494354, 0.021172158420085907, -0.024641843512654305, 0.06510969996452332, -0.019596638157963753, -0.02003920078277588, -0.022836191579699516, -0.009293798357248306, -0.045353736728429794, -0.015994185581803322, -0.06160460785031319, -0.04142378643155098, -0.06348107010126114, -0.0010693400399759412, 0.013152937404811382, 0.032501742243766785, 0.005974584724754095, -0.003843649523332715, -0.03322754427790642, 0.012143896892666817, 0.04776127263903618, 0.016932416707277298, 0.014896631240844727, -0.011435797438025475, 0.005956882145255804, 0.0002594518882688135, 0.0010687868343666196, -0.007766960188746452, 0.05877221003174782, -0.011090599931776524, -0.011055194772779942, -0.005124866031110287, 0.004257444757968187, 0.012338624335825443, -0.0017735665896907449, 0.03926408663392067, 0.0008906556759029627, 0.04029082879424095, 0.026801545172929764, -0.007616489194333553, -0.01885313354432583, 0.0738547220826149, -0.011471202597022057, -0.02637668512761593, 0.06259594857692719, -0.018640704452991486, 0.014303598552942276, 0.000013052116628387012, 0.011081748642027378, -0.020446356385946274, -0.006111778784543276, 0.06521591544151306, -0.009692104533314705, -0.002170765772461891, -0.043725110590457916, -0.007669596467167139, 0.06822533160448074, 0.029616238549351692, -0.017950307577848434, -0.056364674121141434, 0.04075109213590622, -0.028164634481072426, 0.10168300569057465, -0.031032435595989227, -0.009630145505070686, -0.014940887689590454, 0.06840235739946365, -0.029315296560525894, 0.01496744155883789, 0.005868369713425636, 0.005961307790130377, -0.029138270765542984, 0.004494215361773968, -0.031014733016490936, -0.010099261067807674, 0.013905293308198452, 0.046522099524736404, -0.03074919618666172, 0.03508630394935608, 0.046203456819057465, 0.08412215113639832, 0.006603022571653128, 0.06309161335229874, -0.015843713656067848, -0.008483910001814365, 0.002967377193272114, 0.009063666686415672, 0.010081558488309383, -0.05763925239443779, 0.00560283288359642, -0.00826705526560545, -0.01823354698717594, -0.020251629874110222, -0.02823544479906559, -0.019932985305786133, -0.017578555271029472, -0.01956123299896717, 0.046699125319719315, -0.02370361238718033, 0.002985079539939761, -0.05509009584784508, 0.030041096732020378, 0.023455778136849403, 0.013268004171550274, 0.1251210868358612, 0.054913073778152466, 0.0485047772526741, 0.026305874809622765, -0.020003795623779297, -0.015498515218496323, 0.015321490354835987, -0.031510401517152786, -0.03788329288363457, -0.06404754519462585, 0.014958590269088745, -0.08362648636102676, 0.05077069252729416, 0.05533793196082115, 0.01872921735048294, 0.010134666226804256, -0.049212876707315445, 0.04942530393600464, -0.028359362855553627, 0.012471392750740051, -0.042839985340833664, 0.04875261336565018, -0.005779857747256756, -0.028978949412703514, -0.015772903338074684, 0.026465198025107384, 0.0578162781894207, 0.02372131496667862, 0.004075994715094566, -0.014480623416602612, 0.010435608215630054, -0.030713791027665138, -0.033829428255558014, -0.007536828052252531, 0.05898464098572731, 0.0485047772526741, 0.012011128477752209, -0.040007591247558594, -0.0010112538002431393, -0.004553961101919413, 0.0012646204559132457, -0.02738572657108307, 0.010621484369039536, 0.026447495445609093, -0.038520582020282745, -0.021827150136232376, 0.033971045166254044, -0.018251249566674232, 0.0514787919819355, -0.05367390066385269, 0.02926218882203102, 0.056541699916124344, 0.014693052507936954, -0.033156733959913254, 0.012090789154171944, 0.0019030158873647451, -0.044397804886102676, -0.01972055621445179, -0.017056332901120186, -0.003029335755854845, -0.016622623428702354, 0.011745590716600418, -0.02090662159025669, -0.010692293755710125, 0.040503259748220444, -0.00208114692941308, -0.0038082445971667767, 0.031811345368623734, 0.028447873890399933, 0.04641588404774666, 0.018923943862318993, -0.025845611467957497, -0.02407536469399929, 0.018003415316343307, -0.04599102586507797, -0.01154201291501522, -0.029704749584197998, -0.043831322342157364, 0.03632547706365585, 0.0067092375829815865, -0.012577607296407223, -0.0014206235064193606, -0.03760005533695221, 0.010435608215630054, -0.023190239444375038, -0.03358159214258194, -0.042344316840171814, 0.009063666686415672, -0.04524752125144005, -0.013551243580877781, -0.01496744155883789, -0.05261174961924553, -0.002372131450101733, -0.005425808019936085, -0.029616238549351692, -0.038697607815265656, 0.028447873890399933, -0.02407536469399929, 0.011426946148276329, 0.002175191417336464, -0.003976418171077967, -0.0067756217904388905, -0.019986093044281006, 0.033333756029605865, -0.007532402407377958, -0.009461971931159496, -0.024181578308343887, -0.020765000954270363, -0.024624140933156013, 0.008488335646688938, 0.0578162781894207, -0.01310868188738823, 0.009762913919985294, -0.04248593747615814, 0.06220649182796478, -0.023986851796507835, 0.043725110590457916, 0.059232477098703384, -0.02591642178595066, 0.014985144138336182, -0.020641084760427475, -0.009222988970577717, -0.004620345775038004, -0.06772966682910919, -0.011311880312860012, -0.035812102258205414, -0.002114339265972376, 0.03338686376810074, 0.057214394211769104, -0.08525510877370834, -0.08291838318109512, -0.02388063631951809, -0.0437605157494545, -0.09198205173015594, 0.03827274590730667, -0.01631283015012741, 0.005841816309839487, 0.022535249590873718, 0.02825314737856388, -0.03092622198164463, -0.06369350105524063, -0.08787507563829422, -0.01987987756729126, -0.04942530393600464, 0.04563697800040245, 0.07930707931518555, 0.03657330945134163, -0.028005313128232956, -0.04956692457199097, 0.010940128937363625, 0.008687488734722137, -0.05077069252729416, 0.0427691750228405, -0.04248593747615814, -0.011338434182107449, 0.018764622509479523, 0.0010887021198868752, 0.034006450325250626, 0.024004554376006126, -0.028801923617720604, -0.01254220213741064, 0.04114054888486862, 0.013268004171550274, 0.009966492652893066, -0.009692104533314705, 0.010789657942950726, 0.02788139507174492, -0.06801290065050125, -0.01651640795171261, 0.014790416695177555, 0.015064804814755917, -0.01855219155550003, 0.019932985305786133, 0.02255295030772686, 0.007997092790901661, -0.03774167224764824, 0.014887779951095581, 0.04829234629869461, 0.05710817873477936, -0.045849405229091644, -0.01706518419086933, -0.0018886326579377055, 0.00018310996529180557, 0.01235632598400116, 0.05052286013960838, 0.024942785501480103, 0.031191758811473846, 0.10614403337240219, 0.0059391800314188, -0.0031621044036000967, -0.015330341644585133, -0.027261808514595032, 0.01120566576719284, -0.01302902027964592, -0.007324398495256901, -0.09389391541481018, -0.0120288310572505, 0.010143517516553402, 0.02372131496667862, -0.01595878042280674, -0.06287918239831924, -0.0728633776307106, 0.031014733016490936, 0.004421192687004805, -0.01621546596288681, 0.016144655644893646, -0.024004554376006126, -0.01594107784330845, -0.0023942594416439533, 0.02657141350209713, 0.053072016686201096, 0.06783587485551834, -0.02722640335559845, -0.019826769828796387, 0.014852374792098999, -0.056364674121141434, -0.04425618425011635, 0.03126256912946701, 0.0012613012222573161, -0.08206866681575775, 0.0038679903373122215, 0.03152810409665108, 0.0004215401422698051, 0.03359929472208023, -0.04174243286252022, 0.00634633656591177, -0.033829428255558014, -0.008373269811272621, 0.04567238315939903, 0.03721059858798981, -0.024093065410852432, 0.02357969433069229, -0.08121895045042038, 0.020800406113266945, -0.010656888596713543, -0.02255295030772686, 0.0021663401275873184, 0.005593981593847275, -0.025119809433817863, -0.07845736294984818, -0.08723779022693634, 0.012188153341412544, -0.008028071373701096, -0.007753683254122734, 0.0485047772526741, 0.0655345544219017, -0.08999937772750854, 0.08313081413507462, -0.03138648718595505, 0.036166153848171234, -0.020357845351099968, -0.014542581513524055, -0.03629007190465927, -0.003186445217579603, 0.021296074613928795, 0.005983436014503241, 0.012657268904149532, -0.020623382180929184, -0.07541253417730331, -0.041848648339509964, 0.01186065748333931, -0.06011759862303734, -0.004660176113247871, 0.02037554606795311, -0.00672693969681859, -0.02722640335559845, -0.018251249566674232, -0.043512679636478424, -0.020499464124441147, 0.024960488080978394, -0.08716697990894318, -0.024163875728845596, -0.02556237205862999, -0.004042802378535271 ]
729,261
tables
get_hdf5_version
null
def get_hdf5_version(): warnings.warn( "the 'get_hdf5_version()' function is deprecated and could be " "removed in future versions. Please use 'tables.hdf5_version'", DeprecationWarning) return hdf5_version
()
[ 0.004788082093000412, -0.04370487481355667, -0.020527539774775505, -0.028644638136029243, 0.018699515610933304, 0.011789918877184391, -0.001969528617337346, 0.03245162591338158, -0.05376739427447319, -0.04769634082913399, 0.018414409831166267, -0.021282227709889412, -0.012075022794306278, 0.02686692588031292, 0.08304932713508606, -0.009626477025449276, 0.01583169773221016, 0.03760027885437012, 0.1006922796368599, 0.012611690908670425, 0.004368810448795557, -0.05614885687828064, -0.012385284528136253, -0.028292449191212654, -0.019873475655913353, 0.028359534218907356, 0.041155703365802765, 0.030355267226696014, 0.059435948729515076, -0.0003616217873059213, -0.11424313485622406, 0.0003886123886331916, -0.0017567481845617294, 0.031009329482913017, -0.011882157996296883, 0.055612191557884216, 0.04098799452185631, -0.02810797095298767, 0.027856407687067986, 0.019320037215948105, 0.008678922429680824, -0.005349906161427498, 0.015227945521473885, -0.026766302064061165, -0.028560783714056015, 0.04249737411737442, -0.06071053445339203, -0.016737323254346848, 0.0027902526780962944, 0.003448509145528078, 0.042161956429481506, 0.002804927295073867, 0.02589421719312668, 0.01953805796802044, -0.0055930837988853455, -0.0257768202573061, 0.03642632067203522, -0.05853031948208809, 0.0008930485928431153, 0.06889471411705017, 0.010087675414979458, 0.031680166721343994, 0.03369266912341118, -0.0019003486959263682, -0.009718716144561768, -0.028728492558002472, 0.03773444890975952, -0.020762331783771515, -0.01812930591404438, 0.01942066289484501, -0.01598263531923294, -0.020930040627717972, -0.007899077609181404, 0.018263472244143486, -0.010548874735832214, -0.05011134594678879, -0.050513848662376404, -0.009576164186000824, -0.02342889830470085, 0.008779548108577728, 0.019940558820962906, -0.03531944379210472, 0.0432017482817173, 0.002695916686207056, 0.030271412804722786, -0.038271114230155945, 0.029097450897097588, 0.05782594531774521, -0.026330258697271347, 0.06554054468870163, 0.01218403410166502, 0.012628462165594101, -0.062320537865161896, 0.014917684718966484, 0.03025464154779911, -0.06164970248937607, -0.016032947227358818, 0.004775504115968943, 0.01895107887685299, -0.007274362724274397, 0.038237571716308594, 0.023177336901426315, 0.034480899572372437, 0.02612900920212269, -0.06423241645097733, -0.05812782049179077, -0.005999777000397444, 0.03211620822548866, -0.012921951711177826, -0.0815064087510109, -0.004486206453293562, -0.011253250762820244, -0.009307830594480038, 0.04826655238866806, 0.03521881625056267, -0.043805502355098724, -0.023412128910422325, -0.008314156904816628, 0.03260256350040436, -0.011915699578821659, -0.03211620822548866, 0.03521881625056267, -0.07828640192747116, -0.030204329639673233, -0.012838097289204597, 0.00924074649810791, -0.010490176267921925, -0.03934444859623909, 0.03528590127825737, -0.05430406332015991, 0.014708048664033413, 0.05665198341012001, 0.0015890394570305943, 0.003964213188737631, -0.007047956343740225, -0.10270477831363678, -0.0020858764182776213, 0.0300198495388031, 0.026950780302286148, -0.03770090639591217, -0.059905532747507095, -0.021651187911629677, 0.017793888226151466, -0.027537761256098747, 0.03411193937063217, 0.029583806172013283, -0.019823163747787476, -0.02242264710366726, 0.030623599886894226, 0.0007782729808241129, 0.04467758536338806, 0.022288480773568153, 0.040417786687612534, -0.0612136572599411, 0.03146214410662651, -0.012779399752616882, 0.008452516049146652, -0.11947564780712128, 0.011244865134358406, -0.04246383160352707, 0.03575548529624939, -0.005295400973409414, 0.0027630000840872526, -0.029382556676864624, -0.0007856102311052382, -0.00331853493116796, -0.03521881625056267, -0.00358686875551939, 0.01821316033601761, -0.002159249037504196, -0.04397320747375488, 0.07070597261190414, -0.021466707810759544, 0.06896179914474487, -0.0031696935184299946, 0.036862362176179886, 0.008779548108577728, 0.03461506590247154, 0.026145778596401215, -0.02312702313065529, 0.012812941335141659, 0.05648427456617355, -0.02690046839416027, 0.0312608927488327, -0.0011645270278677344, 0.057993654161691666, 0.03315600007772446, 0.019990872591733932, -0.0010429382091388106, 0.03176401928067207, -0.042631540447473526, -0.00159847317263484, 0.007660092785954475, 0.0432017482817173, 0.0281918253749609, -0.06808971613645554, -0.009056267328560352, -0.0054002185352146626, 0.02316056564450264, 0.005785948596894741, 0.05624948441982269, 0.030657142400741577, 0.005391833372414112, -0.015051851980388165, -0.0021194182336330414, -0.0027671928983181715, 0.03278704360127449, -0.05816136300563812, -0.05591406673192978, 0.03310569003224373, 0.020225664600729942, -0.008259651251137257, -0.04746155068278313, 0.012083408422768116, -0.009014340117573738, -0.023831399157643318, 0.014808674342930317, -0.019504517316818237, -0.05785948410630226, -0.03037203662097454, 0.05504197999835014, 0.048601966351270676, 0.03438027575612068, 0.05544448271393776, -0.0076558999717235565, -0.03749965503811836, 0.023378586396574974, -0.02522338181734085, 0.033122457563877106, -0.03786861523985863, 0.004850972909480333, 0.03211620822548866, 0.04461050406098366, 0.04779696837067604, 0.017844200134277344, 0.07312097400426865, 0.0043143052607774734, -0.01540403999388218, -0.014967997558414936, -0.0008270132821053267, -0.04870259389281273, -0.024082962423563004, 0.03890840709209442, 0.088751420378685, 0.049775928258895874, -0.05182197317481041, -0.015798155218362808, 0.02545817382633686, -0.029617348685860634, -0.014297163113951683, -0.027889950200915337, -0.07379180938005447, 0.042631540447473526, -0.01303934771567583, 0.010523717850446701, -0.000185789744136855, -0.003482050960883498, 0.016007790341973305, 0.0034212565515190363, -0.0612136572599411, -0.00579852657392621, -0.03399454429745674, -0.031478915363550186, -0.02857755497097969, -0.04172591492533684, 0.0009716619970276952, -0.012527836486697197, 0.006955716293305159, -0.0648026242852211, 0.00685089873149991, 0.006423241458833218, 0.020359830930829048, -0.09425226598978043, -0.05440468713641167, 0.02198660373687744, -0.1293369084596634, -0.046455297619104385, -0.01614195853471756, -0.0008443082333542407, 0.024535777047276497, 0.03743257001042366, -0.08714141696691513, -0.04511362686753273, 0.062052201479673386, -0.020326288416981697, 0.017173366621136665, -0.0694313794374466, -0.032267145812511444, 0.04876967519521713, -0.04558321088552475, -0.06382991373538971, -0.03268641605973244, -0.05235864222049713, -0.0348498597741127, -0.01910201646387577, 0.017055969685316086, -0.03334048017859459, 0.028292449191212654, 0.08070140331983566, 0.03209943696856499, -0.00906465295702219, -0.0004753492248710245, 0.002809119876474142, 0.0768105611205101, -0.008452516049146652, -0.051754891872406006, 0.05779240280389786, -0.04048486799001694, -0.00953423697501421, -0.04487883672118187, 0.0001929959689732641, 0.005454724188894033, 0.03280381113290787, -0.0468577966094017, 0.0204269140958786, -0.012217575684189796, -0.02931547351181507, 0.01605810411274433, -0.0064022778533399105, 0.024887964129447937, -0.016972115263342857, 0.014473256655037403, -0.002532400656491518, 0.012016325257718563, -0.007437878753989935, -0.07312097400426865, 0.06426595896482468, -0.0312273520976305, 0.004955790936946869, 0.00185003608930856, -0.039746951311826706, -0.0372648648917675, 0.0744626447558403, 0.03245162591338158, 0.06299137324094772, 0.028527243062853813, 0.009542622603476048, 0.01742492988705635, -0.04863550886511803, 0.00006095816570450552, -0.017944825813174248, -0.00040905189234763384, 0.02554202824831009, -0.006339387036859989, -0.01259491965174675, 0.00785715039819479, 0.02004118449985981, -0.03176401928067207, 0.01210856530815363, -0.040686119347810745, -0.019605141133069992, -0.019470974802970886, -0.05480718985199928, 0.023026397451758385, 0.03501756861805916, 0.006205220241099596, 0.006347772665321827, 0.03951215744018555, 0.04588508978486061, -0.010498561896383762, -0.03723132237792015, -0.05068155378103256, 0.029935995116829872, 0.03558777645230293, -0.006687382701784372, -0.0006834127707406878, -0.012695545330643654, -0.009500695392489433, 0.03505110740661621, 0.025843903422355652, -0.053197186440229416, 0.019387120380997658, 0.024586088955402374, -0.011630595661699772, 0.024669943377375603, -0.05021196976304054, -0.05215739086270332, 0.05333135277032852, -0.0019129267893731594, -0.006087824236601591, -0.004972561728209257, -0.00678381510078907, -0.017928054556250572, -0.03099256008863449, -0.038740698248147964, -0.01547950878739357, -0.022238167002797127, 0.003046008525416255, -0.015420811250805855, -0.01992378756403923, 0.0031738863326609135, 0.014045599848031998, -0.0042786672711372375, 0.032418083399534225, -0.002070153597742319, 0.06792200356721878, -0.0016540265642106533, 0.012771014124155045, -0.02183566614985466, -0.0015785577706992626, 0.000911915791220963, 0.0008537418907508254, -0.02374754473567009, -0.04467758536338806, -0.031327977776527405, -0.027789324522018433, 0.06570824980735779, 0.0480988435447216, -0.013207056559622288, -0.06909596920013428, 0.030405579134821892, -0.0330553762614727, -0.0479646734893322, 0.041860081255435944, 0.06580887734889984, 0.0563836507499218, 0.05839615315198898, 0.011462886817753315, 0.0636286661028862, 0.038774240761995316, 0.025843903422355652, -0.017810659483075142, -0.03981403633952141, 0.07151097059249878, -0.011337105184793472, -0.0015009924536570907, -0.06091178208589554, 0.0035742907784879208, -0.0221543125808239, 0.024686714634299278, 0.03676173835992813, -0.02359660714864731, -0.054102811962366104, 0.003482050960883498, -0.013970131054520607, -0.011328719556331635, 0.04001528397202492, -0.010012206621468067, -0.021148061379790306, 0.03887486457824707, -0.009014340117573738, -0.024552546441555023, 0.04729384183883667, 0.032418083399534225, 0.05235864222049713, -0.03508464992046356, -0.015085393562912941, 0.011731220409274101, 0.004161270800977945, -0.016494145616889, -0.011429345235228539, -0.0396127849817276, -0.037063613533973694, -0.015504664741456509, -0.011362261138856411, 0.014146224595606327, -0.008871788159012794, -0.01199116837233305, 0.014464871026575565, 0.013752109371125698, -0.03857298940420151, 0.045717380940914154, -0.00036188383819535375, 0.024150045588612556, -0.0099031962454319, -0.045046545565128326, -0.02342889830470085, -0.03857298940420151, -0.046958424150943756, -0.00663706986233592, 0.06829096376895905, -0.03699652850627899, -0.01614195853471756, -0.0023479212541133165, -0.04051841050386429, 0.004010333213955164, -0.026296716183423996, 0.006318423431366682, 0.024787338450551033, 0.002276645042002201, -0.04726029932498932, 0.007211472373455763, 0.03438027575612068, -0.001335380133241415, 0.017290761694312096, -0.011697678826749325, -0.028325991705060005, 0.007412722334265709, -0.02772224135696888, -0.02960057742893696, -0.051285307854413986, -0.0022242360282689333, -0.03528590127825737, -0.057020943611860275, 0.044275086373090744, 0.03572194278240204, 0.04863550886511803, -0.003660241374745965, 0.009467153809964657, 0.058228444308042526, 0.004695842508226633, 0.005370869766920805, 0.01294710859656334, -0.034447357058525085, 0.005689516197890043, -0.07499931007623672, 0.06191803514957428, -0.010968145914375782, 0.013995287008583546, -0.00033253480796702206, -0.005236702971160412, 0.017441699281334877, -0.009945123456418514, 0.08425682783126831, -0.007186315953731537, 0.014246850274503231, -0.07285264134407043, 0.04675717279314995, 0.05430406332015991, 0.05688677728176117, -0.003725228598341346, 0.05836261063814163, 0.05202322453260422, -0.06265595555305481, -0.0467907153069973, -0.014909299090504646, 0.008813089691102505, 0.023915253579616547, 0.04048486799001694, 0.0431346669793129, -0.018062222748994827, 0.03364235535264015, -0.007337253540754318, 0.042094871401786804, -0.028091199696063995, -0.01434747502207756, -0.048333633691072464, 0.002614158671349287, -0.048400718718767166, -0.06762012839317322, -0.0075175403617322445, -0.06929721683263779, 0.009517465718090534, -0.009182048961520195, -0.0816405713558197, -0.006041704211384058, -0.03599027916789055, 0.07996349036693573, -0.014884143136441708, -0.0467236302793026, -0.028912972658872604, 0.041189245879650116, 0.07761556655168533, -0.10847395658493042, 0.013601171784102917, -0.0045910244807600975, 0.051016971468925476, 0.02565942332148552, -0.02148347906768322, -0.020259205251932144, -0.04464404284954071, -0.006385507062077522, 0.0030397193040698767, 0.018431181088089943, 0.06188449263572693, 0.020762331783771515, 0.02148347906768322, 0.018146077170968056, -0.040652576833963394, -0.06450074911117554, -0.017676493152976036, 0.06537283211946487, 0.0672176256775856, -0.04145757853984833, -0.004297534469515085, -0.004968368913978338, -0.014364246279001236, 0.05926823988556862, 0.042094871401786804, -0.024200359359383583, 0.02572650834918022, -0.004360424820333719, 0.043335914611816406, 0.05547802150249481, 0.01534534152597189, -0.013903047889471054, 0.0006063716136850417, 0.05641719326376915, -0.042161956429481506, 0.014481642283499241, -0.03649340197443962, -0.06185095012187958, 0.011731220409274101, -0.008762776851654053, 0.006041704211384058, -0.00022509646078106016, -0.055109065026044846, -0.062454704195261, 0.02648119628429413, 0.04538196325302124, 0.010624343529343605, 0.052459266036748886, 0.03625861182808876, -0.03904257342219353, 0.04383904114365578, -0.024267442524433136, -0.005727250594645739, -0.0013112720334902406, -0.022020146250724792, -0.02175181172788143, -0.010280540212988853, 0.08465933054685593, -0.014397787861526012, -0.08579974621534348, 0.018548578023910522, 0.02019212208688259, 0.05356614291667938, 0.014691278338432312, -0.021231915801763535, -0.01480028871446848, 0.009995436295866966, 0.09384976327419281, 0.002622544066980481, 0.015814926475286484, 0.023445669561624527, -0.04531487822532654, -0.0076810563914477825, -0.04229612275958061, 0.03622506931424141, -0.026145778596401215, 0.02955026552081108, -0.030120475217700005, 0.06315907835960388, -0.025760049000382423, -0.029701203107833862, -0.010288925841450691, 0.003396100364625454, -0.00671673147007823, 0.022439418360590935, 0.038539450615644455, 0.005802719388157129, 0.04048486799001694, -0.03213297948241234, 0.006687382701784372, 0.04061903804540634, -0.02913099341094494, -0.016192270442843437, 0.0010209264000877738, 0.02074556052684784, -0.027705470100045204, -0.0038971297908574343, -0.0039767916314303875, -0.00856152642518282, -0.000825441034976393, 0.0012682967353612185, 0.006133944261819124, -0.02254004403948784, 0.011026844382286072, -0.0010963953100144863, -0.060878243297338486, -0.020024413242936134, -0.05735636129975319, 0.019286494702100754, 0.0102134570479393, 0.08070140331983566, 0.08680599927902222, 0.01848149299621582, 0.031797561794519424, -0.032384540885686874, -0.055310312658548355, -0.02612900920212269, 0.013064504601061344, -0.0018825297011062503, -0.03104287199676037, -0.014842215925455093, -0.08016473799943924, 0.015504664741456509, 0.05370031297206879, -0.0073791807517409325, -0.013416692614555359, 0.044006749987602234, 0.06698283553123474, -0.050782181322574615, 0.013970131054520607, -0.027269426733255386, -0.007245013955980539, 0.013844349421560764, 0.06983388215303421, -0.025206610560417175, -0.027554532513022423, -0.03411193937063217, -0.0015837985556572676, -0.0007117136265151203, 0.024535777047276497, -0.004301726818084717, -0.014422944746911526, 0.03894194960594177, 0.06352803856134415, 0.025005361065268517, -0.0024233900476247072, 0.009894810616970062, 0.04105507954955101, -0.022556813433766365, 0.0792926549911499, 0.013542474247515202, -0.00030528215575031936, -0.019839933142066002, 0.002264066832140088, -0.08439099788665771, -0.05323072522878647, -0.04152466356754303, -0.0384388230741024, 0.021768582984805107, -0.00033777570934034884, -0.0038048902060836554, 0.00395582802593708, -0.01553820725530386, -0.03075776807963848, -0.004683264065533876, 0.026615362614393234, -0.04199424758553505, -0.002869914285838604, 0.04420800134539604, 0.04558321088552475, -0.01574784331023693, 0.04149112105369568, 0.02846015803515911, -0.022506501525640488, -0.05299593508243561, 0.05346551910042763, 0.049809470772743225, -0.003362558549270034, 0.009349757805466652, 0.013357994146645069, 0.03978049382567406, 0.011546741239726543, 0.021382853388786316, -0.03119380958378315, 0.013307681307196617, 0.0016393520636484027, 0.08184182643890381, 0.014431329444050789, -0.07338930666446686, -0.03095901757478714, 0.05490781366825104, -0.009039496071636677, 0.010557259432971478, 0.0006860332214273512, -0.014422944746911526, 0.0039516352117061615, -0.007437878753989935, 0.006003969814628363, -0.006779622286558151, -0.004909670911729336, 0.0228419192135334, -0.061549074947834015, 0.04806530103087425, -0.02601161226630211, 0.035420067608356476, 0.0004129825683776289, -0.007752332370728254, 0.059402406215667725, 0.0035051109734922647, 0.007735561579465866, -0.004087898414582014, 0.027437135577201843, -0.023948796093463898, -0.026145778596401215 ]
729,262
tables
get_pytables_version
null
def get_pytables_version(): warnings.warn( "the 'get_pytables_version()' function is deprecated and could be " "removed in future versions. Please use 'tables.__version__'", DeprecationWarning) return __version__
()
[ 0.027501538395881653, -0.029151977971196175, -0.01228274591267109, -0.025399398058652878, 0.013993991538882256, -0.011431466788053513, 0.02425277791917324, 0.01355097908526659, -0.05274457857012749, -0.03238336369395256, 0.005407361779361963, -0.039888523519039154, -0.05267508700489998, 0.0027796879876405, 0.05125049501657486, -0.033599477261304855, 0.03999276086688042, 0.001098845386877656, 0.05896412953734398, 0.027553657069802284, -0.012968981638550758, -0.011005827225744724, -0.004764558747410774, 0.002534293569624424, -0.009225089102983475, 0.0831126719713211, 0.017685765400528908, -0.0022226646542549133, 0.06302942335605621, -0.028543921187520027, -0.07616344839334488, 0.01639147289097309, 0.030454955995082855, 0.039402075111866, 0.0002244923816761002, 0.05569799616932869, 0.034207534044981, -0.03995801508426666, 0.04311991110444069, -0.015470700338482857, 0.036274928599596024, -0.007479097694158554, 0.02532990649342537, -0.049791160970926285, 0.009476998820900917, 0.00411524111405015, -0.03457237035036087, -0.004338919185101986, 0.024478627368807793, -0.014880017377436161, 0.030472328886389732, 0.006532266736030579, 0.03898512199521065, 0.015045060776174068, -0.017329616472125053, 0.016408845782279968, 0.03297404944896698, -0.021507835015654564, -0.010580187663435936, 0.06007600575685501, 0.0027601432520896196, 0.00400448776781559, -0.020621810108423233, -0.002219407120719552, 0.023227768018841743, -0.04061818867921829, 0.058686163276433945, -0.05813022330403328, -0.018728148192167282, 0.03981902822852135, -0.03412066772580147, -0.0006715769413858652, -0.03073292411863804, 0.012586774304509163, -0.012673639692366123, -0.052640341222286224, -0.02614643983542919, -0.05274457857012749, -0.0005651670508086681, -0.03672662749886513, -0.005181511864066124, -0.03120199777185917, 0.015071121044456959, 0.048957254737615585, 0.05903362110257149, -0.015670491382479668, 0.027866370975971222, 0.06299468129873276, -0.07105576992034912, 0.05006913095712662, -0.04225125536322594, 0.003233558963984251, -0.03019436076283455, 0.038290202617645264, 0.01076260395348072, -0.07109051942825317, 0.0072445617988705635, -0.026250677183270454, 0.014984255656599998, 0.003381229704245925, 0.07331427186727524, 0.015878967940807343, -0.010745231062173843, 0.018241701647639275, -0.02260233834385872, -0.010276159271597862, -0.03083716332912445, 0.009928697720170021, 0.00910347793251276, -0.060353975743055344, 0.0333736278116703, 0.010988454334437847, -0.0024821744300425053, -0.0009712620521895587, 0.04850555583834648, -0.035788483917713165, -0.05118100345134735, -0.033356256783008575, 0.05962430685758591, 0.037213072180747986, -0.011970031075179577, 0.047428425401449203, -0.07428716123104095, -0.029760034754872322, 0.003683086484670639, -0.0135249188169837, 0.0014332765713334084, -0.006037134677171707, 0.027449417859315872, -0.002126026898622513, 0.013646530918776989, 0.020917151123285294, -0.007670201361179352, 0.015635745599865913, -0.0015375148504972458, -0.06150059401988983, 0.04252922534942627, 0.03613594174385071, -0.01545332744717598, -0.07310578972101212, -0.06226500868797302, 0.01587028056383133, 0.000834992213640362, -0.030402837321162224, 0.012239313684403896, 0.03540627658367157, -0.014680227264761925, -0.009928697720170021, 0.026893481612205505, -0.0056462413631379604, 0.027675267308950424, -0.02442650869488716, 0.009476998820900917, -0.04558688402175903, -0.00005530873386305757, 0.016087444499135017, -0.01221325434744358, -0.12154185771942139, 0.04437077045440674, -0.06514893472194672, 0.02798798307776451, -0.004673350136727095, -0.04423178359866142, -0.0683455765247345, 0.04833182319998741, 0.021907415241003036, 0.016374099999666214, -0.027848998084664345, 0.013055847026407719, -0.03714358061552048, -0.033113032579422, 0.06264721602201462, 0.019596800208091736, 0.06184805557131767, -0.024113792926073074, 0.03309565782546997, 0.04607332870364189, 0.04183430224657059, 0.05434289947152138, -0.00220854883082211, 0.014992942102253437, 0.04558688402175903, -0.06146584823727608, 0.04027073085308075, 0.024878207594156265, 0.04009699821472168, 0.015566252171993256, 0.014271960593760014, -0.012760505080223083, 0.001278004958294332, -0.058269210159778595, 0.011831047013401985, 0.06858880072832108, 0.03738680109381676, -0.04683774337172508, -0.05747004970908165, -0.0027167105581611395, -0.0013909297995269299, 0.0008306489326059818, -0.005520286504179239, 0.0419732891023159, 0.036031704396009445, -0.03257446736097336, 0.03260921314358711, 0.02456549182534218, 0.008382496424019337, 0.04440551623702049, -0.052570849657058716, -0.030559195205569267, -0.008799449540674686, 0.047358933836221695, -0.012482536025345325, -0.03354736045002937, -0.038290202617645264, -0.025243042036890984, -0.002892612712457776, 0.006358535960316658, -0.01210032869130373, -0.030976148322224617, -0.021021390333771706, 0.10576712340116501, 0.03505881503224373, 0.04913098365068436, 0.004421441350132227, 0.011370660737156868, -0.03441601246595383, 0.035684242844581604, 0.03238336369395256, 0.02129935845732689, -0.06452350318431854, 0.0005214629345573485, 0.03316515311598778, -0.008100184611976147, 0.029325708746910095, 0.028457054868340492, 0.044092800468206406, -0.02004849910736084, 0.00358753465116024, 0.04478772357106209, 0.007183756213635206, -0.013429366983473301, 0.0007926453836262226, 0.017042960971593857, 0.058338701725006104, 0.045343659818172455, -0.010276159271597862, -0.019718410447239876, 0.0056940168142318726, -0.006949219852685928, 0.02051757089793682, -0.04555213451385498, -0.07616344839334488, 0.04100039601325989, 0.005446451250463724, 0.03641391173005104, 0.0004047377733513713, -0.00987657904624939, 0.012491222470998764, 0.02449600026011467, -0.041243620216846466, -0.08582286536693573, -0.002462629694491625, -0.07859567552804947, -0.029429946094751358, 0.013177458196878433, -0.026650257408618927, -0.016834484413266182, 0.02189004234969616, -0.04437077045440674, 0.04965217411518097, 0.03191429376602173, -0.02609432116150856, -0.07609395682811737, -0.016321979463100433, 0.04204278066754341, -0.13113178312778473, -0.016599949449300766, 0.006675594486296177, -0.0006151145207695663, 0.008612689562141895, 0.02953418530523777, -0.03450287505984306, -0.050451334565877914, 0.047011472284793854, -0.07484310120344162, -0.014106916263699532, -0.055315788835287094, -0.035684242844581604, 0.022393861785531044, -0.03943682089447975, -0.03978428244590759, -0.009233775548636913, -0.0360664501786232, 0.020552318543195724, -0.014662854373455048, 0.05034709721803665, -0.0012758333468809724, 0.029621049761772156, 0.05302254855632782, -0.026876108720898628, -0.0172948706895113, 0.017807375639677048, -0.0012693183962255716, 0.09666364639997482, 0.01029353216290474, -0.016209054738283157, 0.07206340879201889, -0.03683086484670639, 0.01660863496363163, -0.04378008469939232, 0.016026638448238373, -0.020430706441402435, 0.001984870992600918, -0.018415432423353195, -0.022081146016716957, -0.02199428156018257, -0.06525317579507828, -0.0025147488340735435, -0.0036309673450887203, 0.07734481990337372, -0.019266711547970772, 0.044509753584861755, 0.03147996589541435, 0.02864815853536129, -0.01396793220192194, -0.0553852841258049, 0.050451334565877914, -0.03332151100039482, 0.001765536144375801, -0.015835534781217575, -0.015635745599865913, -0.02098664455115795, 0.0633421391248703, 0.02201165445148945, 0.024582864716649055, 0.0320880226790905, -0.021507835015654564, -0.02070867456495762, -0.06938795745372772, 0.019701037555933, 0.022689202800393105, -0.034311771392822266, 0.04607332870364189, -0.009060045704245567, -0.06831083446741104, -0.0012834339868277311, 0.030993521213531494, 0.023714212700724602, 0.04603858292102814, -0.03794274106621742, -0.00767888780683279, -0.016330666840076447, -0.022098518908023834, 0.06143110245466232, 0.0049643488600850105, -0.05562850460410118, 0.018311195075511932, 0.05475985258817673, 0.04690723493695259, 0.03995801508426666, -0.05006913095712662, -0.016764992848038673, 0.02901299297809601, 0.012109016068279743, -0.016417531296610832, -0.0013529262505471706, -0.008703897707164288, -0.05010387673974037, 0.047706395387649536, 0.030055375769734383, -0.01891925185918808, 0.035145677626132965, 0.03776900842785835, -0.0021672879811376333, -0.034016430377960205, -0.013993991538882256, -0.02717144973576069, 0.03710883483290672, -0.009511744603514671, -0.06775489449501038, 0.005850374698638916, -0.04100039601325989, -0.025017190724611282, 0.019006116315722466, -0.021021390333771706, -0.009051359258592129, -0.05594122037291527, -0.04489196091890335, 0.012717071920633316, 0.00030239965417422354, -0.03073292411863804, -0.011761554516851902, -0.00008415070624323562, 0.025868471711874008, -0.011970031075179577, 0.05517680570483208, -0.018432805314660072, -0.036448657512664795, -0.0035006694961339235, -0.023696839809417725, 0.005320496391505003, 0.011926598846912384, -0.04624705761671066, -0.03167106956243515, -0.04454449936747551, 0.004256397020071745, 0.10326540470123291, 0.0385681688785553, -0.023175647482275963, -0.03974953666329384, -0.0082304822281003, -0.004078323487192392, -0.023210395127534866, 0.00984183233231306, 0.05535053461790085, 0.04624705761671066, -0.0147931519895792, 0.009233775548636913, 0.058859892189502716, 0.005546346306800842, 0.03884613886475563, -0.019006116315722466, 0.003917622845619917, 0.03832494840025902, -0.022272249683737755, 0.04315465688705444, -0.08359911292791367, 0.007166382856667042, 0.0021097396966069937, 0.03071555122733116, 0.028144340962171555, -0.060944657772779465, 0.007913423702120781, -0.0402359813451767, 0.02046545222401619, -0.017338303849101067, 0.05580223724246025, -0.028318071737885475, -0.02112562768161297, -0.010467262007296085, 0.021455716341733932, -0.0098505187779665, 0.04301567003130913, 0.045343659818172455, 0.0540996752679348, -0.016799738630652428, -0.006310760509222746, -0.0033660284243524075, -0.012074269354343414, -0.021021390333771706, -0.02889138087630272, -0.012882116250693798, -0.02515617571771145, -0.027970610186457634, 0.025729486718773842, 0.0003132577985525131, -0.0381859615445137, -0.009928697720170021, -0.015488074161112309, 0.0024018241092562675, -0.02656339295208454, 0.05211915075778961, 0.05083354189991951, 0.05142422765493393, 0.04357161000370979, -0.07442614436149597, -0.022741321474313736, -0.037699516862630844, -0.018224328756332397, 0.02058706432580948, 0.06480147689580917, -0.021681565791368484, -0.016104817390441895, -0.011579137295484543, -0.05107676610350609, 0.02948206476867199, -0.013264323584735394, 0.0063932822085917, 0.02520829439163208, -0.014932136051356792, -0.049026746302843094, 0.03019436076283455, 0.04204278066754341, 0.0007160953828133643, -0.01904086209833622, -0.040652934461832047, -0.010154547169804573, 0.002751456806436181, -0.02260233834385872, -0.026719750836491585, -0.05472510680556297, 0.02235911414027214, -0.030159614980220795, -0.04145209491252899, 0.05187592655420303, -0.0007030655979178846, 0.033842701464891434, -0.00842592865228653, 0.019822649657726288, 0.04562162980437279, 0.01904086209833622, -0.04266820847988129, 0.017459914088249207, -0.04266820847988129, 0.004490933381021023, -0.0738702043890953, 0.07866516709327698, -0.0048514241352677345, 0.004695066716521978, -0.002029389375820756, 0.010015563108026981, 0.014072170481085777, -0.019666291773319244, 0.05979803577065468, 0.024582864716649055, -0.01771182380616665, -0.05225813388824463, 0.04103514179587364, 0.06733793765306473, 0.008108871057629585, -0.018762893974781036, 0.06108364090323448, 0.04565637558698654, -0.08533641695976257, -0.009563864208757877, -0.009650728665292263, -0.017703138291835785, 0.01714720018208027, 0.04867928475141525, 0.02230699546635151, -0.0026971660554409027, 0.03801223263144493, -0.026893481612205505, -0.0037069744430482388, -0.01921459287405014, -0.01673024706542492, -0.04965217411518097, -0.03564949706196785, 0.0008257627487182617, -0.06931846588850021, 0.017807375639677048, -0.05475985258817673, -0.015835534781217575, -0.054064929485321045, -0.043085161596536636, 0.03895037621259689, -0.07036085426807404, 0.07043034583330154, -0.02638966217637062, -0.03648340329527855, -0.061118390411138535, 0.0650099515914917, 0.062369249761104584, -0.10298743844032288, -0.03669188171625137, 0.02272394858300686, 0.01378551498055458, 0.0188671313226223, 0.006884071044623852, 0.004230337683111429, -0.04159108176827431, -0.04339787736535072, 0.004456187132745981, 0.020621810108423233, 0.012022150680422783, 0.015548879280686378, 0.03373846411705017, 0.03161894902586937, -0.01904086209833622, 0.00472981296479702, 0.004325889516621828, 0.019075607880949974, 0.05639291927218437, -0.03665713593363762, 0.010458575561642647, -0.01938832364976406, 0.014636794105172157, 0.04867928475141525, 0.04329364001750946, -0.014714973047375679, 0.027605775743722916, -0.002375764539465308, 0.014393571764230728, 0.052640341222286224, 0.021264612674713135, -0.019492560997605324, -0.0013442396884784102, 0.005819971673190594, 0.04127836599946022, -0.014906076714396477, -0.048783522099256516, -0.011309855617582798, -0.004445329308509827, -0.01769445091485977, -0.02110825479030609, -0.007965543307363987, -0.06560063362121582, 0.0003458322607912123, 0.007231532130390406, 0.03095877543091774, 0.014098229818046093, 0.07532954216003418, 0.0377342626452446, -0.062126025557518005, 0.04193854331970215, -0.0060414778999984264, -0.020778167992830276, -0.004716782830655575, -0.018172210082411766, 0.013846321031451225, -0.04805385693907738, 0.040062252432107925, -0.022637084126472473, -0.1132722869515419, 0.0329219289124012, -0.020969271659851074, 0.04211227223277092, -0.01025878544896841, 0.0011075319489464164, -0.01975315809249878, -0.021612074226140976, 0.15218791365623474, 0.0687972754240036, 0.007631111890077591, 0.007744037080556154, -0.024461254477500916, -0.024999817833304405, -0.06959643959999084, 0.0679633691906929, -0.02147308923304081, -0.029395200312137604, -0.019423069432377815, 0.044996198266744614, -0.017425168305635452, -0.03877664729952812, -0.004473560489714146, -0.009537803940474987, -0.06768540292978287, 0.0486445389688015, 0.06368959695100784, 0.016938723623752594, 0.04287668690085411, 0.006410655099898577, 0.015965832397341728, 0.008026349358260632, -0.03073292411863804, -0.042841941118240356, -0.012995040975511074, 0.018849758431315422, -0.027015091851353645, -0.04179955646395683, -0.005911180283874273, 0.0057027037255465984, 0.0025147488340735435, 0.003991458099335432, -0.0119526581838727, -0.035788483917713165, 0.011309855617582798, 0.026181185618042946, -0.027484163641929626, 0.0020250461529940367, -0.053647976368665695, -0.01011111494153738, 0.03842918574810028, 0.03264395892620087, 0.04468348249793053, 0.042737703770399094, 0.025382025167346, -0.03262658789753914, -0.044579245150089264, 0.03589272126555443, 0.0031032608821988106, -0.0616743266582489, -0.06382858753204346, -0.0044018966145813465, 0.0021607731468975544, 0.015592312440276146, 0.03290455788373947, 0.012169821187853813, -0.011970031075179577, 0.05896412953734398, 0.022029027342796326, -0.049791160970926285, 0.006640848238021135, -0.05469036102294922, 0.04378008469939232, 0.0295863039791584, 0.0872822031378746, -0.03915885463356972, -0.07241087406873703, -0.007214158773422241, -0.003155380254611373, 0.0025104056112468243, 0.04621231183409691, 0.0064323716796934605, 0.0005431792815215886, 0.033651597797870636, 0.010224039666354656, 0.027310434728860855, 0.007044771686196327, 0.03790799528360367, 0.025590501725673676, -0.012708385474979877, 0.08380759507417679, -0.02567736804485321, 0.03683086484670639, -0.003961055539548397, -0.038046978414058685, -0.07136848568916321, -0.06181330978870392, 0.001906692166812718, -0.02206377312541008, 0.03059394098818302, -0.042841941118240356, 0.037213072180747986, -0.010415143333375454, -0.016504397615790367, -0.010736544616520405, 0.0010358680738136172, 0.0060979402624070644, -0.033234644681215286, -0.003101089270785451, 0.03007274866104126, 0.014046110212802887, 0.009676788933575153, 0.04346736893057823, -0.00740091921761632, -0.03683086484670639, -0.04906149208545685, 0.04906149208545685, 0.055906474590301514, -0.029256215319037437, -0.0082782581448555, -0.027901118621230125, 0.014428317546844482, 0.0048253643326461315, -0.013186144642531872, -0.019231965765357018, 0.06056245043873787, -0.018293822184205055, 0.013889753259718418, 0.04600383713841438, -0.03891563042998314, 0.024113792926073074, 0.034363891929388046, -0.0015375148504972458, -0.008695211261510849, -0.01690397784113884, 0.004821021109819412, -0.007235875353217125, -0.005576748866587877, 0.030159614980220795, -0.04822758585214615, -0.0171993188560009, 0.0163654126226902, -0.05715733394026756, 0.040479205548763275, 0.00011007455759681761, -0.011605197563767433, -0.023054037243127823, -0.012560714967548847, 0.06434977799654007, -0.00859965942800045, -0.010475949384272099, -0.009007926099002361, 0.002764486474916339, -0.013073219917714596, -0.010085055604577065 ]
729,277
tables.file
open_file
Open a PyTables (or generic HDF5) file and return a File object. Parameters ---------- filename : str The name of the file (supports environment variable expansion). It is suggested that file names have any of the .h5, .hdf or .hdf5 extensions, although this is not mandatory. mode : str The mode to open the file. It can be one of the following: * *'r'*: Read-only; no data can be modified. * *'w'*: Write; a new file is created (an existing file with the same name would be deleted). * *'a'*: Append; an existing file is opened for reading and writing, and if the file does not exist it is created. * *'r+'*: It is similar to 'a', but the file must already exist. title : str If the file is to be created, a TITLE string attribute will be set on the root group with the given value. Otherwise, the title will be read from disk, and this will not have any effect. root_uep : str The root User Entry Point. This is a group in the HDF5 hierarchy which will be taken as the starting point to create the object tree. It can be whatever existing group in the file, named by its HDF5 path. If it does not exist, an HDF5ExtError is issued. Use this if you do not want to build the *entire* object tree, but rather only a *subtree* of it. .. versionchanged:: 3.0 The *rootUEP* parameter has been renamed into *root_uep*. filters : Filters An instance of the Filters (see :ref:`FiltersClassDescr`) class that provides information about the desired I/O filters applicable to the leaves that hang directly from the *root group*, unless other filter properties are specified for these leaves. Besides, if you do not specify filter properties for child groups, they will inherit these ones, which will in turn propagate to child nodes. Notes ----- In addition, it recognizes the (lowercase) names of parameters present in :file:`tables/parameters.py` as additional keyword arguments. See :ref:`parameter_files` for a detailed info on the supported parameters. .. note:: If you need to deal with a large number of nodes in an efficient way, please see :ref:`LRUOptim` for more info and advices about the integrated node cache engine.
def open_file(filename, mode="r", title="", root_uep="/", filters=None, **kwargs): """Open a PyTables (or generic HDF5) file and return a File object. Parameters ---------- filename : str The name of the file (supports environment variable expansion). It is suggested that file names have any of the .h5, .hdf or .hdf5 extensions, although this is not mandatory. mode : str The mode to open the file. It can be one of the following: * *'r'*: Read-only; no data can be modified. * *'w'*: Write; a new file is created (an existing file with the same name would be deleted). * *'a'*: Append; an existing file is opened for reading and writing, and if the file does not exist it is created. * *'r+'*: It is similar to 'a', but the file must already exist. title : str If the file is to be created, a TITLE string attribute will be set on the root group with the given value. Otherwise, the title will be read from disk, and this will not have any effect. root_uep : str The root User Entry Point. This is a group in the HDF5 hierarchy which will be taken as the starting point to create the object tree. It can be whatever existing group in the file, named by its HDF5 path. If it does not exist, an HDF5ExtError is issued. Use this if you do not want to build the *entire* object tree, but rather only a *subtree* of it. .. versionchanged:: 3.0 The *rootUEP* parameter has been renamed into *root_uep*. filters : Filters An instance of the Filters (see :ref:`FiltersClassDescr`) class that provides information about the desired I/O filters applicable to the leaves that hang directly from the *root group*, unless other filter properties are specified for these leaves. Besides, if you do not specify filter properties for child groups, they will inherit these ones, which will in turn propagate to child nodes. Notes ----- In addition, it recognizes the (lowercase) names of parameters present in :file:`tables/parameters.py` as additional keyword arguments. See :ref:`parameter_files` for a detailed info on the supported parameters. .. note:: If you need to deal with a large number of nodes in an efficient way, please see :ref:`LRUOptim` for more info and advices about the integrated node cache engine. """ filename = os.fspath(filename) # XXX filename normalization ?? # Check already opened files if _FILE_OPEN_POLICY == 'strict': # This policy does not allow to open the same file multiple times # even in read-only mode if filename in _open_files: raise ValueError( "The file '%s' is already opened. " "Please close it before reopening. " "HDF5 v.%s, FILE_OPEN_POLICY = '%s'" % ( filename, utilsextension.get_hdf5_version(), _FILE_OPEN_POLICY)) else: for filehandle in _open_files.get_handlers_by_name(filename): omode = filehandle.mode # 'r' is incompatible with everything except 'r' itself if mode == 'r' and omode != 'r': raise ValueError( "The file '%s' is already opened, but " "not in read-only mode (as requested)." % filename) # 'a' and 'r+' are compatible with everything except 'r' elif mode in ('a', 'r+') and omode == 'r': raise ValueError( "The file '%s' is already opened, but " "in read-only mode. Please close it before " "reopening in append mode." % filename) # 'w' means that we want to destroy existing contents elif mode == 'w': raise ValueError( "The file '%s' is already opened. Please " "close it before reopening in write mode." % filename) # Finally, create the File instance, and return it return File(filename, mode, title, root_uep, filters, **kwargs)
(filename, mode='r', title='', root_uep='/', filters=None, **kwargs)
[ 0.010283415205776691, -0.022751441225409508, -0.000009091012543649413, -0.004408583510667086, 0.019425321370363235, -0.004179790150374174, -0.018884088844060898, 0.027120662853121758, -0.051210422068834305, -0.04101557284593582, 0.009476486593484879, -0.0011150616919621825, -0.007655977737158537, 0.07002563029527664, 0.009624095633625984, 0.014967535622417927, -0.01687660999596119, 0.0579020231962204, 0.0020087100565433502, 0.015075781382620335, 0.009063182398676872, -0.035268668085336685, -0.014416462741792202, 0.004639837425202131, -0.005717381834983826, 0.004140427801758051, -0.037236787378787994, 0.024798283353447914, 0.0588860809803009, -0.03131275251507759, -0.026963213458657265, 0.004526670556515455, 0.00031612892053090036, 0.05109233781695366, -0.014012997969985008, 0.0013912132708355784, 0.021629612892866135, 0.04999018833041191, -0.015282434411346912, 0.009811067022383213, -0.050305090844631195, -0.016099203377962112, 0.012133445590734482, -0.01711278408765793, -0.0190710611641407, 0.058807358145713806, 0.036036234349012375, -0.0009096394060179591, 0.008236573077738285, 0.01837237924337387, 0.0007780215237289667, 0.03021060675382614, 0.007680579554289579, -0.002561013214290142, -0.03204095736145973, -0.021531207486987114, -0.0414091981947422, -0.01683724671602249, -0.010052161291241646, -0.029698897153139114, 0.04447945952415466, 0.048336971551179886, 0.066719189286232, 0.0024810584727674723, -0.07348951697349548, -0.015656376257538795, 0.0022805563639849424, -0.0556977316737175, -0.03520962595939636, 0.005948635749518871, -0.012084242887794971, -0.005097425077110529, 0.06132654845714569, 0.015213550068438053, 0.06026376411318779, 0.03605591505765915, -0.041566647589206696, -0.029600489884614944, -0.01243850402534008, -0.026195647194981575, 0.032434578984975815, 0.004113365896046162, 0.020803004503250122, 0.0398150198161602, 0.028301533311605453, -0.009402682073414326, 0.042235806584358215, 0.035504844039678574, 0.04062195122241974, 0.005122026428580284, 0.0039903586730360985, -0.01640426181256771, -0.020251931622624397, -0.0063127377070486546, 0.004189630504697561, -0.0556977316737175, -0.02784886583685875, 0.03456014767289162, -0.04514862224459648, -0.06250742077827454, -0.04109429940581322, -0.02487700805068016, 0.04152728244662285, -0.0006913013639859855, -0.021137584000825882, -0.027120662853121758, -0.002693861024454236, 0.07919705659151077, -0.006243853364139795, -0.03938203677535057, -0.09210790693759918, 0.006740803364664316, 0.028262170031666756, 0.042708154767751694, 0.024739239364862442, -0.04873059317469597, 0.008113564923405647, 0.03365481272339821, -0.03509153798222542, -0.05857118219137192, -0.02007480151951313, 0.021531207486987114, -0.05825628340244293, -0.004098605364561081, 0.041842181235551834, -0.005432005040347576, 0.008413703180849552, -0.04951784014701843, 0.048140160739421844, -0.02761269174516201, -0.032198406755924225, 0.021550888195633888, 0.00000915347754926188, 0.0006439434946514666, 0.01683724671602249, -0.07045861333608627, 0.016817566007375717, 0.05746903643012047, 0.001811898429878056, 0.015420202165842056, 0.06227124482393265, -0.03182446211576462, -0.004339699633419514, -0.02088172920048237, -0.028399938717484474, -0.0447549968957901, 0.030427100136876106, -0.06498724967241287, 0.008236573077738285, 0.06581385433673859, -0.011493807658553123, -0.05435940995812416, -0.00987011007964611, 0.03091912902891636, 0.08195242285728455, -0.04188154637813568, 0.02017320692539215, -0.06711281090974808, -0.03739423677325249, 0.034934088587760925, 0.011916953139007092, -0.0011605743784457445, -0.006416063755750656, 0.035367075353860855, -0.03422556817531586, -0.007449325639754534, -0.058413732796907425, -0.02631373330950737, 0.006416063755750656, -0.043534763157367706, 0.01980910450220108, -0.0004969497094862163, -0.033300552517175674, 0.07833108305931091, -0.019868148490786552, -0.035563886165618896, 0.019120262935757637, -0.02334187552332878, -0.02654990740120411, -0.024955732747912407, 0.014928173273801804, -0.0066916001960635185, 0.005338519345968962, 0.043967749923467636, 0.0028193285688757896, 0.0524306558072567, 0.01687660999596119, 0.017949232831597328, 0.028025995939970016, 0.010125965811312199, -0.01707342080771923, -0.022554628551006317, -0.01814604550600052, 0.0326707549393177, 0.020192887634038925, -0.032395217567682266, 0.011562692001461983, 0.03233617544174194, 0.018087001517415047, 0.07289908081293106, -0.019120262935757637, 0.0721118301153183, 0.05967332795262337, -0.013186388649046421, -0.04459754750132561, 0.000044705488107865676, 0.06018504127860069, -0.0251131821423769, -0.03428461030125618, 0.035603251308202744, 0.021629612892866135, -0.04424328729510307, -0.021531207486987114, 0.05333599075675011, 0.02530999481678009, 0.017555609345436096, -0.06730962544679642, 0.041802819818258286, -0.06793942302465439, 0.011483967304229736, -0.007882311940193176, 0.0600275918841362, -0.06242869421839714, 0.03422556817531586, 0.010726241394877434, -0.036862846463918686, 0.03410748019814491, -0.015833506360650063, 0.04341667518019676, 0.004305257461965084, 0.023459963500499725, 0.015144665725529194, -0.0003032131353393197, 0.01080496609210968, -0.0030850244220346212, 0.04199963063001633, 0.02261367253959179, 0.0013776824343949556, -0.07935450971126556, 0.0018155885627493262, 0.006475107278674841, -0.05908289551734924, 0.02747492305934429, 0.006263534538447857, 0.004878471605479717, -0.05546155571937561, 0.029738258570432663, 0.035800062119960785, -0.06797878444194794, -0.030958492308855057, 0.034363336861133575, 0.007188550196588039, -0.01947452500462532, 0.026136603206396103, -0.009200950153172016, -0.000805698218755424, -0.0059191142208874226, -0.023755181580781937, 0.015420202165842056, -0.0458965040743351, -0.007951195351779461, -0.056642428040504456, 0.046801839023828506, 0.016020478680729866, 0.023086020722985268, -0.02751428633928299, -0.021531207486987114, -0.038870323449373245, -0.03670539706945419, -0.05081680044531822, -0.006603035144507885, 0.09250153601169586, -0.009077942930161953, -0.004824348725378513, -0.020055118948221207, -0.0523519329726696, 0.001473628100939095, -0.016768362373113632, 0.00908778328448534, 0.014091722667217255, -0.02534935623407364, -0.026904169470071793, -0.024995094165205956, 0.03011220134794712, 0.006460346281528473, 0.004676739685237408, -0.0873057022690773, 0.0024675275199115276, -0.013019098900258541, -0.009107464924454689, -0.024699877947568893, 0.021157264709472656, -0.07093096524477005, -0.02891165018081665, -0.024286571890115738, 0.00707046315073967, -0.05876799672842026, -0.031667012721300125, 0.07608743011951447, -0.046959288418293, -0.050501901656389236, -0.010844328440725803, 0.09706756472587585, -0.009875030256807804, -0.0289510115981102, -0.04424328729510307, 0.011483967304229736, -0.047077376395463943, 0.022869527339935303, -0.016227129846811295, 0.05077743902802467, -0.002627437235787511, 0.009717580862343311, 0.015203709714114666, 0.028754200786352158, 0.02338123880326748, 0.009161587804555893, -0.022318454459309578, 0.03456014767289162, 0.023656774312257767, -0.015695739537477493, 0.0018697117920964956, -0.03885064274072647, -0.020468425005674362, 0.04345604032278061, -0.07285971939563751, 0.07514273375272751, 0.011543010361492634, -0.03479631990194321, 0.007518209517002106, -0.011218271218240261, 0.01844126358628273, 0.0917142853140831, 0.018549509346485138, -0.09084831178188324, 0.06305849552154541, 0.019553249701857567, 0.01737847924232483, 0.058610547333955765, 0.003864891128614545, 0.04829761013388634, -0.0026471184100955725, -0.0062684547156095505, -0.055146656930446625, -0.036429859697818756, -0.03446174040436745, 0.04566033184528351, -0.03178510069847107, 0.0873057022690773, -0.01820508949458599, 0.05703605338931084, 0.019395800307393074, -0.04176345840096474, -0.042904965579509735, -0.010431024245917797, -0.03467823565006256, -0.015518608503043652, 0.008974616415798664, 0.014662477187812328, -0.018382219597697258, 0.011680779047310352, -0.015931913629174232, -0.04754972457885742, -0.02464083395898342, 0.011808706447482109, -0.02540840022265911, 0.02300729602575302, 0.06423936039209366, -0.025821704417467117, -0.026825444772839546, 0.008074202574789524, -0.04920294135808945, 0.004691500682383776, -0.003232633462175727, 0.050147637724876404, 0.008546550758183002, -0.01633537746965885, -0.006819528061896563, -0.03251330554485321, 0.0371580608189106, 0.06951391696929932, 0.0038378294557332993, 0.005279475823044777, -0.021570570766925812, -0.07896088063716888, -0.027160024270415306, -0.0027307632844895124, 0.04853378236293793, 0.005835468880832195, -0.0020456123165786266, 0.0512891486287117, 0.0196418147534132, 0.0458965040743351, 0.0425507053732872, 0.015498926863074303, 0.04196026921272278, 0.035130903124809265, 0.03778786212205887, -0.057980749756097794, 0.0030358214862644672, -0.055776454508304596, -0.04849442094564438, -0.022830165922641754, 0.024522745981812477, -0.005983077920973301, 0.0047087217681109905, 0.07825236022472382, 0.031667012721300125, 0.012517228722572327, -0.03932299092411995, 0.03898841142654419, -0.032198406755924225, -0.05101361125707626, 0.02814408391714096, 0.04282624274492264, 0.06128718703985214, -0.013402882032096386, 0.012625475414097309, 0.07242672890424728, -0.027337154373526573, -0.03432397171854973, 0.005569773260504007, -0.041173022240400314, 0.04715609923005104, 0.005006399471312761, 0.008084043860435486, -0.01007184199988842, 0.03778786212205887, -0.011031299829483032, 0.06856922060251236, -0.023538688197731972, 0.0012509848456829786, -0.016286173835396767, -0.027337154373526573, 0.023204108700156212, -0.016896290704607964, -0.022397179156541824, -0.058610547333955765, 0.03725646808743477, 0.06971073150634766, 0.042865604162216187, -0.021235989406704903, 0.030033476650714874, 0.010401502251625061, -0.04975401610136032, -0.006096244789659977, 0.0026421980001032352, 0.026904169470071793, -0.01070656068623066, 0.03048614412546158, 0.0490848571062088, 0.005746903829276562, 0.029600489884614944, -0.035367075353860855, -0.06711281090974808, -0.04739227518439293, -0.031863827258348465, 0.03141115978360176, 0.04105493426322937, 0.02934463508427143, -0.008777804672718048, 0.02828185260295868, 0.058177560567855835, -0.09108448773622513, -0.011159227229654789, -0.0502263642847538, -0.003454046556726098, -0.022593991830945015, -0.012015358544886112, -0.05908289551734924, -0.00790199264883995, -0.023833906278014183, -0.07746511697769165, 0.024503065273165703, -0.0024995096027851105, -0.0017442443640902638, 0.023597732186317444, -0.03237553685903549, -0.03735487535595894, -0.02170833759009838, 0.0273174736648798, -0.08549503237009048, -0.004155188333243132, 0.012074402533471584, 0.018687278032302856, -0.031765419989824295, 0.047667812556028366, 0.017988596111536026, -0.050108276307582855, -0.0808502733707428, -0.008310376666486263, -0.05420196056365967, -0.0190710611641407, 0.04569969326257706, 0.01710294373333454, 0.05278491601347923, 0.023204108700156212, 0.015853188931941986, -0.07120650261640549, -0.04282624274492264, 0.03629209101200104, -0.04081876203417778, 0.01813620515167713, 0.002858690917491913, -0.02904941700398922, 0.026727039366960526, 0.030289331451058388, -0.04888804256916046, 0.019267871975898743, -0.058216921985149384, 0.012212170287966728, 0.011592213064432144, -0.03564261272549629, 0.019661495462059975, -0.025034457445144653, 0.04408583790063858, 0.01721118949353695, 0.029698897153139114, -0.02251526713371277, 0.02088172920048237, 0.01983862742781639, -0.034638870507478714, 0.022967934608459473, -0.006391462404280901, -0.02377486228942871, 0.00838910136371851, 0.0077051809057593346, 0.05113169923424721, 0.04538479447364807, 0.037866584956645966, -0.0018549509113654494, -0.026589270681142807, -0.04219644516706467, -0.013078141957521439, 0.0005664488999173045, 0.013432403095066547, -0.04951784014701843, 0.020055118948221207, 0.0041182865388691425, 0.0057764253579080105, 0.018756162375211716, 0.08762060105800629, -0.026569589972496033, -0.040169283747673035, -0.0008518259273841977, -0.06837240606546402, 0.021491846069693565, -0.012182648293673992, 0.06699472665786743, -0.04125174880027771, 0.02040938101708889, -0.023617412894964218, 0.08124390244483948, -0.0006839209236204624, 0.02627437189221382, -0.010539270006120205, 0.051210422068834305, -0.026589270681142807, -0.017791783437132835, -0.025290312245488167, -0.015164347365498543, 0.022416861727833748, -0.027100980281829834, 0.00878764595836401, 0.050501901656389236, 0.0027381437830626965, 0.04786462336778641, 0.04920294135808945, -0.035130903124809265, -0.04239325597882271, -0.014652636833488941, 0.12044880539178848, 0.02098013460636139, -0.012251532636582851, 0.015026578679680824, -0.05345407873392105, -0.01640426181256771, 0.08762060105800629, -0.02784886583685875, -0.039263948798179626, 0.0026495784986764193, -0.04652630165219307, -0.030702635645866394, -0.012162967585027218, -0.018057480454444885, 0.046565666794776917, 0.0025265710428357124, 0.10997841507196426, -0.044833723455667496, -0.006332418881356716, -0.02357804961502552, -0.03991342708468437, -0.008689239621162415, -0.043298590928316116, 0.0034737277310341597, 0.026392458006739616, -0.00584530970081687, -0.015410361811518669, -0.005422164220362902, 0.032139360904693604, -0.08762060105800629, -0.025762660428881645, -0.040464501827955246, -0.01983862742781639, -0.025821704417467117, -0.0359378308057785, 0.04243261739611626, 0.032395217567682266, -0.03544580191373825, 0.023282833397388458, 0.025467444211244583, 0.05652434006333351, 0.016955334693193436, -0.028163764625787735, -0.010086603462696075, 0.015990955755114555, 0.029639853164553642, -0.006194650661200285, 0.018785683438181877, -0.05967332795262337, -0.09305260330438614, 0.0436134897172451, 0.02284984663128853, 0.04081876203417778, -0.03792562708258629, -0.0051023452542722225, 0.0015658836346119642, -0.03865383192896843, 0.010677038691937923, -0.05333599075675011, 0.00038501303060911596, -0.03141115978360176, -0.010814806446433067, 0.024030717089772224, 0.01657155156135559, -0.030269650742411613, 0.0029447961132973433, -0.0376894548535347, 0.000750959909055382, 0.026235008612275124, 0.017683537676930428, -0.06486915796995163, 0.026392458006739616, -0.021964194253087044, 0.023459963500499725, -0.006263534538447857, 0.03755168616771698, -0.016266493126749992, 0.054674308747053146, -0.04566033184528351, 0.02841961942613125, 0.01863807439804077, -0.03408779948949814, -0.06199570745229721, 0.04652630165219307, 0.010785285383462906, -0.003992818761616945, -0.05916161835193634, 0.006957296282052994, 0.03605591505765915, 0.006819528061896563, -0.08762060105800629, 0.031568609178066254, 0.026963213458657265, 0.03310374170541763, -0.014593592844903469, 0.026530226692557335, -0.009151747450232506, -0.03280852362513542, 0.06864794343709946, -0.026727039366960526, 0.013127345591783524, 0.06510533392429352, 0.02344028279185295, 0.07297780364751816, -0.032965973019599915, 0.022200368344783783, 0.03241489827632904, -0.01954340934753418, 0.014878969639539719, -0.002398643409833312, 0.07337142527103424, -0.011661097407341003, -0.008536710403859615, 0.041606009006500244, 0.066719189286232, -0.03278884291648865, 0.02468019537627697, -0.008157848380506039, -0.04538479447364807, -0.050934888422489166, 0.041606009006500244, -0.022062599658966064, 0.027829185128211975, -0.0730171650648117, -0.02771109715104103, 0.03782722353935242, 0.05085616186261177, 0.013038779608905315, 0.01162173505872488, 0.015528448857367039, 0.01162173505872488, 0.029738258570432663, -0.008133246563374996, -0.0014883889816701412, 0.01167093776166439, -0.04601459205150604, 0.044440098106861115, -0.005948635749518871, -0.050108276307582855, -0.057311587035655975, 0.013176548294723034, 0.02521158754825592, -0.05042317509651184, 0.053414713591337204, 0.014101563021540642, -0.00732139777392149, 0.031430840492248535, -0.045935869216918945, 0.0019361358135938644, -0.0090041384100914, 0.004142887890338898, 0.04129111021757126, 0.03310374170541763, -0.014091722667217255, -0.014377100393176079, -0.0414879210293293, -0.011680779047310352, -0.005830548703670502, 0.02391263097524643, 0.0426294282078743, 0.046605028212070465, -0.048100795596838, -0.01640426181256771, 0.03024997003376484, -0.0354851633310318, 0.035603251308202744, -0.024995094165205956, -0.002398643409833312, 0.03333991393446922, 0.018264131620526314, 0.0036311771254986525, -0.11108056455850601, -0.03831925243139267, 0.02194451168179512, -0.001297727576456964, 0.05955524370074272, 0.004534051287919283, -0.024325935170054436, 0.07762256264686584, -0.006519389804452658, -0.011159227229654789, 0.02593979239463806, 0.05042317509651184, 0.028321214020252228, -0.016620753332972527, 0.0212753526866436, -0.004445485770702362, 0.026766400784254074, -0.024837644770741463, -0.03422556817531586, 0.001984108705073595, 0.0021157264709472656, 0.004366761073470116, 0.018549509346485138, 0.024266891181468964, -0.00004120746598346159, -0.012084242887794971 ]
729,283
tables.tests.common
print_versions
Print all the versions of software that PyTables relies on.
def print_versions(): """Print all the versions of software that PyTables relies on.""" print('-=' * 38) print("PyTables version: %s" % tb.__version__) print("HDF5 version: %s" % tb.which_lib_version("hdf5")[1]) print("NumPy version: %s" % np.__version__) tinfo = tb.which_lib_version("zlib") if ne.use_vml: # Get only the main version number and strip out all the rest vml_version = ne.get_vml_version() vml_version = re.findall("[0-9.]+", vml_version)[0] vml_avail = "using VML/MKL %s" % vml_version else: vml_avail = "not using Intel's VML/MKL" print(f"Numexpr version: {ne.__version__} ({vml_avail})") if tinfo is not None: print(f"Zlib version: {tinfo[1]} (in Python interpreter)") tinfo = tb.which_lib_version("lzo") if tinfo is not None: print("LZO version: {} ({})".format(tinfo[1], tinfo[2])) tinfo = tb.which_lib_version("bzip2") if tinfo is not None: print("BZIP2 version: {} ({})".format(tinfo[1], tinfo[2])) tinfo = tb.which_lib_version("blosc") if tinfo is not None: blosc_date = tinfo[2].split()[1] print("Blosc version: {} ({})".format(tinfo[1], blosc_date)) blosc_cinfo = tb.blosc_get_complib_info() blosc_cinfo = [ "{} ({})".format(k, v[1]) for k, v in sorted(blosc_cinfo.items()) ] print("Blosc compressors: %s" % ', '.join(blosc_cinfo)) blosc_finfo = ['shuffle', 'bitshuffle'] print("Blosc filters: %s" % ', '.join(blosc_finfo)) tinfo = tb.which_lib_version("blosc2") if tinfo is not None: blosc2_date = tinfo[2].split()[1] print("Blosc2 version: {} ({})".format(tinfo[1], blosc2_date)) blosc2_cinfo = tb.blosc2_get_complib_info() blosc2_cinfo = [ "{} ({})".format(k, v[1]) for k, v in sorted(blosc2_cinfo.items()) ] print("Blosc2 compressors: %s" % ', '.join(blosc2_cinfo)) blosc2_finfo = ['shuffle', 'bitshuffle'] print("Blosc2 filters: %s" % ', '.join(blosc2_finfo)) try: from Cython import __version__ as cython_version print('Cython version: %s' % cython_version) except Exception: pass print('Python version: %s' % sys.version) print('Platform: %s' % platform.platform()) # if os.name == 'posix': # (sysname, nodename, release, version, machine) = os.uname() # print('Platform: %s-%s' % (sys.platform, machine)) print('Byte-ordering: %s' % sys.byteorder) print('Detected cores: %s' % tb.utils.detect_number_of_cores()) print('Default encoding: %s' % sys.getdefaultencoding()) print('Default FS encoding: %s' % sys.getfilesystemencoding()) print('Default locale: (%s, %s)' % locale.getdefaultlocale()) print('-=' * 38) # This should improve readability whan tests are run by CI tools sys.stdout.flush()
()
[ 0.037567030638456345, -0.015005500987172127, -0.04142254218459129, 0.011256547644734383, 0.00702807679772377, -0.02290058322250843, -0.05258221924304962, -0.022784337401390076, -0.06540809571743011, -0.049831047654151917, -0.010723750106990337, -0.003603645134717226, -0.04289500042796135, 0.03194844350218773, -0.01894819736480713, 0.012205894105136395, 0.04324373975396156, 0.026736721396446228, 0.04285625368356705, 0.00675683468580246, -0.03537771850824356, -0.009948772378265858, 0.0027172646950930357, 0.07125917822122574, -0.0002238655579276383, 0.04963730275630951, 0.016574829816818237, -0.03270404785871506, -0.00759962247684598, 0.012767753563821316, -0.040725063532590866, -0.011101551353931427, -0.0009402655996382236, -0.014007717370986938, 0.020885642617940903, 0.014201461337506771, 0.10795435309410095, -0.008834742940962315, -0.03510647639632225, 0.027511699125170708, 0.027899187058210373, -0.06246317923069, 0.04576241597533226, -0.06695804744958878, -0.05118725821375847, 0.008902553468942642, -0.013174616731703281, 0.006141696125268936, -0.026949839666485786, 0.009672687388956547, 0.017901979386806488, -0.05153599753975868, 0.053744684904813766, -0.009013956412672997, -0.05312470346689224, -0.005027666222304106, 0.016807323321700096, -0.016022657975554466, 0.020846892148256302, 0.0363658145070076, 0.022958707064390182, 0.025419259443879128, -0.03276216983795166, 0.04010508209466934, -0.02133125439286232, -0.005342500749975443, 0.038865119218826294, -0.04316624253988266, -0.00986643135547638, 0.03012724779546261, -0.034428372979164124, 0.02445053867995739, -0.003298497758805752, 0.02156374789774418, -0.017262622714042664, -0.0195003692060709, -0.04855233430862427, -0.06168820336461067, -0.012118709273636341, -0.07075543701648712, 0.04053131863474846, 0.011527789756655693, 0.03686955198645592, -0.04467744752764702, 0.023326821625232697, -0.005599211901426315, 0.05479090288281441, 0.10601691156625748, 0.033459652215242386, 0.03140595927834511, -0.06796552240848541, -0.015392988920211792, 0.032607175409793854, 0.06378064304590225, -0.03919448330998421, -0.04386372119188309, 0.003906370606273413, -0.05847204849123955, -0.006194975692778826, -0.014182087033987045, 0.020653149113059044, -0.027511699125170708, 0.021466875448822975, -0.007401034701615572, -0.02495427243411541, 0.001414333819411695, -0.06347065418958664, 0.058123309165239334, 0.0030999097507447004, -0.07420408725738525, -0.052039735019207, -0.013939906843006611, 0.011469665914773941, -0.06994171440601349, 0.040996305644512177, -0.05622461438179016, 0.0020222067832946777, 0.01077218633145094, -0.0054248422384262085, 0.03355652093887329, -0.023462440818548203, 0.0012193785514682531, -0.010839996859431267, -0.03169657662510872, 0.017291683703660965, -0.018124785274267197, 0.02342369221150875, 0.05583712458610535, 0.01845414936542511, -0.0017158484552055597, 0.07137542217969894, -0.018521960824728012, -0.030262868851423264, 0.04812609776854515, 0.03717954084277153, -0.06467186659574509, -0.027996059507131577, 0.0059188902378082275, 0.029429767280817032, -0.021215006709098816, -0.01720449887216091, -0.0911373496055603, -0.010404071770608425, -0.0416550375521183, -0.021118134260177612, 0.04130629822611809, 0.033169034868478775, -0.09741466492414474, 0.0028964781668037176, 0.02780231460928917, 0.05932452157139778, -0.002617970574647188, -0.024392414838075638, -0.052039735019207, -0.021738117560744286, -0.0012992981355637312, 0.0299528781324625, -0.1195015236735344, 0.018647894263267517, 0.03830325976014137, 0.012312454171478748, -0.020633773878216743, -0.008011328987777233, -0.0312509648501873, -0.023210573941469193, 0.0207693949341774, -0.05742582678794861, -0.0037973893340677023, 0.011731220409274101, -0.0042938594706356525, -0.008708808571100235, -0.005560463294386864, -0.05068352445960045, 0.04390247166156769, 0.03330465406179428, 0.004758846014738083, -0.028771037235856056, 0.01470519695430994, 0.01591609977185726, -0.020943764597177505, -0.0076480587013065815, 0.007870864123106003, -0.06800427287817001, 0.06079697981476784, -0.0034462278708815575, 0.028422297909855843, 0.049831047654151917, -0.03766390308737755, 0.012302766554057598, 0.01507331058382988, -0.025070520117878914, 0.019975043833255768, 0.045878663659095764, 0.02288120798766613, 0.004664395470172167, 0.01638108491897583, 0.023811182007193565, 0.014463016763329506, 0.002811715006828308, -0.03065035678446293, 0.026116739958524704, 0.018144158646464348, 0.03586208075284958, -0.026969214901328087, 0.06405188143253326, -0.027201708406209946, 0.023016829043626785, -0.009755028411746025, -0.022319350391626358, 0.008684590458869934, 0.040686316788196564, -0.03487398475408554, -0.002915852703154087, -0.0009644836536608636, 0.011799030937254429, -0.04638240113854408, -0.01713668927550316, -0.008166324347257614, -0.05517839267849922, -0.029449142515659332, 0.04649864509701729, 0.0012799237156286836, 0.0009578236495144665, 0.00960487686097622, -0.02838354930281639, 0.014375831000506878, 0.05758082494139671, 0.054480914026498795, 0.059169527143239975, -0.05827830359339714, -0.0018066661432385445, 0.012651506811380386, -0.04184878244996071, 0.06006075069308281, -0.03349839895963669, -0.016303587704896927, -0.03460274264216423, 0.05014104023575783, -0.029778508469462395, -0.042817503213882446, -0.009600033052265644, -0.004269641358405352, 0.04339873790740967, -0.012021837756037712, -0.01921943947672844, -0.049559805542230606, 0.015024875290691853, 0.008791150525212288, -0.06106822192668915, 0.010646252892911434, -0.04270125553011894, -0.10958180576562881, 0.046421147882938385, -0.0442899614572525, -0.007401034701615572, -0.05955701693892479, 0.0182022824883461, -0.03880699351429939, 0.043786223977804184, -0.036772679537534714, -0.04370872676372528, 0.009740497916936874, -0.07920269668102264, 0.025089893490076065, 0.03747015818953514, -0.001858734991401434, 0.003506772918626666, 0.011062802746891975, -0.026136113330721855, 0.016497332602739334, 0.062036942690610886, -0.015974221751093864, -0.10190953314304352, 0.04506493732333183, -0.016981692984700203, -0.04181003198027611, -0.027782941237092018, -0.0037150480784475803, -0.021001888439059258, 0.008786306716501713, 0.03489335998892784, -0.005715458653867245, -0.04738986864686012, -0.004964699037373066, -0.031851571053266525, -0.04091880843043327, -0.0519622378051281, -0.08338756859302521, -0.036075200885534286, -0.026058616116642952, -0.004000821150839329, 0.03437024727463722, 0.022454971447587013, 0.009546753019094467, 0.012564321979880333, 0.046459898352622986, 0.03150283172726631, -0.01591609977185726, 0.014472703449428082, -0.023094328120350838, -0.04126754775643349, -0.007652902044355869, 0.06901174038648605, 0.041190050542354584, -0.0055653066374361515, -0.03251030296087265, 0.04285625368356705, -0.042817503213882446, -0.02910040318965912, -0.024276167154312134, -0.0021929440554231405, -0.009813151322305202, 0.06885674595832825, 0.020130038261413574, -0.0110337408259511, -0.002552581951022148, -0.025671128183603287, 0.010510631836950779, -0.0038603562861680984, 0.043553732335567474, -0.03665643185377121, 0.012060586363077164, 0.040221329778432846, 0.05285346135497093, 0.004223627038300037, -0.10206452757120132, 0.06304441392421722, -0.03175469860434532, 0.006538872141391039, -0.007580248173326254, -0.0000900608574738726, 0.026387982070446014, 0.07428158819675446, 0.08090764284133911, 0.06897298991680145, 0.03489335998892784, -0.03675330430269241, -0.022435596212744713, -0.03438962250947952, -0.034428372979164124, 0.06432312726974487, -0.0013913266593590379, -0.025303013622760773, -0.003792545758187771, -0.02679484523832798, -0.0036084887105971575, 0.04293375089764595, -0.006199819501489401, 0.0033106068149209023, 0.0016104999231174588, 0.03694704920053482, 0.013310237787663937, -0.030049750581383705, 0.08261259645223618, -0.00924160610884428, 0.021234381943941116, -0.03094097413122654, -0.0415387898683548, 0.04274000599980354, 0.045142434537410736, 0.012535260058939457, 0.0520784817636013, -0.02007191628217697, 0.0337502658367157, -0.003981446381658316, -0.06281191855669022, 0.014075527898967266, 0.014559888280928135, 0.03557146340608597, -0.020401280373334885, -0.004424636717885733, -0.02212560549378395, 0.03830325976014137, -0.019335687160491943, -0.01765011064708233, 0.0071007306687533855, -0.04859108477830887, 0.016487644985318184, -0.028751662001013756, -0.0034074787981808186, 0.0573095828294754, 0.009415975771844387, -0.05389967933297157, -0.04308874532580376, -0.018308842554688454, -0.011246860027313232, -0.02388867922127247, 0.046459898352622986, 0.023849930614233017, -0.017252935096621513, -0.0123512027785182, 0.03983383998274803, 0.00603513652458787, 0.03322715684771538, -0.0026639848947525024, 0.037838272750377655, 0.04638240113854408, 0.021718742325901985, -0.00373442261479795, -0.03561021387577057, -0.014773007482290268, -0.005681553389877081, -0.0247217807918787, 0.010132829658687115, -0.04634365066885948, -0.01351366937160492, 0.08377505838871002, 0.01793104037642479, 0.00882021151483059, 0.027395451441407204, 0.004514243453741074, -0.034699615091085434, -0.04583991691470146, -0.0416550375521183, -0.05413217470049858, 0.04188752919435501, -0.03231655806303024, 0.016187341883778572, 0.08284508436918259, -0.00214935140684247, 0.04266250878572464, -0.011024054139852524, 0.04634365066885948, 0.047467365860939026, 0.05672834813594818, 0.03847762942314148, -0.04835859313607216, 0.03043723851442337, 0.003158033126965165, -0.036540184170007706, 0.025322386994957924, 0.010801248252391815, -0.009483786299824715, -0.023036204278469086, 0.016826696693897247, -0.033711519092321396, 0.011905591003596783, -0.012874312698841095, 0.04622740298509598, 0.005817174445837736, 0.013436171226203442, -0.007105574477463961, -0.011828092858195305, -0.06006075069308281, -0.007570560555905104, 0.06261817365884781, 0.01663295365869999, -0.007706181611865759, -0.021989984437823296, 0.014007717370986938, -0.004148551262915134, 0.013068056665360928, -0.014540513977408409, -0.030844101682305336, -0.009265824221074581, -0.035765208303928375, 0.02107938565313816, 0.007614153437316418, -0.033672768622636795, 0.033653393387794495, -0.006475904956459999, 0.003821607446298003, 0.05358969047665596, 0.06370314210653305, 0.05358969047665596, -0.030785977840423584, 0.041732534766197205, 0.0047830636613070965, -0.030592234805226326, -0.007187915500253439, 0.014908628538250923, 0.014588950201869011, 0.007691651117056608, 0.033769641071558, -0.012002462521195412, -0.0006799215916544199, -0.06885674595832825, -0.030902225524187088, -0.036559559404850006, -0.03099909797310829, -0.054713405668735504, -0.032161563634872437, 0.018890075385570526, -0.0059285773895680904, -0.001253283815458417, -0.038613252341747284, 0.052969709038734436, 0.0022413800470530987, 0.02625236101448536, -0.08509252220392227, -0.03867137432098389, 0.02241622284054756, -0.007551186252385378, 0.0004994971677660942, 0.03068910539150238, 0.012641819193959236, -0.0020076758228242397, -0.014511452056467533, -0.02288120798766613, -0.01871570572257042, 0.016216402873396873, -0.0090866107493639, -0.03121221624314785, -0.03929135575890541, 0.014123964123427868, -0.04506493732333183, 0.07490156590938568, -0.04126754775643349, -0.015005500987172127, -0.017262622714042664, -0.011489040218293667, -0.050877269357442856, -0.004146129358559847, -0.0053812493570148945, -0.010491256602108479, 0.005652491468936205, -0.0416162870824337, 0.014220835641026497, 0.014259585179388523, 0.019122568890452385, -0.004395575262606144, 0.04339873790740967, 0.016855759546160698, -0.05587587133049965, 0.02753107249736786, 0.015664231032133102, -0.01743699237704277, 0.029294146224856377, 0.04859108477830887, 0.02935227006673813, -0.03407963365316391, -0.015276742167770863, -0.035242099314928055, -0.014259585179388523, 0.04258501157164574, 0.022784337401390076, -0.02181561477482319, 0.006359658669680357, 0.050296034663915634, -0.07587029039859772, 0.03355652093887329, -0.023249322548508644, 0.044909942895174026, -0.023598061874508858, -0.02654297649860382, 0.029003530740737915, 0.00010663508146535605, 0.03818701207637787, -0.04866858199238777, -0.02162186987698078, -0.0020076758228242397, 0.027666693553328514, 0.09849963337182999, -0.036792054772377014, -0.02782168984413147, 0.03619144484400749, 0.03400213643908501, 0.020633773878216743, 0.04107380285859108, -0.011983088217675686, -0.0110337408259511, 0.03624957054853439, -0.006689024157822132, -0.018289467319846153, 0.03487398475408554, 0.02834479883313179, 0.014172399416565895, 0.011440603993833065, 0.02367556095123291, -0.03987259045243263, 0.0364239402115345, 0.011857154779136181, 0.031231589615345, 0.011246860027313232, -0.02884853444993496, -0.017882604151964188, -0.0234043188393116, 0.023036204278469086, 0.022222477942705154, -0.07149166613817215, 0.0001831489644246176, -0.017223874107003212, 0.013968967832624912, 0.009367539547383785, 0.024121172726154327, -0.007778835948556662, -0.031347837299108505, -0.01610015705227852, 0.048784829676151276, -0.029255397617816925, -0.036830801516771317, -0.04366998001933098, -0.011334044858813286, -0.04312749579548836, -0.039911337196826935, 0.018405713140964508, -0.06564059108495712, 0.02212560549378395, 0.001615343615412712, 0.03489335998892784, -0.037586405873298645, 0.053473442792892456, 0.02968163602054119, -0.050024792551994324, 0.03479648754000664, 0.00038779142778366804, 0.007512437645345926, -0.034932106733322144, 0.0337890163064003, 0.019432559609413147, 0.0030490518547594547, 0.03427337855100632, -0.022454971447587013, -0.07776898890733719, -0.03675330430269241, -0.054480914026498795, 0.05750332400202751, -0.013164929114282131, 0.06323815882205963, -0.003613332286477089, -0.008519908413290977, 0.11322420090436935, 0.015538297593593597, 0.025613004341721535, -0.024043675512075424, 0.027162959799170494, -0.03778015077114105, -0.06211443990468979, 0.06300566345453262, 0.001494253403507173, 0.02082751877605915, -0.01718512363731861, 0.0963296964764595, 0.007347754668444395, -0.023462440818548203, -0.030747229233384132, 0.01895788498222828, -0.015702979639172554, -0.0001819380559027195, 0.09485723823308945, 0.051652245223522186, 0.022261226549744606, 0.04444495588541031, 0.0027099992148578167, 0.0069699534215033054, 0.012409325689077377, -0.020633773878216743, -0.020498152822256088, 0.08819243311882019, 0.02365618571639061, -0.03066973201930523, 0.03559083864092827, 0.015431738458573818, -0.025012396275997162, -0.04014383256435394, -0.03068910539150238, -0.030340366065502167, 0.021215006709098816, 0.020885642617940903, 0.004126755055040121, 0.018308842554688454, -0.031657829880714417, 0.02417929656803608, 0.0004235130618326366, 0.017301371321082115, -0.006257942877709866, 0.07164666056632996, 0.03998883441090584, -0.019161317497491837, -0.02030440792441368, 0.00990033708512783, -0.0012381474953144789, 0.0004023222718387842, -0.05335719510912895, -0.03807076811790466, 0.012651506811380386, -0.015499548986554146, 0.06304441392421722, 0.004267219454050064, -0.03743141144514084, 0.05517839267849922, 0.007095887325704098, -0.03987259045243263, -0.012428700923919678, -0.023578688502311707, 0.0597895085811615, -0.05401592701673508, 0.0651756003499031, -0.03950447589159012, -0.08648747950792313, -0.06443937122821808, 0.03175469860434532, 0.039659470319747925, -0.0013537886552512646, -0.031018471345305443, 0.03481586277484894, 0.01641983352601528, -0.04475494846701622, 0.01497643906623125, -0.036830801516771317, 0.047932352870702744, -0.018638206645846367, -0.006766521837562323, 0.05622461438179016, -0.01637139916419983, 0.07164666056632996, -0.04963730275630951, -0.03696642443537712, -0.035242099314928055, -0.01508299820125103, 0.029546014964580536, 0.01207996066659689, -0.02576799876987934, -0.05533338710665703, 0.006194975692778826, 0.006165914237499237, -0.031347837299108505, 0.014298333786427975, -0.031095968559384346, 0.00831163302063942, -0.03175469860434532, 0.051148511469364166, 0.07230539619922638, 0.01849289983510971, 0.030611608177423477, 0.06730678677558899, -0.04192627966403961, -0.025109268724918365, 0.028499795123934746, 0.016177654266357422, 0.037857647985219955, -0.017524177208542824, -0.044638700783252716, -0.004153394605964422, -0.025845497846603394, -0.052427224814891815, 0.023811182007193565, -0.01455020159482956, 0.08617749065160751, -0.03593957796692848, 0.010975617915391922, -0.017611362040042877, -0.02291995845735073, 0.05103226378560066, -0.009948772378265858, 0.0441349633038044, 0.029177900403738022, -0.007783679757267237, 0.03739266097545624, 0.018163533881306648, 0.037818897515535355, -0.04080256074666977, -0.06029324233531952, -0.027201708406209946, 0.061765700578689575, -0.02758919633924961, 0.030630983412265778, -0.01081093493849039, -0.016264839097857475, -0.0519234873354435, 0.019829735159873962, -0.012758065946400166, -0.020711271092295647, 0.016255151480436325, 0.07366160303354263, -0.005783269181847572, -0.03826450929045677, 0.02133125439286232 ]
729,287
tables.flavor
restrict_flavors
Disable all flavors except those in keep. Providing an empty keep sequence implies disabling all flavors (but the internal one). If the sequence is not specified, only optional flavors are disabled. .. important:: Once you disable a flavor, it can not be enabled again.
def restrict_flavors(keep=('python',)): """Disable all flavors except those in keep. Providing an empty keep sequence implies disabling all flavors (but the internal one). If the sequence is not specified, only optional flavors are disabled. .. important:: Once you disable a flavor, it can not be enabled again. """ remove = set(all_flavors) - set(keep) - {internal_flavor} for flavor in remove: _disable_flavor(flavor)
(keep=('python',))
[ 0.07413473725318909, -0.007526061497628689, -0.05508141592144966, -0.0000194356052816147, -0.03571631386876106, -0.024509498849511147, 0.03720593824982643, -0.035456497222185135, 0.02960193157196045, 0.011735113337635994, -0.016022110357880592, 0.04856864735484123, -0.04025446996092796, -0.033516522496938705, -0.010028975084424019, -0.06443486362695694, -0.045035120099782944, 0.0290303323417902, 0.07669827342033386, -0.06363809108734131, 0.00322823878377676, 0.023366300389170647, -0.04267943650484085, 0.03062388300895691, 0.0444115586578846, 0.06737946718931198, 0.05487356334924698, 0.03311813622713089, -0.009855763055384159, 0.006672992371022701, 0.03696344047784805, 0.04202123358845711, -0.009968350641429424, 0.05078576132655144, 0.02400718443095684, 0.0162039827555418, 0.048083651810884476, 0.12201053649187088, -0.029965676367282867, 0.0034750658087432384, 0.015641044825315475, -0.020283125340938568, 0.026951787993311882, -0.05414607375860214, -0.031160838901996613, 0.014766323380172253, 0.07247190177440643, 0.026795897632837296, 0.0038799489848315716, 0.050612546503543854, 0.014497844502329826, 0.04222908616065979, 0.029394077137112617, 0.024405570700764656, -0.005464838817715645, 0.01098164077848196, -0.014038832858204842, 0.041501596570014954, 0.008158285170793533, 0.01491355337202549, -0.028493374586105347, -0.005629390012472868, 0.008751536719501019, -0.04576261341571808, 0.03479829058051109, 0.009595945477485657, -0.040219828486442566, 0.006218310911208391, -0.0591692216694355, 0.04742544889450073, -0.0773911252617836, -0.04974648728966713, 0.006599377375096083, 0.04105124622583389, -0.006590717006474733, -0.024180395528674126, -0.014454541727900505, 0.006382862571626902, -0.04413441941142082, -0.043545499444007874, 0.019486350938677788, -0.03439990431070328, 0.007474097888916731, 0.013475893996655941, 0.04077410697937012, -0.017910121008753777, -0.04697509482502937, -0.012731082737445831, 0.07150191813707352, -0.09595945477485657, -0.05418071523308754, 0.0398734025657177, 0.009058987721800804, 0.006608038209378719, 0.030190853402018547, 0.04988505691289902, -0.02627626061439514, 0.0007702521397732198, -0.026934467256069183, -0.01853368431329727, 0.04306050390005112, 0.008695242926478386, 0.020629549399018288, -0.05414607375860214, 0.025323595851659775, -0.03311813622713089, -0.01183904055505991, -0.03200957924127579, -0.03744843602180481, 0.019746169447898865, -0.014047493226826191, -0.04901899769902229, 0.012020912952721119, 0.00021462049335241318, -0.01967688463628292, 0.021027937531471252, -0.01722593419253826, -0.026813218370079994, -0.01256653107702732, -0.027159642428159714, -0.07254118472337723, 0.01273974310606718, -0.026310903951525688, 0.004027178976684809, 0.09651372581720352, 0.00009716110798763111, -0.006222641095519066, 0.05657104030251503, -0.013545178808271885, 0.017944764345884323, -0.04860328882932663, 0.012592513114213943, -0.08237963169813156, -0.04015054181218147, -0.0059974659234285355, -0.023504870012402534, 0.006014786660671234, -0.0008958308608271182, 0.0808553621172905, -0.029411397874355316, -0.024197716265916824, 0.02198060415685177, 0.025583412498235703, 0.04087803512811661, -0.020057950168848038, 0.014930875040590763, 0.01662835292518139, -0.06734482944011688, -0.004733018111437559, 0.062598817050457, 0.02639750950038433, 0.04430763050913811, -0.03730986639857292, -0.029290150851011276, -0.04406513273715973, 0.05113218352198601, -0.012731082737445831, -0.025773946195840836, -0.05646711215376854, 0.009223539382219315, 0.009985672309994698, 0.030918342992663383, -0.006365541368722916, 0.014281329698860645, 0.029740501195192337, -0.03166315332055092, -0.01456712931394577, -0.012246089056134224, 0.055601052939891815, 0.05854565650224686, 0.012367337010800838, 0.02012723498046398, 0.029082296416163445, -0.03821056708693504, 0.03003496117889881, 0.0796775221824646, 0.001076079555787146, -0.0557742640376091, -0.01799672655761242, 0.026449473574757576, -0.009102290496230125, -0.018706897273659706, -0.03005228377878666, 0.011302083730697632, 0.08147893100976944, -0.03026013821363449, -0.04430763050913811, -0.004806633107364178, -0.0489497110247612, -0.010297453962266445, 0.0018436253303661942, 0.009578623808920383, 0.049122925847768784, -0.0033971203956753016, 0.009370769374072552, -0.005897868890315294, 0.020560264587402344, -0.024509498849511147, -0.009362109005451202, -0.015069444663822651, -0.06000063940882683, -0.005529793445020914, -0.010037635453045368, -0.022933268919587135, 0.00845707580447197, 0.03776021674275398, -0.0102454898878932, -0.07094763964414597, 0.03606273978948593, -0.01617800071835518, 0.0048326151445508, 0.031576547771692276, 0.004382263869047165, 0.01587487943470478, 0.02833748422563076, -0.03457311540842056, 0.022032566368579865, 0.03689415752887726, -0.0034880568273365498, 0.05175574868917465, -0.08944667875766754, 0.0006360128172673285, -0.018637612462043762, 0.027852490544319153, 0.056189972907304764, 0.042506225407123566, 0.05140932276844978, 0.031472619622945786, -0.008162615820765495, -0.02868390828371048, -0.010505308397114277, -0.01559774111956358, -0.020005986094474792, -0.020005986094474792, 0.08438888937234879, 0.004538154695183039, -0.023955220356583595, -0.04562404379248619, 0.033845625817775726, -0.007132004480808973, 0.06575127691030502, 0.012471264228224754, -0.0018306344281882048, 0.017840836197137833, 0.0420905165374279, 0.0011388689745217562, -0.02024848386645317, 0.028631944209337234, 0.02378200925886631, 0.0035118733067065477, 0.010444683954119682, 0.0022799030411988497, 0.011605204083025455, 0.028614623472094536, 0.030416028574109077, -0.007201289292424917, 0.027852490544319153, -0.02388593554496765, 0.008677921257913113, -0.027973739430308342, 0.0020568924956023693, 0.04988505691289902, -0.025323595851659775, 0.03620130941271782, 0.019971344619989395, 0.02835480496287346, 0.05965421348810196, -0.028770513832569122, -0.02857998013496399, 0.009604605846107006, -0.024734674021601677, 0.000021076382836326957, 0.013302681967616081, 0.02300255373120308, -0.013181434012949467, 0.0335511639714241, 0.011622525751590729, 0.05698674917221069, 0.013345984742045403, 0.013510536402463913, 0.025063777342438698, -0.009466036222875118, 0.027367496863007545, 0.05847637355327606, 0.014454541727900505, 0.005088102538138628, -0.018377793952822685, -0.03630523756146431, 0.0012655302416533232, 0.01673227921128273, 0.05324536934494972, 0.006179338321089745, 0.07108620554208755, -0.0455201156437397, 0.03342991694808006, -0.0023643439635634422, 0.023712724447250366, -0.036132022738456726, 0.009396751411259174, -0.0009916387498378754, 0.03575095906853676, 0.00358548853546381, 0.050612546503543854, 0.005854565650224686, 0.03911127150058746, -0.029168901965022087, 0.042852651327848434, -0.0751740112900734, 0.032252077013254166, 0.0022885636426508427, 0.005157387349754572, -0.023522190749645233, -0.03178440406918526, -0.02811230905354023, -0.0031437978614121675, 0.008595645427703857, 0.06214846670627594, -0.011942967772483826, -0.04427298903465271, -0.019711526110768318, -0.007543382700532675, 0.04652474448084831, -0.057748883962631226, 0.04856864735484123, -0.026120370253920555, -0.03117816150188446, -0.020508302375674248, 0.0022690773475915194, -0.03164583444595337, 0.0034057809971272945, -0.0443769171833992, -0.011916985735297203, -0.0013283195439726114, 0.05258716642856598, -0.01748575270175934, 0.025219667702913284, 0.06419236958026886, 0.0013142460957169533, 0.02153025195002556, 0.01001165434718132, 0.01888010837137699, 0.01559774111956358, -0.04164016619324684, 0.031247446313500404, -0.014645075425505638, 0.06980443745851517, 0.03599345311522484, 0.03997733071446419, 0.020681513473391533, 0.022482918575406075, 0.0671369731426239, 0.027159642428159714, -0.00566403241828084, 0.026934467256069183, 0.06734482944011688, -0.05359179526567459, -0.050473976880311966, 0.0626680999994278, -0.04988505691289902, -0.008530691266059875, 0.08300319314002991, -0.03197493776679039, 0.01760699972510338, 0.05269109085202217, -0.0027865481097251177, -0.012635815888643265, 0.016212644055485725, -0.06052027642726898, -0.009777817875146866, -0.0762132853269577, 0.023833971470594406, -0.03531792759895325, -0.015528456307947636, -0.0261896550655365, 0.041848018765449524, 0.00915425457060337, 0.0032737068831920624, 0.008366139605641365, 0.05941171944141388, 0.11258780211210251, -0.0534878671169281, -0.02255220338702202, 0.06876516342163086, -0.03327402472496033, -0.014844268560409546, 0.002002763794735074, 0.023937899619340897, -0.027367496863007545, 0.046386174857616425, 0.03769093379378319, 0.029896391555666924, -0.046594031155109406, -0.013917584903538227, 0.06000063940882683, 0.04347621276974678, 0.032494571059942245, -0.09381162375211716, 0.01830850914120674, 0.01640317775309086, -0.0014322467613965273, -0.02094133198261261, 0.018066011369228363, -0.05851101502776146, 0.0055471146479249, -0.010462004691362381, 0.056744251400232315, -0.023487547412514687, 0.018828144297003746, 0.01955563575029373, 0.024734674021601677, 0.0059801447205245495, 0.006880846805870533, -0.03401883691549301, -0.022361669689416885, 0.04953863471746445, 0.04870721697807312, 0.04998898506164551, -0.03202689811587334, 0.013744372874498367, -0.031455300748348236, 0.08729884773492813, -0.030641203746199608, 0.017927441745996475, 0.009275502525269985, 0.011163514107465744, -0.006023447494953871, -0.0011529424227774143, -0.03322206437587738, 0.024959849193692207, -0.0064521473832428455, -0.0015069444198161364, 0.03949233889579773, -0.04635153338313103, -0.050023626536130905, 0.01811797544360161, -0.043857280164957047, -0.018464399501681328, -0.007694943342357874, -0.025081098079681396, -0.058026023209095, -0.04496583715081215, -0.039769478142261505, -0.059481002390384674, -0.014497844502329826, 0.0489497110247612, -0.00038729122024960816, -0.00699776504188776, 0.09921583533287048, 0.006495450157672167, -0.03330866992473602, -0.07073978334665298, -0.010964320041239262, -0.039076630026102066, -0.016870848834514618, 0.08709099888801575, -0.0059801447205245495, -0.02935943566262722, -0.011336726136505604, -0.04073946550488472, -0.01001165434718132, 0.06983908265829086, -0.03448650985956192, -0.03353384509682655, 0.01757235825061798, 0.025687340646982193, 0.06356880813837051, 0.011769755743443966, -0.049330778419971466, 0.011899664998054504, 0.02118382789194584, 0.016290588304400444, -0.057090677320957184, 0.10420434176921844, -0.0012785211438313127, -0.012687779031693935, 0.034763649106025696, 0.011916985735297203, 0.0025938497856259346, 0.03685951605439186, -0.022223100066184998, 0.007136334665119648, 0.04236765578389168, -0.01811797544360161, 0.04139766842126846, -0.0193304605782032, -0.05698674917221069, -0.026778576895594597, 0.0017191291553899646, 0.04018518701195717, 0.008266543038189411, -0.019971344619989395, -0.031819045543670654, 0.024405570700764656, 0.06509307026863098, 0.02322773076593876, -0.01844707876443863, -0.033759020268917084, 0.01422070525586605, 0.04676724225282669, 0.03188832849264145, 0.009925047867000103, 0.013380627147853374, -0.0773911252617836, 0.006577725987881422, 0.016134697943925858, -0.07091299444437027, 0.00807167962193489, 0.004180904943495989, -0.018706897273659706, 0.03609738126397133, 0.021928640082478523, -0.03883413225412369, 0.05016219615936279, -0.01888010837137699, 0.005144396796822548, -0.04039303958415985, -0.0047460091300308704, -0.005144396796822548, 0.045035120099782944, 0.041951946914196014, -0.011648507788777351, -0.015433189459145069, 0.011362707242369652, 0.036132022738456726, 0.009033005684614182, -0.03685951605439186, -0.004347621463239193, -0.06776053458452225, 0.044896550476551056, -0.004001197405159473, 0.008153955452144146, -0.008041366934776306, -0.0011431992752477527, -0.015000159852206707, -0.04337228462100029, -0.06100526824593544, -0.00003870205910061486, -0.053210727870464325, 0.017684945836663246, -0.034642402082681656, 0.031160838901996613, -0.012098858132958412, 0.06360344588756561, 0.015233996324241161, -0.016541747376322746, 0.01092967763543129, -0.007902797311544418, -0.04995434358716011, 0.03173243999481201, 0.0017429457511752844, -0.011977610178291798, 0.0016184496926143765, -0.008006724528968334, -0.03575095906853676, 0.0035097082145512104, -0.08030108362436295, 0.05314144492149353, 0.02582591027021408, -0.0012070711236447096, -0.02367808111011982, -0.025981800630688667, -0.05567033961415291, 0.07406545430421829, -0.036478448659181595, -0.027367496863007545, -0.006387192755937576, -0.005603408440947533, -0.005334929563105106, 0.02286398410797119, -0.004897569306194782, 0.006906828843057156, -0.024076469242572784, 0.014948195777833462, 0.009448714554309845, -0.03128208965063095, 0.035681672394275665, 0.013701070100069046, -0.01603943109512329, -0.022898627445101738, -0.03724057972431183, -0.0455201156437397, -0.04770258814096451, -0.06446950882673264, -0.03741379454731941, -0.02172078564763069, -0.0009575376170687377, 0.04953863471746445, -0.007573694922029972, 0.011968949809670448, 0.047529373317956924, 0.04517368972301483, 0.055150702595710754, 0.07295689731836319, -0.05102825537323952, -0.0670676901936531, -0.005508141592144966, -0.023851294070482254, -0.022015245631337166, -0.026137690991163254, 0.05788745358586311, 0.010054957121610641, -0.028822477906942368, 0.04874185845255852, -0.04839543253183365, 0.01991938054561615, 0.018758859485387802, -0.03531792759895325, -0.005083772353827953, 0.012999560683965683, -0.060832057148218155, -0.0717097669839859, 0.022136494517326355, -0.030883701518177986, -0.0500582680106163, 0.011293422430753708, 0.01614335924386978, -0.02605108544230461, 0.01331134233623743, -0.018239224329590797, -0.08792241662740707, -0.08431960642337799, -0.03365509212017059, -0.016758261248469353, -0.014939535409212112, 0.001692064804956317, -0.005984474904835224, -0.054561782628297806, -0.005880547687411308, -0.030467992648482323, 0.023158445954322815, 0.0031437978614121675, -0.02913425862789154, 0.025548771023750305, 0.03741379454731941, -0.012367337010800838, 0.006066750269383192, 0.017044061794877052, -0.019053321331739426, -0.022725414484739304, -0.03344723954796791, 0.024994492530822754, -0.008686581626534462, 0.009405411779880524, -0.0059628235176205635, -0.02230970561504364, -0.0069934348575770855, -0.038522351533174515, 0.027038393542170525, -0.030866378918290138, -0.06668662279844284, 0.0037132324650883675, -0.010877713561058044, 0.016905492171645164, -0.014264008961617947, -0.01746843010187149, 0.05612068995833397, 0.018828144297003746, 0.02915158122777939, 0.04739080369472504, -0.046386174857616425, 0.04905363917350769, 0.00893773976713419, 0.03516203537583351, 0.06346487998962402, -0.0009174823644571006, -0.009881745092570782, -0.00024100826703943312, -0.06211382523179054, 0.014558468945324421, 0.031143518164753914, 0.003104825271293521, -0.016498442739248276, 0.0116571681573987, -0.04725223407149315, 0.002808199729770422, -0.03538721427321434, -0.01811797544360161, 0.08237963169813156, 0.03050263412296772, 0.00008998905104817823, 0.0039059307891875505, -0.01969420537352562, -0.003864792874082923, -0.03904198482632637, 0.005811262875795364, 0.03202689811587334, -0.08702170848846436, 0.07884610444307327, -0.024994492530822754, -0.001180006773211062, -0.03834913671016693, -0.07184834033250809, 0.07697541266679764, 0.05885744094848633, -0.0049971663393080235, 0.009188896976411343, -0.010721823200583458, -0.045797254890203476, 0.023175766691565514, 0.028735872358083725, 0.01912260614335537, 0.0035551763139665127, -0.09415804594755173, -0.006880846805870533, 0.013016882352530956, -0.0006024530157446861, -0.0056900144554674625, 0.005867556668817997, -0.01844707876443863, -0.056848179548978806, -0.006239962298423052, 0.03776021674275398, -0.014705698937177658, 0.014367936179041862, 0.016091395169496536, -0.05643247067928314, 0.03890341520309448, -0.07905396074056625, 0.03379366174340248, -0.021027937531471252, -0.006577725987881422, 0.05473499372601509, -0.023175766691565514, 0.0012622824870049953, -0.06000063940882683, -0.004958193749189377, -0.05102825537323952, 0.00984710268676281, 0.02651875838637352, 0.012332694604992867, 0.04039303958415985, 0.0009986754739657044, -0.01685352809727192, -0.012315373867750168, 0.013804996386170387, -0.0489497110247612, 0.017944764345884323, 0.012938937172293663, -0.05972350016236305, -0.04254086688160896, -0.04118981584906578, -0.042055875062942505, -0.014264008961617947, 0.015329262241721153, -0.023972541093826294, -0.002149994019418955, 0.006478128954768181, 0.0030723479576408863, 0.012488585896790028, 0.003698076354339719, -0.02482127957046032, -0.026310903951525688, -0.00528729660436511, 0.002476931782439351, 0.06744875758886337, 0.000395681185182184, 0.005066451150923967, -0.03327402472496033, -0.03675558790564537, -0.09138665348291397, -0.05449249595403671, -0.017191290855407715, 0.0055471146479249, -0.0032520554959774017, 0.05095897242426872, -0.06523164361715317, 0.04316443204879761, -0.008690912276506424 ]
729,288
tables.description
same_position
Decorate `oldmethod` to also compare the `_v_pos` attribute.
def same_position(oldmethod): """Decorate `oldmethod` to also compare the `_v_pos` attribute.""" def newmethod(self, other): try: other._v_pos except AttributeError: return False # not a column definition return self._v_pos == other._v_pos and oldmethod(self, other) newmethod.__name__ = oldmethod.__name__ newmethod.__doc__ = oldmethod.__doc__ return newmethod
(oldmethod)
[ 0.04642690345644951, -0.050830062478780746, 0.03536617010831833, 0.04744843393564224, -0.03719788044691086, -0.04896312206983566, 0.008797510527074337, 0.046462126076221466, 0.041988518089056015, -0.01743650808930397, -0.024710524827241898, -0.07580477744340897, 0.057804662734270096, 0.028550079092383385, -0.03860689327120781, 0.0165470689535141, 0.01769188977777958, -0.0027409661561250687, -0.024463947862386703, -0.01091983262449503, 0.02515084110200405, 0.023865118622779846, 0.010100845247507095, -0.02069484442472458, 0.014600872993469238, 0.09482642263174057, -0.02145218849182129, 0.02469291165471077, 0.06604737788438797, -0.002078290795907378, -0.03061075694859028, -0.02707061730325222, 0.020536331459879875, 0.011307311244308949, 0.02707061730325222, -0.018634166568517685, 0.027246743440628052, 0.04977330192923546, 0.028233051300048828, -0.01819385029375553, -0.010928639210760593, -0.03666950389742851, 0.03170274198055267, -0.008079796098172665, -0.008515708148479462, -0.00890318676829338, -0.011509856209158897, -0.01682887226343155, 0.021082323044538498, 0.028144989162683487, 0.015419860370457172, -0.020236916840076447, 0.08665415644645691, 0.006472642999142408, -0.03390432149171829, 0.006098374258726835, 0.039417073130607605, 0.05357763171195984, -0.03200215473771095, 0.026559852063655853, 0.010461904108524323, 0.01877506822347641, -0.01125447265803814, -0.03504914045333862, 0.013649791479110718, -0.04061473160982132, -0.007348871324211359, -0.008075392805039883, 0.028250664472579956, 0.03404521942138672, -0.0586852952837944, 0.019585248082876205, 0.018722228705883026, 0.023371964693069458, -0.040544282644987106, 0.013279926031827927, -0.02879665605723858, 0.027775123715400696, 0.05861484631896019, -0.03899437189102173, -0.01305976789444685, -0.03201976791024208, 0.039311397820711136, 0.0067148166708648205, -0.05283790081739426, -0.009193794801831245, 0.004649735055863857, 0.03832508996129036, 0.06992215663194656, -0.008454063907265663, -0.04984375461935997, 0.04558149725198746, -0.003234119853004813, -0.01734844408929348, -0.003247329266741872, -0.01587778888642788, 0.029518773779273033, -0.012557807378470898, 0.005001987796276808, -0.0004859986074734479, 0.0012053645914420485, 0.1246269941329956, 0.051323212683200836, -0.020377816632390022, -0.022139079868793488, -0.006670785136520863, -0.03314697742462158, -0.046180326491594315, -0.05396511033177376, -0.020272141322493553, -0.040861308574676514, -0.01392278727144003, -0.008982443250715733, 0.020747682079672813, 0.018141012638807297, -0.017744729295372963, -0.03983977809548378, -0.01704902946949005, -0.023424802348017693, 0.028831880539655685, 0.042552124708890915, -0.007229986134916544, 0.03318220004439354, -0.07453666627407074, 0.002558235079050064, -0.04396113380789757, 0.026718365028500557, 0.03814896568655968, 0.004006874281913042, -0.03348161652684212, 0.002503195544704795, -0.04005112871527672, 0.015472698956727982, 0.05477529019117355, 0.014407134614884853, 0.01615959219634533, 0.03545423224568367, 0.05974205210804939, -0.05245042219758034, 0.04033293202519417, 0.01409891340881586, 0.04318617656826973, 0.03656382858753204, 0.04057950899004936, -0.03976932540535927, 0.01519970316439867, -0.07111981511116028, 0.04477131366729736, -0.0033309892751276493, 0.030152829363942146, -0.034362249076366425, -0.02011362835764885, 0.05537411943078041, -0.020465880632400513, 0.009017668664455414, -0.0058385878801345825, -0.03527810424566269, -0.0553036704659462, 0.011738820001482964, -0.010875801555812359, 0.027211518958210945, -0.029712513089179993, 0.006041133310645819, -0.017445312812924385, 0.043890684843063354, 0.05262655019760132, -0.051816366612911224, -0.04984375461935997, -0.013227087445557117, 0.01896880567073822, 0.025397418066859245, 0.04033293202519417, 0.027880799025297165, -0.008956024423241615, 0.030328955501317978, 0.023583317175507545, -0.003934222273528576, 0.02266746014356613, 0.04040338099002838, -0.04251689836382866, 0.020043177530169487, -0.01972614973783493, 0.002364496001973748, -0.023424802348017693, 0.014292651787400246, 0.059425026178359985, 0.032072607427835464, -0.02534458041191101, 0.02067723125219345, 0.003496107878163457, -0.04005112871527672, -0.014997157268226147, 0.0027431678026914597, -0.01831713877618313, -0.006912958808243275, -0.025186065584421158, -0.04765978828072548, 0.060094304382801056, 0.03976932540535927, 0.04670870304107666, 0.010373841039836407, -0.004440585151314735, 0.005134082864969969, 0.03298846259713173, 0.007978523150086403, 0.06904152035713196, 0.0051384856924414635, -0.01624765433371067, -0.03395715728402138, -0.027246743440628052, 0.03223111853003502, -0.003978253807872534, 0.014688936062157154, -0.03555990755558014, -0.022632233798503876, 0.025045165792107582, 0.025291742756962776, -0.004079526290297508, -0.02173398993909359, 0.05357763171195984, 0.12138627469539642, -0.025978634133934975, -0.033023688942193985, 0.0036039850674569607, 0.052661772817373276, -0.04452473670244217, 0.007203567307442427, -0.05727628618478775, -0.0033640130423009396, -0.05558547005057335, -0.0024767767172306776, 0.013359182514250278, -0.030822109431028366, 0.004627719521522522, -0.021698765456676483, -0.02622521109879017, -0.015314185060560703, 0.03733878210186958, -0.054669614881277084, -0.020377816632390022, -0.05938979983329773, 0.07249359786510468, 0.01944434829056263, 0.11920230090618134, -0.0033860288094729185, -0.08235667645931244, -0.010981476865708828, 0.04406680911779404, -0.012381681241095066, 0.031896479427814484, -0.05195726826786995, -0.05135843902826309, -0.028356339782476425, 0.013605759479105473, 0.03069882094860077, 0.00874026957899332, -0.09193794429302216, 0.05100618675351143, -0.010629224590957165, 0.010338615626096725, -0.019004032015800476, -0.00790807232260704, 0.0018394194776192307, -0.05766376107931137, 0.02448156103491783, 0.014777000062167645, 0.026348499581217766, 0.030945397913455963, -0.003379424102604389, 0.046004198491573334, -0.04315095394849777, -0.029113683849573135, -0.04850519448518753, 0.040826085954904556, 0.028426790609955788, -0.005737315397709608, -0.038747794926166534, -0.03726833313703537, -0.027687059715390205, -0.05653655529022217, 0.05653655529022217, 0.002388713415712118, -0.024640073999762535, 0.0317203514277935, -0.03143855184316635, 0.012689902447164059, -0.04790636524558067, 0.004031091462820768, 0.005953070241957903, -0.028831880539655685, 0.002604468259960413, 0.0026881282683461905, 0.02610192261636257, 0.02670075185596943, 0.05340150371193886, 0.058473944664001465, 0.01128969807177782, 0.032407246530056, -0.004751008003950119, -0.02203340455889702, -0.01972614973783493, -0.017251575365662575, -0.05815691500902176, 0.05364808067679405, 0.03948752582073212, 0.03429179638624191, -0.0027343614492565393, -0.016864096745848656, 0.012117492035031319, -0.0589318722486496, -0.012971704825758934, 0.04991420358419418, -0.07192999869585037, -0.008749076165258884, 0.04072041064500809, 0.01972614973783493, -0.041143111884593964, 0.020659619942307472, 0.017515763640403748, 0.04223509505391121, -0.03214305639266968, -0.009854268282651901, -0.059425026178359985, -0.0053410311229527, -0.0499846525490284, 0.016599906608462334, 0.023759443312883377, -0.01209987886250019, -0.008700640872120857, 0.055057093501091, 0.02048349380493164, 0.03663427755236626, 0.03888869658112526, 0.04776546359062195, -0.054282136261463165, -0.03383386880159378, -0.01935628429055214, 0.03170274198055267, 0.039804551750421524, 0.008383614011108875, 0.05692403018474579, -0.006811685860157013, -0.0027079423889517784, -0.05544457212090492, 0.03624679893255234, 0.0007353274268098176, -0.05407078564167023, 0.059530701488256454, 0.06167944148182869, 0.020659619942307472, -0.001652285223826766, -0.05396511033177376, -0.043608881533145905, -0.05544457212090492, 0.035031527280807495, 0.00048379701911471784, 0.019479572772979736, -0.029325034469366074, 0.008317566476762295, -0.019567636772990227, 0.006780863739550114, -0.02240327000617981, 0.010303391143679619, -0.02488665096461773, 0.015481504611670971, 0.02689449116587639, -0.06002385541796684, -0.03681040555238724, -0.03638770058751106, -0.000632403651252389, -0.04047383368015289, -0.03776148706674576, 0.04470086470246315, -0.02641895040869713, -0.02659507654607296, -0.01186210848391056, -0.054176460951566696, 0.03755013644695282, -0.03934662416577339, -0.039875004440546036, 0.094967320561409, -0.058755744248628616, -0.019602861255407333, 0.009070506319403648, 0.009378727525472641, 0.017550989985466003, 0.010118458420038223, 0.008546530269086361, 0.0293426476418972, 0.020377816632390022, -0.07192999869585037, -0.02525651641190052, -0.06354638189077377, -0.0018185044173151255, -0.031896479427814484, 0.00540707865729928, -0.035683196038007736, -0.014644904993474483, -0.020747682079672813, -0.04956195130944252, 0.028462015092372894, -0.0010011681588366628, -0.018369976431131363, -0.0064154015854001045, -0.022332819178700447, -0.003976052161306143, 0.011853302828967571, 0.06034088134765625, -0.01305976789444685, -0.000283453322481364, -0.03635247424244881, 0.0074061122722923756, -0.015111640095710754, -0.022350432351231575, 0.025115614756941795, -0.008603771217167377, 0.06273619830608368, -0.0011112471111118793, 0.05583204701542854, 0.01972614973783493, -0.005481932312250137, 0.017339637503027916, 0.006322935689240694, 0.04149536415934563, -0.030716432258486748, -0.015146864578127861, -0.030152829363942146, 0.01253138855099678, -0.010699674487113953, 0.023865118622779846, 0.0036193961277604103, -0.008207486942410469, 0.0034828982315957546, 0.024640073999762535, 0.008872364647686481, -0.04537014290690422, -0.003912206273525953, -0.0461098738014698, 0.011782852001488209, 0.10743706673383713, 0.03143855184316635, -0.02439349703490734, -0.02756377123296261, -0.0005082896095700562, -0.06386341154575348, -0.03524288162589073, -0.0014772596769034863, -0.00760425440967083, 0.035507068037986755, -0.038360316306352615, 0.06495539098978043, 0.09954660385847092, -0.024710524827241898, 0.008220696821808815, -0.030575532466173172, -0.05033690854907036, -0.1168069839477539, -0.05357763171195984, 0.01907448284327984, 0.023019712418317795, -0.004500027745962143, 0.06234872341156006, -0.08200442045927048, -0.012830803170800209, -0.05692403018474579, 0.0413544625043869, -0.06784386187791824, -0.05861484631896019, -0.04889266937971115, 0.0275285467505455, 0.06122151389718056, -0.11617293208837509, -0.04811771586537361, -0.049139246344566345, -0.024287821725010872, 0.03744445741176605, -0.021593088284134865, -0.002892875112593174, -0.013341570273041725, 0.031191974878311157, -0.0695699006319046, -0.021011872217059135, -0.030927784740924835, -0.0013143428368493915, 0.05149934068322182, -0.006107180844992399, -0.06484971940517426, 0.00860817451030016, -0.028550079092383385, -0.03182603046298027, 0.017577407881617546, 0.04889266937971115, 0.009898300282657146, 0.02916652150452137, 0.014953126199543476, 0.02192772924900055, 0.02374183014035225, 0.006384579930454493, -0.017031416296958923, -0.04110788553953171, 0.02432304620742798, -0.006701607257127762, 0.006609140895307064, 0.027035392820835114, 0.02907845750451088, -0.0709436908364296, 0.04149536415934563, -0.007569029461592436, -0.055515021085739136, -0.01650303788483143, 0.04072041064500809, -0.036845628172159195, 0.04928014799952507, 0.006556302774697542, 0.039875004440546036, 0.018229076638817787, -0.07200044393539429, -0.03649337589740753, 0.026084311306476593, -0.01392278727144003, 0.024569623172283173, -0.07390261441469193, 0.019690925255417824, -0.04202374443411827, -0.020518718287348747, 0.02400602027773857, 0.03362251818180084, -0.012328843586146832, 0.047025732696056366, -0.05604340136051178, -0.009854268282651901, 0.009502016007900238, 0.015173284336924553, 0.01602749712765217, 0.005587608087807894, 0.11532752215862274, -0.010285777971148491, -0.001155829057097435, -0.000004992252797819674, 0.04871654510498047, 0.020923808217048645, 0.02069484442472458, -0.02641895040869713, 0.005922248121351004, -0.024816200137138367, 0.02421737089753151, -0.040931761264801025, -0.06569512188434601, -0.004460399504750967, -0.021047096699476242, -0.053436730057001114, 0.034749727696180344, 0.02000795118510723, -0.030945397913455963, -0.01329753827303648, 0.02002556435763836, -0.03681040555238724, 0.020994259044528008, 0.04505311697721481, -0.008304356597363949, 0.0007958709029480815, 0.002628685673698783, 0.09207884967327118, -0.017850404605269432, -0.03499630466103554, 0.040861308574676514, 0.044947441667318344, -0.006908555515110493, 0.027193905785679817, -0.016846483573317528, 0.02393556945025921, 0.02659507654607296, -0.014688936062157154, -0.028567692264914513, -0.00850249920040369, -0.0075866421684622765, 0.00267051556147635, -0.011457018554210663, -0.06326457858085632, -0.08073630928993225, -0.05664223060011864, -0.009730979800224304, 0.0177359227091074, -0.008313163183629513, -0.07805918902158737, -0.0026837249752134085, 0.001313242013566196, 0.060657911002635956, 0.04279869794845581, -0.006617947015911341, -0.03698652982711792, -0.013244700618088245, -0.010100845247507095, -0.09017668664455414, 0.03755013644695282, 0.02601386047899723, -0.013086186721920967, 0.004257854074239731, -0.004887505900114775, 0.009951137937605381, -0.008929605595767498, 0.029096070677042007, -0.008489289321005344, -0.04956195130944252, -0.019021645188331604, -0.04138968884944916, -0.038747794926166534, 0.009730979800224304, 0.0008327473187819123, 0.049139246344566345, 0.023583317175507545, -0.002113515976816416, 0.0064286114647984505, -0.021311286836862564, 0.00900886207818985, 0.023125387728214264, -0.033129364252090454, 0.012214361689984798, 0.029096070677042007, 0.035982608795166016, -0.05026645585894585, 0.013843529857695103, 0.014829837717115879, -0.01182688307017088, -0.0308749470859766, 0.015173284336924553, 0.01972614973783493, -0.02115277387201786, 0.03582409769296646, -0.02391795627772808, -0.0261195357888937, 0.006371370051056147, 0.09081073850393295, -0.031191974878311157, -0.01877506822347641, -0.07460711896419525, -0.018933581188321114, -0.02562638185918331, -0.00843645166605711, 0.0497380755841732, 0.04801204055547714, -0.018757455050945282, 0.008819526061415672, 0.03934662416577339, -0.023019712418317795, -0.011166409589350224, 0.031244812533259392, -0.013050961308181286, 0.03955797478556633, -0.05269699916243553, -0.030328955501317978, 0.03758535906672478, -0.04396113380789757, 0.0058429911732673645, 0.03649337589740753, -0.054387811571359634, -0.06407476216554642, -0.005512754432857037, 0.06601215153932571, -0.04202374443411827, 0.049315374344587326, -0.016749614849686623, -0.030188053846359253, -0.022420883178710938, 0.02021930366754532, 0.06435656547546387, 0.04794158786535263, 0.017269186675548553, 0.04491221532225609, 0.009783818386495113, 0.034644048660993576, 0.026471788063645363, -0.023231063038110733, -0.04138968884944916, 0.004326103255152702, -0.07453666627407074, 0.015322991646826267, 0.0021113145630806684, 0.00035968300653621554, 0.008048973977565765, -0.029148908331990242, 0.029413098469376564, -0.011923752725124359, 0.0016082535730674863, 0.02316061407327652, 0.055515021085739136, 0.016969772055745125, 0.02629566192626953, 0.025872958824038506, -0.08989488333463669, 0.0005118671688251197, -0.051886819303035736, 0.018035337328910828, 0.02525651641190052, 0.03892391920089722, -0.008696237578988075, -0.036739952862262726, -0.0359121598303318, -0.030047152191400528, 0.030328955501317978, 0.027792735025286674, 0.009528434835374355, -0.013341570273041725, 0.043503206223249435, -0.009554853662848473, -0.013896367512643337, -0.006468239706009626, -0.012795578688383102, 0.020994259044528008, 0.0024525593034923077, -0.02365376614034176, -0.0037316768430173397, 0.047131408005952835, -0.04720185697078705, 0.04642690345644951, 0.03755013644695282, 0.01926822029054165, -0.03927617147564888, 0.028338728472590446, 0.044172484427690506, -0.02238565683364868, -0.027968863025307655, 0.016652744263410568, -0.03385148197412491, -0.0006257988861761987, -0.005508351139724255, -0.013596952892839909, -0.03670473024249077, -0.05526844412088394, -0.02964206226170063, 0.005728509277105331, 0.05012555420398712, 0.0048522804863750935, 0.055338893085718155, 0.020272141322493553, 0.0088679613545537, -0.05463438853621483, 0.012954091653227806, -0.04117833822965622, 0.042657800018787384, -0.03573603183031082, 0.034732114523649216, 0.019778987392783165, -0.02832111530005932, 0.025115614756941795, 0.008938411250710487, 0.0012515977723523974, 0.04205897077918053, -0.020166466012597084, 0.008088601753115654, 0.034555986523628235, 0.038465991616249084, 0.0075822388753294945, -0.009264245629310608, 0.009598885662853718, 0.021716376766562462, 0.03881824389100075, 0.0564308799803257, 0.047025732696056366, -0.0335344560444355, -0.05164024233818054, 0.014134138822555542, 0.019867051392793655, 0.06030565872788429, -0.007260808255523443, 0.022473720833659172, 0.015322991646826267, 0.10595760494470596 ]
729,289
tables.atom
split_type
Split a PyTables type into a PyTables kind and an item size. Returns a tuple of (kind, itemsize). If no item size is present in the type (in the form of a precision), the returned item size is None:: >>> split_type('int32') ('int', 4) >>> split_type('string') ('string', None) >>> split_type('int20') Traceback (most recent call last): ... ValueError: precision must be a multiple of 8: 20 >>> split_type('foo bar') Traceback (most recent call last): ... ValueError: malformed type: 'foo bar'
def split_type(type): """Split a PyTables type into a PyTables kind and an item size. Returns a tuple of (kind, itemsize). If no item size is present in the type (in the form of a precision), the returned item size is None:: >>> split_type('int32') ('int', 4) >>> split_type('string') ('string', None) >>> split_type('int20') Traceback (most recent call last): ... ValueError: precision must be a multiple of 8: 20 >>> split_type('foo bar') Traceback (most recent call last): ... ValueError: malformed type: 'foo bar' """ match = _type_re.match(type) if not match: raise ValueError("malformed type: %r" % type) kind, precision = match.groups() itemsize = None if precision: precision = int(precision) itemsize, remainder = divmod(precision, 8) if remainder: # 0 could be a valid item size raise ValueError("precision must be a multiple of 8: %d" % precision) return (kind, itemsize)
(type)
[ -0.0031090467236936092, 0.023003675043582916, -0.03367394208908081, -0.016145553439855576, -0.0009693872416391969, -0.004779195878654718, 0.033524446189403534, -0.016304392367601395, -0.0956026017665863, -0.004398448392748833, 0.0030903597362339497, -0.010109657421708107, 0.004643714986741543, -0.023209232836961746, 0.006475039292126894, 0.015939995646476746, 0.020555680617690086, -0.0010126008419319987, 0.004867958836257458, 0.013790993019938469, 0.010492741130292416, 0.09380865097045898, 0.05351951718330383, 0.011193502694368362, -0.006937542464584112, 0.012884674593806267, 0.05221142992377281, 0.002476025139912963, 0.036719921976327896, -0.003805136773735285, 0.004234937485307455, 0.014940242283046246, -0.021901143714785576, 0.013174322433769703, -0.04484875872731209, -0.0077737849205732346, 0.03957903012633324, 0.02033143676817417, 0.031487565487623215, 0.06704889237880707, -0.05841550603508949, -0.04664270952343941, 0.026012279093265533, -0.020032444968819618, -0.015173830091953278, -0.020555680617690086, 0.005335133522748947, -0.047240693122148514, -0.08401667326688766, 0.007675678003579378, -0.0040690903551876545, -0.01142708957195282, 0.01852814294397831, -0.031450193375349045, 0.004092449322342873, -0.008399798534810543, 0.019079409539699554, -0.005638796836137772, -0.03152494132518768, 0.06088218837976456, -0.005288416054099798, 0.04425077512860298, -0.044998254626989365, -0.030048668384552002, 0.00994147453457117, -0.03490728512406349, 0.0028918106108903885, -0.039280038326978683, -0.053893256932497025, -0.03726184368133545, 0.0077504259534180164, 0.019154157489538193, -0.030478468164801598, 0.03374869003891945, 0.02881532721221447, -0.0001213193972944282, 0.06891759485006332, -0.035617388784885406, 0.07841058075428009, 0.016995809972286224, 0.02220013551414013, 0.0550144761800766, 0.04133560508489609, -0.019527897238731384, 0.016986466944217682, 0.07325296849012375, 0.03180524334311485, 0.0599852129817009, 0.010726328007876873, 0.027843603864312172, -0.036794669926166534, -0.039280038326978683, -0.006853451021015644, 0.004720799159258604, -0.03954165428876877, -0.03543051704764366, 0.017565764486789703, -0.014837464317679405, -0.06962769478559494, -0.03236585482954979, -0.034589603543281555, 0.015650348737835884, 0.013781649991869926, 0.0012602034257724881, -0.010642236098647118, -0.032347165048122406, 0.042755816131830215, 0.00844651646912098, -0.03690678998827934, 0.0075121670961380005, 0.019322339445352554, -0.06282563507556915, -0.0914914682507515, -0.01783672533929348, 0.03660779818892479, 0.03219766914844513, -0.01465059444308281, 0.00945094134658575, -0.02130316011607647, -0.0350194051861763, -0.03374869003891945, 0.029039571061730385, -0.03498203307390213, 0.042793188244104385, 0.04290531203150749, 0.014192762784659863, 0.07018830627202988, 0.011511181481182575, -0.04843666031956673, 0.0599852129817009, -0.030385034158825874, 0.02946937084197998, -0.06925395876169205, 0.05931248143315315, -0.0460447259247303, 0.015538225881755352, 0.008829599246382713, -0.010502084158360958, -0.04664270952343941, -0.03636486828327179, -0.01849076896905899, 0.06125592812895775, 0.04511037468910217, -0.031973425298929214, -0.0027516582049429417, 0.015257921069860458, 0.018219808116555214, -0.02599359303712845, 0.01373493205755949, 0.060059960931539536, -0.07773784548044205, -0.037691645324230194, 0.04028913378715515, -0.03954165428876877, 0.008857629261910915, -0.03604719042778015, -0.016921062022447586, -0.062265027314424515, 0.011352341622114182, -0.03743002563714981, 0.010726328007876873, 0.02016325481235981, -0.026591576635837555, -0.04432552307844162, 0.012118508107960224, 0.06951557844877243, 0.00709170987829566, -0.02599359303712845, -0.011090723797678947, -0.028834013268351555, 0.04081236943602562, 0.05366901308298111, 0.02763804793357849, 0.010885166935622692, -0.03587900474667549, 0.008198913186788559, -0.008890331722795963, -0.031076451763510704, 0.00303663476370275, -0.06017208471894264, 0.08581062406301498, -0.020536994561553, -0.03946690633893013, 0.060022588819265366, 0.01359478011727333, 0.018266525119543076, 0.01404326781630516, 0.007376686204224825, -0.02795572578907013, -0.008890331722795963, -0.0033146035857498646, -0.004202235024422407, -0.024872373789548874, -0.07811158895492554, -0.003760755294933915, 0.03191736713051796, 0.007727067451924086, 0.03580425679683685, -0.03457091748714447, 0.03019816428422928, -0.036308806389570236, -0.0061853909865021706, 0.002144331345334649, 0.0029268485959619284, 0.05224880203604698, -0.03444010764360428, 0.011800829321146011, 0.014744029380381107, -0.037616897374391556, -0.018257182091474533, -0.01673419214785099, -0.029600180685520172, 0.04357804358005524, 0.03558001294732094, 0.01144577655941248, -0.03905579447746277, -0.056135695427656174, -0.009492986835539341, 0.03285171464085579, -0.02102285623550415, 0.030048668384552002, 0.01995769701898098, -0.007862548343837261, 0.0357481986284256, 0.04731544107198715, -0.010614206083118916, -0.008913690224289894, 0.043241675943136215, 0.02632995881140232, 0.014024580828845501, -0.0041391667909920216, -0.02974967658519745, 0.0050081112422049046, 0.0018920570146292448, 0.010249810293316841, -0.02020062878727913, -0.03486990928649902, -0.00845118798315525, -0.0024690176360309124, -0.02799309976398945, -0.014622563496232033, 0.00021913407545071095, -0.05497710406780243, -0.026087027043104172, -0.0730661004781723, -0.02354559861123562, -0.014725342392921448, -0.001959797227755189, -0.012781895697116852, -0.004919348284602165, -0.05856500193476677, -0.04705382138490677, 0.05897611752152443, -0.010128344409167767, 0.0510154627263546, 0.01509908214211464, -0.047240693122148514, -0.03909316658973694, 0.0034384047612547874, -0.016724849119782448, -0.003405702533200383, -0.017360206693410873, 0.051725566387176514, -0.008843614719808102, 0.025825409218668938, -0.024685503914952278, 0.05322052538394928, 0.031113825738430023, 0.04952050372958183, 0.023153170943260193, 0.055126599967479706, 0.05060434713959694, 0.0034290612675249577, -0.005442583467811346, -0.014454380609095097, -0.051239706575870514, 0.029973920434713364, 0.016865001991391182, 0.07788734138011932, -0.005797636229544878, 0.022685997188091278, 0.005820995196700096, -0.03812144324183464, -0.036103248596191406, -0.01992032304406166, 0.04877302423119545, 0.0011994707165285945, -0.009203338995575905, -0.00005120671266922727, 0.021826395764946938, -0.026498140767216682, -0.004706783685833216, -0.023452162742614746, 0.016790254041552544, -0.011791486293077469, 0.06820748746395111, 0.019696079194545746, 0.01595868356525898, 0.06375998258590698, -0.020518306642770767, -0.07590652257204056, 0.01551019586622715, 0.022928927093744278, 0.03946690633893013, -0.002174697583541274, -0.002339376602321863, -0.004111136309802532, -0.03412242978811264, -0.023620346561074257, -0.016145553439855576, 0.02722693420946598, 0.019154157489538193, -0.02595621906220913, 0.007946639321744442, 0.031655747443437576, 0.03580425679683685, -0.034795161336660385, 0.06084481626749039, -0.035206276923418045, 0.03496334329247475, -0.010315214283764362, -0.03315070644021034, 0.0011399058857932687, 0.028348151594400406, 0.0073486557230353355, -0.01520186010748148, -0.024143582209944725, -0.02464812994003296, -0.015725096687674522, -0.015977369621396065, -0.03868205472826958, 0.011342998594045639, -0.007633632514625788, 0.019845575094223022, -0.0024550023954361677, -0.02599359303712845, 0.015342012979090214, -0.04462451487779617, -0.03367394208908081, 0.012520277872681618, 0.08110150694847107, -0.043241675943136215, 0.016752880066633224, -0.01240815594792366, 0.019004661589860916, -0.018668295815587044, 0.04462451487779617, -0.02763804793357849, 0.07811158895492554, 0.06985194236040115, 0.016958435997366905, -0.06028420478105545, 0.0012496919371187687, 0.006839435547590256, 0.014884181320667267, -0.05183769017457962, -0.000300451647490263, -0.06574080139398575, 0.008287676610052586, 0.03533708304166794, 0.04903464391827583, 0.0235082246363163, 0.022069325670599937, -0.007442090660333633, -0.03395424783229828, -0.052099306136369705, -0.021826395764946938, -0.02433045208454132, 0.006713298615068197, 0.054790232330560684, -0.026759758591651917, 0.03653305023908615, -0.003634618129581213, -0.02533954754471779, 0.02240569144487381, 0.016397826373577118, -0.006844107527285814, 0.053781136870384216, -0.09986323118209839, -0.02526479959487915, -0.016752880066633224, -0.06484382599592209, -0.001062238123267889, 0.043652791529893875, -0.014930899254977703, -0.0037000225856900215, -0.014248823747038841, 0.00452925730496645, -0.0626387670636177, 0.044998254626989365, 0.0007439755136147141, 0.06271351128816605, 0.006493726279586554, -0.0050548287108540535, 0.014603876508772373, 0.031936053186655045, -0.05456598848104477, -0.03492597118020058, -0.020144566893577576, 0.013903114944696426, 0.0000969387183431536, -0.02543298341333866, -0.0645822137594223, 0.05710741877555847, -0.013379879295825958, 0.03358050808310509, 0.0237511545419693, 0.0016935077728703618, -0.01893925666809082, -0.043690163642168045, 0.0327209047973156, -0.012015730142593384, 0.007059007883071899, -0.06020945683121681, 0.07145901769399643, -0.032833028584718704, 0.002534422092139721, 0.022517813369631767, -0.01563166081905365, 0.010698297061026096, 0.008633386343717575, -0.014473067596554756, 0.013071544468402863, 0.03313202038407326, -0.015089738182723522, 0.025115303695201874, -0.005923773627728224, 0.020723864436149597, 0.01271649170666933, 0.025040555745363235, -0.004592326004058123, 0.028628457337617874, -0.010716984048485756, -0.030796147882938385, 0.0019913315773010254, -0.020312750712037086, -0.004952050279825926, 0.015295295044779778, 0.02681582048535347, 0.018434708938002586, 0.004300341941416264, 0.03939215838909149, -0.0037887857761234045, 0.013557406142354012, 0.09732180833816528, -0.01101597584784031, 0.017444297671318054, -0.0029759020544588566, -0.01228669099509716, -0.01681828498840332, -0.017724603414535522, 0.008460531011223793, 0.06794586777687073, -0.03191736713051796, 0.07758834958076477, -0.018827134743332863, -0.019696079194545746, -0.0011072036577388644, 0.033449698239564896, 0.00476518040522933, 0.03733659163117409, 0.04656796157360077, 0.02509661763906479, 0.017397580668330193, 0.04021438583731651, -0.06028420478105545, 0.011202845722436905, -0.020948108285665512, 0.060134708881378174, -0.0013933480950072408, -0.045820482075214386, 0.009922787547111511, 0.06996406614780426, 0.030796147882938385, 0.0519871860742569, 0.03733659163117409, 0.020630428567528725, 0.02395671233534813, -0.01971476711332798, -0.038308314979076385, 0.06574080139398575, -0.02347085066139698, -0.03081483393907547, -0.01763116754591465, -0.0879783108830452, 0.011090723797678947, -0.03498203307390213, 0.03787851333618164, -0.06304988265037537, 0.00010810711683006957, -0.076093390583992, -0.005307103041559458, -0.0045245857909321785, 0.0005092202918604016, 0.05927510932087898, -0.0021653540898114443, 0.024293078109622, 0.023900650441646576, 0.026666324585676193, 0.012239973992109299, 0.068095363676548, -0.017612481489777565, 0.016425857320427895, -0.0914914682507515, 0.021172352135181427, 0.018462738022208214, 0.05157607048749924, 0.024760251864790916, -0.033001210540533066, -0.004494219087064266, -0.08491364866495132, 0.050267983227968216, 0.011940982192754745, -0.0034033667761832476, -0.03685072809457779, 0.01954658329486847, 0.08491364866495132, -0.015846561640501022, 0.030796147882938385, -0.009413567371666431, 0.0018850493943318725, 0.0024947121273726225, 0.03447748348116875, -0.0072038318030536175, 0.025320861488580704, 0.02244306541979313, -0.026105714961886406, -0.022629935294389725, 0.03815881907939911, 0.010025566443800926, 0.04036388173699379, 0.03485122323036194, -0.010745014995336533, -0.035038091242313385, 0.03750477358698845, -0.030235538259148598, -0.05064172297716141, -0.009245384484529495, 0.10576832294464111, -0.005068844184279442, -0.016500605270266533, -0.022798119112849236, -0.025563791394233704, -0.02967492863535881, -0.023171858862042427, 0.0895480215549469, 0.016257675364613533, 0.008138180710375309, -0.032758280634880066, 0.008923034183681011, -0.006577817723155022, 0.01775263249874115, 0.0362340584397316, -0.01552888285368681, -0.05849025398492813, 0.008806240744888783, -0.006400291342288256, -0.05060434713959694, 0.04813766852021217, -0.017369549721479416, -0.02930118888616562, -0.0352623350918293, -0.007867219857871532, 0.039691150188446045, -0.023134484887123108, -0.04746493697166443, -0.02464812994003296, 0.04440027102828026, -0.00954904779791832, 0.030235538259148598, 0.024180956184864044, -0.007442090660333633, 0.05011848732829094, -0.03064665198326111, 0.019826889038085938, -0.07067416608333588, -0.056584183126688004, -0.007470121141523123, -0.046829577535390854, -0.020873360335826874, -0.019284965470433235, 0.047165945172309875, -0.010623549111187458, 0.009558391757309437, -0.007727067451924086, -0.0038214880041778088, -0.0327209047973156, -0.015809187665581703, -0.009053843095898628, 0.06693676859140396, -0.005190309602767229, 0.0430174320936203, 0.045409366488456726, -0.0057182167656719685, -0.02391933836042881, -0.02354559861123562, -0.0420457124710083, 0.032758280634880066, -0.067123644053936, 0.02644208073616028, -0.007713051978498697, 0.03916791453957558, -0.024479947984218597, 0.015977369621396065, 0.08289545774459839, -0.02819865755736828, -0.0008321547065861523, 0.03444010764360428, 0.04290531203150749, -0.09986323118209839, 0.05508922412991524, 0.023900650441646576, 0.02085467241704464, -0.060994312167167664, -0.07938230037689209, -0.02347085066139698, 0.020013758912682533, -0.08483889698982239, 0.03642093017697334, -0.042269956320524216, -0.05845288187265396, 0.10188142955303192, 0.07250548899173737, -0.014407663606107235, 0.0017297138692811131, -0.05142657458782196, -0.030291598290205002, -0.0805782675743103, 0.0559861995279789, -0.0985177755355835, -0.03871942684054375, -0.014566502533853054, 0.041372980922460556, -0.07713986188173294, -0.01922890543937683, 0.0070122904144227505, -0.022293569520115852, -0.07508429884910583, -0.0024736893828958273, 0.0395042821764946, 0.04824978858232498, 0.007731738965958357, 0.04802554473280907, -0.006447008810937405, 0.06413372606039047, -0.015930652618408203, -0.001003257348202169, -0.03819619119167328, 0.03415980562567711, -0.02419964224100113, 0.003676663851365447, 0.07713986188173294, 0.0545286163687706, -0.04776392877101898, -0.027525926008820534, 0.022144073620438576, -0.0036743278615176678, -0.00804007425904274, -0.08566112816333771, -0.01779000647366047, 0.013361192308366299, -0.021490029990673065, -0.0004032300494145602, 0.048100292682647705, 0.02461075596511364, -0.016173582524061203, 0.0027913679368793964, 0.029394622892141342, 0.012370781973004341, -0.05692054703831673, 0.009357506409287453, 0.02844158746302128, 0.018668295815587044, 0.004321364685893059, -0.008810912258923054, -0.02322791889309883, -0.010782388970255852, 0.017724603414535522, -0.015407416969537735, 0.031169887632131577, 0.04066287353634834, 0.0012088142102584243, 0.01028718426823616, -0.033281516283750534, 0.014846807345747948, 0.01330513134598732, -0.01954658329486847, -0.007871891371905804, -0.01633242331445217, -0.055238720029592514, 0.024872373789548874, 0.04081236943602562, 0.007124411873519421, -0.024760251864790916, -0.1110006794333458, -0.03402899578213692, 0.032795652747154236, 0.032141610980033875, 0.03685072809457779, 0.01547282189130783, -0.018462738022208214, -0.01459453348070383, -0.005325790029019117, 0.04346591979265213, 0.015351356007158756, 0.05273466557264328, -0.05938722938299179, -0.025937531143426895, 0.0008304027724079788, 0.005839682184159756, -0.013295788317918777, -0.00800270028412342, -0.030142102390527725, -0.05314577743411064, -0.018789760768413544, 0.01600540056824684, -0.045484114438295364, 0.04881040006875992, -0.05060434713959694, 0.06899233907461166, -0.025003181770443916, -0.03201080113649368, 0.09507936984300613, 0.032515350729227066, -0.06671252846717834, 0.02391933836042881, -0.024293078109622, 0.017939502373337746, -0.04017701372504234, 0.0075121670961380005, -0.00842782948166132, -0.009193995036184788, -0.024274390190839767, 0.013136948458850384, 0.012669773772358894, 0.024031460285186768, -0.04596997797489166, -0.016229644417762756, 0.08162473887205124, -0.036794669926166534, 0.0030576575081795454, 0.04686695337295532, -0.016295049339532852, 0.017481671646237373, -0.07321559637784958, 0.038868922740221024, 0.02126578614115715, 0.03701891377568245, -0.01365084107965231, -0.03232847899198532, -0.04383965954184532, -0.013482658192515373, -0.034384049475193024, -0.0655539333820343, 0.015435447916388512, -0.0500437393784523, 0.0631246268749237, -0.01722005382180214, -0.045371994376182556, 0.023601658642292023, -0.016799597069621086, 0.003153428202494979, 0.02816128358244896, 0.033244140446186066, -0.017771320417523384, -0.03227241709828377, -0.02526479959487915, -0.01591196469962597 ]
729,292
tables.tests.test_suite
test
Run all the tests in the test suite. If *verbose* is set, the test suite will emit messages with full verbosity (not recommended unless you are looking into a certain problem). If *heavy* is set, the test suite will be run in *heavy* mode (you should be careful with this because it can take a lot of time and resources from your computer). Return 0 (os.EX_OK) if all tests pass, 1 in case of failure
def test(verbose=False, heavy=False): """Run all the tests in the test suite. If *verbose* is set, the test suite will emit messages with full verbosity (not recommended unless you are looking into a certain problem). If *heavy* is set, the test suite will be run in *heavy* mode (you should be careful with this because it can take a lot of time and resources from your computer). Return 0 (os.EX_OK) if all tests pass, 1 in case of failure """ common.print_versions() common.print_heavy(heavy) # What a context this is! # oldverbose, common.verbose = common.verbose, verbose oldheavy, common.heavy = common.heavy, heavy try: result = common.unittest.TextTestRunner( verbosity=1 + int(verbose)).run(suite()) if result.wasSuccessful(): return 0 else: return 1 finally: # common.verbose = oldverbose common.heavy = oldheavy # there are pretty young heavies, too ;)
(verbose=False, heavy=False)
[ -0.0020758635364472866, 0.0004693281080108136, -0.017133403569459915, 0.024486489593982697, 0.03780057281255722, -0.007321853190660477, -0.009708928875625134, -0.030697347596287727, -0.0035917682107537985, -0.009209204465150833, -0.01945355162024498, 0.07931338250637054, -0.003112122183665633, -0.00163748930208385, 0.023629819974303246, -0.009548302739858627, 0.04593893885612488, -0.04094169661402702, 0.03708668053150177, 0.029929913580417633, -0.022202035412192345, 0.04783075302839279, 0.021381059661507607, 0.02056008391082287, 0.014402767643332481, 0.0359623022377491, 0.028841229155659676, -0.04440407082438469, 0.03126846253871918, -0.011930917389690876, -0.045903243124485016, -0.027556223794817924, -0.03669403865933418, 0.07010417431592941, -0.012564496137201786, -0.0333922915160656, -0.045332130044698715, 0.010583446361124516, -0.01120810117572546, 0.059859827160835266, 0.014090440236032009, -0.009824936278164387, 0.05086479336023331, 0.02396891824901104, -0.03740793094038963, -0.024754198268055916, -0.0014880183152854443, 0.020702863112092018, -0.011565047316253185, -0.05875329673290253, 0.008035744540393353, -0.023290719836950302, 0.0448681004345417, -0.0077055697329342365, -0.006206396967172623, 0.026967262849211693, 0.05032937228679657, 0.0071478416211903095, 0.03837168589234352, 0.0027730234432965517, -0.026574622839689255, 0.001649759360589087, -0.038835715502500534, 0.05075770989060402, -0.056468844413757324, -0.03537334129214287, -0.04037058353424072, 0.007638642564415932, 0.009432295337319374, 0.006897979881614447, -0.03494500368833542, 0.04554629698395729, 0.02325502596795559, -0.03399909660220146, -0.04022780433297157, 0.02946588397026062, -0.12721551954746246, -0.022112799808382988, -0.02550378441810608, 0.016829999163746834, 0.002619090722873807, 0.012716198340058327, -0.014117211103439331, 0.006054694764316082, -0.022487591952085495, -0.009557226672768593, 0.01204692479223013, -0.0019843962509185076, 0.050686318427324295, 0.07374502718448639, 0.016169650480151176, 0.015214819461107254, 0.020078208297491074, 0.009343058802187443, -0.0015203665243461728, -0.03326736018061638, -0.02834150567650795, 0.019114453345537186, -0.06464290618896484, -0.013108838349580765, -0.025039754807949066, 0.019257232546806335, 0.01135088037699461, -0.02029237523674965, 0.01902521774172783, 0.003848323132842779, -0.06403609365224838, -0.010280041955411434, 0.03722945973277092, 0.045474909245967865, -0.032374992966651917, -0.05671870335936546, -0.07295974344015121, -0.02850213088095188, -0.016151802614331245, -0.04479671269655228, 0.02948373183608055, -0.03621216118335724, -0.05286369100213051, 0.0015839474508538842, 0.009628616273403168, 0.027002958580851555, 0.028787687420845032, -0.024308016523718834, 0.016035795211791992, -0.005563894286751747, 0.037836264818906784, 0.09766039997339249, 0.002147252671420574, -0.0034088334068655968, 0.06946167349815369, -0.034338194876909256, 0.017722364515066147, -0.0012883516028523445, -0.008481927216053009, -0.02594996802508831, 0.040834613144397736, 0.060716498643159866, 0.04922284185886383, -0.03676543012261391, 0.006750739645212889, 0.010172958485782146, -0.040656138211488724, 0.04204822704195976, 0.015455758199095726, -0.03626570478081703, -0.03171464428305626, -0.10051596909761429, 0.010886849835515022, 0.04836617037653923, 0.08274006098508835, -0.02170231193304062, -0.02286238595843315, -0.037015289068222046, -0.0130999144166708, 0.03142908588051796, 0.022790996357798576, -0.06756985932588577, 0.01875750720500946, -0.003964330535382032, 0.005019552074372768, 0.02116689272224903, -0.009088735096156597, 0.015366521663963795, -0.010601293295621872, 0.019810497760772705, -0.08074116706848145, 0.037015289068222046, -0.024736352264881134, -0.021898631006479263, -0.00021151833061594516, 0.024611420929431915, -0.05179285258054733, 0.018079310655593872, 0.056611619889736176, 0.0015750238671898842, -0.026717402040958405, -0.034338194876909256, -0.010128339752554893, 0.00610377499833703, -0.0696401447057724, -0.018436256796121597, -0.035337645560503006, -0.015643155202269554, 0.01782052405178547, -0.010030180215835571, 0.01818639412522316, -0.00250308308750391, -0.022487591952085495, -0.014143981970846653, 0.0020457461941987276, 0.00922705139964819, 0.026556774973869324, 0.053506191819906235, 0.021898631006479263, -0.02298731729388237, 0.02580718882381916, -0.021505990996956825, 0.05889607593417168, 0.003797012148424983, -0.05657592788338661, 0.07724309712648392, 0.04961548000574112, -0.0633578971028328, 0.049401313066482544, 0.00241607753559947, -0.053648971021175385, 0.006126084364950657, -0.050829097628593445, 0.0024651577696204185, 0.07171043008565903, -0.0023915376514196396, -0.06407178938388824, 0.07595808804035187, 0.043654486536979675, -0.01931077428162098, 0.026039203628897667, -0.020078208297491074, -0.04426129162311554, -0.003663157345727086, -0.007469092961400747, -0.02425447478890419, 0.024147391319274902, 0.015250514261424541, 0.023594124242663383, -0.0034913772251456976, 0.07760003954172134, 0.032624855637550354, 0.010958239436149597, -0.013287311419844627, 0.017659898847341537, -0.000818744651041925, 0.03826460242271423, -0.00800897367298603, -0.05343480408191681, 0.012546648271381855, -0.003520379075780511, 0.04950839653611183, 0.009164586663246155, -0.03765779361128807, -0.00008895761129679158, -0.0022476438898593187, -0.00497047184035182, -0.02860921435058117, -0.042512256652116776, -0.06864070147275925, -0.00868270918726921, -0.034909311681985855, 0.005438963416963816, 0.04779505729675293, -0.003152278484776616, -0.03258915990591049, 0.050543539226055145, 0.0003017308481503278, -0.025128992274403572, 0.009700004942715168, 0.02760976552963257, 0.00846854131668806, -0.000011459566849225666, 0.006523186340928078, 0.02764546126127243, -0.0017557276878505945, -0.03549826890230179, 0.07353086024522781, -0.028948312625288963, -0.026128441095352173, 0.02018529176712036, -0.01192199345678091, 0.016258886083960533, -0.028698451817035675, 0.008597934618592262, -0.048294782638549805, -0.01714232750236988, 0.015562841668725014, -0.07360224425792694, 0.00824545044451952, -0.016053643077611923, 0.03776487708091736, -0.03364215046167374, 0.010619141161441803, -0.04693838581442833, 0.0684979185461998, -0.010681605897843838, -0.043904345482587814, -0.05778954178094864, -0.06300095468759537, -0.028163032606244087, 0.006603499408811331, -0.023165790364146233, -0.01381380669772625, 0.0021874092053622007, -0.033481527119874954, 0.03175034001469612, -0.0072549255564808846, -0.008539930917322636, -0.011689978651702404, -0.08902230858802795, -0.06828375160694122, 0.01945355162024498, -0.023058705031871796, 0.0009765817085281014, -0.041941143572330475, 0.004363663960248232, 0.0022019101306796074, 0.00880764052271843, 0.03569459170103073, -0.0032192058861255646, -0.05386313796043396, -0.004903544206172228, 0.028020253404974937, -0.043190453201532364, 0.006616884842514992, 0.050293680280447006, 0.010842232033610344, -0.005412192549556494, -0.017338648438453674, -0.00972677581012249, -0.06492846459150314, -0.022344814613461494, -0.03712237626314163, -0.01863257586956024, 0.013430089689791203, 0.05150729417800903, 0.046617135405540466, 0.02229127287864685, -0.007910814136266708, 0.006893517915159464, -0.005670978222042322, -0.03298180177807808, -0.032517772167921066, 0.05304216220974922, -0.012939289212226868, 0.041548505425453186, 0.038121823221445084, -0.04211961850523949, 0.01863257586956024, 0.0027908708434551954, -0.0007596255163662136, -0.00761187169700861, -0.008058053441345692, 0.05036506801843643, 0.03665834665298462, -0.03694390133023262, -0.012983907014131546, 0.020613625645637512, 0.02325502596795559, -0.016437359154224396, -0.0029514965135604143, 0.06742708384990692, -0.09166371077299118, 0.05671870335936546, -0.02748483419418335, -0.06150177866220474, -0.0296265110373497, -0.01804361492395401, 0.028091643005609512, 0.007589562330394983, -0.07092515379190445, 0.026289066299796104, -0.011190254241228104, -0.012600190937519073, 0.0287698395550251, 0.0021048653870821, -0.01587517000734806, 0.03158971294760704, -0.06610637903213501, 0.07495863735675812, 0.019524941220879555, -0.009289517067372799, 0.012716198340058327, 0.00903073139488697, 0.003797012148424983, 0.0021271745208650827, -0.020899182185530663, -0.003714468330144882, -0.007451246026903391, 0.017829447984695435, 0.02893046662211418, -0.014920338988304138, 0.011591818183660507, 0.03296395391225815, 0.029715746641159058, -0.019507093355059624, -0.06514263153076172, -0.006233167834579945, -0.050257984548807144, -0.011975535191595554, 0.04479671269655228, -0.05347049608826637, 0.0016821075696498156, -0.005715596489608288, 0.006558881141245365, -0.007776958867907524, -0.035890910774469376, 0.0215773805975914, 0.03719376400113106, 0.03537334129214287, -0.0027284054085612297, -0.06150177866220474, -0.007076452486217022, -0.0276276133954525, 0.05104326456785202, -0.05150729417800903, 0.0025410086382180452, -0.020809946581721306, 0.009325211867690086, 0.03594445437192917, -0.032357145100831985, -0.011145636439323425, 0.024647114798426628, -0.015759162604808807, 0.01565207727253437, -0.0696401447057724, -0.00007229548646137118, -0.06128761172294617, 0.011654283851385117, -0.007906352169811726, 0.026431845501065254, 0.057039957493543625, 0.0411558635532856, 0.06367915123701096, -0.02145244926214218, 0.019417857751250267, 0.05432716757059097, 0.07174612581729889, -0.026413997635245323, -0.023933222517371178, 0.018650423735380173, 0.005229257512837648, -0.029358800500631332, -0.012858976610004902, -0.04254795238375664, -0.06346498429775238, 0.012216473929584026, -0.009289517067372799, -0.014331378042697906, -0.06607069075107574, 0.000023180569769465365, 0.05764676257967949, -0.021827243268489838, -0.03642633184790611, -0.052649520337581635, 0.009459066204726696, -0.04722394421696663, 0.012707274407148361, 0.026146287098526955, 0.018293477594852448, 0.02327287383377552, -0.03740793094038963, 0.007469092961400747, -0.026824485510587692, 0.020078208297491074, -0.021773699671030045, -0.06078789010643959, 0.007549406029284, -0.03737223520874977, -0.04879450425505638, 0.08245450258255005, -0.018436256796121597, 0.025985661894083023, 0.015741314738988876, 0.007250463590025902, 0.0210062675178051, 0.0059297638945281506, -0.0032638241536915302, -0.060430943965911865, 0.03979947045445442, 0.013171304017305374, 0.009566150605678558, -0.01416182890534401, 0.005153406411409378, -0.009583997540175915, 0.04269073158502579, 0.032624855637550354, 0.07310251891613007, 0.05882468447089195, -0.07645781338214874, -0.037979044020175934, 0.027681155130267143, -0.03633709251880646, 0.05232826992869377, 0.03287471830844879, 0.08580979704856873, 0.030090540647506714, -0.02170231193304062, -0.025021908804774284, 0.03665834665298462, 0.010752995498478413, 0.013055296614766121, -0.06660610437393188, 0.051114656031131744, -0.03762209787964821, -0.005233719479292631, -0.02621767669916153, 0.0012392716016620398, -0.03246423229575157, -0.009985561482608318, 0.03332090005278587, -0.04479671269655228, 0.01902521774172783, 0.034070488065481186, -0.044618237763643265, 0.059145938605070114, 0.003377600573003292, 0.0026659397408366203, 0.02944803796708584, 0.06814097613096237, 0.0014099363470450044, -0.0018025768222287297, -0.0077323406003415585, -0.026895875111222267, 0.04047766700387001, -0.01128841470927, 0.008606858551502228, 0.058717601001262665, -0.0440114289522171, -0.02045300044119358, 0.008107134141027927, 0.07374502718448639, 0.02200571447610855, -0.0018025768222287297, -0.00687567051500082, 0.018561188131570816, -0.008240988478064537, 0.019132301211357117, -0.005679901689291, -0.012885747477412224, 0.0794561579823494, 0.039264049381017685, 0.05500536412000656, 0.02578934282064438, -0.013688875362277031, 0.008838873356580734, 0.015598536469042301, 0.009414448402822018, -0.048294782638549805, -0.03790765628218651, -0.026860179379582405, 0.10437098145484924, -0.04932992532849312, 0.05050784721970558, 0.015848398208618164, 0.03499854728579521, -0.01318022795021534, 0.01728510484099388, 0.03894279897212982, 0.020952725782990456, 0.027681155130267143, -0.0035783827770501375, -0.030054844915866852, 0.0033017497044056654, 0.006358099170029163, 0.00783496256917715, 0.0023067628499120474, 0.008441770449280739, -0.04197683930397034, 0.013563944958150387, 0.006175164133310318, -0.005064169876277447, -0.02366551384329796, -0.0028198726940900087, -0.007848348468542099, -0.01824885979294777, -0.006433949805796146, 0.029644357040524483, -0.02254113368690014, 0.013073143549263477, 0.018811048939824104, 0.019221536815166473, -0.0888795331120491, 0.006835514213889837, -0.023023011162877083, 0.018115004524588585, -0.004272196441888809, -0.06064511090517044, 0.059003159403800964, -0.03751501441001892, 0.045760463923215866, 0.049579787999391556, 0.016874616965651512, -0.04697408154606819, -0.0365334153175354, 0.023719055578112602, 0.006478568073362112, -0.01685677096247673, -0.012323557399213314, 0.059038855135440826, 0.022915927693247795, -0.01845410279929638, -0.0353911854326725, 0.007063067052513361, -0.02352273464202881, -0.011011781170964241, -0.027288515120744705, -0.011065322905778885, -0.031357698142528534, -0.04047766700387001, 0.016865694895386696, 0.05329202488064766, -0.007687722332775593, -0.0028087180107831955, 0.024879129603505135, 0.042940594255924225, -0.05286369100213051, -0.037158068269491196, 0.0391569659113884, -0.001212500617839396, 0.00539434514939785, 0.025075450539588928, 0.02625337243080139, -0.027538377791643143, 0.015125582925975323, 0.009298441000282764, -0.03439173847436905, -0.010262195020914078, 0.022612523287534714, -0.03862154856324196, 0.0038304757326841354, 0.028287963941693306, -0.02029237523674965, 0.004406051244586706, 0.09494761377573013, 0.012493106536567211, -0.006947059649974108, -0.045903243124485016, -0.00761187169700861, -0.019096605479717255, -0.06093066558241844, -0.007986664772033691, -0.06942597776651382, -0.056040506809949875, -0.03274978697299957, 0.03148262947797775, -0.019007369875907898, 0.05136451497673988, -0.13206999003887177, 0.047438111156225204, 0.01918584294617176, 0.05036506801843643, 0.007129994686692953, 0.0535418875515461, 0.03562320023775101, 0.014518775045871735, -0.006706121377646923, 0.013581791892647743, 0.019524941220879555, -0.023611972108483315, -0.020328069105744362, 0.13792389631271362, -0.022630371153354645, -0.0075092497281730175, 0.04790214076638222, 0.006746277678757906, 0.02975144237279892, -0.049686871469020844, 0.03719376400113106, 0.060716498643159866, -0.01973910816013813, 0.0210062675178051, 0.024647114798426628, -0.03833599016070366, 0.02934095449745655, 0.024058153852820396, 0.017169097438454628, 0.032482076436281204, -0.00019855116261169314, 0.054755501449108124, -0.02875199355185032, 0.026485387235879898, -0.034480974078178406, 0.048009224236011505, 0.026699554175138474, 0.0541130006313324, -0.0020055898930877447, -0.01479540765285492, 0.054755501449108124, -0.04665283113718033, 0.023469192907214165, -0.008147289976477623, -0.04269073158502579, 0.0336778461933136, 0.021952172741293907, -0.020417306572198868, -0.07952754944562912, 0.006795357912778854, 0.056040506809949875, -0.08616673946380615, -0.006219782400876284, -0.035052087157964706, -0.04750949889421463, -0.06856931000947952, -0.017392190173268318, 0.024843435734510422, -0.05432716757059097, -0.04840186610817909, 0.07317391037940979, 0.006193011533468962, -0.021345365792512894, 0.020827794447541237, -0.07645781338214874, 0.01585732214152813, -0.0071478416211903095, -0.04297628626227379, 0.02564656361937523, -0.01183275692164898, 0.020113902166485786, -0.024896977469325066, -0.04033488780260086, 0.030215471982955933, -0.08352534472942352, 0.004675991367548704, 0.041262947022914886, -0.0027462525758892298, -0.03132200241088867, -0.00007989453297341242, -0.026735248044133186, 0.004693838767707348, -0.045903243124485016, -0.00402456521987915, 0.037015289068222046, 0.0002827681018970907, -0.0032682858873158693, -0.004921391606330872, -0.04072752967476845, -0.015553917735815048, 0.026110593229532242, -0.01847195066511631, 0.00560405058786273, 0.08274006098508835, 0.03246423229575157, -0.0010931468568742275, -0.0569685660302639, 0.008464080281555653, -0.010378202423453331, -0.05671870335936546, 0.03071519546210766, 0.0042097307741642, -0.020113902166485786, 0.10686960816383362, -0.06242983788251877, -0.012528801336884499, 0.0009793703211471438, 0.0016731839859858155, -0.05093618109822273, -0.038728632032871246, -0.026467539370059967, 0.055326614528894424, 0.05836065486073494, 0.043904345482587814, 0.011386574245989323, -0.007968817837536335, -0.01722264103591442, -0.017517119646072388, -0.004406051244586706, 0.06421457231044769, 0.07967032492160797, 0.0010011217091232538, -0.052221186459064484, 0.02355843037366867, -0.04497518390417099, 0.03705098479986191, -0.035159170627593994, -0.017169097438454628, 0.027324208989739418, 0.019774803891777992, 0.01972126215696335, 0.026021357625722885, 0.0834539532661438 ]
729,300
cryptography.hazmat.primitives.ciphers.algorithms
AES
null
class AES(BlockCipherAlgorithm): name = "AES" block_size = 128 # 512 added to support AES-256-XTS, which uses 512-bit keys key_sizes = frozenset([128, 192, 256, 512]) def __init__(self, key: bytes): self.key = _verify_key_size(self, key) @property def key_size(self) -> int: return len(self.key) * 8
(key: bytes)
[ 0.06461650133132935, -0.09101854264736176, 0.0016744282329455018, 0.052174583077430725, 0.012775181792676449, -0.028179459273815155, -0.021273454651236534, -0.03806633874773979, 0.012266025878489017, 0.0038695840630680323, 0.043509677052497864, 0.0038232970982789993, -0.01212716568261385, 0.061357904225587845, 0.0008204351179301739, 0.0099331671372056, 0.005984894931316376, -0.03606674447655678, 0.00807243399322033, -0.00983133539557457, 0.022217707708477974, 0.0726148709654808, -0.006345932837575674, 0.02266206219792366, 0.0017612162046134472, 0.10183116048574448, 0.06972657144069672, 0.017376098781824112, 0.040880583226680756, -0.0755402073264122, -0.03984375670552254, 0.014858092181384563, 0.014163788408041, 0.057543862611055374, -0.00433476734906435, -0.07798415422439575, 0.057062480598688126, 0.0485086627304554, -0.03343765065073967, -0.02060692384839058, -0.008553817868232727, 0.017200209200382233, 0.059950780123472214, -0.061617109924554825, 0.01608932390809059, 0.04880489781498909, 0.021773353219032288, 0.03876990079879761, -0.0553591214120388, -0.02988281659781933, 0.014432252384722233, -0.04373185336589813, 0.040028903633356094, 0.05580347403883934, -0.002953103743493557, 0.0683935135602951, -0.024457992985844612, 0.0009587172535248101, -0.051063697785139084, 0.06517194211483002, -0.04669421538710594, -0.05332249775528908, 0.04539818316698074, -0.03432635962963104, -0.053248438984155655, -0.022995326668024063, -0.09124071896076202, 0.02982727251946926, 0.009627673774957657, 0.03360428288578987, 0.05769198015332222, 0.01910722814500332, -0.023124931380152702, 0.027050059288740158, -0.04647203907370567, 0.006308903452008963, -0.08376076072454453, 0.05909910053014755, -0.004600916989147663, -0.031401026993989944, 0.00823906622827053, -0.003952900413423777, 0.010655242018401623, -0.006563480943441391, 0.030623406171798706, -0.02605026215314865, 0.035437244921922684, -0.006253358907997608, 0.009220348671078682, -0.013923096470534801, -0.042213644832372665, 0.05895098298788071, -0.01369166187942028, 0.06357967108488083, 0.01113662589341402, -0.018403667956590652, 0.02643907256424427, -0.0403621681034565, -0.005920093506574631, 0.009326808154582977, -0.019125742837786674, 0.022217707708477974, 0.06357967108488083, -0.02236582525074482, -0.035437244921922684, -0.007035607472062111, -0.028957078233361244, -0.002848958130925894, 0.007128181401640177, -0.0205143503844738, 0.05950642749667168, 0.023291563615202904, -0.027309264987707138, 0.02867935784161091, -0.026253923773765564, 0.010969992727041245, 0.002269214717671275, 0.0065264515578746796, -0.013830523006618023, 0.009289778769016266, 0.03151211515069008, 0.008248323574662209, -0.031104790046811104, -0.005957122892141342, 0.053211409598588943, -0.013830523006618023, 0.019199801608920097, -0.01746867224574089, -0.02956806682050228, 0.0014256362337619066, 0.015117298811674118, 0.005591456312686205, 0.005836776923388243, 0.050026871263980865, -0.0035131750628352165, -0.030142024159431458, 0.054914768785238266, 0.04013999179005623, -0.02516155317425728, 0.08664906024932861, 0.036899909377098083, 0.05439635366201401, 0.021865926682949066, -0.027716590091586113, -0.014126759022474289, -0.02262503281235695, -0.013728692196309566, -0.0856122300028801, 0.006156156305223703, 0.0033141414169222116, -0.003904299344867468, 0.03473368287086487, 0.014737745746970177, 0.032345280051231384, 0.034622594714164734, -0.025735510513186455, -0.012321569956839085, -0.007947458885610104, -0.01575605757534504, -0.03965860977768898, -0.03136399760842323, 0.02949400618672371, -0.06372778862714767, -0.02605026215314865, 0.009400867857038975, -0.01944049447774887, -0.04621283337473869, -0.03382645919919014, -0.013497257605195045, -0.040584344416856766, -0.01966267079114914, -0.06095057725906372, -0.05050825700163841, 0.03293775022029877, 0.05558129772543907, 0.03943642973899841, -0.04425026848912239, -0.04373185336589813, 0.07894691824913025, -0.100275918841362, -0.022217707708477974, 0.02399512380361557, -0.03828851506114006, 0.004387997090816498, 0.022865723818540573, 0.0034044007770717144, 0.0328822061419487, 0.0690230131149292, 0.04576847702264786, -0.06183928623795509, -0.06146899238228798, -0.011303259059786797, -0.049471430480480194, 0.008192779496312141, -0.01579308696091175, 0.010368263348937035, 0.006943033542484045, -0.006961548235267401, -0.04961954802274704, 0.0638018473982811, -0.07865068316459656, 0.02549481950700283, 0.03512249141931534, -0.030271627008914948, 0.01609858125448227, 0.009262006729841232, -0.013552801683545113, 0.022051075473427773, -0.02558739297091961, -0.01002574060112238, -0.0018387467134743929, -0.018227778375148773, 0.009812820702791214, 0.08294610679149628, 0.044842738658189774, -0.03995484486222267, 0.01699654571712017, 0.026383528485894203, 0.019459009170532227, 0.026679763570427895, 0.1168651431798935, 0.006892118137329817, 0.00862787663936615, -0.007452189456671476, 0.0504712276160717, -0.020162569358944893, 0.023624829947948456, -0.010951478034257889, -0.0745404064655304, -0.0060867262072861195, 0.020921675488352776, 0.03632595017552376, -0.0101738590747118, 0.06824538856744766, 0.010229403153061867, -0.02901262231171131, 0.02292126789689064, -0.026198379695415497, -0.03186389431357384, -0.07476258277893066, 0.013441713526844978, 0.0066791982389986515, 0.03375240042805672, 0.0016570707084611058, -0.04991578310728073, -0.03854772448539734, -0.018227778375148773, 0.10508975386619568, -0.038732871413230896, -0.02334710769355297, -0.011173655278980732, -0.03565942123532295, -0.006549594923853874, -0.034400418400764465, 0.004119533114135265, -0.02103276364505291, -0.03227122128009796, -0.014821062795817852, 0.0005270919646136463, -0.017505701631307602, 0.011497663334012032, 0.009479555301368237, -0.04550927132368088, 0.05095260962843895, 0.07154101878404617, 0.006035810802131891, 0.023402651771903038, 0.036251891404390335, -0.02545779012143612, 0.026365013793110847, 0.09598049521446228, -0.004302366636693478, -0.005540540907531977, 0.02545779012143612, -0.003429858712479472, -0.020921675488352776, 0.002953103743493557, 0.05439635366201401, -0.015191357582807541, 0.0034090294502675533, 0.02742035500705242, -0.023847006261348724, -0.012738152407109737, 0.017755651846528053, 0.008942627348005772, -0.001106835319660604, -0.020810585469007492, -0.04013999179005623, 0.007248526904731989, -0.0017635305412113667, -0.026365013793110847, 0.019347921013832092, -0.016941001638770103, 0.0050267563201487064, 0.050545286387205124, -0.004813836887478828, -0.01760753244161606, 0.009942424483597279, 0.05687732994556427, -0.021477118134498596, -0.04632392153143883, 0.0377701036632061, -0.00886393990367651, 0.030142024159431458, -0.01897762529551983, -0.028697872534394264, -0.007429046090692282, -0.004471313674002886, 0.010479352436959743, 0.025272643193602562, 0.018746191635727882, 0.017977828159928322, 0.0052535622380673885, -0.0045731449499726295, 0.018783221021294594, 0.019033169373869896, 0.052767056971788406, -0.005202646367251873, -0.026087291538715363, 0.07331843674182892, -0.0007735696854069829, -0.011395832523703575, -0.04928627982735634, -0.007424417417496443, -0.014598885551095009, -0.028253518044948578, 0.042435821145772934, -0.07916909456253052, 0.018653616309165955, 0.00045332222362048924, -0.04776807129383087, 0.023809976875782013, 0.026901941746473312, -0.017533473670482635, -0.11708731949329376, 0.004205164033919573, -0.009234234690666199, 0.03512249141931534, -0.0061468989588320255, -0.021143851801753044, 0.04769401252269745, -0.02605026215314865, -0.018107431009411812, -0.02073652669787407, -0.06265393644571304, -0.06424620747566223, -0.020366232842206955, -0.07761386036872864, -0.021014248952269554, -0.00521653238683939, 0.019773758947849274, -0.04184335097670555, 0.03266002982854843, 0.03349319472908974, 0.06461650133132935, -0.04106573015451431, -0.03502991795539856, -0.018348123878240585, 0.009039829485118389, 0.0030155908316373825, 0.02699451521039009, -0.031956467777490616, -0.010507124476134777, -0.01071078609675169, -0.06320937722921371, 0.01979227364063263, 0.032863691449165344, -0.09101854264736176, 0.062468789517879486, -0.014006413519382477, 0.0015563967172056437, -0.05906207114458084, -0.004353282041847706, 0.019496038556098938, 0.02597620338201523, -0.016931744292378426, -0.07576238363981247, 0.019347921013832092, -0.020810585469007492, 0.028346091508865356, 0.023847006261348724, 0.008641762658953667, 0.0628390833735466, 0.006063582841306925, -0.01995890773832798, 0.04984172433614731, -0.01626521348953247, -0.01760753244161606, 0.05332249775528908, 0.056729212403297424, -0.0170891210436821, 0.024587595835328102, -0.05850663036108017, -0.00604043947532773, -0.04365779459476471, 0.03525209426879883, -0.021921470761299133, -0.005984894931316376, -0.020458806306123734, -0.0007799341110512614, 0.03771455958485603, -0.01371017750352621, 0.02288423851132393, 0.023273048922419548, 0.0043764254078269005, 0.02288423851132393, 0.03876990079879761, 0.005781232845038176, -0.016579965129494667, 0.010044255293905735, 0.010488609783351421, 0.04169522970914841, -0.017061347141861916, -0.019366435706615448, -0.030197568237781525, -0.06583847105503082, 0.020107025280594826, -0.0485086627304554, 0.019551582634449005, 0.021884441375732422, 0.03769604489207268, 0.014432252384722233, -0.014043442904949188, -0.027716590091586113, -0.015395020134747028, 0.030142024159431458, 0.008743593469262123, -0.006577367428690195, -0.01152543630450964, -0.031697262078523636, -0.050804492086172104, 0.029438462108373642, 0.013580573722720146, -0.017033575102686882, -0.03656664490699768, -0.0410287007689476, -0.006507936865091324, -0.04928627982735634, -0.0028512724675238132, -0.011118111200630665, -0.0021789553575217724, -0.03330804780125618, -0.0006457021227106452, 0.07635485380887985, 0.011497663334012032, -0.02497640624642372, -0.045953623950481415, 0.07546614855527878, 0.048693809658288956, -0.004600916989147663, 0.03164171800017357, 0.00592472217977047, 0.004795321729034185, -0.017755651846528053, 0.033937547355890274, -0.033289533108472824, 0.028531240299344063, -0.0022715292870998383, -0.014515569433569908, -0.03499288856983185, -0.018607329577207565, -0.014052700251340866, 0.0032724831253290176, -0.04669421538710594, -0.0036566643975675106, 0.0011097282404080033, 0.006776400841772556, 0.0071466960944235325, 0.0888708308339119, 0.019384950399398804, -0.00787340011447668, 0.007956716232001781, -0.024569081142544746, -0.01931089162826538, 0.03536318615078926, -0.003418286796659231, 0.03369685634970665, 0.004089446738362312, -0.061394933611154556, -0.0667642131447792, -0.01880173571407795, -0.008373298682272434, -0.020014451816678047, -0.012321569956839085, 0.06202443316578865, -0.05824742466211319, 0.0035710337106138468, -0.022865723818540573, 0.028012827038764954, 0.02416175790131092, -0.07331843674182892, 0.0485086627304554, -0.013987898826599121, 0.060543254017829895, -0.011303259059786797, -0.007160582114011049, 0.013812008313834667, 0.004003816284239292, -0.0406954362988472, -0.009414753876626492, -0.02790173701941967, 0.007188354153186083, 0.011960532516241074, -0.07220754772424698, 0.04699045047163963, 0.016931744292378426, -0.06383887678384781, -0.023458195850253105, 0.04173225909471512, -0.006054325494915247, 0.0028952450957149267, -0.022291766479611397, 0.04743480682373047, -0.04047325626015663, 0.06406106054782867, 0.02699451521039009, -0.03310438618063927, 0.019755244255065918, 0.040288109332323074, 0.008512158878147602, 0.005582198966294527, 0.025994718074798584, 0.024013638496398926, 0.033159930258989334, -0.000599993800278753, 0.05365576222538948, 0.006438506301492453, -0.08168710768222809, 0.0034877171274274588, 0.04576847702264786, -0.04025107994675636, -0.005609971005469561, -0.018348123878240585, 0.031234394758939743, -0.0307715255767107, 0.04443541541695595, -0.014580370858311653, 0.022606518119573593, 0.00612838426604867, -0.0374368391931057, -0.010701528750360012, 0.01764456368982792, 0.04565738886594772, -0.057025451213121414, -0.07024498283863068, 0.06809727102518082, -0.017153922468423843, 0.00405704602599144, -0.004596288315951824, -0.04128790646791458, -0.006457021459937096, 0.011756869964301586, -0.014598885551095009, -0.07154101878404617, 0.07339249551296234, -0.14367450773715973, 0.04610174521803856, -0.03495585918426514, -0.03747386857867241, 0.045435212552547455, 0.028512725606560707, 0.03193795308470726, -0.03714060038328171, -0.025698481127619743, 0.02214364893734455, 0.005693287588655949, 0.01356205902993679, 0.022254737094044685, 0.012293797917664051, 0.010766331106424332, -0.03223419189453125, 0.03167874738574028, 0.0452500656247139, 0.0005843719700351357, -0.034492991864681244, 0.015246901661157608, -0.05387794226408005, 0.028920048847794533, -0.015145070850849152, -0.08161304891109467, -0.027827678248286247, 0.008738964796066284, -0.009664703160524368, 0.017792681232094765, 0.0029762471094727516, 0.015200614929199219, 0.009299036115407944, -0.013256565667688847, -0.03145657107234001, 0.032382309436798096, -0.019903363659977913, -0.058099307119846344, 0.021902956068515778, 0.0093175508081913, -0.03149360045790672, 0.031012216582894325, -0.01468220166862011, 0.017440900206565857, -0.002033151686191559, 0.006424620281904936, -0.006521822884678841, 0.0007573692710138857, 0.01897762529551983, 0.0680232122540474, 0.06887489557266235, 0.03236379474401474, -0.04965657740831375, 0.04821242392063141, -0.031215880066156387, 0.008975028060376644, -0.0011461791582405567, 0.007429046090692282, 0.025402246043086052, -0.04710153862833977, 0.009257378056645393, 0.0015228387201204896, -0.004332453012466431, 0.01380275096744299, 0.03780713304877281, -0.036122288554906845, -0.032345280051231384, 0.08546411246061325, -0.045990653336048126, 0.02158820629119873, -0.07376278936862946, 0.024050667881965637, -0.01320102158933878, -0.014885864220559597, -0.052989233285188675, -0.0106644993647933, -0.0019544640090316534, 0.011469891294836998, 0.060580283403396606, -0.003807096742093563, 0.03969563916325569, -0.0033997721038758755, 0.01879247836768627, 0.07176319509744644, 0.03295626491308212, 0.020069995895028114, -0.008289982564747334, 0.02347671054303646, 0.02142157219350338, -0.006452392786741257, -0.019421979784965515, -0.002890616422519088, 0.016367044299840927, 0.0043069953098893166, -0.013497257605195045, -0.038436632603406906, -0.03034568578004837, -0.03795525059103966, 0.03969563916325569, -0.043805912137031555, 0.013256565667688847, -0.059173163026571274, -0.002798042492941022, -0.0013110762229189277, 0.043620765209198, -0.05950642749667168, -0.012201224453747272, -0.001791302696801722, -0.02760550193488598, 0.049212221056222916, -0.0015783830313012004, -0.047360748052597046, 0.011108853854238987, -0.007021721452474594, 0.001496223732829094, 0.04958251863718033, 0.0439540334045887, 0.05347061529755592, -0.026716792955994606, -0.03780713304877281, 0.0008962299325503409, 0.013108447194099426, -0.006947662215679884, -0.044620562344789505, 0.024624625220894814, 0.003693693783134222, 0.013025131076574326, 0.03245636820793152, -0.032123103737831116, -0.0356409065425396, -0.021014248952269554, 0.00044724709005095065, -0.03399309143424034, 0.016033779829740524, -0.03369685634970665, -0.13175100088119507, 0.00343911605887115, -0.02643907256424427, 0.044324327260255814, -0.0068504600785672665, -0.025013435631990433, -0.033159930258989334, 0.03204904496669769, -0.00033963005989789963, 0.026420557871460915, -0.01072930172085762, -0.03404863551259041, 0.006457021459937096, -0.022717606276273727, -0.002158126328140497, -0.008331640623509884, 0.029049653559923172, -0.04799024760723114, -0.013265823014080524, 0.026253923773765564, -0.016894714906811714, 0.05443338304758072, -0.010294204577803612, -0.0038394976872950792, -0.039214253425598145, 0.02008851058781147, 0.10138680785894394, -0.0020805958192795515, 0.0007718339329585433, -0.019884848967194557, 0.046805303543806076, -0.011756869964301586, 0.05102666839957237, 0.036029715090990067, -0.007498476188629866, -0.05258190631866455, -0.036807335913181305, -0.015533880330622196, 0.021699294447898865, 0.034492991864681244, 0.03373388573527336, 0.025291157886385918, 0.0014939093962311745, -0.04799024760723114, 0.044583532959222794, -0.016644766554236412, -0.02956806682050228, -0.013163992203772068, -0.06728262454271317, -0.010470095090568066, 0.0615430511534214, 0.003311827080324292, 0.018903566524386406, 0.0028929307591170073, 0.024346904829144478, 0.012293797917664051, 0.005878434982150793, 0.0083455266430974, 0.06606064736843109, 0.006262616254389286, 0.029716184362769127, -0.03910316526889801, 0.013497257605195045, -0.007364244200289249, 0.06439432501792908, 0.036085259169340134, -0.05932128056883812, -0.038732871413230896, -0.02412472665309906, -0.025531848892569542, -0.0667642131447792, -0.0615430511534214, -0.05658109486103058, 0.013950868509709835, 0.00038447047700174153, -0.014497053809463978, -0.009030572138726711, 0.03558536246418953, 0.04143602401018143 ]
729,301
cryptography.hazmat.primitives.ciphers.algorithms
__init__
null
def __init__(self, key: bytes): self.key = _verify_key_size(self, key)
(self, key: bytes)
[ 0.027599433436989784, -0.01354712899774313, -0.05486208200454712, 0.0871596485376358, -0.005889507010579109, -0.023170726373791695, 0.009749891236424446, 0.0355306938290596, 0.0516626350581646, -0.023574866354465485, 0.015433117747306824, 0.046038348227739334, 0.04300729185342789, 0.04395028576254845, -0.02864346280694008, 0.017933737486600876, 0.03640633076429367, 0.02024070732295513, -0.013538708910346031, -0.011644300073385239, -0.023170726373791695, 0.058701418340206146, 0.0281719658523798, 0.04064980521798134, -0.01280620414763689, 0.08466745167970657, 0.04031302034854889, 0.021554164588451385, 0.09160519391298294, -0.05324552208185196, -0.02802041359245777, 0.010019318200647831, 0.06813136488199234, 0.10009215027093887, -0.013606065884232521, -0.0691080391407013, 0.034823447465896606, -0.009901444427669048, -0.09699373692274094, 0.0014429081929847598, 0.011290676891803741, 0.046105705201625824, 0.025915514677762985, -0.052976094186306, 0.047116056084632874, 0.060183268040418625, 0.01425437442958355, 0.05142688751220703, -0.05775842443108559, 0.010347682982683182, -0.02877817675471306, 0.006537815555930138, 0.02796989493072033, 0.004475014749914408, -0.01724333129823208, 0.0791441947221756, 0.017664311453700066, 0.00006528475205413997, -0.051999419927597046, 0.04038037732243538, -0.0563439317047596, -0.006613592151552439, -0.0019975490868091583, -0.04203062132000923, -0.010187710635364056, -0.014549060724675655, -0.06584123522043228, 0.007632363121956587, 0.041020266711711884, 0.01737804524600506, 0.0711287409067154, 0.0315229631960392, -0.044758569449186325, 0.055165186524391174, -0.013151408173143864, 0.033493150025606155, -0.09517510235309601, 0.01850626990199089, -0.016813931986689568, -0.009185777977108955, 0.04913675785064697, -0.01294091809540987, -0.00005022156983613968, -0.0059821223840117455, 0.011728496290743351, 0.0181021299213171, 0.06274282187223434, -0.009690954349935055, -0.00020812186994589865, 0.038258641958236694, -0.062271326780319214, 0.06419099122285843, -0.08507159352302551, 0.023086531087756157, 0.03714725375175476, -0.01663712039589882, 0.02086375653743744, -0.01197266485542059, -0.017125457525253296, 0.008722701109945774, -0.019365068525075912, 0.004588679410517216, 0.023844294250011444, 0.008255412802100182, -0.028188804164528847, -0.01263781264424324, -0.011880048550665379, -0.02844139188528061, -0.029872724786400795, 0.015584670938551426, 0.02406320348381996, -0.005801101215183735, -0.012957757338881493, 0.060924191027879715, -0.03431827202439308, 0.037652429193258286, 0.012587294913828373, -0.03292061761021614, 0.03438562527298927, 0.018455753102898598, 0.05880245193839073, -0.006861970294266939, -0.05816256254911423, 0.01488584466278553, 0.046577200293540955, -0.006020010448992252, 0.03164083883166313, 0.008739539422094822, 0.038191284984350204, -0.021823590621352196, 0.03292061761021614, 0.03431827202439308, -0.014001786708831787, 0.03768610954284668, -0.024164238944649696, -0.04735180363059044, 0.01603090949356556, 0.023760097101330757, -0.04812640696763992, 0.05371701717376709, 0.030142150819301605, 0.06547077000141144, 0.07537221908569336, -0.04182855039834976, 0.02837403677403927, -0.021823590621352196, -0.05583875626325607, -0.04933882877230644, -0.023355957120656967, 0.0007577635697089136, 0.0012576770968735218, 0.007337677292525768, 0.04213165491819382, 0.011374873109161854, 0.044825926423072815, -0.04580259695649147, 0.002027017530053854, -0.029687492176890373, 0.005780051928013563, -0.005308554973453283, -0.0017765345983207226, 0.0022332975640892982, -0.013201924972236156, -0.10379677265882492, -0.01751275733113289, -0.011938986368477345, -0.04250211641192436, -0.02909812144935131, 0.014658515341579914, 0.009244715794920921, -0.028205644339323044, -0.05115745961666107, -0.06520134210586548, 0.024837806820869446, 0.030125312507152557, 0.02079639956355095, -0.019280873239040375, -0.01715913601219654, 0.01197266485542059, -0.03332475945353508, -0.005687436554580927, 0.009648855775594711, 0.01811896823346615, -0.004710763692855835, 0.043546147644519806, 0.0703878179192543, 0.018556788563728333, 0.08156903833150864, 0.030074793845415115, -0.02924967370927334, -0.047856979072093964, 0.004470805171877146, -0.025090394541621208, -0.005342232994735241, 0.013656583614647388, 0.0006114731077104807, 0.00546431727707386, -0.010920215398073196, -0.07261058688163757, 0.07941362261772156, -0.029333868995308876, -0.016898127272725105, 0.004323462024331093, -0.047116056084632874, -0.03177555277943611, 0.01270516961812973, -0.014675354585051537, 0.029603296890854836, 0.02091427519917488, -0.007699720095843077, 0.030933592468500137, -0.07166759669780731, -0.010768662206828594, 0.03586747497320175, 0.006323115900158882, -0.08567780256271362, -0.011779014021158218, -0.0036730484571307898, 0.030142150819301605, 0.026117583736777306, 0.1334337443113327, 0.05007975175976753, -0.005931604653596878, -0.06449410319328308, -0.004668665584176779, 0.021503645926713943, 0.009438366629183292, 0.0012071594828739762, -0.05526622384786606, -0.020089155063033104, 0.024096881970763206, 0.005022288765758276, -0.0154246985912323, 0.046038348227739334, -0.0021080560982227325, -0.0697142481803894, 0.02219405397772789, -0.00881531648337841, -0.018405234441161156, -0.06526870280504227, 0.014405927620828152, -0.006811452563852072, 0.010937054641544819, 0.019365068525075912, -0.01796741597354412, -0.01976921036839485, -0.037383001297712326, 0.06957953423261642, -0.012301028706133366, 0.0025406128261238337, -0.025561891496181488, -0.05580507591366768, -0.028677141293883324, -0.025056716054677963, 0.030815718695521355, -0.016830770298838615, -0.03231440484523773, -0.05277402326464653, 0.030074793845415115, 0.013395575806498528, 0.0010092989541590214, 0.022615032270550728, -0.03197762370109558, 0.014860585331916809, 0.014911103062331676, 0.011736915446817875, 0.011475908569991589, 0.020207028836011887, 0.02871081978082657, -0.007367145735770464, 0.039875201880931854, -0.004736022558063269, -0.023456992581486702, 0.02810460887849331, -0.002801620401442051, -0.03393096849322319, 0.00431083282455802, 0.008057552389800549, 0.019617656245827675, 0.011088606901466846, 0.06328167766332626, -0.03815760463476181, 0.037652429193258286, 0.021705716848373413, -0.013883912935853004, 0.0009461520239710808, -0.015239467844367027, -0.027936216443777084, -0.016081426292657852, -0.03930266946554184, -0.028070930391550064, -0.006108416244387627, 0.004361350554972887, 0.024787288159132004, 0.024972518905997276, -0.04071716219186783, -0.0603516586124897, 0.00911842193454504, 0.045903634279966354, -0.020341742783784866, -0.014894263818860054, 0.02273290790617466, -0.05492943897843361, 0.009690954349935055, 0.00010892851423704997, 0.014456445351243019, -0.012242091819643974, 0.012174734845757484, -0.026791151612997055, 0.044084999710321426, 0.00382249616086483, 0.05600714683532715, -0.00808281172066927, 0.0027974105905741453, 0.037921857088804245, -0.0053169745951890945, 0.03903324529528618, 0.009269974194467068, -0.01598881185054779, 0.09463625401258469, 0.0032604881562292576, -0.003986678551882505, -0.0435798242688179, -0.019685013219714165, -0.009573079645633698, -0.026841670274734497, 0.03815760463476181, -0.05489576235413551, -0.003891957923769951, 0.009404688142240047, -0.03701253980398178, 0.02032490260899067, 0.02830667980015278, -0.027060579508543015, -0.08823736011981964, -0.014633256942033768, -0.009168939664959908, -0.007939678616821766, -0.02106582745909691, -0.04011095315217972, 0.023524349555373192, -0.04186222702264786, -0.01207369938492775, 0.0006746200961060822, -0.006899858359247446, -0.0757763609290123, -0.03795553371310234, -0.09766730666160583, 0.00006288385338848457, -0.052336204797029495, -0.011324355378746986, -0.013058791868388653, 0.044219713658094406, 0.032028138637542725, 0.06664951890707016, -0.032752227038145065, -0.007282949984073639, -0.02763311192393303, -0.008524839766323566, 0.011122285388410091, 0.0449269600212574, -0.004605518653988838, -0.06991631537675858, -0.0368778258562088, -0.02828983962535858, 0.0027995153795927763, 0.013968108221888542, -0.06089051440358162, 0.02655540406703949, 0.04930514842271805, -0.010793921537697315, -0.06388788670301437, -0.08938242495059967, 0.032095495611429214, 0.032348085194826126, -0.0020017586648464203, -0.06008223071694374, 0.06321432441473007, -0.02864346280694008, -0.000559376843739301, -0.006386262830346823, 0.027245810255408287, 0.026302816346287727, 0.03345947340130806, -0.02527562528848648, 0.03519390895962715, -0.009514142759144306, 0.00958991888910532, 0.09072955697774887, 0.05577139928936958, -0.01623298041522503, 0.015340502373874187, 0.001180848223157227, 0.024568378925323486, 0.014532221481204033, 0.061260975897312164, -0.0027721517253667116, -0.000935101299546659, 0.0018207374960184097, 0.01062552910298109, 0.05115745961666107, -0.01697390340268612, -0.029620137065649033, 0.0603516586124897, 0.02086375653743744, 0.03458769619464874, 0.0002687692758627236, -0.007872321642935276, -0.030866235494613647, -0.009556240402162075, 0.02520826831459999, -0.004643406718969345, 0.006773564498871565, -0.038797494024038315, -0.017394883558154106, -0.044084999710321426, 0.013201924972236156, -0.05681543052196503, 0.011913727037608624, 0.004689714405685663, 0.0068030329421162605, 0.02527562528848648, -0.008663763292133808, 0.0008277514716610312, -0.004963351413607597, 0.0214699674397707, 0.005594821181148291, -0.03815760463476181, 0.024248434230685234, -0.013218764215707779, -0.012797784991562366, 0.05620921775698662, 0.012924078851938248, 0.003300481243059039, -0.022631872445344925, 0.014338570646941662, -0.02118370123207569, -0.01153484545648098, -0.0017944262363016605, 0.029788527637720108, -0.043613504618406296, -0.032566994428634644, 0.055569328367710114, 0.047587551176548004, 0.03728196769952774, -0.013496611267328262, -0.014675354585051537, 0.08837207406759262, 0.04149176552891731, -0.03586747497320175, 0.004550791345536709, -0.025056716054677963, -0.006908277980983257, -0.05439058691263199, -0.0011513796634972095, -0.03332475945353508, -0.026302816346287727, 0.011677978560328484, 0.008533259853720665, -0.05668071657419205, -0.04304097220301628, 0.04098659008741379, -0.009463625028729439, -0.0254776943475008, -0.04041405767202377, 0.05338023230433464, -0.011341194622218609, 0.032028138637542725, 0.046173062175512314, -0.015306823886930943, -0.015736224129796028, 0.0022059339098632336, 0.012881981208920479, 0.01012877281755209, 0.013589226640760899, 0.002881606575101614, 0.07739292085170746, 0.006154723931103945, -0.06297857314348221, -0.05792681500315666, 0.019685013219714165, -0.013563968241214752, 0.007316628471016884, 0.026673277840018272, 0.011475908569991589, -0.0509553886950016, -0.060452692210674286, -0.015231047756969929, 0.007602894678711891, 0.0429399348795414, -0.07207173854112625, 0.05344758927822113, -0.03519390895962715, 0.06422467529773712, 0.05045021325349808, 0.004837057553231716, -0.001481848768889904, 0.02468625269830227, -0.023692741990089417, -0.020291224122047424, -0.04280522093176842, 0.01709177903831005, 0.01099599152803421, -0.023052852600812912, 0.002260661218315363, 0.026858508586883545, -0.07537221908569336, -0.010044577531516552, 0.04748651757836342, -0.016830770298838615, 0.010187710635364056, 0.017748506739735603, -0.0037951325066387653, -0.014995299279689789, 0.03519390895962715, 0.031034627929329872, -0.08877621591091156, -0.01619088090956211, -0.02877817675471306, 0.023979008197784424, 0.017049679532647133, 0.07065724581480026, 0.07180231064558029, -0.04991136118769646, 0.001492373296059668, 0.016291916370391846, -0.0023069691378623247, -0.061260975897312164, 0.0382249616086483, 0.040885552763938904, -0.043680861592292786, -0.029485423117876053, 0.02466941438615322, -0.00327732739970088, -0.010768662206828594, 0.03189342841506004, -0.02172255516052246, 0.026572242379188538, -0.026235459372401237, -0.03795553371310234, 0.012317867949604988, 0.014094402082264423, 0.018186325207352638, -0.06917539238929749, -0.04654352366924286, 0.08520630747079849, -0.01434699073433876, 0.023709580302238464, -0.0912010595202446, -0.02796989493072033, -0.033627863973379135, -0.0005898979143239558, 0.022345606237649918, -0.04038037732243538, 0.06459513306617737, -0.07927890866994858, 0.041020266711711884, -0.05553565174341202, 0.007539747748523951, 0.01427963376045227, 0.01983656734228134, 0.008773217909038067, -0.04182855039834976, -0.01049923524260521, -0.04172751307487488, -0.005771632771939039, -0.0456005297601223, -0.006087367422878742, 0.01816948689520359, 0.038325998932123184, -0.014102822169661522, 0.027060579508543015, 0.0011924251448363066, 0.032566994428634644, -0.05071964114904404, -0.016813931986689568, -0.05088803544640541, 0.06732308119535446, -0.011661139316856861, -0.09544453024864197, 0.038595423102378845, 0.016157202422618866, 0.03768610954284668, 0.04139073193073273, -0.03312268853187561, 0.003910901956260204, 0.006874599494040012, -0.01713387668132782, -0.05540093779563904, 0.00533381337299943, -0.023962168022990227, -0.059509698301553726, -0.019162999466061592, -0.016510825604200363, -0.021907787770032883, -0.01535734161734581, 0.04920411482453346, -0.03903324529528618, 0.007611314300447702, -0.011989504098892212, 0.04230004549026489, 0.01790005899965763, 0.014414346776902676, 0.07853798568248749, 0.05425587296485901, 0.037383001297712326, -0.04213165491819382, 0.08345502614974976, 0.010617109946906567, -0.009396268054842949, -0.03201130032539368, -0.0005851618479937315, 0.016317175701260567, -0.04533110186457634, -0.014195437543094158, 0.008192266337573528, 0.005190680269151926, -0.012107377871870995, -0.0024627316743135452, 0.010583431459963322, -0.011720076203346252, 0.05553565174341202, -0.0029152848292142153, 0.05270666629076004, -0.05189838632941246, -0.0006277860957197845, -0.007817594334483147, -0.014069143682718277, -0.01983656734228134, -0.0804913341999054, 0.009312072768807411, 0.005392750725150108, 0.011509587056934834, 0.007329257670789957, 0.03802289068698883, 0.0127388471737504, -0.004449755884706974, 0.04263683035969734, 0.03990888223052025, 0.07119609415531158, -0.016653958708047867, -0.008352238684892654, -0.016317175701260567, 0.030462095513939857, -0.03990888223052025, 0.01697390340268612, 0.004555000923573971, -0.016249818727374077, -0.010448717512190342, -0.04573523998260498, -0.020223867148160934, 0.008739539422094822, -0.00294896331615746, -0.005914765875786543, -0.006546235177665949, -0.06314696371555328, 0.02453470043838024, -0.00747660081833601, -0.018960928544402122, -0.03990888223052025, -0.007868112064898014, 0.013403995893895626, -0.008246993646025658, -0.002431158209219575, 0.026791151612997055, -0.022766586393117905, 0.017192812636494637, -0.02327176183462143, -0.03413303941488266, 0.023440152406692505, 0.030478935688734055, 0.006104206666350365, -0.02756575495004654, -0.024433664977550507, -0.0017333842115476727, -0.014616417698562145, 0.023524349555373192, -0.029519101604819298, 0.06846814602613449, 0.0355643704533577, 0.012856721878051758, 0.025696605443954468, -0.008339609019458294, -0.046173062175512314, -0.03164083883166313, 0.05338023230433464, 0.001412387122400105, 0.04206429794430733, -0.033560506999492645, -0.105952188372612, 0.026504885405302048, -0.05664703622460365, -0.000507543736603111, -0.03606954589486122, -0.05873509496450424, 0.0007077722111716866, -0.02374325878918171, -0.010575011372566223, 0.024433664977550507, -0.02138577215373516, -0.044623855501413345, -0.014473284594714642, -0.001262939302250743, 0.013286121189594269, -0.022985495626926422, -0.032146014273166656, -0.04869893938302994, 0.02990640327334404, 0.00928681343793869, -0.0027721517253667116, 0.04832847788929939, -0.005733744241297245, 0.006403102073818445, -0.10905059427022934, -0.00035020255018025637, 0.08816999942064285, -0.017167555168271065, -0.013732359744608402, -0.04068348556756973, 0.009269974194467068, 0.016763413324952126, 0.00015997230366338044, 0.023760097101330757, 0.016283497214317322, -0.005990542005747557, -0.038191284984350204, -0.015012138523161411, 0.001412387122400105, -0.017344366759061813, 0.02482096664607525, 0.04553317278623581, 0.0004975454648956656, -0.05927395075559616, 0.011779014021158218, -0.018809376284480095, -0.052470918744802475, -0.05893716588616371, -0.03734932467341423, 0.04930514842271805, 0.09638752788305283, -0.009185777977108955, 0.03580011799931526, 0.006579913664609194, 0.015433117747306824, 0.0004741284647025168, 0.018590467050671577, 0.013597646728157997, 0.03862910345196724, 0.014549060724675655, -0.003963524475693703, -0.03761875256896019, 0.0570174977183342, -0.003470978233963251, 0.024635735899209976, 0.00553167425096035, -0.022210892289876938, -0.04688030481338501, 0.044893283396959305, 0.03775346651673317, -0.02104898728430271, -0.05604082718491554, -0.05708485469222069, -0.006066318601369858, 0.01062552910298109, -0.0011840056395158172, 0.02709425799548626, 0.061328332871198654, 0.02669011615216732 ]
729,302
tinytuya.core
AESCipher
null
class AESCipher(_AESCipher_PyCrypto): CRYPTOLIB = CRYPTOLIB CRYPTOLIB_VER = '.'.join( [str(x) for x in Crypto.version_info] ) CRYPTOLIB_HAS_GCM = getattr( AES, 'MODE_GCM', False ) # only PyCryptodome supports GCM, PyCrypto does not
(key)
[ 0.07175219804048538, -0.06451911479234695, 0.015813330188393593, 0.04813617840409279, 0.045857757329940796, -0.07240317761898041, 0.007716796826571226, -0.013905605301260948, 0.004764794372022152, -0.000725003716070205, 0.049004148691892624, 0.0011312996502965689, -0.01280255988240242, 0.04535143822431564, 0.003096664324402809, -0.007129108998924494, -0.0032548881135880947, -0.0591304674744606, 0.02716023288667202, -0.05526076629757881, 0.023399028927087784, 0.04770219326019287, -0.013272710144519806, 0.047810688614845276, 0.007133629638701677, 0.07949160039424896, 0.04979978874325752, 0.03520704060792923, 0.03187981992959976, -0.07435610890388489, -0.02106635831296444, -0.02027072012424469, 0.027756961062550545, 0.023308614268898964, -0.01618402637541294, -0.03663557395339012, 0.07066723704338074, 0.004823563154786825, -0.00783433485776186, -0.05146339535713196, 0.0060983942821621895, 0.008801760151982307, 0.058660317212343216, -0.04990828409790993, -0.007364184129983187, 0.03072252683341503, -0.0014827823033556342, 0.047087378799915314, -0.01222391240298748, 0.0075721354223787785, 0.011808010749518871, -0.04734053835272789, 0.04697888344526291, 0.06191520392894745, -0.01990906521677971, 0.08368679136037827, -0.02755805291235447, 0.030433204025030136, -0.02893233858048916, 0.044519636780023575, -0.030993767082691193, -0.05938362330198288, 0.03404974564909935, -0.003960113972425461, -0.010759213007986546, -0.009529588744044304, -0.06422979384660721, 0.03725038468837738, 0.011346901766955853, 0.06209602952003479, 0.015279890969395638, -0.004086692817509174, -0.04795534908771515, -0.007242125924676657, -0.06133655831217766, 0.004274300765246153, -0.05388648062944412, 0.09135385602712631, 0.0023168474435806274, -0.03014387935400009, 0.03338068351149559, -0.011591018177568913, 0.01624731533229351, 0.05037843436002731, 0.02782929316163063, -0.02338094636797905, -0.013091882690787315, 0.011717597022652626, 0.006012501660734415, -0.012097333557903767, -0.053090840578079224, 0.03186173737049103, 0.019764402881264687, 0.07732167094945908, 0.007680631708353758, -0.04535143822431564, 0.02307353913784027, 0.008327088318765163, 0.0031396106351166964, 0.006197849288582802, -0.011464439332485199, -0.00007981821545399725, -0.021373765543103218, -0.03659940883517265, -0.01831778697669506, -0.0299088042229414, -0.055586256086826324, 0.02942057140171528, 0.04404948651790619, -0.04057760536670685, 0.016446225345134735, 0.012097333557903767, 0.016654176637530327, -0.03341685235500336, -0.013797109015285969, -0.03301903232932091, -0.025930607691407204, -0.0012883931631222367, 0.005424813367426395, 0.022603388875722885, -0.023977674543857574, 0.006265659350901842, -0.014511375688016415, -0.01646430790424347, 0.07565806061029434, -0.010035905055701733, 0.005072200670838356, -0.025080719962716103, -0.017721056938171387, -0.007752962410449982, 0.02911316603422165, -0.015478800982236862, 0.018426282331347466, 0.01947508007287979, 0.0014127118047326803, -0.027503803372383118, 0.052476029843091965, 0.04614707827568054, -0.01660897023975849, 0.05960061773657799, -0.000006348373972286936, 0.01202500332146883, -0.0060983942821621895, -0.01173567958176136, 0.01786571927368641, 0.041011590510606766, -0.006460048723965883, -0.06028775870800018, 0.003098924644291401, -0.008037765510380268, 0.053452495485544205, 0.007278291508555412, 0.023037374019622803, 0.022965043783187866, 0.013950811699032784, -0.00018407634343020618, 0.004701504949480295, 0.010551261715590954, -0.010225772857666016, -0.042747531086206436, -0.006012501660734415, 0.03511662408709526, -0.06643588095903397, -0.01938466727733612, 0.08245716243982315, 0.0011640745215117931, -0.05041459947824478, -0.030776774510741234, 0.002235475229099393, -0.04112008586525917, -0.03960113599896431, -0.056743547320365906, -0.01707007922232151, -0.004382797051221132, 0.04578542336821556, 0.028950421139597893, -0.0699077621102333, -0.022874629124999046, 0.0673038512468338, -0.05475445091724396, -0.024917976930737495, 0.04593008756637573, -0.0401797853410244, 0.0641212910413742, 0.021590758115053177, 0.025225382298231125, 0.06759317219257355, 0.03725038468837738, 0.05041459947824478, -0.09815295785665512, -0.02636459283530712, -0.01018056645989418, -0.02280229888856411, -0.003157693427056074, -0.029836473986506462, 0.0262199304997921, -0.00836777500808239, -0.02115677297115326, -0.061625879257917404, 0.061625879257917404, -0.054790616035461426, 0.01853477954864502, 0.0017382006626576185, 0.0026536379009485245, -0.0017483721021562815, -0.04043294116854668, 0.005818112287670374, 0.021355682983994484, -0.020144140347838402, -0.034827303141355515, 0.04600241780281067, 0.001424013520590961, 0.015071939677000046, 0.06752084195613861, 0.0343933179974556, 0.02005372755229473, 0.026527337729930878, 0.035008128732442856, 0.014158762991428375, 0.03999895602464676, 0.06965460628271103, -0.0009160023182630539, -0.029312074184417725, -0.006256618071347475, 0.049763619899749756, -0.020343050360679626, 0.017811469733715057, 0.021898163482546806, -0.038299184292554855, 0.012314326129853725, 0.056562721729278564, -0.0018693002639338374, -0.02146417833864689, 0.06932911276817322, 0.02609335258603096, -0.03164474293589592, -0.0007153972401283681, 0.009918367490172386, -0.016997748985886574, -0.07442843914031982, 0.05761151760816574, 0.01898684725165367, 0.022386396303772926, 0.0737774595618248, 0.01718761771917343, -0.029800308868288994, -0.028245195746421814, 0.06249384954571724, -0.015496883541345596, -0.022729968652129173, -0.0008221982861869037, -0.01339928898960352, -0.028823841363191605, -0.07999791204929352, -0.026418840512633324, -0.04690655320882797, -0.04690655320882797, 0.02453823946416378, 0.01251323614269495, -0.03072252683341503, -0.03453797847032547, 0.007165274582803249, -0.057756178081035614, 0.05215054005384445, 0.08260182291269302, -0.0033091362565755844, 0.02426699921488762, 0.020198388025164604, -0.017115285620093346, 0.029944969341158867, 0.09880393743515015, -0.03130117431282997, 0.007260208483785391, 0.06271084398031235, 0.008390378206968307, -0.02320011891424656, -0.003476401325315237, 0.05837099254131317, 0.018552862107753754, 0.007359663490206003, 0.03475497290492058, 0.004927538800984621, -0.019276170060038567, 0.014258217997848988, -0.008616412058472633, -0.001535900286398828, -0.036780234426259995, -0.04032444581389427, 0.014728368259966373, 0.02679857797920704, -0.014619871973991394, 0.06256618350744247, 0.009285472333431244, 0.035767603665590286, 0.059672947973012924, 0.0376843698322773, 0.03121075965464115, 0.0393841452896595, 0.0712820515036583, -0.038118354976177216, -0.030903354287147522, 0.04770219326019287, -0.025189217180013657, 0.008765594102442265, -0.0075811767019331455, 0.007404870353639126, -0.003112486796453595, -0.002235475229099393, -0.01996331289410591, 0.048389334231615067, 0.0410839207470417, -0.004154502879828215, 0.026075270026922226, 0.019637824967503548, -0.0036029801703989506, 0.01709720306098461, 0.05348866060376167, -0.007395829074084759, -0.021988576278090477, 0.041988056153059006, -0.006356073077768087, 0.02036113291978836, -0.016346771270036697, -0.0064555280841887, 0.010433724150061607, -0.05489911139011383, 0.058515653014183044, -0.07272866368293762, 0.047593697905540466, 0.009719457477331161, -0.09974423795938492, 0.04281986132264137, 0.027015570551156998, -0.008774635381996632, -0.03905865550041199, 0.04448347166180611, -0.04603858292102814, 0.008512436412274837, -0.021229103207588196, -0.0029203579761087894, 0.021988576278090477, -0.056779712438583374, -0.04462813213467598, -0.0060983942821621895, -0.08636303246021271, -0.05081241950392723, -0.008218592032790184, -0.03526128828525543, -0.03999895602464676, -0.039890460669994354, 0.003761203959584236, -0.040288280695676804, 0.02898658625781536, 0.06328948587179184, 0.04350700229406357, -0.028751511126756668, -0.02182583324611187, 0.007350622210651636, 0.04307301715016365, -0.010270980186760426, -0.0009736409992910922, -0.0035442113876342773, 0.009972615167498589, -0.00735514285042882, -0.10603702068328857, 0.01813695952296257, -0.0027056257240474224, -0.06770166754722595, 0.06115572899580002, -0.027594218030571938, 0.017241865396499634, -0.02280229888856411, 0.00048003948177210987, 0.03133733943104744, -0.011401149444282055, -0.038118354976177216, -0.06256618350744247, 0.0047783562913537025, -0.03468263894319534, 0.0016342250164598227, 0.002771175466477871, 0.01509002223610878, 0.0434708371758461, 0.014990567229688168, -0.015171394683420658, 0.018787937238812447, 0.010569345206022263, -0.015569214709103107, 0.06520625948905945, 0.0385885052382946, -0.06498926132917404, 0.04719587787985802, -0.028733428567647934, -0.009430133737623692, -0.0320606455206871, 0.03486346825957298, -0.016419101506471634, 0.0054428959265351295, -0.04057760536670685, -0.03399549797177315, 0.031445834785699844, -0.006229494232684374, 0.023977674543857574, -0.01795613206923008, -0.010723047889769077, 0.05873264744877815, 0.044700462371110916, -0.0016794317634776235, 0.0022750310599803925, 0.0030514574609696865, -0.03150008246302605, 0.06017926335334778, -0.014556583017110825, -0.037358880043029785, -0.025460457429289818, -0.06607422977685928, -0.00009140245674643666, -0.007856938056647778, 0.027684630826115608, 0.012106374837458134, 0.020107975229620934, -0.006866909563541412, -0.02801012061536312, -0.04130091145634651, -0.04951046407222748, 0.033850833773612976, 0.011111825704574585, 0.003923948388546705, 0.005397689528763294, -0.056381892412900925, -0.06383197009563446, 0.03084910474717617, 0.03855234012007713, -0.03321794047951698, -0.014330549165606499, -0.04640023782849312, -0.020035644993185997, -0.04556843265891075, -0.024465909227728844, -0.04253053665161133, 0.007097464054822922, -0.017576394602656364, -0.015334139578044415, 0.05920279771089554, 0.02399575710296631, -0.0011075660586357117, -0.06903979182243347, 0.08404844254255295, 0.0418795607984066, 0.012034044601023197, 0.039637304842472076, 0.04379632696509361, -0.02867918089032173, 0.027232563123106956, 0.046834222972393036, -0.04209655150771141, -0.004873290657997131, 0.0074365148320794106, -0.01318229641765356, -0.011889382265508175, -0.05565858632326126, 0.006356073077768087, -0.0017641945742070675, -0.04654489830136299, 0.01791996695101261, 0.02679857797920704, 0.02444782480597496, -0.005325358361005783, 0.0574306920170784, 0.03177132457494736, 0.021265268325805664, 0.01537934597581625, -0.016084572300314903, -0.03023429401218891, 0.009163414128124714, 0.006084832362830639, 0.024393577128648758, 0.00830900575965643, -0.031626660376787186, -0.04987211897969246, -0.02097594551742077, -0.0051987795159220695, -0.027087900787591934, -0.02520729973912239, 0.010478931479156017, -0.0705949068069458, 0.03974580019712448, -0.04213271662592888, 0.025134969502687454, -0.008236674591898918, -0.05511610582470894, 0.06441061943769455, -0.02725064568221569, 0.029764141887426376, 0.0307586919516325, 0.02645500749349594, -0.0229831263422966, -0.018769854679703712, -0.07645370066165924, -0.013326957821846008, -0.010171525180339813, 0.0010216732043772936, 0.004882331937551498, -0.07941927015781403, 0.04719587787985802, -0.05312700569629669, -0.0492573045194149, -0.03014387935400009, 0.019637824967503548, 0.016509516164660454, -0.014411920681595802, -0.043760161846876144, 0.04777452349662781, -0.053090840578079224, 0.06531475484371185, 0.005998939275741577, -0.04292835667729378, -0.035496361553668976, 0.011482521891593933, -0.004364714492112398, 0.015316056087613106, 0.016057448461651802, 0.011817052029073238, 0.016174985095858574, -0.005723177921026945, 0.039854295551776886, -0.018516696989536285, -0.03627391904592514, -0.03578568622469902, 0.025351962074637413, -0.04361550137400627, 0.018733689561486244, -0.02679857797920704, 0.01704295538365841, -0.02849835343658924, 0.011907465755939484, -0.030342789366841316, 0.021753501147031784, 0.042205046862363815, -0.06762933731079102, -0.0163738951086998, -0.007802689913660288, 0.02564128488302231, -0.04911264404654503, -0.05649039149284363, 0.04242204129695892, -0.021265268325805664, -0.0027553532272577286, -0.0014262738404795527, -0.019927147775888443, -0.03356151282787323, 0.018697522580623627, -0.0368887297809124, -0.04459196701645851, 0.057503022253513336, -0.1043010801076889, 0.03289245069026947, -0.022820381447672844, -0.05920279771089554, 0.02938440628349781, 0.008946421556174755, 0.023308614268898964, -0.04285602644085884, -0.024194667115807533, 0.027684630826115608, -0.01622019149363041, 0.042747531086206436, 0.025568954646587372, 0.026961322873830795, -0.0004910586285404861, -0.03582185134291649, -0.046074748039245605, 0.0417710617184639, 0.004140940960496664, -0.019565492868423462, 0.037901364266872406, -0.056743547320365906, 0.0036685301456600428, 0.017214741557836533, -0.05182505026459694, -0.05724986270070076, 0.007920227944850922, -0.024194667115807533, 0.004091213457286358, 0.048570163547992706, -0.0335976779460907, 0.033941250294446945, -0.01144635584205389, -0.0031283090356737375, 0.013724777847528458, -0.030957601964473724, -0.028118615970015526, 0.04932963475584984, -0.010641675442457199, -0.009737540036439896, 0.013914646580815315, -0.02947481907904148, 0.057503022253513336, -0.008223112672567368, 0.005153572652488947, 0.021807750687003136, -0.006116477306932211, 0.03014387935400009, -0.03014387935400009, 0.06777400523424149, 0.06285550445318222, -0.05330783128738403, -0.0015890182694420218, -0.026147600263357162, 0.0541396364569664, -0.029836473986506462, 0.03826301544904709, -0.025496622547507286, -0.010894833132624626, 0.053271666169166565, 0.024158501997590065, -0.051137909293174744, 0.02395959198474884, 0.031626660376787186, 0.01233240868896246, -0.031717076897621155, 0.06296399980783463, -0.04799151420593262, 0.01237761601805687, -0.058696482330560684, 0.03130117431282997, -0.01898684725165367, -0.0092221824452281, -0.05374181643128395, 0.03725038468837738, 0.006261138711124659, 0.038697000592947006, 0.10864093154668808, 0.013507785275578499, -0.016807880252599716, -0.029800308868288994, 0.015750041231513023, 0.010569345206022263, 0.05960061773657799, 0.035188958048820496, -0.005054117646068335, -0.01162718329578638, 0.03388700261712074, -0.03866083547472954, -0.007499804720282555, 0.010216731578111649, -0.003923948388546705, -0.017965173348784447, -0.003311396576464176, -0.0679909959435463, 0.008426543325185776, -0.06093873828649521, 0.026147600263357162, -0.05605640634894371, -0.02453823946416378, -0.05377798527479172, -0.026509255170822144, 0.04419414699077606, 0.055767081677913666, -0.03240421786904335, -0.005524268373847008, -0.0035668148193508387, -0.005754822865128517, 0.0671953558921814, -0.005515227094292641, -0.029944969341158867, 0.02310970425605774, -0.01636485382914543, 0.017766263335943222, 0.018399158492684364, 0.044266477227211, 0.04679805785417557, -0.001362984417937696, -0.02676241286098957, -0.04173489660024643, 0.015722917392849922, 0.005573995877057314, -0.012359533458948135, 0.022458726540207863, 0.03612925857305527, -0.007499804720282555, 0.03207872807979584, -0.016473349183797836, -0.0434708371758461, -0.0029316595755517483, 0.022386396303772926, -0.00009634694288251922, 0.03761203959584236, -0.018182165920734406, -0.1617317646741867, -0.025370044633746147, -0.004274300765246153, 0.029492901638150215, -0.03520704060792923, 0.021319516003131866, -0.06647204607725143, 0.02399575710296631, -0.006053187418729067, 0.0018139219610020518, -0.00915889348834753, -0.008779156021773815, 0.018372034654021263, -0.017721056938171387, -0.0021134167909622192, -0.018643274903297424, 0.01612977869808674, -0.02853451855480671, -0.0542481355369091, -0.013146131299436092, -0.05272918567061424, 0.026418840512633324, 0.0209397803992033, -0.00640127994120121, -0.020144140347838402, 0.04173489660024643, 0.05840715765953064, -0.014882070943713188, 0.015569214709103107, -0.020903613418340683, 0.0011109565384685993, -0.0106687992811203, 0.05319933593273163, 0.07406678795814514, -0.02916741371154785, 0.008290923200547695, -0.0369429774582386, -0.0393841452896595, 0.006627313792705536, 0.03390508517622948, 0.023399028927087784, 0.014339590445160866, -0.02222365140914917, -0.0591304674744606, 0.0591304674744606, -0.04965512454509735, -0.03307328000664711, -0.030993767082691193, -0.030812939628958702, -0.06093873828649521, 0.023055456578731537, -0.041590236127376556, 0.01737748645246029, 0.008969024755060673, 0.06017926335334778, -0.004669860005378723, 0.009068479761481285, 0.0063741556368768215, 0.014628913253545761, -0.004027924034744501, 0.024556322023272514, -0.012892973609268665, 0.026545420289039612, 0.004927538800984621, 0.042024221271276474, 0.04404948651790619, -0.024122336879372597, -0.05728602781891823, 0.0003658923669718206, -0.011111825704574585, -0.05703287199139595, -0.07052257657051086, -0.0015991898253560066, 0.002321368083357811, -0.020198388025164604, 0.004638215526938438, -0.006826223339885473, 0.020144140347838402, 0.04535143822431564 ]
729,304
tinytuya.core
_pad
null
@staticmethod def _pad(s, bs): padnum = bs - len(s) % bs return s + padnum * chr(padnum).encode()
(s, bs)
[ -0.03802767023444176, 0.01583024673163891, -0.01589163765311241, 0.0709686130285263, -0.036238547414541245, -0.001997417537495494, -0.01229584775865078, 0.01255895383656025, 0.014093742705881596, -0.013427205383777618, 0.01225199643522501, 0.030976414680480957, 0.04813096299767494, 0.07451178133487701, 0.010875072330236435, -0.0054419212974607944, 0.043044235557317734, 0.011322353035211563, 0.023609429597854614, -0.02397777885198593, 0.02296043373644352, 0.032291948795318604, 0.0786513239145279, 0.030502822250127792, -0.05791852995753288, 0.0780198723077774, 0.016882672905921936, -0.0017803545342758298, -0.037431295961141586, -0.00842818059027195, 0.07282789796590805, -0.055147137492895126, 0.031169358640909195, 0.018329758197069168, 0.011059246957302094, -0.003091502236202359, 0.03516858071088791, -0.035203661769628525, -0.06311050057411194, -0.0254511758685112, 0.023486647754907608, -0.024100562557578087, 0.023065676912665367, -0.07794971019029617, 0.006222470663487911, -0.004841160960495472, 0.05588383600115776, 0.013742933981120586, -0.03644903004169464, 0.018803350627422333, 0.010392709635198116, 0.008309782482683659, 0.0617072619497776, -0.008691287599503994, 0.058760467916727066, 0.044236987829208374, -0.029538098722696304, -0.001115462277084589, 0.004696452524513006, -0.013900797814130783, -0.004097884986549616, 0.0013418435119092464, 0.025240691378712654, -0.027012275531888008, -0.03215162456035614, 0.027310462668538094, -0.04241278022527695, -0.03313388675451279, 0.04992008954286575, -0.013532448559999466, 0.057637881487607956, 0.040623657405376434, -0.03634379059076309, -0.0011209436925128102, -0.03130968287587166, 0.0718456357717514, -0.01401481032371521, 0.014891832135617733, -0.0035892121959477663, -0.013269341550767422, 0.07570452988147736, -0.04721885919570923, -0.0031879746820777655, 0.030906252562999725, 0.03883453086018562, -0.03043266013264656, -0.05616448447108269, 0.03516858071088791, 0.028573375195264816, -0.016540633514523506, 0.019452346488833427, -0.019996099174022675, 0.030046772211790085, 0.011752094142138958, -0.01293607335537672, -0.012629115954041481, 0.05220034345984459, 0.02373221330344677, -0.04528941214084625, -0.015128628350794315, -0.02829272672533989, -0.004084729589521885, -0.04160591959953308, -0.015339113771915436, -0.045955948531627655, -0.05020073428750038, -0.01384817622601986, 0.013041316531598568, -0.023574348539114, -0.028152404353022575, 0.009471836499869823, -0.053322933614254, -0.022416681051254272, -0.06868835538625717, -0.0045385886915028095, 0.018294677138328552, 0.0722666084766388, 0.006643441040068865, 0.056410051882267, -0.018154354766011238, 0.046727728098630905, -0.006704832427203655, 0.006494347471743822, -0.024100562557578087, 0.043710771948099136, 0.00666536670178175, -0.012278307229280472, 0.03616838529706001, 0.014979534782469273, -0.030625605955719948, 0.008362404070794582, 0.06097056344151497, -0.006472421810030937, -0.01065581664443016, 0.049323711544275284, -0.04255310446023941, -0.0030893096700310707, 0.06223347783088684, -0.026030011475086212, 0.0347125269472599, 0.027310462668538094, 0.01583024673163891, 0.05812901258468628, 0.004928863141685724, 0.009278891608119011, 0.006279476918280125, 0.04479828104376793, 0.005507697816938162, -0.00026721760514192283, 0.05339309573173523, 0.031257063150405884, 0.03308126702904701, 0.029643341898918152, 0.08222957700490952, 0.015295262448489666, -0.00713457353413105, 0.04834144935011864, -0.04686805233359337, 0.042938992381095886, -0.013050085864961147, 0.042518023401498795, -0.007542388513684273, -0.057567719370126724, -0.05423503741621971, 0.0024183879140764475, 0.021960629150271416, -0.058760467916727066, 0.019715452566742897, 0.03309880942106247, -0.023188460618257523, 0.028783859685063362, -0.03978171572089195, -0.0008479706011712551, -0.017172088846564293, 0.08938607573509216, -0.035800036042928696, -0.05107775703072548, -0.024451371282339096, 0.0037383059971034527, -0.09296432137489319, 0.03178327530622482, 0.020066261291503906, 0.021101146936416626, 0.02417072467505932, 0.02036444842815399, 0.011339893564581871, 0.011559149250388145, 0.058585066348314285, -0.010568113997578621, -0.07921262085437775, 0.01023484580218792, 0.043535370379686356, -0.0038106602150946856, -0.019925938919186592, -0.026959653943777084, -0.0063057877123355865, 0.03995711728930473, -0.008037906140089035, -0.0150935472920537, 0.0030103777535259724, -0.0460611917078495, 0.03180081397294998, -0.02104852721095085, -0.051709212362766266, 0.07619566470384598, -0.04641200229525566, -0.014497172087430954, -0.004985869862139225, -0.08742154389619827, -0.07352951914072037, 0.024539073929190636, -0.004586824681609869, 0.0676359310746193, -0.008498342707753181, -0.013532448559999466, -0.0515688881278038, 0.0060602216981351376, 0.013549989089369774, 0.044517632573843, -0.03255505487322807, -0.009559539146721363, -0.014970764517784119, 0.0034401186276227236, -0.021802764385938644, 0.015339113771915436, 0.006200545001775026, -0.03171311318874359, 0.04153575748205185, 0.022293897345662117, 0.009945428930222988, 0.06251412630081177, 0.005880432203412056, 0.01328688208013773, 0.03936074301600456, 0.06689923256635666, -0.07872148603200912, -0.0203819889575243, -0.10412004590034485, -0.028590915724635124, -0.06914440542459488, -0.002966526662930846, 0.03488793224096298, 0.02131163328886032, 0.06700447201728821, 0.032362110912799835, 0.0065601239912211895, -0.03152016922831535, 0.011611769907176495, -0.008568503893911839, -0.011909957975149155, -0.04006236046552658, 0.00554277841001749, -0.024819720536470413, -0.012278307229280472, 0.010901382192969322, 0.03413369506597519, 0.0025784445460885763, 0.06349638849496841, 0.0050297207199037075, 0.07160007208585739, 0.007647631224244833, 0.018961213529109955, -0.06033910810947418, -0.058585066348314285, 0.007397680077701807, 0.01131358277052641, -0.03595789894461632, -0.005582244601100683, -0.02303059585392475, -0.009559539146721363, 0.07893197238445282, -0.020083801820874214, 0.004516663029789925, -0.007318748161196709, 0.014558563940227032, -0.013120247982442379, 0.018873512744903564, 0.05655037239193916, 0.05363865941762924, -0.08412394672632217, 0.05826933681964874, -0.0014032351318746805, -0.03465990722179413, 0.03260767459869385, 0.020224126055836678, 0.03467744588851929, 0.017671991139650345, 0.011909957975149155, 0.012567724101245403, -0.04272850975394249, -0.014348078519105911, -0.01968037150800228, 0.032467350363731384, 0.024381209164857864, -0.032204244285821915, -0.020697716623544693, 0.009778794832527637, 0.0015008037444204092, 0.026293117552995682, -0.03637886792421341, -0.10440068691968918, 0.0054287659004330635, 0.035554468631744385, 0.04034300893545151, 0.009559539146721363, -0.017487816512584686, -0.032502431422472, 0.000386985921068117, 0.003194552380591631, -0.007634475827217102, -0.07900213450193405, 0.01761937141418457, 0.029678422957658768, 0.026187874376773834, 0.012944843620061874, 0.007577469572424889, -0.05605924129486084, 0.02690703235566616, 0.01032254844903946, 0.04395633935928345, 0.03602806106209755, -0.02201325073838234, -0.06475929915904999, 0.007147728931158781, 0.008489572443068027, 0.025381013751029968, 0.031607870012521744, -0.002891979878768325, 0.010515493340790272, 0.019750533625483513, -0.0361333042383194, 0.0019031375413760543, 0.01848762296140194, -0.01117325946688652, -0.035379063338041306, 0.009998049587011337, -0.012357238680124283, -0.04770999401807785, -0.07423113286495209, -0.02260962501168251, 0.07935294508934021, -0.015339113771915436, 0.0021892660297453403, -0.0022977974731475115, 0.024732017889618874, -0.007945818826556206, -0.03380042687058449, 0.030222175642848015, -0.025591500103473663, -0.007467841729521751, 0.02011888287961483, 0.0031638566870242357, 0.05065678805112839, -0.03390566632151604, 0.025381013751029968, 0.016137203201651573, 0.030801009386777878, 0.024907423183321953, 0.0002740693453233689, -0.00017321182531304657, 0.02262716554105282, -0.003437926061451435, 0.0509023517370224, -0.029555639252066612, -0.010269926860928535, 0.0420970544219017, -0.02760864980518818, -0.027573568746447563, 0.018715647980570793, 0.051112838089466095, 0.002122393110767007, -0.035887736827135086, -0.0025411711540073156, -0.03578249365091324, -0.027959458529949188, 0.034852851182222366, -0.05746247619390488, 0.0007334096007980406, -0.02931007370352745, -0.044517632573843, -0.043044235557317734, -0.04262326657772064, -0.02148703671991825, 0.020487232133746147, 0.03999219834804535, -0.0196102112531662, 0.04034300893545151, 0.0021465111058205366, 0.020224126055836678, 0.03120443969964981, -0.04662248492240906, 0.024047940969467163, 0.07345935702323914, 0.045780543237924576, -0.019908398389816284, -0.010743518359959126, -0.013690312393009663, -0.026240495964884758, 0.027871757745742798, 0.035887736827135086, 0.039430905133485794, -0.008568503893911839, 0.07703760266304016, 0.03918534144759178, -0.003975101746618748, 0.03430909663438797, -0.02234651893377304, -0.039676472544670105, -0.03206392005085945, 0.0337127223610878, -0.039150260388851166, 0.004911322612315416, -0.005652406252920628, -0.07921262085437775, 0.056620534509420395, -0.07619566470384598, -0.013172869570553303, -0.05013057217001915, 0.0048016952350735664, -0.03609822317957878, 0.01324303075671196, -0.05121808126568794, 0.0016411272808909416, 0.06356655061244965, -0.007231045980006456, -0.0039005549624562263, 0.019557589665055275, 0.04455271363258362, -0.03534398227930069, 0.02459169551730156, 0.005130578298121691, -0.0024008476175367832, 0.0200487207621336, -0.007814265787601471, 0.029783664271235466, 0.02417072467505932, 0.05826933681964874, 0.010717207565903664, 0.014655036851763725, 0.015286492183804512, 0.055322542786598206, 0.009857726283371449, -0.028012080118060112, 0.02018904499709606, 0.0652153491973877, -0.02245176210999489, -0.001962336478754878, 0.014023580588400364, -0.024626776576042175, 0.01194503903388977, 0.043114397674798965, -0.03043266013264656, -0.032695379108190536, 0.024486452341079712, -0.014093742705881596, -0.039080098271369934, 0.0601637028157711, -0.0636717900633812, -0.07507307827472687, 0.006279476918280125, -0.05770804360508919, 0.024626776576042175, -0.007542388513684273, 0.037606701254844666, -0.047148697078228, 0.003644026117399335, -0.03480023145675659, -0.006336483638733625, -0.012988694943487644, 0.0423075370490551, 0.013304422609508038, -0.002101563848555088, 0.004299600142985582, 0.007621320430189371, 0.06114596873521805, -0.027819136157631874, -0.001712385332211852, -0.007533618248999119, -0.05065678805112839, 0.01959267072379589, -0.048622094094753265, -0.014497172087430954, 0.007318748161196709, -0.014444551430642605, 0.010006819851696491, -0.019715452566742897, 0.008410640060901642, 0.01737380400300026, 0.034256476908922195, 0.020680177956819534, 0.02175014466047287, 0.06009354442358017, -0.03251997381448746, 0.030801009386777878, 0.01384817622601986, -0.005762034095823765, -0.030713308602571487, -0.008208924904465675, -0.062303636223077774, -0.0586201474070549, -0.01737380400300026, -0.007735333405435085, -0.008108067326247692, -0.0639173611998558, -0.020013639703392982, -0.0168563611805439, -0.06205807253718376, 0.012348468415439129, 0.04970960319042206, 0.015874097123742104, 0.015374194830656052, -0.01410251297056675, -0.013725393451750278, -0.023697132244706154, 0.007972129620611668, 0.02175014466047287, -0.02838042937219143, -0.06854803115129471, -0.02674916945397854, -0.029818745329976082, 0.03355485945940018, 0.04244786128401756, 0.0020226319320499897, -0.0632508248090744, 0.006454881280660629, 0.00578395975753665, 0.01976807415485382, -0.024819720536470413, -0.048867661505937576, 0.059286683797836304, -0.08159811794757843, 0.07289806008338928, -0.005762034095823765, 0.02415318414568901, -0.023241080343723297, 0.04644707962870598, -0.03336191549897194, 0.011980119161307812, 0.0159179475158453, -0.008607970550656319, -0.003972909413278103, -0.004845546092838049, 0.016742348670959473, -0.07879164814949036, -0.037115566432476044, 0.09913855791091919, -0.017742153257131577, -0.01744396612048149, 0.015312802977859974, -0.0034181929659098387, -0.10496198385953903, -0.02218865416944027, 0.01091892272233963, 0.037606701254844666, 0.011453906074166298, -0.06746052950620651, -0.016145974397659302, -0.03687000274658203, -0.02562658116221428, 0.053358014672994614, 0.020487232133746147, 0.010971544310450554, 0.06746052950620651, -0.04546481743454933, -0.07289806008338928, -0.004356606397777796, -0.021434415131807327, -0.05114791914820671, -0.036063142120838165, 0.009007015265524387, 0.018206974491477013, -0.010497952811419964, -0.010892611928284168, -0.0046394458040595055, -0.04462287575006485, -0.02743324637413025, -0.08882477879524231, -0.020241666585206985, 0.039851877838373184, 0.01969791203737259, -0.03043266013264656, 0.024661855772137642, 0.01959267072379589, -0.047324102371931076, 0.031923599541187286, -0.01461995579302311, -0.000094553928647656, -0.008090527728199959, -0.04016760364174843, -0.020960824564099312, -0.04799063876271248, -0.0006276188069023192, 0.015339113771915436, -0.015847785398364067, -0.008743908256292343, -0.009007015265524387, -0.05013057217001915, 0.030222175642848015, -0.011208340525627136, -0.014391929842531681, 0.04907814785838127, 0.04086922109127045, -0.016461702063679695, 0.0720561221241951, 0.1333073377609253, 0.06447865068912506, -0.03616838529706001, 0.04841161146759987, -0.07149482518434525, -0.03111673891544342, -0.0050428761169314384, 0.04599102959036827, 0.01924186199903488, -0.053428176790475845, -0.017821084707975388, -0.0328356996178627, -0.021364254876971245, -0.07872148603200912, 0.014497172087430954, -0.050516463816165924, -0.032291948795318604, 0.10671602934598923, -0.05269147828221321, 0.012971154414117336, 0.005801500286906958, 0.0539894700050354, -0.02674916945397854, 0.03299356624484062, 0.03152016922831535, -0.059707652777433395, -0.008151918649673462, 0.07167023420333862, 0.053603582084178925, -0.004841160960495472, -0.043535370379686356, 0.015400504693388939, -0.029941529035568237, 0.010261156596243382, -0.003238403471186757, 0.05374390259385109, 0.05118300020694733, -0.05174429342150688, -0.04367569088935852, -0.027643730863928795, 0.008950009010732174, -0.007893197238445282, 0.002335070865228772, -0.024977585300803185, -0.08580782264471054, -0.048972904682159424, -0.04034300893545151, -0.03957122936844826, 0.025556419044733047, -0.0359228178858757, 0.059462085366249084, -0.053708821535110474, 0.0694250538945198, -0.0033480313140898943, 0.02681932970881462, -0.061777424067258835, 0.020960824564099312, -0.05683102086186409, -0.026468520984053612, -0.018364839255809784, -0.015874097123742104, -0.0196102112531662, -0.028327807784080505, -0.046306759119033813, 0.017935099080204964, -0.05367374047636986, 0.034344177693128586, -0.01917169988155365, -0.03178327530622482, -0.015418045222759247, -0.0037229580339044333, -0.04942895472049713, 0.01676865853369236, 0.00266395416110754, 0.0359228178858757, -0.0011061439290642738, 0.023767294362187386, -0.023767294362187386, -0.022925352677702904, -0.08517637103796005, 0.00894562341272831, -0.0011478024534881115, 0.011497757397592068, 0.017259791493415833, -0.020487232133746147, -0.027871757745742798, 0.01267296727746725, -0.06311050057411194, 0.0027143829502165318, 0.014856751076877117, -0.025047745555639267, 0.014909372664988041, 0.008340478874742985, 0.008599200285971165, 0.023942697793245316, -0.026170333847403526, -0.0017047113506123424, 0.007016175426542759, 0.00924381148070097, -0.005709412973374128, -0.005077957175672054, 0.004288637079298496, 0.013129018247127533, 0.0020226319320499897, 0.026766709983348846, 0.003950983751565218, 0.002861283952370286, 0.04942895472049713, 0.006077761761844158, -0.04834144935011864, 0.021522117778658867, 0.015847785398364067, -0.015225100331008434, 0.00915610883384943, -0.03067822754383087, 0.0561995655298233, -0.020504772663116455, 0.015961799770593643, 0.048867661505937576, -0.0250126663595438, -0.06188266724348068, -0.04241278022527695, -0.07619566470384598, 0.02338140457868576, -0.005314752925187349, 0.025854606181383133, 0.0021772070322185755, 0.005305982660502195, -0.015803935006260872, 0.006871466990560293, -0.024118103086948395, 0.03362502157688141, -0.03016955405473709, -0.015198790468275547, -0.029959069564938545, 0.012690506875514984, -0.018347298726439476, 0.0033918824046850204, 0.024977585300803185, 0.021294092759490013, 0.008656206540763378, 0.030537903308868408, 0.04511400684714317, 0.0253459345549345, -0.00490255281329155, 0.013611380010843277, 0.04521925002336502, 0.054375357925891876, -0.03515103831887245, -0.027784055098891258, 0.035291362553834915, 0.0018658641492947936, -0.033396996557712555, 0.02003118023276329, 0.015532058663666248, -0.020610015839338303, -0.057637881487607956, -0.031064117327332497, 0.015944259241223335, 0.022153573110699654, 0.01499707531183958, 0.04665756598114967, 0.0318358950316906, 0.055743515491485596 ]
729,305
tinytuya.core
_unpad
null
@staticmethod def _unpad(s, verify_padding=False): padlen = ord(s[-1:]) if padlen < 1 or padlen > 16: raise ValueError("invalid padding length byte") if verify_padding and s[-padlen:] != (padlen * chr(padlen).encode()): raise ValueError("invalid padding data") return s[:-padlen]
(s, verify_padding=False)
[ -0.01384985912591219, 0.06393073499202728, 0.04078463837504387, 0.040208686143159866, -0.044204358011484146, -0.022354157641530037, 0.00603850232437253, 0.01238297950476408, 0.043916381895542145, -0.003784188302233815, 0.012823943048715591, 0.03236133232712746, 0.025287916883826256, 0.055291444063186646, 0.022804120555520058, 0.026493817567825317, 0.004240900743752718, 0.04658016189932823, 0.05741526931524277, -0.023308079689741135, 0.020644299685955048, 0.03291928768157959, 0.00004369561793282628, 0.025197923183441162, -0.04708411917090416, 0.042980458587408066, 0.01969037763774395, 0.0034219680819660425, -0.020536307245492935, -0.006245485506951809, 0.05413953959941864, 0.01260796096175909, 0.040820635855197906, 0.03826484829187393, -0.0022115677129477262, -0.02955356426537037, 0.02971555106341839, -0.07739362120628357, 0.011357064358890057, -0.006105997134000063, -0.015082756988704205, -0.020356323570013046, 0.05320361629128456, -0.045428257435560226, 0.020410317927598953, 0.011897020041942596, 0.0070824166759848595, 0.025791874155402184, -0.07854552567005157, 0.01624366082251072, 0.013885855674743652, 0.03934475779533386, 0.058531176298856735, 0.05014386773109436, 0.06256284564733505, -0.021274246275424957, -0.01460579689592123, -0.006452468223869801, 0.022570140659809113, -0.011510051786899567, -0.03372922167181969, -0.006164492107927799, -0.022210169583559036, -0.04935193434357643, -0.01237398013472557, 0.016036678105592728, -0.0009044254547916353, -0.03338724747300148, -0.00002030106224992778, -0.026709798723459244, -0.004256649408489466, 0.06407471746206284, -0.03750890865921974, -0.0039551742374897, 0.014164833351969719, -0.0029450072906911373, 0.026025855913758278, 0.01154604833573103, -0.03462914749979973, -0.03336925059556961, 0.07710564881563187, 0.027879703789949417, 0.039632733911275864, 0.06727845966815948, 0.018520474433898926, 0.010358146391808987, 0.005620036739856005, 0.03428717330098152, 0.04733610153198242, -0.0028640141244977713, 0.053599584847688675, -0.055615417659282684, 0.016540637239813805, -0.007140911649912596, -0.012859940528869629, 0.016864610835909843, 0.03198336437344551, 0.05215970426797867, -0.023416070267558098, -0.07984142005443573, -0.00799134187400341, 0.04456432908773422, -0.0698702409863472, -0.007518880534917116, -0.03556507080793381, -0.0037211934104561806, -0.015964685007929802, 0.0036964453756809235, -0.016036678105592728, -0.022174173966050148, 0.04402437433600426, -0.052519671618938446, -0.038228850811719894, -0.06123095378279686, 0.024262001737952232, -0.0036874462384730577, 0.036698974668979645, -0.024801956489682198, -0.013399896211922169, -0.027429740875959396, 0.0479840449988842, -0.014974766410887241, -0.021040266379714012, -0.052519671618938446, 0.04200853779911995, -0.006182490848004818, -0.01671162247657776, 0.044852305203676224, 0.041000623255968094, 0.012283988296985626, -0.010727115906774998, 0.06439869105815887, -0.028707634657621384, -0.011159081012010574, -0.010601126588881016, -0.022840118035674095, 0.06425470858812332, 0.045752231031656265, -0.04661615937948227, -0.016090674325823784, 0.01940240152180195, 0.054823484271764755, 0.06245485320687294, 0.0504678413271904, 0.010484136641025543, 0.010313150472939014, -0.007964343763887882, 0.009359228424727917, -0.0009044254547916353, 0.038084860891103745, -0.03241533041000366, 0.02474796026945114, 0.03873280808329582, 0.05079181492328644, 0.07296598702669144, -0.020086344331502914, -0.0028842624742537737, -0.05064782872796059, -0.0026637804694473743, -0.026817791163921356, 0.0028685135766863823, -0.02305610105395317, -0.05233968794345856, -0.0698702409863472, -0.0329732820391655, -0.030849458649754524, 0.04935193434357643, -0.02260613813996315, 0.00428589666262269, 0.02876163087785244, 0.0031677389051765203, -0.015514722093939781, 0.028707634657621384, -0.018988436087965965, 0.02381203882396221, -0.019150422886013985, -0.030507486313581467, -0.022066181525588036, -0.004837101325392723, -0.06907831132411957, -0.014164833351969719, 0.03462914749979973, -0.00037431292003020644, -0.028329666703939438, 0.017440563067793846, 0.014884773641824722, 0.0017346070380881429, 0.06256284564733505, -0.011402060277760029, -0.11151881515979767, -0.01744956150650978, 0.017494559288024902, -0.01398484781384468, -0.009746196679770947, 0.005755025893449783, -0.00197758711874485, 0.024531979113817215, 0.057775240391492844, -0.04963991045951843, -0.07775359600782394, -0.020716292783617973, 0.008558294735848904, -0.017503557726740837, -0.054823484271764755, -0.026277834549546242, -0.03999270498752594, -0.02181420288980007, 0.022120177745819092, -0.05485948175191879, -0.058855149894952774, 0.06706247478723526, -0.01222999207675457, 0.05309562385082245, -0.025413906201720238, -0.0371849350631237, -0.053131621330976486, 0.0026052852626889944, 0.024244002997875214, 0.044384341686964035, -0.009917182847857475, -0.03214535117149353, 0.023884031921625137, 0.024729963392019272, -0.01909642666578293, 0.0006231986335478723, 0.02951756864786148, -0.06259883940219879, 0.043592408299446106, 0.04812803491950035, 0.0017548553878441453, 0.06285081803798676, -0.025809872895479202, 0.02046431414783001, 0.05064782872796059, 0.065946564078331, -0.06371475011110306, -0.020860280841588974, -0.09783993661403656, 0.023326078429818153, -0.034053195267915726, 0.002573787933215499, -0.031191430985927582, 0.023272082209587097, 0.07508981227874756, 0.04064065217971802, 0.05079181492328644, -0.03209135681390762, 0.05212370678782463, 0.003129492048174143, -0.0014736285666003823, -0.044240355491638184, -0.01483977772295475, 0.004693113267421722, 0.0003602515789680183, 0.032541319727897644, 0.043772391974925995, -0.004173405934125185, 0.040856633335351944, 0.030381496995687485, 0.05932311341166496, 0.03182137757539749, 0.010439139790832996, -0.03336925059556961, -0.014866774901747704, 0.0008864269475452602, -0.01920441724359989, -0.0006777566741220653, 0.00022990292927715927, 0.015190748497843742, -0.023920029401779175, 0.04110861197113991, -0.0691143050789833, -0.00683943647891283, -0.020806286484003067, 0.02955356426537037, 0.018313491716980934, 0.03320726379752159, -0.005440051667392254, 0.11389461904764175, -0.03227134048938751, 0.07984142005443573, -0.015118754468858242, 0.016090674325823784, 0.03673497214913368, -0.015343735925853252, 0.030669473111629486, 0.010790110565721989, -0.0746578499674797, 0.028869621455669403, -0.02062630094587803, 0.0264758188277483, -0.059647087007761, -0.0052915639244019985, 0.01399384718388319, -0.05248367413878441, -0.0010939723579213023, -0.011735033243894577, -0.010790110565721989, -0.008607790805399418, -0.062238872051239014, -0.07328996062278748, 0.01475878432393074, -0.004508628509938717, 0.045140281319618225, 0.04226051643490791, -0.009755196049809456, -0.04823602735996246, 0.009251237846910954, 0.022570140659809113, -0.025179926306009293, -0.045752231031656265, -0.01848447695374489, 0.015874691307544708, -0.013570881448686123, -0.006681949365884066, 0.0076538692228496075, -0.011735033243894577, 0.009863187558948994, 0.019816366955637932, 0.03750890865921974, 0.0679624006152153, -0.019114425405859947, -0.09308832883834839, 0.008693283423781395, -0.02798769436776638, 0.004792105406522751, 0.00037009449442848563, -0.007617872208356857, 0.0009336730581708252, 0.00858079269528389, -0.03567305952310562, -0.024819955229759216, 0.04049666225910187, -0.05694730952382088, 0.013318902812898159, -0.0036334507167339325, -0.03920077160000801, -0.016657628118991852, -0.04676014557480812, 0.0042206523939967155, 0.042512498795986176, -0.005264566279947758, 0.03558306768536568, -0.003977672196924686, 0.014263824559748173, 0.027429740875959396, -0.06745844334363937, 0.025629889219999313, -0.019276412203907967, -0.006560459267348051, 0.028203675523400307, 0.03905678167939186, 0.015811696648597717, -0.0267637949436903, 0.04294446110725403, -0.015568717382848263, 0.023596055805683136, 0.02199418842792511, 0.024567976593971252, -0.0005295501323416829, 0.0315873958170414, -0.03347724303603172, -0.0019989602733403444, -0.056659333407878876, -0.007658368907868862, 0.00657845800742507, -0.04010069742798805, -0.06540661305189133, 0.0026840288192033768, 0.05219569802284241, -0.022516144439578056, -0.060223039239645004, 0.004675114993005991, -0.057451266795396805, -0.022174173966050148, 0.030183512717485428, -0.03140741214156151, 0.02276812493801117, -0.030687471851706505, -0.010412141680717468, -0.016297657042741776, -0.014263824559748173, -0.05341959744691849, 0.030075522139668465, 0.04780406132340431, -0.012661957181990147, -0.06555059552192688, 0.0026480318047106266, 0.004931593779474497, 0.03887679800391197, -0.03646499663591385, 0.015514722093939781, 0.06148293614387512, 0.0313534177839756, -0.005912513006478548, 0.02339807152748108, -0.0837291032075882, 0.0013825111091136932, 0.00046458671567961574, 0.005899013951420784, 0.006420970894396305, 0.007680867332965136, 0.0390927791595459, 0.03633900731801987, 0.007433387450873852, 0.06292281299829483, -0.015514722093939781, -0.022408153861761093, -0.0388048030436039, 0.007937345653772354, 0.048991963267326355, 0.023038102313876152, -0.008009339682757854, -0.06429070234298706, 0.07415389269590378, -0.056227367371320724, 0.010529132559895515, -0.008513298816978931, 0.039920710027217865, -0.029499569907784462, 0.01299492921680212, -0.0393807552754879, 0.010403143242001534, 0.021904194727540016, 0.0046526165679097176, 0.02258813939988613, -0.0449243001639843, 0.023614054545760155, -0.059755075722932816, 0.030057523399591446, 0.010754114016890526, 0.00031413036049343646, 0.024064017459750175, -0.009075752459466457, 0.0014218828873708844, 0.056839317083358765, 0.0399567075073719, 0.02476595900952816, -0.025611890479922295, 0.05244768038392067, 0.015649709850549698, 0.015766700729727745, -0.007766359951347113, 0.04240450635552406, 0.05147575959563255, 0.01146505493670702, -0.023578057065606117, 0.04784005880355835, -0.0269077830016613, 0.019276412203907967, 0.04686813801527023, -0.04326843470335007, -0.0640387237071991, 0.008972261101007462, -0.017557553946971893, -0.048847977072000504, 0.05118778347969055, 0.0125449663028121, -0.06493864953517914, 0.024567976593971252, -0.05367157980799675, 0.007878851145505905, -0.05230369046330452, -0.0050890808925032616, -0.006204988807439804, 0.0529516376554966, -0.017872527241706848, -0.0046301186084747314, 0.01498376578092575, 0.041288599371910095, 0.0003610952408052981, -0.0427284799516201, 0.028725633397698402, 0.06907831132411957, 0.018268493935465813, -0.013336901552975178, 0.03304527699947357, 0.008792275562882423, -0.04553624987602234, 0.017494559288024902, -0.031929370015859604, 0.009359228424727917, -0.031929370015859604, -0.02120225317776203, 0.005809021182358265, -0.0424405038356781, -0.016135670244693756, -0.0010118541540578008, 0.009044255129992962, 0.017872527241706848, 0.006852935533970594, 0.026421822607517242, -0.014488806016743183, 0.04046066477894783, 0.05932311341166496, -0.03219934552907944, -0.006969925947487354, -0.016234662383794785, 0.007869851775467396, -0.03198336437344551, 0.00005670235987054184, 0.022354157641530037, 0.02381203882396221, -0.07026620954275131, 0.010745114646852016, 0.005908013321459293, -0.010727115906774998, 0.010718116536736488, 0.042692482471466064, 0.00440288707613945, -0.02262413688004017, 0.051439762115478516, 0.03137141466140747, -0.0028640141244977713, 0.0127609483897686, 0.028995610773563385, -0.01616266742348671, -0.0695822685956955, 0.0266198068857193, -0.015424729324877262, -0.02231816202402115, 0.04891996830701828, -0.005026085767894983, -0.03648299351334572, 0.027771711349487305, 0.0069519272074103355, -0.012140000239014626, -0.005516545381397009, -0.035133104771375656, -0.012095003388822079, -0.05863916873931885, 0.045932214707136154, -0.00820282381027937, -0.025737879797816277, -0.03045349009335041, 0.013660874217748642, -0.046220190823078156, 0.0050755818374454975, 0.01468679029494524, -0.00004826555596082471, -0.010187160223722458, -0.014245825819671154, -0.019618384540081024, -0.059899065643548965, -0.05183573067188263, 0.07897749543190002, -0.007977842353284359, 0.02678179368376732, -0.02904960699379444, 0.04600420966744423, -0.14650793373584747, 0.0004792105173692107, 0.02336207590997219, 0.014641793444752693, 0.028113683685660362, -0.0799134150147438, -0.008693283423781395, 0.02535990998148918, -0.03432317078113556, 0.04042467102408409, -0.009602208621799946, -0.031785380095243454, 0.03750890865921974, -0.06565859168767929, -0.04726410657167435, -0.009084751829504967, -0.05385156348347664, -0.04895596578717232, -0.04182855412364006, -0.0017492308979853988, -0.013183914124965668, -0.03304527699947357, -0.00588551489636302, -0.006132994778454304, -0.05532744154334068, 0.002076579025015235, -0.04571623355150223, -0.0038066862616688013, 0.0457882285118103, -0.022678131237626076, 0.015190748497843742, 0.005453550722450018, 0.02383003570139408, -0.050215862691402435, -0.01791752316057682, -0.040388673543930054, 0.03027350641787052, 0.0012340233661234379, -0.010574128478765488, -0.031461406499147415, 0.005336560308933258, -0.025809872895479202, 0.04103662073612213, -0.00595750892534852, -0.0253779087215662, 0.010961096733808517, 0.008558294735848904, 0.03754490613937378, 0.01193301659077406, 0.014416811987757683, 0.0640387237071991, 0.039920710027217865, 0.04823602735996246, 0.01606367714703083, 0.12023009359836578, 0.045140281319618225, -0.058063216507434845, 0.06979824602603912, -0.0535275898873806, -0.024891948327422142, 0.020968273282051086, 0.0632827877998352, -0.0035029614809900522, -0.06054701283574104, 0.04873998463153839, -0.029157597571611404, -0.024495981633663177, -0.09747996926307678, -0.007739362306892872, -0.02966155670583248, -0.0024185506626963615, 0.10287952423095703, -0.06587456911802292, -0.0002585880574770272, -0.019456397742033005, 0.0238480344414711, -0.03264930844306946, 0.04233251139521599, 0.010682119987905025, -0.04370040073990822, -0.011330066248774529, 0.007779859006404877, 0.05363558232784271, 0.0255218967795372, -0.027717716991901398, 0.008067835122346878, -0.030525485053658485, -0.01293193455785513, 0.006654951721429825, 0.0476960688829422, 0.08142529428005219, -0.07422588765621185, -0.020212335512042046, -0.00012373981007840484, -0.018952438607811928, -0.023488065227866173, 0.0239920224994421, -0.004135159309953451, -0.0945282131433487, -0.03704094886779785, -0.008990258909761906, 0.007329896092414856, 0.036249011754989624, -0.04841601103544235, 0.049423929303884506, -0.05151175707578659, 0.06997823715209961, 0.0318753719329834, -0.005197071935981512, -0.03678897023200989, -0.004146408289670944, -0.03399919718503952, -0.03533108904957771, 0.05766724795103073, 0.04981989413499832, -0.004837101325392723, -0.0026592807844281197, 0.005143076181411743, 0.02046431414783001, -0.06688249111175537, 0.03495312109589577, 0.005341059993952513, -0.01206800527870655, 0.003631200874224305, 0.03180338069796562, -0.05968308448791504, 0.02062630094587803, -0.012877939268946648, 0.0776096060872078, 0.03281129524111748, -0.007617872208356857, -0.0032464824616909027, -0.019762372598052025, -0.0781855583190918, 0.003952924162149429, 0.024567976593971252, 0.016603631898760796, -0.02525191940367222, -0.0012036508414894342, -0.03432317078113556, 0.03547507897019386, -0.06015104427933693, -0.0037909375969320536, 0.0052915639244019985, -0.029607560485601425, 0.0007784358458593488, 0.0012497720308601856, 0.021346241235733032, 0.021004268899559975, 0.02462197095155716, 0.0072219050489366055, -0.04197254031896591, 0.009467219933867455, -0.01969037763774395, -0.009377227164804935, 0.03740091994404793, -0.0003537833399605006, -0.02183220162987709, 0.0013780114240944386, -0.007293899077922106, 0.028887620195746422, 0.05107979103922844, -0.02105826511979103, -0.06677449494600296, 0.05507546290755272, 0.023164091631770134, -0.05752326175570488, -0.034539155662059784, -0.05705529823899269, 0.050035879015922546, -0.0039889211766421795, 0.011654039844870567, -0.005467049777507782, -0.009665203280746937, -0.07667368650436401, -0.0238480344414711, -0.0682503804564476, 0.017269577831029892, 0.007851853035390377, 0.035277094691991806, 0.025269918143749237, 0.031119436025619507, -0.0032532319892197847, 0.0352230966091156, -0.058963142335414886, 0.04690413549542427, -0.041612572968006134, 0.012508969753980637, 0.0042836470529437065, 0.006150993052870035, -0.022534143179655075, 0.0415765754878521, 0.007757361046969891, 0.046076204627752304, -0.0015287490095943213, 0.01970837637782097, -0.00592151191085577, 0.022660132497549057, 0.008765277452766895, -0.005948510020971298, -0.004801104310899973, 0.03572705760598183, -0.10691118985414505, -0.017782535403966904, 0.01391285378485918, 0.01354388426989317, -0.046544164419174194, 0.024513980373740196, 0.003835933981463313, -0.04963991045951843, -0.06180690601468086, -0.014038843102753162, -0.0270517710596323, 0.005827019922435284, -0.01330990344285965, 0.03732892498373985, 0.003014751709997654, 0.031191430985927582 ]
729,306
tinytuya.core
decrypt
null
def decrypt(self, enc, use_base64=True, decode_text=True, verify_padding=False, iv=False, header=None, tag=None): if not iv: if use_base64: enc = base64.b64decode(enc) if len(enc) % 16 != 0: raise ValueError("invalid length") if iv: iv, enc = self.get_decryption_iv( iv, enc ) if tag is None: decryptor = Crypto( AES(self.key), Crypto_modes.CTR(iv + b'\x00\x00\x00\x02') ).decryptor() else: decryptor = Crypto( AES(self.key), Crypto_modes.GCM(iv, tag) ).decryptor() if header and (tag is not None): decryptor.authenticate_additional_data( header ) raw = decryptor.update( enc ) + decryptor.finalize() else: decryptor = Crypto( AES(self.key), Crypto_modes.ECB() ).decryptor() raw = decryptor.update( enc ) + decryptor.finalize() raw = self._unpad(raw, verify_padding) return raw.decode("utf-8") if decode_text else raw
(self, enc, use_base64=True, decode_text=True, verify_padding=False, iv=False, header=None, tag=None)
[ 0.10207537561655045, -0.016463477164506912, 0.047979794442653656, 0.06046618893742561, -0.006361509207636118, -0.06297802925109863, -0.0052375514060258865, 0.009455805644392967, 0.04626883193850517, 0.015526087023317814, 0.008154381066560745, 0.006548076868057251, 0.004027135670185089, 0.0160539373755455, 0.011585409753024578, 0.07739381492137909, -0.03340020030736923, -0.02784866653382778, 0.031962260603904724, -0.06363329291343689, 0.014707008376717567, 0.019239243119955063, -0.031889453530311584, 0.04710610955953598, -0.0021443928126245737, 0.007399008609354496, 0.030269498005509377, -0.0315072163939476, 0.02710239589214325, 0.02784866653382778, 0.048307426273822784, 0.01867498829960823, 0.01179472915828228, 0.03714975714683533, -0.06170390918850899, -0.009255586192011833, 0.04681488499045372, -0.01892981305718422, 0.038878925144672394, -0.0008042895351536572, -0.03942497447133064, 0.024244721978902817, 0.10709905624389648, -0.025719063356518745, -0.024463143199682236, 0.020240338519215584, 0.01657268777489662, -0.027430027723312378, -0.03594844415783882, 0.023280030116438866, 0.053039878606796265, -0.01186753623187542, 0.03218068182468414, 0.04739733785390854, -0.011849334463477135, -0.02555524744093418, -0.04637804254889488, 0.034219276160001755, 0.008814194239675999, 0.00284174713306129, -0.022315336391329765, -0.03931576386094093, -0.019330251961946487, 0.02071358449757099, -0.026756562292575836, 0.05023680999875069, -0.0003540807811077684, 0.016263257712125778, -0.013651307672262192, 0.003993007354438305, 0.011949444189667702, 0.005128341261297464, -0.012186067178845406, 0.027575640007853508, -0.012541000731289387, -0.026428930461406708, -0.017355361953377724, -0.02369866892695427, 0.001053994637914002, -0.05405917763710022, 0.054823651909828186, 0.043392956256866455, 0.06370609998703003, 0.026392526924610138, 0.062395576387643814, 0.003758660051971674, -0.0005605568294413388, -0.0008281792979687452, 0.03967979922890663, -0.027666648849844933, 0.016800208017230034, -0.03161642700433731, 0.008563919924199581, 0.03279954195022583, -0.016108542680740356, -0.04302892088890076, 0.020586172118782997, 0.04241006076335907, -0.04288330674171448, -0.03724076598882675, 0.005132891703397036, 0.018474768847227097, -0.04976356402039528, -0.013096153736114502, 0.007048625033348799, 0.007676585111767054, -0.0538407564163208, -0.005169295240193605, 0.045904796570539474, -0.009947252459824085, 0.011776527389883995, -0.019530469551682472, -0.05220260098576546, 0.0048052603378891945, 0.0010477378964424133, 0.0003037416026927531, -0.057772330939769745, -0.05813636630773544, -0.0875139832496643, 0.017837708815932274, -0.017646590247750282, -0.038442082703113556, -0.002118227770552039, -0.06694601476192474, 0.023170819506049156, -0.09792537987232208, -0.008554819040000439, -0.02850393019616604, 0.0542047917842865, 0.003562991274520755, 0.002982810605317354, -0.006775598973035812, 0.003597119590267539, 0.028886165469884872, -0.023243626579642296, -0.0013241767883300781, 0.03796883672475815, 0.060429785400629044, -0.013742316514253616, 0.038369275629520416, 0.028449324890971184, 0.043320149183273315, 0.000005870239874639083, 0.012950540520250797, -0.043611377477645874, 0.005728998687118292, -0.02200590819120407, -0.08278153091669083, -0.023425644263625145, 0.010320388711988926, -0.007358054630458355, -0.043465763330459595, -0.008682231418788433, 0.025828273966908455, 0.0950130969285965, -0.00011383199307601899, -0.010702624917030334, 0.03083375282585621, -0.06352408230304718, 0.050673652440309525, 0.02832191251218319, 0.039206553250551224, -0.012022251263260841, 0.019093628972768784, 0.03176204115152359, 0.020058320835232735, 0.04532233998179436, -0.03216248005628586, -0.02033134736120701, -0.02502739615738392, -0.024463143199682236, -0.005710796918720007, -0.01892981305718422, -0.0024071806110441685, -0.02488178201019764, 0.010557010769844055, 0.0028440223541110754, -0.036585502326488495, -0.013432886451482773, -0.0374227836728096, -0.04954514652490616, 0.027393624186515808, 0.015098346397280693, 0.006074831821024418, 0.0003725669230334461, 0.036367081105709076, 0.028958972543478012, 0.0315072163939476, 0.023098012432456017, -0.08307275921106339, -0.00583365885540843, -0.022824985906481743, -0.05183856561779976, -0.009747033007442951, -0.005920116789638996, 0.017109638080000877, 0.008764139376580715, 0.0645797848701477, -0.04153637960553169, -0.03076094575226307, 0.045686375349760056, 0.0007235193043015897, 0.022096917033195496, -0.01467970572412014, -0.06476180255413055, 0.030851954594254494, -0.014470385387539864, 0.03409186378121376, -0.03460151329636574, -0.03172563761472702, 0.02968704327940941, 0.0093556959182024, 0.006133987568318844, 0.03562081232666969, 0.038733310997486115, 0.06323285400867462, -0.0686933770775795, 0.036731116473674774, 0.010866440832614899, 0.04455786570906639, 0.03258112072944641, 0.03361861780285835, -0.0075537231750786304, 0.011412492953240871, 0.025045597925782204, -0.019257444888353348, 0.0022217503283172846, 0.03134340047836304, 0.0219695046544075, -0.007085028570145369, 0.032854147255420685, -0.013860627077519894, -0.00005279216566123068, 0.07673855125904083, 0.03221708536148071, -0.006488921586424112, -0.008823295123875141, -0.017810406163334846, -0.020422356203198433, -0.011767426505684853, 0.03685852885246277, 0.0006910974625498056, -0.016135845333337784, 0.04011664167046547, -0.020877398550510406, 0.05114689841866493, -0.01974889077246189, 0.08685871958732605, 0.006247748155146837, -0.027339018881320953, -0.01251369807869196, -0.002416281495243311, 0.04390260577201843, 0.005592485424131155, -0.019020821899175644, 0.045504357665777206, -0.041172344237565994, -0.03290875256061554, 0.020404154434800148, 0.03720436245203018, 0.07841310650110245, -0.031106779351830482, -0.038332872092723846, 0.04488549754023552, 0.07338942587375641, -0.020531566813588142, 0.0029646088369190693, -0.0035425142850726843, -0.010511506348848343, -0.01689121685922146, -0.0041841259226202965, -0.03201686590909958, 0.03451050445437431, -0.0022627043072134256, 0.022752178832888603, -0.007940510287880898, 0.005838209297508001, -0.02673836052417755, 0.024827178567647934, 0.029705245047807693, 0.013787820003926754, -0.04918111115694046, 0.0034947346430271864, 0.02329823188483715, 0.024827178567647934, -0.00831819698214531, -0.012085957452654839, -0.03702234476804733, 0.026174107566475868, 0.02588287927210331, 0.011549006216228008, -0.028194500133395195, -0.003371872939169407, 0.064215749502182, 0.02699318528175354, 0.04062629118561745, -0.022970600053668022, -0.025318624451756477, 0.02033134736120701, -0.010447800159454346, -0.04437584802508354, 0.004350216593593359, 0.0013378281146287918, -0.001145572168752551, 0.0014891300816088915, 0.031780242919921875, 0.02562805451452732, -0.041645586490631104, 0.07011311501264572, -0.01741906814277172, 0.038405679166316986, -0.03398265317082405, 0.025264019146561623, 0.023170819506049156, -0.04259207844734192, -0.007226091809570789, 0.019621478393673897, 0.009592318907380104, 0.03352761268615723, -0.008978010155260563, 0.05162014439702034, -0.010884642601013184, -0.07564644515514374, -0.003283139318227768, 0.03694953769445419, -0.022788582369685173, -0.02784866653382778, 0.0157536081969738, 0.043647781014442444, 0.05464163422584534, -0.012340782210230827, 0.028813360258936882, 0.03986181691288948, -0.038442082703113556, -0.017564682289958, 0.0010124719701707363, -0.050418827682733536, -0.003610770683735609, -0.00016765511827543378, -0.01586281880736351, -0.0015027814079076052, -0.05231181159615517, 0.011840233579277992, -0.02377147600054741, -0.041099537163972855, 0.011066660284996033, -0.015416876412928104, -0.0184110626578331, 0.009155476465821266, 0.04379339516162872, -0.0010363617911934853, -0.011721923016011715, 0.04692409560084343, 0.01053880900144577, -0.05602496489882469, -0.014333873055875301, -0.022460950538516045, 0.005242101848125458, 0.01982169784605503, -0.06756486743688583, -0.028886165469884872, 0.021878495812416077, -0.0012661587679758668, 0.02000371553003788, -0.06061180308461189, 0.0034333039075136185, -0.07965082675218582, -0.04463067278265953, 0.04488549754023552, 0.03472892567515373, 0.0070167719386518, -0.03487453982234001, -0.0062340968288481236, 0.043939009308815, 0.008877900429069996, -0.04222804307937622, -0.06133987382054329, 0.014060846529901028, 0.022915994748473167, 0.020567970350384712, -0.03208967298269272, 0.029268402606248856, -0.03176204115152359, 0.02943221852183342, 0.039097342640161514, 0.02029494382441044, -0.0187113918364048, -0.023789677768945694, 0.02591928280889988, -0.019839899614453316, -0.08212626725435257, 0.01274122018367052, 0.0020385952666401863, 0.0009487658389844, -0.03050612099468708, 0.01752827875316143, -0.04757935553789139, -0.013360079377889633, -0.03978900983929634, -0.04302892088890076, -0.020840995013713837, 0.013978938572108746, 0.010921046137809753, 0.031925857067108154, 0.015908323228359222, 0.09188240021467209, 0.009214632213115692, 0.04779777675867081, -0.029850859194993973, 0.01392433326691389, 0.008040620014071465, 0.03276313841342926, -0.007831299677491188, -0.008350050076842308, -0.034219276160001755, -0.003353671170771122, 0.0450311116874218, -0.006602682173252106, 0.05107409134507179, -0.0003179617051500827, 0.004452601540833712, 0.0231162142008543, -0.014242864213883877, -0.08059731870889664, -0.06330566108226776, 0.023571256548166275, 0.014206460677087307, -0.028594939038157463, -0.0030101132579147816, -0.028722351416945457, -0.027939675375819206, -0.0427376925945282, 0.0020795492455363274, -0.00043172258301638067, -0.011421593837440014, 0.035293180495500565, -0.04645084962248802, -0.02610130049288273, -0.02914099022746086, 0.0023594009689986706, -0.03312717378139496, -0.016063038259744644, 0.006930313538759947, 0.02735722064971924, -0.02581007219851017, -0.004454876761883497, -0.054823651909828186, 0.0759376734495163, -0.034219276160001755, -0.040808308869600296, 0.07167846709489822, 0.05573373660445213, -0.033928047865629196, -0.009100871160626411, -0.01989450491964817, -0.05875522643327713, 0.06115785613656044, 0.05427759885787964, -0.0035174868535250425, 0.04721532016992569, -0.024827178567647934, 0.013514794409275055, -0.04765216261148453, -0.0062340968288481236, 0.013906131498515606, 0.05467803776264191, -0.019020821899175644, -0.006966717075556517, -0.02710239589214325, 0.024008098989725113, -0.011985847726464272, -0.04765216261148453, 0.024226520210504532, 0.04696049913764, 0.03340020030736923, 0.02803068421781063, 0.08081573992967606, -0.03309077024459839, -0.07044074684381485, -0.013077952899038792, -0.0016836612485349178, -0.02846752665936947, -0.05103768780827522, -0.030269498005509377, 0.008978010155260563, -0.04175479710102081, -0.02326182834804058, -0.001939623267389834, -0.008181683719158173, 0.022570161148905754, -0.0453951470553875, 0.05140172317624092, 0.005223900079727173, 0.04179120063781738, -0.01627235859632492, -0.030087482184171677, -0.0024390334729105234, -0.05653461441397667, -0.0019089077832177281, -0.03534778580069542, 0.008600323460996151, 0.01353299617767334, 0.04146357253193855, -0.0312705934047699, 0.03239910304546356, -0.03691313415765762, -0.04441225156188011, -0.005383165553212166, 0.025864677503705025, -0.0033969003707170486, -0.055224087089300156, 0.035001952201128006, 0.06705522537231445, -0.004630068317055702, -0.006038428284227848, 0.016763806343078613, -0.03394624963402748, -0.023716870695352554, 0.06454338133335114, -0.016809308901429176, 0.005055534187704325, 0.040917519479990005, -0.055442508310079575, -0.012267975136637688, 0.052348215132951736, 0.048234619200229645, -0.052821457386016846, -0.0012092783581465483, 0.012140562757849693, -0.03010568395256996, -0.06829293817281723, 0.005041882861405611, -0.0012479569995775819, -0.07226092368364334, -0.031634628772735596, -0.020549768581986427, -0.01971248723566532, 0.03689493238925934, -0.04757935553789139, -0.017437269911170006, -0.028758754953742027, 0.02322542481124401, -0.022897792980074883, -0.003387799486517906, -0.033855240792036057, 0.06789249926805496, 0.0014413505559787154, 0.04146357253193855, 0.076301708817482, 0.03938857093453407, -0.057517509907484055, 0.02710239589214325, -0.0003446955233812332, -0.01971248723566532, 0.050746459513902664, -0.04725172370672226, -0.031033972278237343, 0.05671663209795952, -0.024827178567647934, 0.0184110626578331, -0.00336504727602005, 0.02695678174495697, -0.014479486271739006, 0.021769285202026367, 0.07346223294734955, 0.028831562027335167, 0.020313145592808723, -0.0280670877546072, 0.026192307472229004, -0.02588287927210331, -0.03083375282585621, -0.02233353815972805, 0.0031238740775734186, 0.009519511833786964, -0.036003049463033676, 0.043320149183273315, -0.03789602965116501, 0.05162014439702034, 0.010921046137809753, -0.03238090127706528, -0.034965548664331436, -0.03137980401515961, 0.050782863050699234, 0.013405583798885345, -0.03807804733514786, -0.031998664140701294, 0.024463143199682236, -0.003217158140614629, -0.003747283946722746, 0.01536227110773325, 0.00561068719252944, -0.06443417072296143, 0.03811445087194443, 0.011066660284996033, 0.057408299297094345, 0.02817629836499691, -0.013633105903863907, 0.08605784177780151, -0.01068442314863205, -0.008400104008615017, -0.005719897802919149, -0.045577164739370346, 0.04037146642804146, 0.013323675841093063, -0.01608124002814293, 0.08299995213747025, -0.08693152666091919, -0.017364462837576866, -0.023389240726828575, 0.011412492953240871, -0.028121693059802055, 0.024717967957258224, -0.004602765664458275, -0.054823651909828186, 0.10957449674606323, -0.02244274877011776, -0.03340020030736923, -0.016108542680740356, -0.006702791899442673, -0.027430027723312378, -0.0022706673480570316, 0.053258299827575684, -0.05886443704366684, 0.0050100297667086124, -0.03125239163637161, 0.024827178567647934, -0.03329098969697952, -0.0335640124976635, 0.00013430895342025906, 0.04546795412898064, -0.007767593953758478, 0.003865595208480954, 0.047943390905857086, 0.10753589868545532, 0.027739455923438072, -0.0015073318500071764, 0.03760480135679245, -0.024153713136911392, 0.03542059287428856, 0.014970934018492699, 0.04892628639936447, -0.028631342574954033, -0.0061658406630158424, 0.00426148297265172, -0.006875708699226379, -0.05890084058046341, 0.03405546024441719, -0.0035243125166743994, -0.0017974221846088767, 0.0007741429144516587, -0.012713917531073093, 0.02788507007062435, 0.07127802819013596, -0.07429951429367065, 0.013214465230703354, -0.03254471719264984, 0.07957801967859268, 0.019330251961946487, 0.03279954195022583, 0.029049981385469437, -0.03057892806828022, -0.017500976100564003, 0.012932338751852512, -0.003990732133388519, 0.011721923016011715, -0.017919616773724556, 0.0038997235242277384, 0.013596702367067337, 0.04499470815062523, -0.0492539182305336, 0.05631619319319725, 0.01889340952038765, -0.02244274877011776, 0.002793967491015792, -0.0070440745912492275, -0.009865344502031803, 0.013469289988279343, -0.08168942481279373, 0.0935569629073143, 0.05103768780827522, 0.0032376351300626993, 0.016072139143943787, -0.028758754953742027, -0.009141825139522552, -0.004791609011590481, 0.031816646456718445, -0.02144165337085724, -0.04022585228085518, -0.022806784138083458, -0.08867888897657394, -0.002577821956947446, -0.07415390014648438, 0.01682751066982746, -0.070258729159832, 0.014015342108905315, -0.03312717378139496, 0.01789231412112713, -0.03707695007324219, -0.031070375815033913, 0.06348767876625061, -0.06720083206892014, -0.0542047917842865, 0.00920553132891655, -0.05005479231476784, 0.0093556959182024, 0.0006586755625903606, -0.02588287927210331, -0.05369514226913452, -0.015990231186151505, -0.06843855232000351, 0.002600574167445302, 0.0003810990019701421, 0.005747200455516577, -0.04499470815062523, 0.0790683701634407, 0.07102320343255997, -0.059628911316394806, 0.0022581538651138544, -0.05413198471069336, -0.003947502933442593, 0.027684850618243217, 0.014561394229531288, 0.020131127908825874, 0.0021443928126245737, -0.021623671054840088, -0.04692409560084343, -0.05016400292515755, -0.011166769079864025, 0.019020821899175644, 0.055515315383672714, 0.01360580325126648, 0.03241730481386185, 0.009674226865172386, -0.0015676250914111733, -0.14153675734996796, -0.04281049966812134, -0.02903177961707115, -0.010748129338026047, -0.04528593644499779, 0.014652403071522713, -0.07175127416849136, 0.0368221253156662, -0.036731116473674774, 0.09858064353466034, -0.04018944874405861, 0.013278171420097351, -0.012577404268085957, -0.0012729844311252236, 0.023280030116438866, -0.01903902366757393, -0.015189354307949543, 0.004855315200984478, -0.062395576387643814, 0.052821457386016846, 0.03179844468832016, 0.06308723986148834, -0.04750654846429825, 0.015389573760330677, -0.010939247906208038, -0.04634163901209831, 0.010930147022008896, 0.060029350221157074, 0.010629817843437195, -0.025355027988553047, -0.06334206461906433, 0.015353170223534107, -0.013578500598669052, 0.06083022430539131 ]
729,307
tinytuya.core
encrypt
null
def encrypt(self, raw, use_base64=True, pad=True, iv=False, header=None): # pylint: disable=W0621 if iv: # initialization vector or nonce (number used once) iv = self.get_encryption_iv( iv ) encryptor = Crypto( AES(self.key), Crypto_modes.GCM(iv) ).encryptor() if header: encryptor.authenticate_additional_data(header) crypted_text = encryptor.update(raw) + encryptor.finalize() crypted_text = iv + crypted_text + encryptor.tag else: if pad: raw = self._pad(raw, 16) encryptor = Crypto( AES(self.key), Crypto_modes.ECB() ).encryptor() crypted_text = encryptor.update(raw) + encryptor.finalize() return base64.b64encode(crypted_text) if use_base64 else crypted_text
(self, raw, use_base64=True, pad=True, iv=False, header=None)
[ 0.002405722625553608, -0.05762840434908867, 0.008429107256233692, 0.053779248148202896, 0.04255859553813934, -0.06899430602788925, -0.029304424300789833, 0.005083790980279446, 0.07640212029218674, -0.00780725060030818, 0.037184301763772964, -0.03153765946626663, -0.0016284018056467175, 0.0488043949007988, -0.01843782141804695, -0.02520107850432396, -0.030466433614492416, -0.060751304030418396, 0.021896613761782646, -0.060388173907995224, 0.03860050067305565, 0.030647996813058853, -0.014053051359951496, 0.013063527643680573, 0.030375652015209198, 0.06311163306236267, 0.018755557015538216, 0.007158159278333187, -0.03903625160455704, -0.02794269472360611, 0.09818979352712631, -0.02685330994427204, 0.002043729415163398, -0.006540841888636351, -0.00934146624058485, -0.054178688675165176, 0.03162844479084015, -0.032899390906095505, -0.00241026165895164, -0.043902166187763214, -0.035586535930633545, -0.00610054936259985, 0.03549575433135033, -0.05958929285407066, -0.025691300630569458, 0.01748461090028286, 0.030212244018912315, 0.05908091366291046, 0.03191894665360451, 0.035296034067869186, 0.017965754494071007, 0.0046480377204716206, 0.046298813074827194, 0.04008932411670685, -0.016613103449344635, 0.016449695453047752, -0.051128413528203964, -0.007194472011178732, -0.023421751335263252, -0.020389633253216743, 0.00752128753811121, -0.014280006289482117, 0.04023457318544388, 0.019209466874599457, -0.0306298416107893, 0.03193709999322891, -0.05465075373649597, 0.041360270231962204, 0.02062566578388214, -0.02260471321642399, 0.05105578899383545, -0.01613195799291134, 0.01624089665710926, -0.019300250336527824, -0.10915625840425491, 0.04753344506025314, -0.0627485066652298, 0.03253626450896263, -0.008824008516967297, -0.029576770961284637, 0.07309765368700027, -0.025981804355978966, 0.043611664324998856, 0.025691300630569458, 0.04651668667793274, -0.005587630905210972, -0.09753616154193878, 0.0035722709726542234, 0.037692680954933167, -0.07131832838058472, 0.019064215943217278, 0.015323998406529427, 0.002398913959041238, 0.04851389303803444, 0.02983096055686474, -0.0244021974503994, 0.04542730376124382, -0.03179185092449188, -0.0029504145495593548, 0.0013742123264819384, -0.03420665115118027, 0.027361689135432243, 0.008551662787795067, -0.04353903979063034, -0.02011728659272194, -0.02625414915382862, -0.03914519026875496, 0.01862846314907074, 0.024148007854819298, 0.004194127395749092, 0.01299997977912426, -0.06997475028038025, -0.07302502542734146, -0.03279045224189758, 0.04513680189847946, -0.04913121089339256, 0.016177348792552948, 0.008283856324851513, -0.019844941794872284, 0.031501349061727524, 0.04364797845482826, -0.028106102719902992, 0.04154183715581894, -0.07128201425075531, 0.010639648884534836, -0.061295993626117706, -0.005805507767945528, -0.02196924015879631, -0.017112404108047485, -0.06685185432434082, 0.0019949341658502817, 0.003504184540361166, 0.03943569213151932, 0.05425131320953369, 0.019191311672329903, -0.017493687570095062, 0.049494337290525436, 0.052726175636053085, 0.025019515305757523, 0.0612596832215786, 0.05243567377328873, -0.014579586684703827, -0.01041269302368164, 0.03651251271367073, 0.006254878826439381, -0.01599578559398651, -0.0010615817736834288, -0.07131832838058472, 0.0072897933423519135, -0.039472006261348724, 0.0572652742266655, -0.026871467009186745, 0.0094685610383749, 0.07611161470413208, 0.017711564898490906, 0.018356116488575935, -0.0028392064850777388, -0.023675940930843353, -0.008973798714578152, 0.0443379208445549, 0.022822590544819832, 0.012291880324482918, -0.016159193590283394, 0.04368428885936737, 0.019463656470179558, 0.046843502670526505, -0.05069265887141228, -0.0189189650118351, 0.02176951989531517, -0.035840727388858795, 0.030992969870567322, -0.04913121089339256, -0.02320387400686741, 0.01937287487089634, 0.041759710758924484, 0.013245091773569584, -0.06452783197164536, -0.040924519300460815, -0.024928731843829155, -0.0612596832215786, -0.04288540780544281, 0.02002650499343872, 0.039326753467321396, 0.015578188002109528, -0.004055684898048639, -0.01911868527531624, 0.09005572646856308, 0.009650125168263912, 0.049240149557590485, -0.04811445251107216, 0.03965356945991516, 0.017666174098849297, -0.05918985232710838, 0.030847717076539993, 0.002043729415163398, 0.015768829733133316, 0.015287686139345169, -0.02476532571017742, -0.05218148231506348, 0.03328067436814308, -0.008937486447393894, 0.008274777792394161, 0.04165077209472656, -0.04459210857748985, 0.01633167825639248, -0.02899576537311077, -0.02405722625553608, 0.0018894000677391887, -0.05014796927571297, -0.05465075373649597, 0.04150552302598953, 0.018592150881886482, -0.007766398601233959, 0.04517311602830887, 0.007321566808968782, 0.07095519453287125, 0.030212244018912315, 0.03471503034234047, -0.0256549883633852, -0.0032114125788211823, -0.011020932346582413, 0.009028268046677113, -0.04205021634697914, -0.01698530837893486, 0.07182670384645462, -0.051128413528203964, -0.001155200763605535, 0.05109209939837456, -0.018846340477466583, -0.019499970600008965, 0.057011086493730545, 0.005592170171439648, -0.03614938631653786, 0.09129036217927933, -0.005909907165914774, -0.0075939130038022995, 0.0043257614597678185, -0.04299434646964073, -0.03520525246858597, -0.011874283663928509, 0.03420665115118027, -0.011756266467273235, -0.009704593569040298, -0.009949705563485622, -0.01629536598920822, -0.004432430490851402, -0.0318644754588604, 0.06645241379737854, 0.020189912989735603, -0.023875661194324493, -0.02122482843697071, 0.0403435118496418, -0.046444062143564224, -0.035368662327528, -0.0306298416107893, 0.05105578899383545, 0.003540497273206711, 0.05519544705748558, -0.0025214694906026125, 0.007739163935184479, 0.02351253293454647, 0.0013401689939200878, -0.058899350464344025, -0.019409187138080597, 0.08359204977750778, 0.032554417848587036, -0.0166948065161705, 0.01314523071050644, 0.025673145428299904, -0.004468743223696947, 0.014225536957383156, 0.006368356291204691, 0.029976211488246918, 0.015196903608739376, 0.04597199708223343, -0.05348874628543854, -0.011438529938459396, 0.054214999079704285, -0.012863807380199432, 0.0033861680421978235, -0.0005776003818027675, -0.017021622508764267, -0.0009736367501318455, -0.0056466395035386086, 0.011320513673126698, 0.010721351951360703, -0.007126385811716318, -0.011574703268706799, -0.0015432937070727348, -0.012418975122272968, -0.011756266467273235, 0.0306298416107893, 0.007276176009327173, 0.014806541614234447, 0.01663125865161419, -0.02939520590007305, -0.032046038657426834, -0.01848321221768856, 0.006454599089920521, -0.006282113026827574, -0.03605860471725464, 0.05120103806257248, -0.007248941343277693, -0.015950394794344902, 0.02745247259736061, 0.005011165514588356, 0.021642424166202545, -0.0025373564567416906, 0.006917587015777826, -0.04451948404312134, 0.00769377313554287, -0.008710531517863274, 0.0617680624127388, 0.016222739592194557, -0.0166766494512558, 0.03442452847957611, 0.03801949322223663, 0.006155018694698811, 0.01882818341255188, -0.007457740139216185, 0.032754138112068176, 0.030212244018912315, -0.041614461690187454, 0.00032738252775743604, 0.028106102719902992, -0.032953858375549316, 0.030502745881676674, -0.0308840312063694, 0.010430850088596344, 0.02011728659272194, -0.010458084754645824, 0.055268071591854095, 0.026762528344988823, -0.01782958209514618, -0.0712093859910965, 0.03322620689868927, -0.029867272824048996, -0.004675271920859814, -0.020244382321834564, -0.020934324711561203, -0.0004910737625323236, -0.007430505473166704, 0.026036273688077927, 0.016821902245283127, -0.05199991911649704, -0.059698231518268585, -0.030048836022615433, -0.036185696721076965, -0.05987979471683502, 0.022749964147806168, -0.023294657468795776, -0.010839369148015976, 0.0801786482334137, 0.00829293392598629, -0.01252791378647089, -0.045354679226875305, -0.023585159331560135, -0.008124987594783306, 0.0009968996746465564, -0.013571906834840775, 0.024238789454102516, 0.0025782082229852676, 0.04796919971704483, 0.05062003433704376, -0.05712002515792847, 0.04451948404312134, -0.02550973743200302, -0.028323978185653687, 0.004262214060872793, 0.05799153074622154, -0.010957385413348675, -0.06877642869949341, -0.019209466874599457, 0.0478239469230175, 0.013762548565864563, -0.013753470033407211, -0.05686583369970322, -0.01299997977912426, 0.0055785528384149075, -0.053525056689977646, 0.022949686273932457, 0.020807230845093727, -0.008029666729271412, -0.0017906746361404657, 0.053270868957042694, 0.012391740456223488, 0.06790492683649063, 0.011030010879039764, 0.02685330994427204, -0.019463656470179558, -0.07538536190986633, -0.005651178304105997, 0.012509757652878761, 0.011556546203792095, -0.05657533183693886, 0.013708079233765602, -0.011611015535891056, -0.0246563870459795, -0.04219546541571617, -0.02645386941730976, 0.005837281700223684, -0.04056138917803764, 0.07444122433662415, -0.01664033718407154, -0.011011854745447636, 0.02645386941730976, -0.00961381196975708, -0.027161968871951103, 0.017293967306613922, 0.02102510817348957, -0.0712093859910965, 0.07596636563539505, 0.013580984435975552, 0.014861010946333408, -0.023530689999461174, -0.029467832297086716, -0.014134754426777363, -0.05007534101605415, -0.0044755516573786736, 0.06140493229031563, -0.015178747475147247, 0.021479018032550812, -0.027125656604766846, 0.013871487230062485, -0.03565916419029236, -0.008061439730226994, 0.02805163338780403, -0.06950268894433975, 0.01613195799291134, -0.017893128097057343, -0.026163367554545403, 0.009305153042078018, 0.029304424300789833, 0.03179185092449188, -0.022477619349956512, 0.029921742156147957, 0.023294657468795776, -0.02765219286084175, -0.02560051903128624, 0.007553061004728079, 0.005183651112020016, -0.05472337827086449, -0.05548594892024994, 0.04045245051383972, -0.0012573304120451212, -0.005047478247433901, -0.10646910965442657, 0.018864495679736137, 0.013753470033407211, 0.013644532300531864, 0.07215352356433868, 0.015877768397331238, -0.000926543609239161, 0.05276248976588249, -0.012909198179841042, -0.02371225319802761, 0.02914101630449295, 0.0030298486817628145, -0.027216438204050064, 0.0025282781571149826, -0.006032462697476149, 0.03171922639012337, -0.012791180983185768, 0.009037346579134464, 0.012936432845890522, 0.0003551845147740096, -0.01853768154978752, -0.011919674463570118, -0.029050234705209732, 0.01977231539785862, 0.04825970157980919, -0.010276520624756813, 0.001393503393046558, 0.028015319257974625, 0.05966192111372948, 0.019590752199292183, 0.02411169558763504, 0.0013617296935990453, -0.037329550832509995, -0.04037982597947121, -0.022332368418574333, -0.02874157577753067, 0.01295458897948265, -0.013553749769926071, 0.05345243215560913, 0.0002280897315358743, 0.017620783299207687, 0.02176951989531517, 0.05109209939837456, 0.0011790309799835086, 0.011093558743596077, 0.05603063851594925, -0.023403596132993698, 0.07930713891983032, -0.04114239662885666, 0.009237066842615604, -0.053525056689977646, -0.0712457001209259, -0.06503621488809586, -0.008637906052172184, 0.003147865179926157, -0.005637560971081257, -0.008878477849066257, -0.039181504398584366, 0.03462424874305725, -0.03162844479084015, -0.05149153992533684, 0.03791055455803871, 0.05210885778069496, 0.034751344472169876, -0.027906382456421852, -0.022677339613437653, 0.081703782081604, -0.04862283170223236, 0.029050234705209732, 0.0046480377204716206, -0.02634493075311184, -0.029776491224765778, 0.02451113611459732, -0.0577736534178257, -0.00955934263765812, 0.056357454508543015, -0.05468706786632538, 0.009532107971608639, 0.0015137895243242383, 0.09775403887033463, 0.015187826007604599, -0.018347037956118584, -0.06685185432434082, 0.03248179331421852, -0.06242169067263603, 0.01252791378647089, 0.007298871409147978, -0.03476949781179428, -0.06358370184898376, 0.003361203009262681, 0.00816583912819624, 0.013308638706803322, 0.012981823645532131, -0.03282676637172699, -0.02320387400686741, -0.012736712582409382, -0.004554986022412777, -0.04077926650643349, -0.019191311672329903, 0.06612559407949448, 0.026617277413606644, -0.00651360722258687, 0.013317717239260674, -0.025673145428299904, -0.06151387095451355, -0.009904314763844013, -0.003504184540361166, 0.045354679226875305, 0.03382536768913269, -0.055812764912843704, 0.015550953336060047, -0.006844961550086737, -0.04927645996212959, 0.08330154418945312, 0.056756895035505295, 0.019844941794872284, -0.005564935505390167, -0.024928731843829155, 0.012536992318928242, 0.00918713677674532, 0.015659892931580544, -0.008361021056771278, 0.011856126599013805, 0.020861700177192688, -0.03801949322223663, 0.003004883648827672, 0.005928063299506903, 0.0383463092148304, -0.06042448803782463, 0.02919548563659191, -0.07302502542734146, 0.04717031866312027, 0.00769377313554287, -0.07382390648126602, -0.054323937743902206, -0.01014034729450941, 0.024020912125706673, -0.0053924499079585075, 0.039326753467321396, -0.01838335208594799, 0.04139658436179161, 0.026889624074101448, -0.013281404040753841, 0.03400693088769913, -0.030066993087530136, -0.07531273365020752, 0.05490494519472122, 0.005387910641729832, 0.0697205662727356, 0.032899390906095505, -0.03696642443537712, 0.030956655740737915, 0.003150134813040495, 0.011465764604508877, 0.009831688366830349, -0.01536939013749361, -0.014116598293185234, 0.044701047241687775, -0.009831688366830349, 0.046843502670526505, -0.07327921688556671, 0.00842002872377634, -0.03360749036073685, -0.0005149040371179581, 0.0038128432352095842, 0.061187054961919785, -0.026127055287361145, -0.09129036217927933, 0.044156357645988464, -0.0012664087116718292, -0.06536302715539932, 0.03406139835715294, 0.038527872413396835, -0.00861521065235138, -0.03460609167814255, 0.035586535930633545, -0.10065906494855881, -0.022695496678352356, -0.048332326114177704, -0.003619931638240814, -0.013935034163296223, 0.02271365188062191, -0.03146503493189812, 0.027089344337582588, 0.004815984051674604, 0.020879855379462242, 0.045499928295612335, 0.081703782081604, 0.00240345299243927, -0.015478327870368958, -0.0013719426933676004, 0.016712963581085205, 0.004339378792792559, 0.010957385413348675, 0.0046798111870884895, -0.002998074982315302, 0.02260471321642399, -0.00978629756718874, 0.013617297634482384, -0.03667592257261276, -0.030720623210072517, -0.06060605123639107, -0.05218148231506348, -0.05323455482721329, -0.012509757652878761, -0.0338616780936718, 0.08932947367429733, -0.07734625041484833, 0.008143143728375435, -0.00934146624058485, 0.022931529209017754, 0.014098442159593105, 0.05323455482721329, -0.02431141585111618, 0.011747188866138458, -0.006817726884037256, 0.016758354380726814, -0.028578167781233788, -0.0186829324811697, -0.004418813157826662, -0.01654047705233097, -0.0373658649623394, 0.06489095836877823, -0.046698253601789474, 0.03320804983377457, -0.002344444626942277, -0.030121462419629097, 0.0323728546500206, 0.03780161961913109, -0.0036812094040215015, 0.026435714215040207, -0.05490494519472122, 0.027870068326592445, 0.006622545886784792, -0.00430760532617569, 0.029159173369407654, 0.01295458897948265, -0.04691612720489502, -0.0061867921613156796, -0.03794686868786812, -0.014379866421222687, -0.004541368689388037, 0.006772336084395647, -0.09601102769374847, -0.018564915284514427, -0.06616190820932388, -0.003794686868786812, -0.005605787504464388, 0.04422898218035698, -0.04597199708223343, 0.06173174828290939, -0.017675252631306648, -0.060787614434957504, 0.014053051359951496, -0.0069811344146728516, -0.007884414866566658, 0.009082737378776073, -0.034587934613227844, 0.011011854745447636, 0.0005642667529173195, 0.03108375146985054, -0.03965356945991516, 0.03126531466841698, -0.03393430635333061, 0.060351863503456116, 0.05025690421462059, 0.00014950658078305423, 0.0040397983975708485, 0.015278607606887817, 0.08533506095409393, 0.0019177694339305162, 0.005047478247433901, -0.01654047705233097, -0.0004453991132322699, 0.019046060740947723, 0.0025872865226119757, -0.010675961151719093, -0.021696893498301506, -0.02625414915382862, -0.0128274941816926, -0.04379322752356529, -0.02262287028133869, 0.0154420156031847, 0.030103305354714394, -0.008960181847214699, 0.029613083228468895, -0.016222739592194557, -0.005315285176038742, -0.05937141552567482, 0.025037670508027077, -0.020534884184598923, -0.016349835321307182, -0.07458648085594177, 0.04771501198410988, -0.07084625959396362, 0.00509286904707551, 0.0073397234082221985, 0.0025373564567416906, 0.033389613032341, -0.007003829814493656, 0.05185467004776001, -0.03968988358974457, 0.014497882686555386, 0.05657533183693886, 0.0026372165884822607, 0.07494960725307465, -0.031356096267700195, 0.027924537658691406, 0.07302502542734146, 0.05664795637130737, -0.062276441603899, 0.06285744160413742, 0.01762986183166504, -0.05831834673881531, -0.010748586617410183, -0.008388254791498184, 0.017421063035726547, -0.014570508152246475, -0.054323937743902206, 0.0244021974503994, 0.014797463081777096, 0.07553061097860336 ]
729,308
tinytuya.BulbDevice
BulbDevice
Represents a Tuya based Smart Light/Bulb. This class supports two types of bulbs with different DPS mappings and functions: Type A - Uses DPS index 1-5 Type B - Uses DPS index 20-27 (no index 1) Type C - Same as Type A except that it is using DPS 2 for brightness, which ranges from 0-1000. These are the Feit branded dimmers found at Costco.
class BulbDevice(Device): """ Represents a Tuya based Smart Light/Bulb. This class supports two types of bulbs with different DPS mappings and functions: Type A - Uses DPS index 1-5 Type B - Uses DPS index 20-27 (no index 1) Type C - Same as Type A except that it is using DPS 2 for brightness, which ranges from 0-1000. These are the Feit branded dimmers found at Costco. """ # Two types of Bulbs - TypeA uses DPS 1-5, TypeB uses DPS 20-24 DPS_INDEX_ON = {"A": "1", "B": "20", "C": "1"} DPS_INDEX_MODE = {"A": "2", "B": "21", "C": "1"} DPS_INDEX_BRIGHTNESS = {"A": "3", "B": "22", "C": "2"} DPS_INDEX_COLOURTEMP = {"A": "4", "B": "23", "C": None} DPS_INDEX_COLOUR = {"A": "5", "B": "24", "C": None} DPS_INDEX_SCENE = {"A": "2", "B": "25", "C": None} DPS_INDEX_TIMER = {"A": None, "B": "26", "C": None} DPS_INDEX_MUSIC = {"A": None, "B": "27", "C": None} DPS = "dps" DPS_MODE_WHITE = "white" DPS_MODE_COLOUR = "colour" DPS_MODE_SCENE = "scene" DPS_MODE_MUSIC = "music" DPS_MODE_SCENE_1 = "scene_1" # nature DPS_MODE_SCENE_2 = "scene_2" DPS_MODE_SCENE_3 = "scene_3" # rave DPS_MODE_SCENE_4 = "scene_4" # rainbow DPS_2_STATE = { "1": "is_on", "2": "mode", "3": "brightness", "4": "colourtemp", "5": "colour", "20": "is_on", "21": "mode", "22": "brightness", "23": "colourtemp", "24": "colour", } # Set Default Bulb Types bulb_type = "A" has_brightness = False has_colourtemp = False has_colour = False def __init__(self, *args, **kwargs): # set the default version to None so we do not immediately connect and call status() if 'version' not in kwargs or not kwargs['version']: kwargs['version'] = None super(BulbDevice, self).__init__(*args, **kwargs) @staticmethod def _rgb_to_hexvalue(r, g, b, bulb="A"): """ Convert an RGB value to the hex representation expected by Tuya Bulb. Index (DPS_INDEX_COLOUR) is assumed to be in the format: (Type A) Index: 5 in hex format: rrggbb0hhhssvv (Type B) Index: 24 in hex format: hhhhssssvvvv While r, g and b are just hexadecimal values of the corresponding Red, Green and Blue values, the h, s and v values (which are values between 0 and 1) are scaled: Type A: 360 (h) and 255 (s and v) Type B: 360 (h) and 1000 (s and v) Args: r(int): Value for the colour red as int from 0-255. g(int): Value for the colour green as int from 0-255. b(int): Value for the colour blue as int from 0-255. """ rgb = [r, g, b] hsv = colorsys.rgb_to_hsv(rgb[0] / 255.0, rgb[1] / 255.0, rgb[2] / 255.0) # Bulb Type A if bulb == "A": # h:0-360,s:0-255,v:0-255|hsv| hexvalue = "" for value in rgb: temp = str(hex(int(value))).replace("0x", "") if len(temp) == 1: temp = "0" + temp hexvalue = hexvalue + temp hsvarray = [int(hsv[0] * 360), int(hsv[1] * 255), int(hsv[2] * 255)] hexvalue_hsv = "" for value in hsvarray: temp = str(hex(int(value))).replace("0x", "") if len(temp) == 1: temp = "0" + temp hexvalue_hsv = hexvalue_hsv + temp if len(hexvalue_hsv) == 7: hexvalue = hexvalue + "0" + hexvalue_hsv else: hexvalue = hexvalue + "00" + hexvalue_hsv # Bulb Type B if bulb == "B": # h:0-360,s:0-1000,v:0-1000|hsv| hexvalue = "" hsvarray = [int(hsv[0] * 360), int(hsv[1] * 1000), int(hsv[2] * 1000)] for value in hsvarray: temp = str(hex(int(value))).replace("0x", "") while len(temp) < 4: temp = "0" + temp hexvalue = hexvalue + temp return hexvalue @staticmethod def _hexvalue_to_rgb(hexvalue, bulb="A"): """ Converts the hexvalue used by Tuya for colour representation into an RGB value. Args: hexvalue(string): The hex representation generated by BulbDevice._rgb_to_hexvalue() """ if bulb == "A": r = int(hexvalue[0:2], 16) g = int(hexvalue[2:4], 16) b = int(hexvalue[4:6], 16) if bulb == "B": # hexvalue is in hsv h = float(int(hexvalue[0:4], 16) / 360.0) s = float(int(hexvalue[4:8], 16) / 1000.0) v = float(int(hexvalue[8:12], 16) / 1000.0) rgb = colorsys.hsv_to_rgb(h, s, v) r = int(rgb[0] * 255) g = int(rgb[1] * 255) b = int(rgb[2] * 255) return (r, g, b) @staticmethod def _hexvalue_to_hsv(hexvalue, bulb="A"): """ Converts the hexvalue used by Tuya for colour representation into an HSV value. Args: hexvalue(string): The hex representation generated by BulbDevice._rgb_to_hexvalue() """ if bulb == "A": h = int(hexvalue[7:10], 16) / 360.0 s = int(hexvalue[10:12], 16) / 255.0 v = int(hexvalue[12:14], 16) / 255.0 if bulb == "B": # hexvalue is in hsv h = int(hexvalue[0:4], 16) / 360.0 s = int(hexvalue[4:8], 16) / 1000.0 v = int(hexvalue[8:12], 16) / 1000.0 return (h, s, v) def set_version(self, version): # pylint: disable=W0621 """ Set the Tuya device version 3.1 or 3.3 for BulbDevice Attempt to determine BulbDevice Type: A or B based on: Type A has keys 1-5 (default) Type B has keys 20-29 Type C is Feit type bulbs from costco """ super(BulbDevice, self).set_version(version) # Try to determine type of BulbDevice Type based on DPS indexes status = self.status() if status is not None: if "dps" in status: if "1" not in status["dps"]: self.bulb_type = "B" if self.DPS_INDEX_BRIGHTNESS[self.bulb_type] in status["dps"]: self.has_brightness = True if self.DPS_INDEX_COLOURTEMP[self.bulb_type] in status["dps"]: self.has_colourtemp = True if self.DPS_INDEX_COLOUR[self.bulb_type] in status["dps"]: self.has_colour = True else: self.bulb_type = "B" else: # response has no dps self.bulb_type = "B" log.debug("bulb type set to %s", self.bulb_type) def turn_on(self, switch=0, nowait=False): """Turn the device on""" if switch == 0: switch = self.DPS_INDEX_ON[self.bulb_type] self.set_status(True, switch, nowait=nowait) def turn_off(self, switch=0, nowait=False): """Turn the device on""" if switch == 0: switch = self.DPS_INDEX_ON[self.bulb_type] self.set_status(False, switch, nowait=nowait) def set_bulb_type(self, type): self.bulb_type = type def set_mode(self, mode="white", nowait=False): """ Set bulb mode Args: mode(string): white,colour,scene,music nowait(bool): True to send without waiting for response. """ payload = self.generate_payload( CONTROL, {self.DPS_INDEX_MODE[self.bulb_type]: mode} ) data = self._send_receive(payload, getresponse=(not nowait)) return data def set_scene(self, scene, nowait=False): """ Set to scene mode Args: scene(int): Value for the scene as int from 1-4. nowait(bool): True to send without waiting for response. """ if not 1 <= scene <= 4: return error_json( ERR_RANGE, "set_scene: The value for scene needs to be between 1 and
(*args, **kwargs)
[ 0.011186355724930763, -0.10460297763347626, -0.0993686094880104, -0.008405596017837524, -0.014922176487743855, -0.015375962480902672, -0.056142840534448624, 0.03583855181932449, -0.0706217810511589, -0.03282034397125244, -0.04295138269662857, 0.035733018070459366, 0.012167800217866898, 0.0442388691008091, -0.016863958910107613, -0.0064057717099785805, 0.053736720234155655, 0.03474102169275284, 0.03689386695623398, -0.046307291835546494, -0.025770829990506172, 0.029190056025981903, 0.008774957619607449, 0.06365669518709183, -0.03121626377105713, 0.022267179563641548, 0.004812243394553661, 0.007075897417962551, -0.0157769825309515, -0.01767655275762081, 0.021254075691103935, -0.03849794715642929, 0.033875662833452225, 0.01095418632030487, -0.02754376269876957, -0.02127518132328987, 0.04271921515464783, 0.035543061792850494, -0.08864659070968628, -0.022246073931455612, -0.00468560541048646, -0.061672698706388474, 0.046054013073444366, 0.019027357921004295, -0.005305604077875614, 0.002472079126164317, -0.020547013729810715, 0.034065619111061096, -0.013740221969783306, -0.0013151882449164987, 0.021222416311502457, -0.020029908046126366, -0.03286255896091461, 0.053441230207681656, 0.004044500645250082, 0.007556066382676363, -0.042339298874139786, 0.048502348363399506, 0.004300415050238371, 0.015397069044411182, -0.029274482280015945, 0.03919445723295212, 0.018995698541402817, -0.023997899144887924, 0.009576997719705105, -0.006965089123696089, -0.020061567425727844, 0.01897459104657173, 0.012621586211025715, 0.03938441351056099, 0.0306674987077713, 0.011492397636175156, 0.02111688442528248, 0.018056467175483704, 0.010468740016222, -0.035247571766376495, -0.043120235204696655, 0.04088296368718147, -0.025327596813440323, -0.029865458607673645, 0.05880223959684372, 0.04656056687235832, 0.050612982362508774, -0.03161728382110596, 0.009571720845997334, -0.0076193856075406075, 0.003073609434068203, 0.028789035975933075, -0.04803800955414772, -0.008310617879033089, -0.05859117582440376, -0.03626067563891411, -0.02435670606791973, 0.07214143872261047, 0.005434880498796701, -0.03336910903453827, -0.005825347267091274, -0.0069387066178023815, 0.0030630563851445913, -0.015375962480902672, -0.05905551463365555, -0.005930879153311253, -0.06437431275844574, -0.01963944174349308, -0.016716213896870613, -0.007545513566583395, -0.054032206535339355, 0.04884004965424538, 0.03887786343693733, -0.0016858682502061129, -0.04778473451733589, 0.00032483963877893984, -0.00017742509953677654, -0.04115734621882439, -0.04799579828977585, -0.03364349156618118, 0.0033031408675014973, 0.009508402086794376, -0.01874242164194584, 0.009603381156921387, 0.003548501990735531, -0.007524407003074884, -0.004696158692240715, 0.012315544299781322, 0.04871341213583946, 0.06500750035047531, -0.03197609260678291, 0.013856306672096252, 0.02290036901831627, 0.03927888348698616, -0.041305091232061386, 0.0321449413895607, -0.0009656146285124123, 0.009740571491420269, 0.0202726311981678, -0.025813043117523193, -0.025116534903645515, -0.005455986596643925, 0.021507350727915764, 0.0034561618231236935, 0.01689561828970909, -0.023449134081602097, 0.036957185715436935, -0.09514734148979187, -0.010120485909283161, 0.03130069002509117, 0.05183715000748634, -0.0642898827791214, -0.0409884937107563, 0.03600740060210228, -0.012072821147739887, 0.015618684701621532, 0.019259527325630188, 0.05631169304251671, 0.0028810142539441586, -0.016346853226423264, -0.01122856792062521, -0.037590377032756805, 0.0004541159141808748, 0.038286883383989334, -0.007925427518785, -0.027649294584989548, 0.018626337870955467, -0.013972391374409199, -0.04491427168250084, -0.003743735607713461, -0.05973091721534729, 0.02788146398961544, 0.053989995270967484, 0.027860356494784355, 0.006141942460089922, -0.019692206755280495, -0.07724916934967041, 0.05808462202548981, 0.002757014473900199, 0.023744622245430946, -0.04550525173544884, -0.04088296368718147, 0.03396008536219597, -0.04499869793653488, -0.0060786232352256775, 0.019248973578214645, -0.015006601810455322, 0.0011463375994935632, 0.03706271946430206, 0.02338581532239914, 0.04584295302629471, -0.009482019580900669, 0.0321449413895607, 0.03282034397125244, 0.02211943455040455, 0.0037331823259592056, 0.05601620301604271, 0.021254075691103935, 0.03794918209314346, 0.01607247069478035, 0.05905551463365555, -0.0639943927526474, 0.022035010159015656, -0.029084524139761925, 0.022921476513147354, -0.03263038769364357, -0.027227167040109634, 0.022414924576878548, 0.000593615579418838, -0.0517527237534523, 0.03552195429801941, 0.011872311122715473, 0.010627037845551968, -0.02788146398961544, -0.05297689139842987, 0.022921476513147354, -0.0007591683533973992, 0.022520454600453377, 0.06129278615117073, -0.09548503905534744, 0.005168412812054157, 0.03486765921115875, 0.001863952842541039, -0.00040959473699331284, 0.02201390266418457, -0.0076246620155870914, 0.01997714303433895, -0.020029908046126366, -0.05728258192539215, 0.03794918209314346, -0.02549644745886326, 0.031912773847579956, 0.021739521995186806, 0.0026818232145160437, 0.026678401976823807, 0.017982594668865204, -0.026150744408369064, 0.06948204338550568, -0.021190756931900978, 0.004841264802962542, 0.02929558791220188, -0.0032530133612453938, -0.04622286558151245, -0.05783134698867798, 0.04369010403752327, -0.01912233605980873, 0.048502348363399506, -0.01589306816458702, -0.01399349793791771, -0.03463548794388771, 0.04719375818967819, 0.00935538113117218, -0.08889986574649811, -0.05610062927007675, -0.03902560472488403, -0.04812243580818176, 0.07399879395961761, 0.019649993628263474, -0.03484655171632767, -0.08066839724779129, 0.015323196537792683, 0.008115384727716446, 0.006205261219292879, -0.049093324691057205, -0.02783925086259842, -0.04369010403752327, -0.005371561273932457, 0.09193918108940125, 0.009756401181221008, 0.03028758615255356, 0.034065619111061096, 0.014489496126770973, -0.04753145948052406, -0.023027006536722183, 0.1571999490261078, 0.02090582065284252, -0.10873981565237045, -0.0072869607247412205, -0.04487206041812897, -0.008869935758411884, 0.030583074316382408, 0.008183980360627174, 0.02598189376294613, -0.005471816286444664, -0.006643217522650957, -0.024968789890408516, 0.03579633682966232, 0.047235969454050064, 0.02602410688996315, -0.022710412740707397, -0.016990596428513527, -0.0309629887342453, 0.019586674869060516, -0.01318090409040451, -0.012948733754456043, -0.01822531782090664, -0.03385455533862114, 0.035690806806087494, 0.07868440449237823, 0.038624584674835205, -0.026699509471654892, 0.026699509471654892, -0.010352655313909054, -0.07484304904937744, 0.00432415958493948, -0.01574532315135002, 0.05669160559773445, 0.0072869607247412205, -0.08678923547267914, -0.017993146553635597, 0.10367430001497269, -0.02078973688185215, 0.011956736445426941, -0.04318355396389961, 0.012410522438585758, -0.00987248681485653, 0.09320555627346039, 0.02969660796225071, 0.003764841938391328, -0.05994198098778725, -0.002888929098844528, 0.03919445723295212, 0.01462668739259243, 0.05386335775256157, -0.033136941492557526, -0.03134290128946304, 0.01357137132436037, 0.05331459268927574, 0.05521416291594505, -0.008943808265030384, 0.05141502246260643, -0.02112743817269802, -0.01239996962249279, 0.0037331823259592056, -0.06564068794250488, -0.007782959844917059, 0.01681119203567505, 0.01208337489515543, 0.07087506353855133, -0.06935540586709976, -0.033727917820215225, 0.03277813270688057, -0.019512802362442017, -0.044449932873249054, 0.019143441691994667, 0.041452836245298386, -0.024103431031107903, 0.06420546025037766, 0.07349224388599396, -0.04250815138220787, 0.014025157317519188, -0.020547013729810715, 0.018246423453092575, 0.07222586870193481, 0.046054013073444366, -0.012368310242891312, -0.014077923260629177, 0.06433209776878357, 0.059266578406095505, -0.04212823882699013, -0.02847244031727314, -0.03575412556529045, 0.013613583520054817, 0.015576472505927086, -0.019987694919109344, 0.031258475035429, -0.03180724009871483, 0.04989536851644516, -0.023153645917773247, -0.019206762313842773, -0.062348101288080215, -0.005168412812054157, 0.06386775523424149, 0.0050839874893426895, 0.029126737266778946, 0.013835200108587742, 0.011798439547419548, 0.016315193846821785, 0.018056467175483704, 0.024631088599562645, 0.005210625473409891, -0.004508839920163155, 0.028008101508021355, 0.0014602942392230034, 0.022562667727470398, 0.02412453666329384, -0.05082404613494873, 0.03174392133951187, 0.049388814717531204, -0.016832299530506134, -0.013075372204184532, -0.05234370008111, -0.02211943455040455, -0.011407972313463688, 0.020240971818566322, -0.00003149460462736897, 0.0020763352513313293, -0.0030208437237888575, -0.030203159898519516, 0.0032635664101690054, 0.020504800602793694, 0.05428548529744148, 0.05964649096131325, -0.0336223840713501, -0.018183104693889618, -0.07855776697397232, -0.04436550661921501, 0.014911622740328312, -0.02851465344429016, -0.045716311782598495, 0.08045733720064163, 0.04269810765981674, -0.034804340451955795, 0.008062618784606457, -0.007772406563162804, 0.011112483218312263, -0.06542962789535522, 0.014531709253787994, -0.05479203537106514, -0.006880663800984621, -0.008194533176720142, -0.008563893847167492, -0.008046789094805717, 0.03003430925309658, -0.01707502268254757, 0.03393898159265518, 0.0034904596395790577, 0.006221090909093618, 0.011407972313463688, 0.053736720234155655, 0.028493547812104225, 0.08721136301755905, 0.01548149436712265, 0.003783309832215309, 0.0406930074095726, 0.019723866134881973, -0.04193827882409096, -0.09979073703289032, 0.0038307991344481707, -0.003764841938391328, 0.013518605381250381, -0.023702409118413925, 0.07104390859603882, -0.011006951332092285, 0.023005900904536247, 0.02446223795413971, 0.017718765884637833, 0.0333268977701664, 0.004709349945187569, -0.056818243116140366, -0.07235250622034073, 0.002461525844410062, 0.043078020215034485, -0.02906341850757599, -0.05631169304251671, 0.00004083168096258305, 0.025179853662848473, -0.007228918373584747, 0.04520976170897484, -0.023913472890853882, -0.037104930728673935, -0.006769855972379446, 0.0015288898721337318, -0.03018205426633358, 0.03134290128946304, 0.024145642295479774, -0.05428548529744148, 0.0005514029180631042, -0.011334099806845188, 0.029126737266778946, 0.08332779258489609, -0.03727377951145172, -0.0059730918146669865, 0.015439281240105629, -0.02230939269065857, -0.01284320279955864, 0.0208636075258255, 0.03845573589205742, 0.02406121790409088, -0.05014864355325699, 0.00909682922065258, -0.0035379487089812756, -0.07349224388599396, -0.05538301169872284, 0.006120835896581411, -0.04985315352678299, -0.03689386695623398, 0.005440156906843185, -0.01117580197751522, -0.0019866335205733776, 0.046644993126392365, -0.018478592857718468, 0.03938441351056099, -0.06213703751564026, -0.0768270492553711, -0.08147043734788895, -0.017834849655628204, -0.011291887611150742, -0.0642898827791214, -0.008157596923410892, -0.010584824718534946, -0.016695108264684677, 0.007598279044032097, -0.010848654434084892, 0.008141767233610153, -0.026593977585434914, -0.048797838389873505, -0.059013303369283676, 0.010199634358286858, -0.043605681508779526, -0.008057341910898685, 0.014320645481348038, -0.03134290128946304, 0.015027707442641258, -0.04415444657206535, 0.006374111864715815, 0.02729048579931259, -0.05268140137195587, -0.021950583904981613, 0.009482019580900669, 0.000017447762729716487, 0.012041161768138409, -0.022330498322844505, -0.02553866058588028, -0.000044356274884194136, 0.053103528916835785, 0.04331019148230553, -0.018911272287368774, 0.015956386923789978, 0.052132636308670044, -0.029970990493893623, -0.038624584674835205, 0.015154345892369747, 0.004704073537141085, -0.023470239713788033, -0.03284145146608353, 0.011165249161422253, 0.028071420267224312, 0.04639171436429024, -0.029865458607673645, 0.04440772160887718, -0.04905111342668533, -0.0607440210878849, -0.06040631979703903, 0.03486765921115875, -0.04719375818967819, -0.000703764206264168, -0.07678483426570892, -0.02940111979842186, -0.030857456848025322, 0.006110283080488443, 0.010014954023063183, -0.017349403351545334, -0.01611468382179737, 0.023491347208619118, 0.005930879153311253, 0.041262876242399216, -0.013592476956546307, 0.030013203620910645, -0.026868360117077827, 0.002005101414397359, -0.014099028892815113, -0.0004010202828794718, -0.00869053229689598, -0.023322496563196182, -0.04183274880051613, -0.04162168502807617, -0.00820508599281311, -0.049093324691057205, 0.01345528569072485, -0.032461538910865784, 0.04533639922738075, 0.006648494396358728, -0.05479203537106514, 0.00198135687969625, 0.017760977149009705, -0.001218231045641005, 0.0011839332291856408, -0.019797738641500473, -0.008089001290500164, -0.0020539099350571632, 0.012484394945204258, 0.01834140159189701, -0.035880763083696365, 0.017919275909662247, 0.07201480120420456, -0.03562748804688454, -0.05808462202548981, 0.028198057785630226, 0.014616134576499462, 0.026868360117077827, 0.048460137099027634, 0.02783925086259842, -0.0072764079086482525, 0.009249849244952202, -0.013054265640676022, -0.03809692710638046, -0.04981094226241112, -0.04495648667216301, 0.03176502883434296, 0.015713663771748543, -0.008869935758411884, 0.018921826034784317, 0.05580513924360275, 0.0007769768126308918, -0.010405421257019043, 0.029126737266778946, -0.045125335454940796, 0.03664059191942215, 0.0034192255698144436, 0.029506651684641838, -0.03816024586558342, -0.005983645096421242, -0.05297689139842987, 0.03531089052557945, -0.0018599954200908542, -0.03176502883434296, 0.06509192287921906, -0.02052590623497963, -0.032313793897628784, 0.005957262124866247, 0.03077303059399128, 0.02078973688185215, 0.04052415490150452, -0.004970541223883629, 0.03341132402420044, -0.010547889396548271, 0.009091552346944809, -0.02965439483523369, -0.028978992253541946, 0.0015592302661389112, -0.024588875472545624, -0.013360307551920414, -0.017834849655628204, 0.04073521867394447, -0.009033509530127048, 0.020135439932346344, -0.005529858637601137, -0.050950683653354645, 0.01428898610174656, 0.03585965558886528, 0.018869061022996902, 0.025897467508912086, 0.07703810930252075, 0.03794918209314346, 0.014362858608365059, -0.004297776613384485, 0.022815944626927376, 0.028831249102950096, 0.020990246906876564, -0.044492147862911224, 0.0033928428310900927, -0.006769855972379446, 0.02096913941204548, -0.04558967426419258, -0.011270781047642231, -0.04223376885056496, -0.009714188985526562, -0.03645063564181328, 0.045378610491752625, 0.020335949957370758, 0.02572861686348915, -0.02446223795413971, 0.025644192472100258, -0.05880223959684372, 0.024631088599562645, 0.03501540422439575, -0.03271481394767761, -0.00010157421638723463, -0.009909422136843204, 0.041727215051651, 0.019027357921004295, -0.009344828315079212, 0.020736970007419586, 0.014732219278812408, -0.05538301169872284, -0.03898339346051216, -0.038920074701309204, -0.005999474786221981, 0.010167974978685379, -0.009397594258189201, 0.03396008536219597, 0.0691443383693695, -0.02598189376294613, 0.048206862062215805, 0.03997538983821869, 0.005899219773709774, 0.011967290192842484, 0.0517527237534523, 0.04867120087146759, -0.012537160888314247, -0.0004280627763364464, 0.007097003981471062, -0.03767479956150055, -0.03225047513842583, -0.041305091232061386, -0.0031870559323579073, 0.053441230207681656, -0.014046263881027699, -0.03752705827355385, 0.011006951332092285, -0.012020055204629898, -0.02475772611796856, 0.012041161768138409, 0.012093927711248398, -0.08531179279088974, -0.04499869793653488, 0.02724827453494072, 0.021169649437069893, 0.03771701455116272, 0.001129188691265881, -0.03427668288350105, 0.003946884069591761, -0.031870558857917786, 0.042824745178222656, 0.0663583055138588, 0.0085902763530612, 0.0010335507104173303, -0.006337176077067852, -0.023807941004633904, -0.08839331567287445, -0.004500925075262785, -0.04563188925385475, 0.0544121228158474, -0.042149342596530914, 0.04381674528121948, 0.048797838389873505, 0.03440332040190697, -0.013423626311123371, -0.004086713306605816, 0.03830799087882042, 0.0321449413895607, -0.0010328911012038589, -0.0077249170280992985, 0.005899219773709774, 0.00931844487786293, -0.06741362065076828, -0.022773731499910355, -0.020831948146224022, -0.035142041742801666, 0.0505707710981369, -0.010120485909283161, 0.015101579949259758, 0.018499698489904404, 0.01159792859107256, -0.030561966821551323, -0.07108612358570099, -0.01912233605980873, -0.013708562590181828, 0.06593617796897888, 0.04533639922738075, 0.010816995054483414, 0.0026079509407281876, -0.02018820494413376, 0.05052855610847473, 0.010379038751125336, -0.019206762313842773, 0.06213703751564026, 0.08510072529315948, -0.04596959054470062, 0.004250287543982267, 0.022921476513147354, -0.03429778665304184, -0.04930438846349716, 0.046054013073444366, -0.0004033287987112999, 0.01844693347811699, 0.03898339346051216, 0.030245373025536537, 0.0622214637696743, -0.06179933622479439, 0.017718765884637833 ]
729,309
tinytuya.core
__del__
null
def __del__(self): # In case we have a lingering socket connection, close it try: if self.socket: # self.socket.shutdown(socket.SHUT_RDWR) self.socket.close() self.socket = None except: pass
(self)
[ -0.005711456760764122, -0.028065631166100502, 0.004130812361836433, 0.0170286875218153, -0.036115892231464386, -0.028745675459504128, -0.0681147500872612, 0.06701197475194931, -0.005490901879966259, 0.003898770082741976, -0.01990509405732155, -0.019390465691685677, 0.0029637084808200598, -0.007204798515886068, 0.006740713957697153, 0.013003558851778507, -0.044699158519506454, -0.043596383184194565, -0.015705358237028122, -0.04697822779417038, -0.04730905964970589, 0.03900148719549179, 0.01904125325381756, -0.05929255113005638, 0.001518613426014781, 0.05138932913541794, -0.009640093892812729, 0.006575297564268112, 0.02040134184062481, -0.018912596628069878, -0.06407124549150467, 0.009208173491060734, 0.018655281513929367, 0.039148520678281784, 0.03569316118955612, -0.009148440323770046, -0.03591371327638626, -0.013545756228268147, -0.025290312245488167, 0.018967734649777412, -0.0010505083482712507, -0.010963424108922482, -0.016642717644572258, -0.007135875057429075, 0.046794429421424866, 0.019592640921473503, -0.03973666951060295, 0.04117027670145035, -0.016955170780420303, -0.012130527757108212, -0.04208925738930702, 0.058483850210905075, -0.013077076524496078, -0.0015002338914200664, 0.015236678533256054, 0.023397214710712433, 0.047897204756736755, 0.0612407885491848, -0.01235108356922865, -0.05241858586668968, -0.007701047230511904, 0.05201423540711403, -0.024922721087932587, -0.025051377713680267, -0.019776437431573868, -0.021485738456249237, -0.018113084137439728, 0.04083944484591484, 0.07873815298080444, 0.006115807686001062, 0.0028626208659261465, 0.029241925105452538, -0.0046684155240654945, 0.0342227928340435, 0.021981988102197647, -0.0004996950738132, 0.0017759277252480388, -0.020199166610836983, 0.008316763676702976, -0.023084763437509537, 0.02666878141462803, 0.03139233589172363, -0.01966615952551365, 0.06410800665616989, 0.07535631209611893, -0.051205530762672424, 0.013058696873486042, 0.0034553625155240297, -0.024150779470801353, 0.0430082343518734, 0.013876589015126228, 0.04032481461763382, -0.0065615130588412285, -0.012185666710138321, 0.04808100312948227, -0.016137277707457542, -0.04587545245885849, 0.026889337226748466, 0.0032279151491820812, -0.0804290771484375, -0.006625841371715069, 0.038413338363170624, -0.07888519018888474, -0.022202542051672935, 0.022184163331985474, 0.018177412450313568, 0.026282811537384987, -0.04991896077990532, -0.0708349347114563, -0.003933231811970472, -0.01205701008439064, -0.013849020004272461, 0.01741465926170349, 0.05925578996539116, 0.0004523101670201868, -0.012847332283854485, -0.05249210447072983, 0.002276771469041705, 0.0045627327635884285, -0.013849020004272461, -0.05238182470202446, 0.030160903930664062, -0.060946714133024216, -0.039295557886362076, 0.04219953343272209, 0.06164513900876045, 0.02619091235101223, -0.02409563958644867, 0.019482363015413284, -0.02325017936527729, -0.009539006277918816, 0.061534859240055084, 0.02791859395802021, 0.00768726272508502, -0.015585890971124172, -0.015301006846129894, -0.005068171303719282, -0.003094663145020604, -0.022423097863793373, -0.03771491348743439, -0.04745609685778618, 0.043963976204395294, 0.01797523722052574, 0.01590753346681595, 0.05352136120200157, 0.0575648695230484, -0.022331198677420616, -0.03111664205789566, -0.06263763457536697, -0.0649167075753212, -0.014060384593904018, 0.006529348436743021, 0.0057436213828623295, -0.0033175155986100435, -0.03604237362742424, 0.02766128070652485, -0.07932630181312561, 0.011468863114714622, -0.009860648773610592, -0.04727230221033096, 0.0015266545815393329, 0.03521529212594032, 0.005582799669355154, -0.06017477065324783, -0.016477299854159355, -0.03345084935426712, 0.0036161839962005615, -0.007554010488092899, 0.032145898789167404, -0.0310982633382082, -0.09013350307941437, 0.028469981625676155, 0.006138782482594252, -0.008665976114571095, 0.011661848984658718, 0.03896472603082657, -0.010990994051098824, 0.00028660669340752065, -0.055138763040304184, 0.019280187785625458, -0.022110644727945328, -0.0887366533279419, -0.04072916880249977, -0.02657688409090042, 0.04117027670145035, -0.0053438651375472546, 0.023544251918792725, 0.012020250782370567, 0.037825193256139755, 0.0008638406288810074, -0.027514243498444557, -0.016008621081709862, -0.001156190992332995, 0.02753262221813202, 0.08807498216629028, 0.0002692322595976293, 0.020842453464865685, 0.0013669818872585893, 0.019611019641160965, 0.042750921100378036, -0.024904342368245125, 0.05943958833813667, -0.030454976484179497, -0.04054537042975426, -0.023323697969317436, -0.009557385928928852, 0.013573326170444489, -0.012911660596728325, -0.030087385326623917, 0.017313571646809578, 0.0425303652882576, 0.005803355015814304, 0.03822954371571541, 0.02606225572526455, 0.11277715116739273, -0.04712526500225067, -0.027146652340888977, -0.006253654602915049, -0.0057436213828623295, 0.008293788880109787, 0.010301759466528893, -0.015402094461023808, 0.013545756228268147, -0.00629960373044014, -0.02903974987566471, 0.03538070619106293, -0.01586158387362957, -0.022570133209228516, 0.021485738456249237, -0.001317586749792099, 0.028708916157484055, 0.04837507754564285, 0.03538070619106293, 0.01605457067489624, 0.01940884441137314, -0.012286754325032234, -0.0644388347864151, -0.0031520994380116463, -0.03705324977636337, -0.05940282717347145, -0.03958963230252266, -0.05844708904623985, 0.021338701248168945, -0.0442948080599308, 0.05929255113005638, 0.0657254084944725, 0.0566091313958168, 0.050102755427360535, 0.05657237023115158, -0.018526624888181686, 0.011514811776578426, -0.03580343723297119, 0.01696435920894146, -0.046537116169929504, 0.02018078789114952, -0.10924827307462692, -0.04194222018122673, -0.014106334187090397, -0.008551103062927723, 0.045801933854818344, -0.010614211671054363, 0.030436597764492035, -0.025547627359628677, 0.062049489468336105, 0.02264365181326866, -0.03113502264022827, 0.031208541244268417, -0.004041212145239115, 0.013371150009334087, 0.005086550954729319, 0.13747932016849518, -0.08447258919477463, 0.006952079012989998, -0.038560375571250916, -0.023654529824852943, 0.01845310628414154, -0.013665223494172096, -0.019096391275525093, -0.008376496843993664, -0.00904275756329298, 0.09726478159427643, 0.02619091235101223, 0.06991595029830933, 0.008197296410799026, -0.021118147298693657, 0.03177830949425697, 0.00934602040797472, -0.0027017993852496147, 0.013858209364116192, 0.005812544841319323, -0.03049173578619957, -0.05285969376564026, -0.012461360543966293, 0.046169526875019073, 0.023783186450600624, 0.002005672547966242, -0.011790505610406399, 0.04043509438633919, 0.03431469202041626, 0.0024628648534417152, -0.02608063630759716, -0.005991745740175247, -0.03826630115509033, 0.06638707220554352, 0.016523249447345734, -0.017083827406167984, 0.029958728700876236, 0.015181539580225945, 0.01953750289976597, 0.05693996325135231, -0.01173536665737629, 0.013481427915394306, -0.03988370671868324, 0.0067820679396390915, 0.06046884506940842, 0.0172676220536232, -0.0378987118601799, -0.0023663719184696674, -0.02863539755344391, 0.07873815298080444, -0.015163159929215908, -0.022827448323369026, 0.022073885425925255, 0.026172533631324768, 0.012801382690668106, 0.03220103681087494, 0.023415595293045044, 0.03815602511167526, 0.017552506178617477, 0.020235925912857056, -0.02988521009683609, -0.022533375769853592, -0.019978612661361694, -0.061792176216840744, -0.002196360845118761, -0.04958812892436981, 0.030565254390239716, -0.0358218178153038, -0.0398101881146431, -0.06293170899152756, -0.052308306097984314, -0.005481712054461241, 0.04282443970441818, -0.003976883366703987, -0.053411081433296204, 0.017855769023299217, -0.08285517990589142, 0.0038183594588190317, 0.0020079698879271746, -0.022478235885500908, 0.05642533674836159, 0.05138932913541794, 0.005766595713794231, 0.039405837655067444, 0.05238182470202446, 0.016697855666279793, 0.0028465387877076864, 0.08145833760499954, 0.05741783231496811, -0.0558004304766655, 0.03403899818658829, -0.01802118681371212, 0.007999715395271778, -0.04069240763783455, 0.019463984295725822, -0.015824824571609497, -0.010163912549614906, -0.03468228131532669, 0.010742869228124619, 0.014547443948686123, -0.03372654318809509, -0.07528278976678848, -0.017534127458930016, 0.0011309189721941948, 0.032164279371500015, -0.0024628648534417152, 0.04264064505696297, 0.033763304352760315, 0.05153636634349823, -0.003898770082741976, -0.029425719752907753, 0.0003810892812907696, 0.06914401054382324, -0.035105012357234955, 0.00528413150459528, -0.04804424196481705, -0.037090007215738297, 0.01033851783722639, -0.013095456175506115, 0.036722417920827866, 0.021596016362309456, -0.011046132072806358, 0.006497184280306101, -0.04683119058609009, -0.027624521404504776, 0.0179109089076519, 0.005435763392597437, -0.020732175558805466, -0.015916723757982254, -0.003101555397734046, -0.002954518888145685, 0.03775167465209961, -0.04561813920736313, 0.014657721854746342, 0.024499990046024323, 0.04914701730012894, 0.043706659227609634, -0.013692793436348438, 0.04234657064080238, -0.019996991381049156, -0.03826630115509033, -0.023158280178904533, 0.030050626024603844, -0.02940734103322029, 0.07462112605571747, 0.010347708128392696, 0.03514177352190018, 0.049882203340530396, 0.13453859090805054, 0.05311701074242592, -0.013049507513642311, 0.007962956093251705, -0.0036598355509340763, 0.0072369626723229885, -0.049477849155664444, -0.021706294268369675, -0.03591371327638626, -0.02115490660071373, -0.004167571663856506, 0.01808551512658596, -0.03479256108403206, -0.046794429421424866, 0.031649649143218994, -0.01603619009256363, 0.019592640921473503, 0.04738257825374603, -0.020787313580513, 0.01205701008439064, -0.0026259836740791798, -0.005876873154193163, 0.008132968097925186, -0.0056011793203651905, 0.013205734081566334, 0.0010097286431118846, 0.024904342368245125, -0.056388575583696365, 0.046904709190130234, -0.012470550835132599, -0.029535997658967972, -0.022037126123905182, -0.016762183979153633, -0.022312819957733154, -0.03822954371571541, -0.04473591595888138, -0.024426473304629326, -0.021706294268369675, 0.01456582359969616, 0.022220922634005547, -0.017184915021061897, 0.018728800117969513, 0.00997092667967081, 0.04859562963247299, 0.009980116039514542, -0.022827448323369026, -0.07329779863357544, -0.003834441537037492, 0.057858943939208984, 0.0007874504663050175, 0.013812260702252388, 0.015843205153942108, 0.01905963197350502, 0.007356429938226938, -0.05488144978880882, -0.009621714241802692, -0.04466239735484123, 0.005068171303719282, 0.02940734103322029, 0.035601262003183365, 0.02053000032901764, -0.04117027670145035, -0.05113201215863228, -0.03185182437300682, 0.01605457067489624, -0.01845310628414154, -0.03716352581977844, -0.0057436213828623295, 0.024665407836437225, -0.08711924403905869, 0.012893280945718288, -0.0053162956610322, -0.024150779470801353, 0.02089759148657322, -0.024665407836437225, -0.09270664304494858, 0.09895569831132889, -0.008757873438298702, -0.09211849421262741, -0.013132215477526188, -0.010072014294564724, -0.09270664304494858, -0.011919163167476654, -0.009456298314034939, -0.06054236367344856, -0.003544962964951992, 0.057123757898807526, -0.04455212131142616, 0.012158097699284554, 0.03663051873445511, -0.016458921134471893, -0.006850991398096085, -0.04245684668421745, -0.015705358237028122, 0.04374342039227486, 0.048779428005218506, 0.051205530762672424, 0.011965111829340458, -0.04315527155995369, -0.010706109926104546, -0.01603619009256363, 0.002598414197564125, 0.04811776056885719, 0.051830437034368515, 0.0002909144095610827, 0.02027268521487713, -0.04499323293566704, -0.03427793085575104, 0.03936907649040222, 0.04881618544459343, 0.008927884511649609, 0.0347006618976593, 0.05186719819903374, 0.017561696469783783, -0.04536082223057747, -0.016624337062239647, 0.033395711332559586, 0.00008636970596853644, -0.08939831703901291, -0.07734130322933197, -0.04293471947312355, -0.013830640353262424, -0.02163277566432953, 0.0007989376899786294, 0.04080268368124962, -0.059733662754297256, -0.0716436356306076, 0.006446640472859144, -0.003914852160960436, 0.04227305203676224, 0.02336045727133751, 0.00602850504219532, 0.02372804842889309, 0.039148520678281784, 0.053190529346466064, -0.04227305203676224, 0.0223863385617733, 0.007595364935696125, 0.002727071288973093, -0.03598723188042641, 0.007792945485562086, -0.008574077859520912, -0.04583869129419327, 0.017809821292757988, 0.023709667846560478, 0.04514026641845703, 0.043486107140779495, 0.0009390820632688701, 0.03464552387595177, -0.054072748869657516, 0.020732175558805466, -0.026870958507061005, -0.014299319125711918, -0.04819127917289734, 0.06381393224000931, -0.025621145963668823, -0.005991745740175247, 0.055653393268585205, -0.02571304328739643, -0.014189042150974274, -0.0013922537909820676, 0.019390465691685677, -0.005421978421509266, 0.028947850689291954, -0.07881167531013489, -0.05682968720793724, -0.013251682743430138, 0.02176143229007721, 0.01869204081594944, -0.021926848217844963, -0.04822804033756256, -0.027109893038868904, 0.015052882954478264, -0.0015174647560343146, -0.01236027292907238, -0.053925711661577225, -0.007135875057429075, 0.030050626024603844, 0.044699158519506454, 0.018526624888181686, 0.016265936195850372, 0.03391034156084061, 0.025400590151548386, 0.023783186450600624, 0.02926030382514, -0.032017242163419724, -0.013950107619166374, 0.0813848152756691, -0.07638556510210037, 0.059586625546216965, -0.018397968262434006, -0.003953909035772085, -0.05149960517883301, 0.02865377813577652, 0.011671038344502449, 0.014841517433524132, 0.013077076524496078, 0.020824072882533073, -0.03144747391343117, 0.023672908544540405, -0.05385219305753708, 0.0374208427965641, 0.02777155674993992, -0.0215041171759367, -0.01543885376304388, 0.009924977086484432, -0.03418603539466858, 0.03944259509444237, -0.025602765381336212, -0.01149643212556839, -0.05914551392197609, 0.06201272830367088, -0.013481427915394306, -0.044956471771001816, 0.040177781134843826, 0.04352286458015442, -0.02668716199696064, 0.00003552070847945288, -0.002977493219077587, 0.00958495493978262, 0.031686410307884216, -0.01334358099848032, 0.07219502329826355, -0.043228790163993835, 0.01940884441137314, -0.04561813920736313, -0.06403448432683945, 0.004907350055873394, 0.05054386705160141, -0.05241858586668968, 0.020713794976472855, -0.020438101142644882, -0.003340490162372589, 0.02740396559238434, 0.02863539755344391, -0.03312001749873161, 0.01457501295953989, -0.05510200560092926, 0.03640996292233467, 0.018186602741479874, 0.0203094445168972, 0.02716503106057644, -0.0553225614130497, -0.005435763392597437, 0.0001506264670751989, 0.027642900124192238, 0.015411284752190113, 0.00782051496207714, -0.019702918827533722, -0.008620026521384716, -0.04730905964970589, 0.01519072987139225, -0.004774097818881273, 0.03617103025317192, -0.030785810202360153, -0.0044179935939610004, -0.012562448158860207, 0.02374642714858055, 0.013352770358324051, -0.014253370463848114, -0.08667813986539841, 0.001139534404501319, -0.00670395465567708, 0.06072615832090378, -0.031410716474056244, -0.0410967580974102, 0.053411081433296204, 0.04730905964970589, 0.019519122317433357, -0.006616651546210051, -0.017240053042769432, -0.06870289891958237, -0.016137277707457542, 0.018039565533399582, -0.011854833923280239, -0.00556901516392827, -0.08116426318883896, -0.028469981625676155, -0.004700579680502415, -0.0621965266764164, -0.0030602014157921076, -0.028341324999928474, 0.044074252247810364, 0.011386155150830746, -0.0019344516331329942, 0.012847332283854485, 0.02657688409090042, 0.02483082376420498, 0.0049257297068834305, -0.032182659953832626, 0.02236795797944069, 0.03356112912297249, 0.033395711332559586, 0.01940884441137314, 0.020144028589129448, 0.030712291598320007, 0.021706294268369675, 0.051352567970752716, -0.059071995317935944, -0.03001386672258377, 0.019592640921473503, 0.01858176290988922, 0.0064558302983641624, 0.009019782766699791, 0.02962789498269558, -0.030087385326623917, 0.019776437431573868, -0.041574627161026, -0.017359521239995956, 0.02852512151002884, 0.00775159103795886, 0.039405837655067444, -0.05767514556646347, -0.03800898790359497, -0.0022698792163282633, 0.08616350591182709, -0.05679292604327202, -0.051352567970752716, 0.06723253428936005, 0.03878093138337135, 0.013600895181298256, 0.01358251553028822, -0.03506825491786003, -0.03477418050169945, 0.009391969069838524, 0.005881468299776316, 0.06440207362174988, -0.05495496839284897, -0.01992347277700901, 0.0850607305765152, 0.00602850504219532, -0.017984427511692047, 0.02593359909951687, -0.03321191668510437, 0.0362996868789196, 0.010007685981690884, -0.016651906073093414, -0.0452505461871624, -0.08381091803312302, 0.001188929658383131, -0.006492589600384235, 0.017644405364990234, -0.016348643228411674, 0.015742117539048195, 0.0006013571401126683, -0.03617103025317192, 0.005936606787145138, -0.0002650681126397103, 0.029683034867048264, 0.011110461317002773 ]
729,310
tinytuya.BulbDevice
__init__
null
def __init__(self, *args, **kwargs): # set the default version to None so we do not immediately connect and call status() if 'version' not in kwargs or not kwargs['version']: kwargs['version'] = None super(BulbDevice, self).__init__(*args, **kwargs)
(self, *args, **kwargs)
[ 0.0007154006161727011, -0.05737163871526718, -0.03222792595624924, -0.01648911088705063, -0.006163787096738815, -0.040620796382427216, -0.021723750978708267, 0.06379279494285583, 0.0002438741794321686, -0.026591964066028595, -0.04093487188220024, 0.046518489718437195, -0.04951968044042587, 0.02034529484808445, 0.0017677810974419117, -0.009771325625479221, 0.025108816102147102, 0.017038747668266296, 0.026766451075673103, -0.04229588061571121, -0.011952424421906471, 0.06058221682906151, -0.005273898597806692, 0.09352554380893707, 0.021147940307855606, 0.10120300948619843, 0.008628428913652897, -0.003326176665723324, 0.034897591918706894, -0.014648263342678547, -0.011158504523336887, 0.011681968346238136, 0.0423307791352272, 0.07984568923711777, 0.012920833192765713, 0.016829362139105797, 0.008087516762316227, 0.02163650654256344, -0.15452653169631958, 0.02353842556476593, 0.013758375309407711, -0.04219118878245354, 0.010155199095606804, -0.0028463348280638456, 0.03231516852974892, 0.025963807478547096, 0.009684081189334393, 0.0024232014548033476, -0.026836246252059937, -0.017073646187782288, -0.018862146884202957, 0.06595644354820251, 0.004903111606836319, 0.023887401446700096, -0.08919823914766312, 0.049345191568136215, 0.020816413685679436, 0.05649919807910919, -0.032035987824201584, 0.059221211820840836, -0.09917895495891571, 0.044773608446121216, -0.0020142453722655773, -0.04267975315451622, -0.003079712390899658, -0.04330791160464287, -0.029628055170178413, 0.0055094570852816105, 0.017492417246103287, 0.09408390522003174, 0.07412248104810715, 0.02739460952579975, -0.034723103046417236, 0.00642551900818944, 0.037724293768405914, -0.0004029581032227725, -0.0734943225979805, 0.05409126356244087, -0.036258596926927567, -0.014124799519777298, 0.03317015990614891, 0.03960876539349556, 0.009832396171987057, 0.004041577223688364, 0.00291176768951118, -0.021444570273160934, -0.007088573183864355, 0.003919435665011406, -0.01992652378976345, 0.031739357858896255, -0.07188903540372849, 0.01002433244138956, -0.012833588756620884, 0.06082649901509285, 0.03479289636015892, -0.037968579679727554, -0.007114746142178774, -0.00571884261444211, -0.009308932349085808, 0.0027787205763161182, -0.0485774464905262, -0.05168333277106285, -0.06361830979585648, -0.07454125583171844, 0.008667688816785812, -0.07279637455940247, -0.01756221242249012, -0.015555600635707378, 0.025213509798049927, 0.021496916189789772, -0.005478921812027693, -0.03873632475733757, -0.001191970775835216, 0.013941587880253792, -0.036677367985248566, 0.010888048447668552, 0.0026587601751089096, -0.02383505366742611, 0.02291026897728443, -0.011568550951778889, -0.028755614534020424, 0.04072548821568489, -0.0049118357710540295, 0.0032193027436733246, 0.06675908714532852, 0.044075656682252884, -0.026975836604833603, -0.004567222204059362, 0.034478820860385895, 0.0009924002224579453, 0.04798418655991554, -0.0021647412795573473, -0.014351634308695793, -0.026766451075673103, 0.0017416079062968493, -0.04679767042398453, 0.008035169914364815, 0.01747496798634529, 0.004763521254062653, 0.01614885963499546, 0.0006761408294551075, -0.01739644818007946, 0.03235006704926491, -0.06497931480407715, 0.005845346488058567, 0.0606171153485775, 0.009527042508125305, -0.04749562218785286, 0.0013828170485794544, 0.0068791876547038555, 0.056359607726335526, 0.00562723632901907, 0.008789830841124058, -0.013034249655902386, -0.04292403534054756, -0.0014875098131597042, -0.01847827434539795, -0.08173015713691711, 0.031163549050688744, 0.018582966178655624, 0.018548069521784782, -0.01456974446773529, 0.0332050584256649, -0.043901167809963226, -0.03470565378665924, 0.026016153395175934, -0.06497931480407715, -0.016262277960777283, 0.019525201991200447, 0.012807415798306465, -0.008240193128585815, -0.01797225885093212, 0.005478921812027693, 0.0004727533087134361, -0.007790887262672186, 0.05157863721251488, -0.024812186136841774, -0.03271649032831192, 0.006076543126255274, -0.004244419280439615, 0.015791159123182297, 0.01264165248721838, -0.037305522710084915, 0.031739357858896255, 0.06895764172077179, 0.03421708568930626, 0.030203863978385925, 0.01289465930312872, 0.037340421229600906, 0.026138294488191605, 0.04445952922105789, 0.00828381534665823, 0.030483044683933258, 0.017492417246103287, 0.037968579679727554, -0.01011157687753439, 0.06784091889858246, -0.04072548821568489, 0.023800157010555267, 0.03744511306285858, 0.036223698407411575, -0.00961428601294756, -0.03292587772011757, 0.018129298463463783, 0.009937088936567307, 0.001539856195449829, 0.05049681290984154, 0.012903383933007717, 0.028371741995215416, -0.037340421229600906, -0.02826704829931259, -0.013165116310119629, -0.008231469430029392, 0.022229764610528946, 0.008602255955338478, -0.0784497857093811, 0.016340795904397964, 0.010286064818501472, 0.009221687912940979, 0.0015485805924981833, 0.046762771904468536, 0.003744947724044323, 0.01185645628720522, -0.02624298818409443, -0.06494441628456116, 0.07412248104810715, 0.044075656682252884, -0.048472754657268524, -0.017492417246103287, 0.03554319590330124, -0.0035879085771739483, 0.001903009251691401, 0.006661077495664358, 0.059639982879161835, -0.04711174592375755, 0.026225538924336433, 0.019280917942523956, -0.016201205551624298, -0.08898885548114777, -0.07356411963701248, 0.053323518484830856, -0.023800157010555267, 0.052625566720962524, -0.0009084279299713671, 0.020624475553631783, -0.07035354524850845, -0.01193497609347105, 0.019577547907829285, -0.040132228285074234, -0.037549808621406555, -0.026295334100723267, -0.040167126804590225, 0.03831755369901657, -0.006813754327595234, -0.01297317910939455, -0.10490215569734573, 0.010242442600429058, -0.02694093994796276, -0.002652216935530305, -0.01378454826772213, -0.0593608021736145, -0.00034025151398964226, -0.05426575243473053, 0.06539808213710785, 0.01826888881623745, 0.014203319326043129, 0.03765450045466423, 0.011891353875398636, -0.02212507277727127, 0.051997408270835876, 0.09108271449804306, -0.019490303471684456, -0.02910459041595459, 0.004362198989838362, -0.02154926210641861, -0.0677013248205185, -0.016454214230179787, -0.03573513403534889, -0.03981814906001091, -0.025335650891065598, 0.06285055726766586, 0.010765906423330307, 0.027499301359057426, 0.04791439324617386, -0.02893010340631008, -0.055731453001499176, 0.03304801881313324, 0.01656763069331646, -0.050427019596099854, -0.03646798059344292, 0.023398835211992264, 0.0556267611682415, -0.006482227239757776, 0.04662318155169487, 0.008528098464012146, 0.002639130223542452, -0.026417475193738937, 0.08870967477560043, 0.0009100637398660183, -0.049589477479457855, 0.002181099494919181, -0.049589477479457855, -0.030203863978385925, 0.029802542179822922, -0.014700610190629959, -0.028616024181246758, 0.06305994838476181, 0.004329482559114695, -0.02350352704524994, -0.02212507277727127, 0.03022131323814392, 0.02648727037012577, 0.021113041788339615, 0.018530620262026787, -0.020659374073147774, 0.0012541321339085698, 0.007106021977961063, -0.008152949623763561, -0.004253143910318613, 0.061210375279188156, -0.045436661690473557, 0.00634263688698411, -0.00644732965156436, 0.0780310109257698, -0.015599222853779793, 0.02175864763557911, 0.058348771184682846, 0.0057624648325145245, -0.030134068801999092, 0.03379831463098526, -0.04201669991016388, 0.021688852459192276, 0.0531490296125412, -0.04264485463500023, -0.02046743594110012, -0.051090072840452194, -0.007154006045311689, -0.025771871209144592, -0.03067498281598091, -0.010286064818501472, 0.024515558034181595, 0.0028332481160759926, -0.02952336147427559, 0.005618512164801359, 0.022980064153671265, -0.0056795827113091946, 0.02444576285779476, -0.031582318246364594, 0.019420508295297623, -0.0036773337051272392, -0.02947101555764675, 0.018199093639850616, -0.020153358578681946, 0.06100098788738251, 0.09429328888654709, -0.054824113845825195, -0.03912019729614258, 0.00930020771920681, 0.02332904003560543, -0.033274851739406586, -0.031233344227075577, 0.0477399043738842, -0.02444576285779476, 0.027830827981233597, 0.0029750196263194084, -0.008122414350509644, -0.018216542899608612, 0.011612173169851303, 0.0319836400449276, -0.02578931860625744, -0.01639314368367195, -0.06421156972646713, -0.0012334117200225592, -0.006813754327595234, 0.0473211333155632, -0.02444576285779476, -0.026347680017352104, -0.03130313754081726, 0.024463210254907608, 0.00397396320477128, -0.034182190895080566, -0.011952424421906471, 0.026853695511817932, -0.010573970153927803, -0.025353100150823593, 0.014194594696164131, -0.025894012302160263, 0.00489874929189682, 0.014421429485082626, 0.005657772067934275, 0.0018375762738287449, 0.024306172505021095, -0.08193954080343246, 0.01950775273144245, -0.038177963346242905, 0.0065040383487939835, 0.05887223407626152, -0.0030927988700568676, 0.027673790231347084, -0.06543298065662384, -0.029628055170178413, -0.0377940908074379, -0.0377940908074379, 0.03482779487967491, 0.026626860722899437, 0.0056795827113091946, 0.04746072366833687, 0.00948342029005289, 0.004802780691534281, -0.06522359699010849, -0.01976948417723179, -0.009684081189334393, -0.062257301062345505, 0.0026587601751089096, 0.010547797195613384, 0.030256211757659912, 0.027377160266041756, 0.022648535668849945, 0.051090072840452194, 0.006137613672763109, -0.00911699514836073, 0.06979518383741379, 0.03915509581565857, 0.015354939736425877, 0.021985482424497604, 0.07063272595405579, 0.045611150562763214, 0.0022770678624510765, 0.05981447175145149, -0.014412704855203629, 0.010565245524048805, 0.03425198420882225, -0.0398530475795269, -0.024602800607681274, 0.00439055310562253, 0.01164707075804472, 0.021723750978708267, -0.03146017715334892, -0.0034701291006058455, 0.014665712602436543, -0.03521166741847992, -0.025841666385531425, 0.02537054754793644, 0.03814306482672691, -0.006560747046023607, -0.01318256463855505, 0.0035115701612085104, -0.009413625113666058, 0.02603360265493393, -0.04205159842967987, -0.06798050552606583, -0.043621987104415894, 0.010844426229596138, -0.05496370419859886, -0.021933136507868767, -0.06054731830954552, -0.08794192969799042, 0.024306172505021095, 0.04313342273235321, -0.04906601086258888, 0.003838734934106469, 0.025475241243839264, -0.10078424215316772, -0.035438504070043564, -0.0069271717220544815, 0.09066393971443176, 0.07049313187599182, -0.024567903950810432, -0.03741021826863289, 0.03304801881313324, 0.015869678929448128, 0.027551647275686264, 0.019856728613376617, 0.047844596207141876, -0.009099546819925308, -0.025597382336854935, -0.009971986524760723, -0.030291108414530754, -0.05653409659862518, -0.049100909382104874, -0.06086139753460884, 0.034060049802064896, 0.02474239096045494, 0.035019733011722565, -0.0448434054851532, -0.028912654146552086, 0.014683160930871964, -0.051753126084804535, 0.05492880940437317, -0.023817606270313263, -0.0556267611682415, 0.0060285585932433605, -0.035438504070043564, -0.010704835876822472, 0.010338411666452885, 0.010207545012235641, -0.03981814906001091, 0.026557065546512604, 0.03761960193514824, 0.02540544606745243, -0.007987186312675476, -0.009457247331738472, -0.023189449682831764, -0.012824864126741886, -0.0016641787951812148, -0.033658724278211594, -0.05513819307088852, 0.03146017715334892, -0.00449306471273303, 0.03304801881313324, 0.00041004669037647545, 0.03873632475733757, 0.02071171998977661, 0.035770028829574585, -0.011716865934431553, 0.012964454479515553, -0.054195959120988846, 0.020083563402295113, -0.005326244980096817, 0.02341628260910511, 0.06358341127634048, 0.060093652456998825, 0.07461104542016983, -0.034478820860385895, -0.01471805851906538, -0.05238128453493118, -0.0011428961297497153, -0.024550454691052437, 0.043621987104415894, 0.03407749533653259, -0.020397640764713287, 0.0022487135138362646, -0.048926420509815216, 0.034984834492206573, 0.03130313754081726, -0.004277135711163282, -0.019280917942523956, 0.027586545795202255, -0.0647350326180458, -0.07070251554250717, 0.04271465167403221, -0.028581127524375916, 0.026923490688204765, -0.06487461924552917, -0.0627109706401825, -0.04198180139064789, -0.010643765330314636, 0.05140415206551552, -0.009788773953914642, -0.03463586047291756, -0.008061343804001808, -0.02868581935763359, 0.028127457946538925, -0.0009356916416436434, -0.023852502927184105, 0.004458167124539614, 0.004549773409962654, -0.02819725312292576, 0.05492880940437317, -0.012275227345526218, 0.0005365504766814411, 0.015843506902456284, -0.010984016582369804, 0.014395256526768208, 0.006796305533498526, 0.0030208227690309286, 0.009221687912940979, -0.006381896790117025, 0.007193265948444605, -0.02578931860625744, -0.002115666400641203, -0.04756541550159454, -0.05182292312383652, 0.042156290262937546, -0.01399393379688263, 0.007289234083145857, 0.03515932336449623, 0.07621634006500244, -0.008458303287625313, -0.02374781109392643, 0.015101931989192963, 0.022107623517513275, -0.013130218721926212, -0.05238128453493118, -0.029052244499325752, -0.0073546674102544785, -0.0043403878808021545, -0.0011516205267980695, 0.012877210974693298, -0.02889520488679409, -0.011158504523336887, -0.03671226650476456, -0.05747633054852486, -0.0656074732542038, -0.033274851739406586, -0.0132872574031353, 0.01622737944126129, -0.05754612758755684, 0.010888048447668552, 0.04065569117665291, -0.019403060898184776, 0.04613461345434189, 0.032524555921554565, -0.050217632204294205, 0.005225914064794779, 0.005029615014791489, -0.0801248699426651, 0.026975836604833603, -0.0518927164375782, -0.013671130873262882, 0.013740926049649715, 0.039259787648916245, -0.04861234501004219, 0.04962437227368355, -0.014953617937862873, -0.007760351523756981, -0.017030024901032448, 0.02278812602162361, 0.03880612179636955, 0.010469277389347553, 0.002632586983963847, 0.0328037366271019, 0.009884742088615894, 0.03388556092977524, -0.07551838457584381, 0.02224721387028694, -0.014770405367016792, -0.031076304614543915, -0.026138294488191605, 0.013130218721926212, 0.07656531035900116, -0.0224217027425766, 0.021287530660629272, 0.011036363430321217, -0.01568646728992462, -0.07209841907024384, -0.01835613325238228, -0.012004771269857883, 0.033274851739406586, 0.06107078492641449, 0.015014688484370708, -0.01029478944838047, 0.033658724278211594, -0.04435483738780022, 0.007760351523756981, 0.0029706573113799095, -0.06065201386809349, 0.00847139023244381, 0.005243362858891487, -0.02901734597980976, -0.02732481248676777, -0.027255017310380936, -0.0012366833398118615, 0.04861234501004219, -0.0030120983719825745, 0.023311590775847435, 0.0035159322433173656, 0.07935711741447449, 0.012737620621919632, 0.006809392478317022, -0.07747264951467514, -0.00634263688698411, 0.06134996563196182, 0.012676550075411797, 0.020153358578681946, 0.019909074530005455, 0.023067306727170944, -0.08445216715335846, -0.07035354524850845, 0.007956651039421558, 0.030814573168754578, 0.02669665589928627, -0.0008669870439916849, 0.019978869706392288, -0.005670858547091484, -0.03493248671293259, -0.028389189392328262, -0.023276692256331444, 0.030134068801999092, 0.003952152095735073, 0.0242887232452631, -0.008754933252930641, -0.014395256526768208, -0.018949391320347786, 0.015590498223900795, 0.012257779017090797, -0.02765634097158909, 0.052625566720962524, 0.006224857643246651, -0.07670490443706512, -0.02299751155078411, -0.047635212540626526, -0.0065389359369874, 0.05583614483475685, -0.05998895689845085, -0.04889152571558952, -0.030151518061757088, -0.058558158576488495, -0.003910711035132408, -0.010408206842839718, 0.06079160422086716, -0.014290563762187958, -0.05102027580142021, 0.06012854725122452, 0.003395971842110157, 0.002789626130834222, -0.018199093639850616, -0.053288619965314865, 0.019874177873134613, -0.02404443919658661, 0.027097979560494423, 0.041283849626779556, 0.024428313598036766, -0.022317009046673775, 0.025981256738305092, 0.01399393379688263, -0.04986865818500519, -0.0263651292771101, -0.051090072840452194, 0.04749562218785286, -0.0494149886071682, 0.013688580133020878, 0.028703268617391586, 0.01542473491281271, 0.07489022612571716, 0.0005709027755074203, -0.015625396743416786, 0.012135636992752552, 0.03027365915477276, 0.029261630028486252, 0.0073982891626656055, -0.019577547907829285, -0.059605084359645844, 0.004549773409962654, 0.021688852459192276, -0.0007579320226795971, 0.046692974865436554, -0.004120096564292908, 0.07031864672899246, 0.04637889936566353, -0.003345806384459138, -0.03744511306285858, -0.005553079303354025, 0.027848277240991592, 0.02146201767027378, 0.024899430572986603, 0.02100834995508194, 0.021270081400871277, 0.025562485679984093, -0.01648911088705063, 0.013339604251086712, -0.031128650531172752, 0.015328766778111458, 0.02416658215224743, 0.04177241772413254, -0.04875193536281586, -0.038631632924079895, 0.04086507856845856, 0.012318849563598633, -0.034478820860385895, 0.009788773953914642, -0.004438537172973156, 0.006512762978672981, 0.012240329757332802, 0.05513819307088852, 0.07984568923711777, -0.0024232014548033476, 0.008030807599425316 ]
729,311
tinytuya.core
__repr__
null
def __repr__(self): # FIXME can do better than this if self.parent: parent = self.parent.id else: parent = None return ("%s( %r, address=%r, local_key=%r, dev_type=%r, connection_timeout=%r, version=%r, persist=%r, cid=%r, parent=%r, children=%r )" % (self.__class__.__name__, self.id, self.address, self.real_local_key.decode(), self.dev_type, self.connection_timeout, self.version, self.socketPersistent, self.cid, parent, self.children))
(self)
[ -0.004450250882655382, -0.020844310522079468, 0.010590707883238792, 0.02988995611667633, 0.039553627371788025, -0.05768237262964249, 0.035452183336019516, -0.0029098696541041136, 0.05513535812497139, -0.07461252063512802, -0.04535932093858719, 0.0029543486889451742, -0.027867326512932777, 0.036163851618766785, -0.0296464916318655, 0.03279280290007591, -0.03258679434657097, -0.09274126589298248, -0.013755747117102146, -0.008736631833016872, 0.004557937383651733, 0.044834934175014496, 0.03438468649983406, -0.05011624097824097, 0.014963706023991108, 0.039253976196050644, -0.03043306991457939, 0.014186492189764977, 0.0020753012504428625, -0.028447896242141724, -0.01604056917130947, -0.03489034250378609, -0.0053281281143426895, -0.0027811143081635237, -0.025657419115304947, 0.05056571587920189, -0.054236412048339844, 0.013296910561621189, -0.041014414280653, -0.06592270731925964, 0.019982822239398956, 0.011377286165952682, -0.04715720936655998, -0.048393260687589645, 0.005927425343543291, 0.02554504945874214, 0.11341702938079834, 0.04899255931377411, 0.005702688824385405, -0.046969931572675705, -0.0036145122721791267, 0.0774591863155365, -0.039628539234399796, -0.014720241539180279, -0.08592426031827927, -0.019945364445447922, 0.030002323910593987, -0.005192349664866924, -0.02436518296599388, 0.006320714484900236, -0.04213809594511986, 0.04584624990820885, 0.045246951282024384, 0.00342254969291389, -0.015263354405760765, -0.05071553960442543, -0.03421613201498985, 0.002528285840526223, -0.030077235773205757, 0.015029254369437695, 0.03069526143372059, -0.06655946373939514, -0.022286370396614075, 0.026294171810150146, -0.012716340832412243, -0.01699569821357727, 0.00542176840826869, 0.006325396243482828, -0.0008281306363642216, -0.006437764503061771, -0.02129378356039524, -0.04652045667171478, -0.010291059501469135, -0.004752240609377623, 0.019626988098025322, -0.013858751393854618, -0.005669915117323399, 0.0053281281143426895, -0.05086536332964897, 0.0053562200628221035, 0.007430350873619318, 0.03627621755003929, -0.06401245296001434, 0.04299958422780037, -0.011714390479028225, 0.0032867714762687683, 0.02429027110338211, -0.0384673997759819, 0.05637140944600105, -0.010122506879270077, 0.0031439701560884714, 0.0008819737704470754, -0.07472489029169083, -0.05165193974971771, -0.043111953884363174, -0.04790633171796799, -0.011030817404389381, 0.01964571699500084, 0.0003572959394659847, 0.020919224247336388, -0.008291840553283691, 0.07307682186365128, -0.011105729267001152, -0.0011365581303834915, 0.041988272219896317, -0.010937176644802094, -0.010543887503445148, -0.006573542952537537, 0.05183922126889229, -0.05232615023851395, -0.018531398847699165, -0.011377286165952682, -0.04835580661892891, -0.022286370396614075, -0.08487548679113388, 0.027623862028121948, -0.025919610634446144, -0.020170101895928383, -0.008727267384529114, -0.10674984008073807, 0.02681855671107769, -0.03528363257646561, -0.01964571699500084, 0.017098702490329742, 0.07558637857437134, -0.0013425665674731135, 0.024739744141697884, 0.028017152100801468, -0.007392894942313433, 0.11618877947330475, 0.019289884716272354, 0.0035887612029910088, 0.011470925994217396, 0.04674519598484039, -0.002518921624869108, -0.03067653439939022, 0.01770736463367939, -0.006592270918190479, -0.012922349385917187, -0.041276607662439346, 0.023765886202454567, -0.024196630343794823, 0.011873578652739525, 0.030639078468084335, 0.004735853988677263, 0.055247724056243896, -0.02138742431998253, -0.047531772404909134, 0.03906669840216637, -0.036014024168252945, -0.05300036072731018, -0.0520639568567276, 0.045396775007247925, -0.03208113834261894, 0.004534527193754911, -0.029047194868326187, 0.009813494049012661, -0.08285286277532578, 0.008240338414907455, 0.026369083672761917, -0.00940615963190794, -0.04112678021192551, -0.02760513499379158, 0.041763536632061005, -0.04022783413529396, 0.02153724804520607, 0.012800617143511772, 0.044198181480169296, -0.024177903309464455, -0.035152535885572433, 0.023878253996372223, -0.028672633692622185, 0.024271544069051743, 0.01620911993086338, 0.04779396578669548, -0.039553627371788025, 0.041988272219896317, 0.01623721234500408, 0.0970112606883049, -0.014570416882634163, -0.035452183336019516, 0.021424880251288414, 0.004239560570567846, 0.025769786909222603, -0.007528672926127911, -0.02784859947860241, 0.02704329416155815, -0.06446192413568497, -0.007299254648387432, 0.0435614287853241, -0.01404603198170662, 0.035452183336019516, -0.010581344366073608, -0.007589539047330618, 0.005843149498105049, 0.022586019709706306, -0.023297684267163277, -0.011470925994217396, 0.05191413313150406, -0.009326565079391003, 0.0008667572401463985, 0.03241823986172676, -0.020788127556443214, 0.011920399032533169, 0.019196243956685066, -0.033242274075746536, -0.08996951580047607, 0.0175575390458107, -0.000008106645509542432, 0.0031650392338633537, 0.024009350687265396, -0.034122493118047714, -0.002600856823846698, -0.07584857195615768, -0.08487548679113388, -0.02595706656575203, 0.015656644478440285, 0.017594996839761734, 0.017061246559023857, 0.00948107149451971, 0.044123269617557526, -0.05554737523198128, -0.028972281143069267, 0.022529834881424904, 0.0007813105476088822, 0.01655558869242668, -0.05019115284085274, -0.006877873558551073, -0.020544663071632385, 0.024496279656887054, -0.0455840565264225, 0.000514435931108892, 0.04288721829652786, -0.001980490516871214, 0.08510022610425949, -0.04914238303899765, -0.004939521197229624, 0.04588370397686958, 0.025732330977916718, -0.015881380066275597, 0.002432304434478283, -0.023522421717643738, -0.0539742186665535, -0.02627544291317463, 0.038130294531583786, -0.06554815173149109, -0.044123269617557526, 0.0021993746049702168, 0.00599765544757247, 0.047681596130132675, -0.027268029749393463, 0.01898087188601494, -0.041613709181547165, 0.04573388025164604, 0.011293009854853153, 0.006966831628233194, -0.08315251022577286, -0.006292622070759535, -0.01635894551873207, -0.0035700330045074224, 0.12457893788814545, 0.034028854221105576, -0.04509712755680084, 0.04959185793995857, -0.03399139642715454, -0.09259144216775894, -0.031987495720386505, 0.009729217737913132, -0.07592348754405975, -0.0858493447303772, -0.00857276190072298, 0.0015204829396679997, 0.0028911414556205273, -0.017173614352941513, 0.03195004165172577, -0.05521026998758316, -0.004497071262449026, -0.011742482893168926, -0.012950441800057888, 0.026294171810150146, -0.0012805298902094364, 0.027661317959427834, -0.03809283673763275, 0.004394066985696554, 0.036969155073165894, -0.022286370396614075, 0.004281698726117611, 0.049404576420784, 0.000007439093224093085, 0.023803342133760452, -0.018634403124451637, -0.0022813095711171627, 0.04809361323714256, -0.0004488877602852881, -0.021200144663453102, 0.03872959315776825, -0.023878253996372223, 0.03588293120265007, 0.011068273335695267, 0.007744045462459326, -0.015806468203663826, 0.027829870581626892, 0.042625024914741516, 0.0769347995519638, 0.02185562625527382, 0.05910570174455643, -0.011882943101227283, -0.05049080401659012, 0.05326255410909653, 0.07524927705526352, 0.0033382736146450043, 0.02620053105056286, -0.04078967496752739, 0.05697070434689522, 0.037493541836738586, -0.01785718835890293, 0.023166589438915253, 0.021406153216958046, 0.026593821123242378, 0.037193890661001205, -0.01932734064757824, -0.03917906433343887, -0.021162688732147217, -0.00011390454164939001, 0.021649617701768875, 0.049404576420784, 0.01396175567060709, -0.002532967831939459, -0.01108700130134821, -0.06401245296001434, 0.08412636816501617, 0.014973070472478867, -0.010403427295386791, -0.015544275753200054, -0.02595706656575203, 0.0006461174925789237, 0.006601634901016951, 0.010665620677173138, 0.010525159537792206, 0.007748727686703205, -0.06273894011974335, -0.03337337076663971, 0.020394837483763695, -0.008024966344237328, -0.0031907903030514717, 0.00351853109896183, -0.01923369988799095, 0.013362457975745201, -0.006161525845527649, 0.05412404239177704, 0.06921884417533875, -0.020844310522079468, 0.0286351777613163, -0.011021452955901623, -0.0754365548491478, -0.0253952257335186, 0.002970735775306821, -0.013090902008116245, 0.05064062774181366, 0.014186492189764977, -0.06127815693616867, -0.021743256598711014, -0.008694494143128395, -0.03075144626200199, -0.02792351134121418, 0.052813079208135605, -0.010834172368049622, 0.024009350687265396, -0.011021452955901623, -0.08966986835002899, -0.01893405057489872, -0.0253952257335186, 0.04809361323714256, 0.02294185198843479, -0.014916885644197464, 0.044610198587179184, 0.044123269617557526, 0.017669908702373505, 0.01495434157550335, 0.023072948679327965, -0.041014414280653, 0.008703857660293579, 0.03399139642715454, 0.019739357754588127, -0.024889567866921425, -0.02311040461063385, 0.07539910078048706, -0.0257136020809412, -0.035676922649145126, -0.03445959836244583, 0.012603973038494587, -0.05172685533761978, -0.023016763851046562, -0.007697225548326969, 0.025020664557814598, -0.008221610449254513, 0.039553627371788025, 0.0422879196703434, -0.013559103012084961, -0.01996409334242344, 0.007528672926127911, -0.013184541836380959, -0.04884273558855057, -0.004995705559849739, 0.0683199018239975, -0.013474826700985432, -0.027736231684684753, 0.02657509222626686, 0.013577830977737904, -0.01807256042957306, -0.054386235773563385, 0.02232382632791996, 0.003097150009125471, 0.00028238375671207905, -0.039478715509176254, 0.04093950241804123, -0.02704329416155815, 0.01738898828625679, 0.05906824767589569, 0.02949666790664196, -0.013147085905075073, 0.01234177965670824, 0.051239922642707825, 0.02730548568069935, 0.04569642245769501, -0.0013507601106539369, 0.05805693194270134, -0.008661719970405102, -0.029047194868326187, 0.04929220676422119, -0.013231362216174603, -0.03914161026477814, 0.008371435105800629, 0.00262192590162158, 0.020413566380739212, 0.026387812569737434, -0.0643870085477829, 0.0016047591343522072, 0.02451500855386257, 0.02193053811788559, 0.052663255482912064, -0.0013636356452479959, -0.021275056526064873, -0.02105031907558441, -0.06154034659266472, -0.0422879196703434, -0.011695662513375282, 0.009555983357131481, -0.02768004685640335, 0.0014678103616461158, -0.04427309334278107, 0.038149021565914154, 0.008919230662286282, 0.035208720713853836, -0.026387812569737434, -0.009504481218755245, 0.02043229527771473, 0.010038230568170547, -0.06955595314502716, -0.03917906433343887, 0.03936634585261345, 0.029852500185370445, -0.04472256451845169, 0.030901269987225533, 0.00031310945632867515, 0.03131328895688057, 0.0077065895311534405, -0.0384673997759819, -0.07375103235244751, -0.031444381922483444, -0.05094027519226074, -0.07678497582674026, -0.0005960784619674087, -0.016855238005518913, -0.022773299366235733, -0.017173614352941513, 0.015057345852255821, 0.04880527779459953, -0.0017030814196914434, 0.019683172926306725, 0.0033452967181801796, 0.06955595314502716, -0.07202804833650589, 0.0013741700677201152, 0.04652045667171478, 0.02193053811788559, -0.026874741539359093, -0.02547013759613037, -0.04730703681707382, -0.03683805838227272, -0.01428013201802969, -0.050902821123600006, 0.04715720936655998, -0.01605929620563984, 0.017623087391257286, -0.00737416697666049, 0.012800617143511772, 0.05933043733239174, 0.01667732186615467, 0.005337492097169161, 0.07378848642110825, -0.0742754191160202, 0.04678265005350113, -0.02060084603726864, -0.05419895425438881, -0.00515021150931716, 0.013502919115126133, -0.003474051831290126, -0.022604746744036674, 0.006596953142434359, 0.044385459274053574, 0.01716425083577633, -0.011911035515367985, 0.010946541093289852, -0.019814269617199898, 0.03689424321055412, -0.008230974897742271, 0.03247442469000816, -0.05543500557541847, 0.06607253104448318, -0.022436194121837616, 0.02318531647324562, 0.02657509222626686, 0.010562616400420666, -0.000010561957424215507, 0.07375103235244751, -0.08367689698934555, 0.03421613201498985, -0.044048357754945755, -0.021724529564380646, 0.030114691704511642, -0.008530623279511929, -0.04123914986848831, -0.053599659353494644, -0.003265702398493886, -0.04071476310491562, 0.06670928746461868, 0.04273739457130432, 0.013774475082755089, -0.027886055409908295, 0.03376666083931923, -0.015993747860193253, -0.004579006228595972, -0.05007878690958023, 0.011985947377979755, 0.03445959836244583, 0.0182504765689373, -0.018596945330500603, -0.011012089438736439, 0.04730703681707382, 0.022454923018813133, 0.03801792487502098, 0.03614512085914612, -0.010113143362104893, 0.06273894011974335, 0.022529834881424904, -0.005117437802255154, -0.0011119775008410215, 0.001029457082040608, 0.00737416697666049, -0.014682785607874393, -0.012510332278907299, 0.053749483078718185, 0.040190380066633224, -0.03646349906921387, -0.021799441426992416, 0.00018903617456089705, 0.0904189869761467, 0.01364337932318449, 0.03185639902949333, -0.0182504765689373, -0.00558095658197999, -0.03084508702158928, 0.013118993490934372, -0.03211859241127968, 0.04123914986848831, 0.012285595759749413, 0.04693247377872467, -0.004099100362509489, -0.0391041524708271, -0.026537636294960976, -0.0351150780916214, 0.008132652379572392, 0.03075144626200199, 0.06955595314502716, -0.03762463852763176, 0.029515394940972328, 0.004546232521533966, 0.004658600781112909, -0.005445178598165512, 0.006915329489856958, 0.01210767962038517, 0.030713990330696106, 0.05150211602449417, 0.03607020899653435, -0.043336689472198486, -0.023634789511561394, 0.032305873930454254, -0.04779396578669548, 0.025657419115304947, -0.029758859425783157, 0.05135229229927063, -0.02217400260269642, -0.018203657120466232, -0.003010532818734646, -0.06434955447912216, -0.03236205875873566, 0.021012863144278526, -0.020319925621151924, -0.02666873298585415, 0.004883337300270796, 0.014439321123063564, -0.03391648456454277, 0.02515176124870777, -0.04401089996099472, 0.01032851543277502, -0.01604056917130947, -0.03429104760289192, 0.029047194868326187, -0.023934438824653625, 0.03342955559492111, 0.05416150018572807, -0.05120246857404709, 0.01569410040974617, -0.05315018445253372, -0.022099090740084648, 0.013296910561621189, 0.017726091668009758, -0.03710025176405907, 0.035377271473407745, -0.006929375696927309, -0.007032379973679781, -0.11416614800691605, -0.02033865451812744, -0.013774475082755089, -0.010937176644802094, 0.025357769802212715, -0.05996719375252724, -0.019832996651530266, -0.03895432874560356, -0.02170580066740513, 0.010422155261039734, 0.02666873298585415, -0.014504868537187576, 0.022998036816716194, 0.06554815173149109, -0.04535932093858719, 0.012210683897137642, -0.0364447720348835, 0.007781501859426498, 0.014355044811964035, -0.05434877797961235, -0.022904396057128906, -0.05547246336936951, 0.0325118824839592, 0.045546598732471466, -0.02178071439266205, 0.001233709859661758, 0.020713215693831444, -0.024009350687265396, 0.005576274823397398, 0.011171277612447739, -0.023803342133760452, -0.028054608032107353, -0.055959392338991165, -0.04543423280119896, 0.016387037932872772, 0.03185639902949333, 0.033953942358493805, -0.025076849386096, 0.02728675864636898, 0.004967613145709038, -0.02035738155245781, -0.05839403718709946, 0.02318531647324562, 0.02256729081273079, 0.0319313108921051, 0.020694486796855927, -0.01404603198170662, -0.08038076013326645, -0.0036566501948982477, -0.02281075529754162, 0.019111966714262962, 0.026050707325339317, 0.028429169207811356, -0.018653130158782005, 0.055097900331020355, -0.06090359389781952, 0.014767061918973923, 0.0053515383042395115, 0.03241823986172676, 0.029253201559185982, 0.026163075119256973, -0.026462724432349205, 0.028916098177433014, 0.01955207623541355, 0.05689579248428345, 0.004213809501379728, 0.018793590366840363, 0.019776813685894012, 0.010581344366073608, 0.0827779471874237, 0.04828089475631714, -0.07307682186365128, -0.0030269199050962925, 0.014692149125039577, 0.04116423800587654, -0.0008058910607360303, -0.02223018743097782, 0.0208255834877491, -0.012641428969800472, 0.03217477723956108, 0.07266480475664139, -0.019758084788918495, 0.03554582595825195, 0.07037998735904694, 0.005290672183036804, -0.014926250092685223, -0.018016377463936806, -0.009766674600541592, 0.00532344589009881, 0.05034097656607628, -0.052026502788066864, -0.0391041524708271, 0.07004287838935852, -0.010375335812568665, 0.015609823167324066, -0.033804118633270264, -0.04086459055542946, 0.023709701374173164, 0.00019503501243889332, 0.04535932093858719, 0.02743658237159252, 0.028991010040044785, -0.00516425771638751, 0.0016269986517727375, 0.011302373372018337, 0.0664096400141716, -0.016958242282271385, 0.02492702379822731, 0.044760022312402725, 0.0559968464076519, -0.031219646334648132, -0.035770561546087265, 0.043898530304431915, -0.050041329115629196, -0.02367224544286728, 0.0929660052061081, 0.03977836295962334, -0.019111966714262962, -0.03693170100450516, -0.056596145033836365, 0.015019889920949936, 0.023316413164138794, -0.0403776615858078, 0.03425358980894089, -0.00601170165464282, -0.009078418835997581 ]
729,312
tinytuya.core
_check_socket_close
null
def _check_socket_close(self, force=False): if (force or not self.socketPersistent) and self.socket: self.socket.close() self.socket = None
(self, force=False)
[ 0.02388230711221695, 0.003880449803546071, 0.02131376788020134, 0.053411997854709625, -0.0036975902039557695, -0.013999386690557003, -0.03247245401144028, 0.08573135733604431, 0.02585548907518387, -0.0477646142244339, 0.002866217168048024, -0.02966577187180519, 0.027947742491960526, -0.0657954141497612, 0.011839092709124088, -0.0020316545851528645, -0.025260133668780327, -0.04381825029850006, 0.007003945764154196, -0.02437560260295868, -0.024494674056768417, 0.04136878252029419, -0.014118458144366741, -0.1109064444899559, 0.027607539668679237, 0.03351007401943207, -0.039157457649707794, 0.07382422685623169, 0.02250448241829872, -0.01462025847285986, -0.06681603193283081, 0.01820090413093567, 0.07579740881919861, 0.05256148800253868, 0.03599356487393379, 0.013489081524312496, -0.01917048543691635, -0.008802773430943489, 0.004073940683156252, 0.0045077004469931126, -0.002594053978100419, -0.005630373023450375, -0.025430234149098396, 0.008938855491578579, -0.044838860630989075, -0.01076745055615902, -0.07545720785856247, 0.11730227619409561, -0.0024600988253951073, 0.012136771343648434, -0.028713202103972435, 0.036095622926950455, -0.0016871982952579856, 0.019493678584694862, 0.019493678584694862, -0.017775649204850197, 0.055929508060216904, 0.057562485337257385, -0.024766838178038597, -0.04463474079966545, 0.02257252298295498, 0.05279963091015816, -0.06235935911536217, -0.07021806389093399, -0.0073654125444591045, 0.01638931781053543, 0.008598651736974716, 0.009585242718458176, 0.05317385494709015, 0.016363803297281265, -0.0022559764329344034, 0.02709723450243473, 0.02104160562157631, 0.04174300655722618, 0.006472377572208643, -0.004716075491160154, 0.014331085607409477, -0.025651367381215096, -0.00921101775020361, 0.007765152025967836, 0.0020444123074412346, 0.017520496621727943, 0.004354608710855246, 0.025447245687246323, 0.0031383801251649857, -0.004541720729321241, 0.04334196448326111, 0.05103057250380516, -0.012281357310712337, 0.014960462227463722, 0.006246992386877537, 0.06426449865102768, -0.0005958882393315434, -0.01814987324178219, 0.06048823893070221, 0.005468776449561119, -0.005647383164614439, -0.006034364923834801, -0.01223883219063282, -0.07831491529941559, -0.042423415929079056, 0.03633376583456993, -0.03301677852869034, -0.033578116446733475, 0.02333798073232174, -0.002396310679614544, 0.02272561378777027, -0.035381197929382324, -0.066679947078228, -0.04660792276263237, -0.03436058387160301, -0.0331188403069973, 0.03589150309562683, 0.06569335609674454, 0.0022177034988999367, -0.02639981545507908, 0.01163497008383274, 0.04426051676273346, 0.005753696896135807, -0.008305225521326065, -0.046029575169086456, 0.002632326912134886, -0.01024863962084055, -0.04075641557574272, 0.013897325843572617, 0.06059029698371887, 0.023099839687347412, 0.014322580769658089, 0.05273159220814705, 0.03163895383477211, -0.002101821592077613, 0.037898704409599304, 0.014951957389712334, 0.014841391704976559, -0.03755849972367287, -0.023372001945972443, -0.030295148491859436, 0.020038004964590073, -0.017911730334162712, -0.07368814200162888, -0.02430756203830242, 0.043580107390880585, -0.03531315550208092, 0.0012566278455778956, 0.024409623816609383, 0.08464270830154419, -0.059909891337156296, -0.03905539587140083, -0.04004198685288429, -0.06780262291431427, 0.026808060705661774, -0.0038528081495314837, -0.049091409891843796, 0.021568922325968742, -0.05463673174381256, 0.04089249670505524, -0.06963972002267838, -0.02743743732571602, 0.010087043046951294, -0.014186498709022999, -0.060182053595781326, 0.018115852028131485, -0.0038102827966213226, -0.027692589908838272, -0.014866906218230724, -0.030890505760908127, -0.045111026614904404, -0.036639951169490814, 0.07464071363210678, 0.029461650177836418, -0.05705218017101288, 0.06416244059801102, 0.018098842352628708, -0.03247245401144028, 0.03386728838086128, 0.03082246519625187, 0.0008770879358053207, -0.04218527302145958, -0.07430051267147064, 0.01584499329328537, 0.005392230581492186, -0.09423645585775375, -0.016789058223366737, -0.03779664263129234, 0.018336985260248184, 0.03180905804038048, -0.0118305878713727, 0.023082828149199486, 0.04813883826136589, 0.014841391704976559, -0.01813286356627941, 0.02944464050233364, 0.013055320829153061, 0.015351696871221066, 0.07797471433877945, -0.017180291935801506, 0.016040610149502754, 0.03408842161297798, 0.003565761260688305, 0.03721829876303673, 0.009219523519277573, 0.03623170405626297, -0.020582331344485283, -0.05797072872519493, -0.03568737953901291, -0.008887824602425098, 0.019544709473848343, -0.02070140279829502, -0.013922841288149357, 0.001009448547847569, -0.003108612261712551, 0.019204504787921906, -0.024137459695339203, 0.00917699746787548, 0.09301172196865082, -0.019204504787921906, 0.0065276604145765305, -0.02917247638106346, -0.0441584549844265, 0.010861006565392017, 0.0078034247271716595, -0.02743743732571602, 0.01584499329328537, 0.03524511307477951, -0.017724618315696716, 0.04293372109532356, -0.02185809426009655, 0.0007202752749435604, 0.06963972002267838, 0.0518130399286747, 0.008862309157848358, 0.06746241450309753, -0.008220174349844456, -0.0036104130558669567, 0.044294536113739014, -0.022062217816710472, 0.0006936968420632184, 0.018949352204799652, -0.029971955344080925, -0.014058922417461872, -0.04082445800304413, -0.040076009929180145, -0.011737031862139702, -0.03732035681605339, 0.05021408200263977, 0.033680178225040436, 0.07743038982152939, 0.015521799214184284, 0.03813684731721878, 0.0028874799609184265, 0.016738027334213257, -0.020735422149300575, 0.03403739258646965, -0.05446663126349449, -0.02202819660305977, -0.12050019204616547, -0.05967174842953682, -0.011388322338461876, -0.006672247312963009, 0.03742241859436035, -0.006685005035251379, 0.09607355296611786, 0.0007776846759952605, 0.06038617715239525, -0.0292915478348732, -0.033578116446733475, 0.02934257872402668, 0.0007952264277264476, -0.012077235616743565, 0.010121063329279423, 0.06861910969018936, -0.08049222081899643, -0.014246034435927868, -0.021279748529195786, -0.001084931194782257, -0.02430756203830242, 0.03162194415926933, -0.04082445800304413, -0.013089342042803764, -0.017962761223316193, 0.042423415929079056, 0.03316987305879593, 0.055113017559051514, 0.0077311317436397076, -0.056031566113233566, 0.017571527510881424, 0.001992318546399474, 0.01813286356627941, -0.011379817500710487, 0.0051796031184494495, -0.0702861100435257, -0.04796873778104782, 0.03294873982667923, 0.027726611122488976, -0.03578944131731987, 0.0022538502234965563, 0.005030763801187277, 0.031009577214717865, -0.0019327829359099269, -0.009610757231712341, 0.002585548907518387, 0.011498888954520226, -0.06382223218679428, 0.05191510170698166, 0.05742640420794487, -0.027505477890372276, 0.010784461162984371, -0.02917247638106346, 0.032421424984931946, 0.06725829094648361, -0.005345452576875687, -0.011141674593091011, -0.01682307757437229, -0.0013459313195198774, 0.08913339674472809, 0.05739238113164902, -0.035823460668325424, -0.02415447123348713, 0.007667343597859144, 0.07253145426511765, -0.024222511798143387, -0.041504863649606705, -0.0020688644144684076, 0.04048425331711769, -0.027556508779525757, 0.05361612141132355, 0.030125048011541367, -0.005060531664639711, 0.014960462227463722, -0.016950655728578568, -0.008381771855056286, -0.0036975902039557695, -0.014841391704976559, -0.05790269002318382, 0.017894720658659935, -0.03823890909552574, -0.005911041051149368, -0.03220029175281525, 0.0003157516766805202, -0.05103057250380516, -0.07015002518892288, 0.016040610149502754, 0.06487686932086945, -0.03939560055732727, -0.027063213288784027, 0.023474063724279404, -0.07906336337327957, -0.020361198112368584, -0.0017414182657375932, 0.0029746571090072393, 0.016321277245879173, 0.014271549880504608, -0.024885909631848335, 0.01699317991733551, -0.002966152038425207, 0.01705271564424038, 0.05504497513175011, 0.08960968255996704, 0.04759451374411583, -0.0243245717138052, 0.014058922417461872, -0.023406021296977997, 0.02201118692755699, -0.01595555804669857, 0.0025281396228820086, 0.002453719964250922, 0.031111638993024826, -0.009406635537743568, -0.0042695580050349236, 0.018609149381518364, -0.06382223218679428, -0.05348004028201103, 0.012383419089019299, -0.05708619952201843, -0.0014299191534519196, 0.016355298459529877, 0.009228028357028961, 0.0039017123635858297, 0.06232533976435661, -0.0396677628159523, -0.0019976343028247356, -0.054670751094818115, 0.03415646404027939, -0.049363572150468826, 0.0068168337456882, -0.06633974611759186, -0.03075442463159561, 0.02371220476925373, 0.010895026847720146, -0.017452456057071686, 0.037728603929281235, -0.03393533080816269, 0.025039000436663628, -0.04276362061500549, 0.008930349722504616, 0.036639951169490814, 0.0025302658323198557, 0.006059880368411541, 0.0163382887840271, 0.04041621461510658, -0.056473832577466965, 0.03296574950218201, -0.014058922417461872, 0.013693203218281269, -0.006319285836070776, 0.06957168132066727, 0.01595555804669857, -0.016482874751091003, 0.016678491607308388, 0.0032510727178305387, -0.0802200585603714, 0.005366715136915445, -0.013761243782937527, -0.03629974648356438, 0.036027584224939346, 0.038102827966213226, 0.0545346699655056, 0.060726381838321686, 0.09001792967319489, 0.01417799387127161, 0.0039399852976202965, -0.012868208810687065, 0.00989142619073391, 0.01368469838052988, -0.042593516409397125, -0.028594130650162697, -0.03075442463159561, 0.027726611122488976, -0.02847505919635296, 0.04109662026166916, -0.0028385755140334368, 0.0025664125569164753, -0.007531262002885342, 0.0027747873682528734, 0.01172002125531435, 0.023797256872057915, -0.008262700401246548, -0.004741590470075607, -0.013472070917487144, 0.0007845950312912464, 0.03437759354710579, 0.03735437989234924, -0.047186270356178284, 0.02104160562157631, 0.03640180826187134, -0.02213025838136673, 0.04837698116898537, -0.012970270588994026, 0.00397613225504756, -0.0022113248705863953, -0.03749046102166176, -0.03531315550208092, -0.015445252880454063, -0.03987188637256622, -0.03082246519625187, -0.008317982777953148, -0.012655581347644329, 0.017945751547813416, -0.005575090181082487, -0.023218909278512, -0.020514288917183876, 0.019918933510780334, -0.008802773430943489, 0.006944410502910614, -0.06810880452394485, 0.002485614037141204, 0.012000689283013344, -0.019544709473848343, 0.021126655861735344, 0.012196307070553303, 0.03749046102166176, -0.031724005937576294, 0.016584936529397964, -0.03732035681605339, -0.038885295391082764, -0.006042870227247477, 0.013438050635159016, 0.06014803424477577, 0.018558118492364883, -0.028151866048574448, -0.06409439444541931, -0.00610665837302804, -0.028594130650162697, -0.013948355801403522, -0.026757029816508293, -0.04419247433543205, -0.013531606644392014, -0.08484683185815811, 0.019085433334112167, 0.006889127194881439, -0.002292123157531023, 0.001520285732112825, -0.004452417604625225, -0.03174101561307907, 0.11764247715473175, -0.004392881877720356, -0.08736433833837509, -0.023031797260046005, 0.017137767747044563, -0.08083242923021317, -0.021517891436815262, -0.013548617251217365, -0.06025009602308273, 0.0594676248729229, 0.02230036072432995, -0.0783829614520073, -0.03402038291096687, 0.01368469838052988, 0.02349107339978218, 0.0031362539157271385, -0.013752738945186138, 0.02158593200147152, 0.05705218017101288, 0.049975939095020294, 0.03293173015117645, -0.02289571613073349, 0.004205769393593073, -0.020089035853743553, -0.0056984140537679195, 0.006991188507527113, 0.03449666500091553, -0.016210712492465973, -0.007782162167131901, -0.01682307757437229, -0.03541521728038788, -0.063141830265522, 0.029971955344080925, 0.021841084584593773, 0.0274884682148695, -0.02388230711221695, 0.05028212442994118, 0.015921538695693016, 0.018643168732523918, -0.03725231811404228, 0.018558118492364883, -0.031009577214717865, 0.030142057687044144, -0.04082445800304413, -0.11832288652658463, -0.028185885399580002, -0.011524404399096966, 0.02250448241829872, 0.025158071890473366, -0.020667381584644318, -0.043035782873630524, -0.004161118064075708, 0.04089249670505524, 0.020956555381417274, 0.009993487037718296, 0.0008473201305605471, -0.004771358333528042, 0.07362010329961777, 0.042593516409397125, -0.06474078446626663, 0.002279365435242653, -0.023133859038352966, 0.031281739473342896, -0.00846682209521532, 0.007216573227196932, -0.013829285278916359, -0.008632672019302845, -0.021160677075386047, 0.05154087767004967, 0.027335375547409058, -0.0034955942537635565, -0.009074936620891094, 0.05011202022433281, -0.061338748782873154, 0.04803677648305893, 0.009576736949384212, 0.02044624835252762, -0.06780262291431427, 0.07702214270830154, -0.002757777227088809, 0.07157888263463974, -0.0005002059042453766, -0.017129261046648026, 0.03208122029900551, -0.03299976885318756, 0.007548272144049406, 0.015819476917386055, -0.0005321000353433192, -0.05817485228180885, -0.027573518455028534, 0.006485135294497013, 0.015096544288098812, 0.053956326097249985, 0.021058615297079086, -0.038068804889917374, -0.028985364362597466, 0.001998697407543659, 0.03786468505859375, 0.012579035945236683, -0.06657788902521133, 0.0069146426394581795, 0.037184275686740875, 0.06501294672489166, 0.04041621461510658, 0.013174392282962799, 0.02070140279829502, 0.03180905804038048, 0.044294536113739014, 0.05613362789154053, -0.052697569131851196, -0.02924051694571972, 0.027029192075133324, -0.07151084393262863, 0.07613760977983475, -0.012944755144417286, -0.0008526358287781477, -0.04266155883669853, 0.008670944720506668, 0.014033406972885132, -0.010750440880656242, -0.011839092709124088, 0.0518130399286747, -0.055589303374290466, 0.059365566819906235, -0.04698214679956436, 0.01918749511241913, 0.03345904499292374, -0.024409623816609383, 0.017307868227362633, -0.026569917798042297, -0.05239138752222061, 0.047016166150569916, -0.02420550025999546, 0.01983388140797615, -0.0756613239645958, -0.002304880879819393, 0.0018402900313958526, -0.009738334454596043, 0.024188490584492683, 0.029546700417995453, -0.036810051649808884, 0.013778254389762878, -0.014892421662807465, 0.018949352204799652, 0.0008170207147486508, 0.03959972411394119, 0.04211723059415817, -0.025277143344283104, 0.01234939880669117, 0.010129568167030811, -0.010427246801555157, 0.005719676613807678, 0.06946961581707001, -0.023320971056818962, 0.016244731843471527, -0.030890505760908127, -0.011082138866186142, 0.04181104898452759, -0.004231284838169813, -0.05201716348528862, 0.06589747965335846, -0.05075841024518013, 0.03301677852869034, -0.031553901731967926, 0.014433146454393864, -0.03138380125164986, 0.007135774940252304, -0.0028428281657397747, -0.013514596037566662, 0.0020603593438863754, -0.00469906534999609, -0.005243391264230013, 0.0013321104925125837, -0.03126472979784012, -0.033578116446733475, -0.011941153556108475, 0.030039995908737183, 0.013897325843572617, -0.022708604112267494, 0.024137459695339203, 0.010036012157797813, 0.003954869229346514, 0.00027907342882826924, 0.027828671038150787, -0.04653988033533096, 0.00734840240329504, 0.015326181426644325, 0.01567489095032215, -0.042593516409397125, -0.013387019746005535, 0.06212121620774269, -0.02617868408560753, 0.03197915852069855, 0.00486491434276104, -0.017690598964691162, -0.046914104372262955, 0.009202512912452221, 0.016899624839425087, -0.007977779023349285, 0.048921309411525726, -0.04708420857787132, -0.07375618815422058, -0.049533676356077194, 0.03381625935435295, -0.026705998927354813, 0.0034254270140081644, 0.008556125685572624, 0.013293463736772537, 0.008938855491578579, 0.010512297973036766, 0.025481265038251877, 0.01911945454776287, -0.06565933674573898, 0.006076890509575605, 0.0054177455604076385, 0.028236916288733482, -0.009534211829304695, -0.03823890909552574, 0.030091026797890663, 0.022113246843218803, -0.06746241450309753, 0.016355298459529877, -0.01732487976551056, -0.05279963091015816, 0.025481265038251877, 0.006736035458743572, -0.010631369426846504, -0.002749272156506777, -0.0036401806864887476, -0.04119868203997612, -0.019442647695541382, -0.04626771807670593, -0.03271059691905975, 0.0409945584833622, -0.01415247842669487, 0.020837483927607536, -0.02306581847369671, -0.03929353877902031, -0.032540492713451385, 0.09586943686008453, -0.048274919390678406, -0.00928756408393383, 0.037728603929281235, 0.03288069739937782, -0.047186270356178284, 0.02825392596423626, -0.005064784083515406, -0.05354807898402214, 0.0055708372965455055, -0.034938931465148926, 0.0048138839192688465, -0.02944464050233364, -0.03087349608540535, 0.04443061724305153, 0.003114991122856736, -0.006259750109165907, 0.023099839687347412, 0.0007069860585033894, 0.026586927473545074, -0.009474676102399826, 0.011983679607510567, 0.04031415283679962, -0.11512497067451477, 0.05228932574391365, -0.008632672019302845, 0.026688989251852036, 0.008432801812887192, 0.044294536113739014, 0.003200042061507702, 0.016270246356725693, -0.013871810398995876, -0.044396597892045975, -0.03359512612223625, 0.04337598755955696 ]
729,313
tinytuya.core
_decode_payload
null
def _decode_payload(self, payload): log.debug("decode payload=%r", payload) cipher = AESCipher(self.local_key) if self.version == 3.4: # 3.4 devices encrypt the version header in addition to the payload try: log.debug("decrypting=%r", payload) payload = cipher.decrypt(payload, False, decode_text=False) except: log.debug("incomplete payload=%r (len:%d)", payload, len(payload), exc_info=True) return error_json(ERR_PAYLOAD) log.debug("decrypted 3.x payload=%r", payload) log.debug("payload type = %s", type(payload)) if payload.startswith(PROTOCOL_VERSION_BYTES_31): # Received an encrypted payload # Remove version header payload = payload[len(PROTOCOL_VERSION_BYTES_31) :] # Decrypt payload # Remove 16-bytes of MD5 hexdigest of payload payload = cipher.decrypt(payload[16:]) elif self.version >= 3.2: # 3.2 or 3.3 or 3.4 or 3.5 # Trim header for non-default device type if payload.startswith( self.version_bytes ): payload = payload[len(self.version_header) :] log.debug("removing 3.x=%r", payload) elif self.dev_type == "device22" and (len(payload) & 0x0F) != 0: payload = payload[len(self.version_header) :] log.debug("removing device22 3.x header=%r", payload) if self.version < 3.4: try: log.debug("decrypting=%r", payload) payload = cipher.decrypt(payload, False) except: log.debug("incomplete payload=%r (len:%d)", payload, len(payload), exc_info=True) return error_json(ERR_PAYLOAD) log.debug("decrypted 3.x payload=%r", payload) # Try to detect if device22 found log.debug("payload type = %s", type(payload)) if not isinstance(payload, str): try: payload = payload.decode() except: log.debug("payload was not string type and decoding failed") return error_json(ERR_JSON, payload) if not self.disabledetect and "data unvalid" in payload: self.dev_type = "device22" # set at least one DPS self.dps_to_request = {"1": None} log.debug( "'data unvalid' error detected: switching to dev_type %r", self.dev_type, ) return None elif not payload.startswith(b"{"): log.debug("Unexpected payload=%r", payload) return error_json(ERR_PAYLOAD, payload) if not isinstance(payload, str): payload = payload.decode() log.debug("decoded results=%r", payload) try: json_payload = json.loads(payload) except: json_payload = error_json(ERR_JSON, payload) # v3.4 stuffs it into {"data":{"dps":{"1":true}}, ...} if "dps" not in json_payload and "data" in json_payload and "dps" in json_payload['data']: json_payload['dps'] = json_payload['data']['dps'] return json_payload
(self, payload)
[ 0.03938887268304825, 0.014703773893415928, -0.06245511770248413, 0.02268308587372303, -0.010307010263204575, -0.03935055434703827, -0.003903444856405258, 0.023985831066966057, -0.0004582955443765968, -0.01885148324072361, 0.02676374278962612, 0.033066727221012115, -0.009904691949486732, -0.006681356579065323, 0.024100778624415398, 0.06015615537762642, -0.00664304057136178, 0.01126491092145443, 0.0675511509180069, -0.050193991512060165, -0.0114181749522686, 0.021495288237929344, -0.016581259667873383, 0.09969829022884369, -0.015450935810804367, 0.020230859518051147, 0.03423536568880081, -0.014742089435458183, 0.027453429996967316, -0.01604483462870121, -0.02279803343117237, 0.02086307480931282, 0.03415873274207115, 0.05034725368022919, -0.08529146760702133, -0.0024905414320528507, -0.004116577561944723, -0.04762681573629379, -0.04015519097447395, 0.026744583621621132, -0.08138323575258255, 0.023200351744890213, 0.016811154782772064, -0.031304191797971725, -0.03258777782320976, 0.026955321431159973, -0.036936644464731216, 0.008683368563652039, 0.003616074565798044, 0.04299057647585869, 0.0113223847001791, -0.011954599060118198, -0.009258109144866467, 0.04391016066074371, 0.014330192469060421, -0.0007405768847092986, -0.028258066624403, 0.018123479560017586, -0.02272140234708786, 0.029177650809288025, -0.001962498761713505, 0.017481684684753418, -0.04333542287349701, 0.014358929358422756, -0.04666891694068909, 0.02042244002223015, 0.021686868742108345, 0.005297190044075251, -0.038814131170511246, 0.009770586155354977, 0.0005130755016580224, 0.0022881850600242615, -0.036917489022016525, 0.022165820002555847, 0.02440730668604374, -0.020115911960601807, 0.01860242895781994, 0.004300973378121853, -0.0017158393748104572, -0.032932620495557785, 0.07153601199388504, -0.007797310594469309, 0.052224740386009216, 0.021092969924211502, 0.029292600229382515, 0.01906222105026245, 0.03969540074467659, 0.033411573618650436, -0.05345085263252258, -0.0014991144416853786, 0.004617080558091402, -0.005263663828372955, -0.04038508981466293, 0.028717858716845512, 0.01790316216647625, -0.00020205715554766357, 0.011858808808028698, -0.022951297461986542, 0.00940658338367939, -0.009133582003414631, 0.03739643841981888, 0.07854785025119781, -0.130427747964859, -0.036630116403102875, 0.033219993114471436, -0.0056707714684307575, -0.037089910358190536, 0.016523784026503563, -0.011437333188951015, 0.009943007491528988, -0.008616315200924873, -0.022951297461986542, -0.06632503867149353, 0.02038412354886532, -0.002588726347312331, 0.01053690630942583, -0.02632310800254345, -0.02818143554031849, -0.08789695799350739, 0.027204375714063644, 0.028966912999749184, -0.012835867702960968, 0.0035681796725839376, -0.0010752433445304632, 0.03958045318722725, -0.026112370193004608, -0.006829831283539534, -0.027855748310685158, 0.05992626026272774, 0.013401028700172901, -0.028851965442299843, 0.03557642549276352, -0.03139998018741608, 0.013525555841624737, -0.023315299302339554, -0.029809866100549698, -0.010249536484479904, -0.010632696561515331, 0.011676807887852192, -0.04322047531604767, -0.004947556648403406, 0.01877485029399395, 0.04076824709773064, -0.047933343797922134, -0.03797117993235588, 0.009392214938998222, 0.010450695641338825, -0.031265873461961746, -0.05272284895181656, -0.0011512767523527145, 0.030921030789613724, -0.004255473148077726, -0.008783948607742786, -0.021265393123030663, 0.06092247739434242, -0.006738830357789993, -0.042645733803510666, -0.0381244421005249, -0.0530293770134449, 0.01811389997601509, 0.015383883379399776, -0.036438535898923874, 0.01240481249988079, -0.0389099195599556, 0.05517507344484329, -0.027070270851254463, 0.023909198120236397, -0.03739643841981888, -0.04348868504166603, 0.0346376858651638, -0.029120177030563354, 0.08107670396566391, -0.030595343559980392, -0.007299202494323254, -0.011140383780002594, 0.04846976697444916, -0.0024019356351345778, -0.05666939914226532, -0.040423404425382614, -0.03521242365241051, -0.02659131959080696, 0.02477130852639675, 0.017414633184671402, 0.018880220130085945, 0.04651565104722977, 0.038756657391786575, 0.006432302296161652, 0.0673595666885376, 0.02858375385403633, 0.001865511410869658, -0.042454153299331665, -0.007826047949492931, 0.012807130813598633, -0.008233155123889446, -0.003848365508019924, 0.010929645039141178, 0.04892956092953682, 0.006451460532844067, -0.012241968885064125, -0.06552039831876755, -0.022319084033370018, -0.05046220123767853, 0.018008530139923096, -0.008812685497105122, -0.11349205672740936, -0.027108585461974144, -0.0013626135187223554, 0.06586524099111557, 0.021227076649665833, -0.019215485081076622, -0.04475311562418938, 0.026802057400345802, 0.022951297461986542, 0.013219027779996395, 0.020345808938145638, -0.05050051957368851, -0.0008525315206497908, -0.011245752684772015, 0.012414391152560711, -0.019052641466259956, 0.004595527891069651, 0.014761247672140598, -0.06111405789852142, -0.023583512753248215, -0.0074764140881598, 0.027817431837320328, -0.020326649770140648, 0.0015062986640259624, 0.01860242895781994, 0.024100778624415398, 0.0449063777923584, -0.022242451086640358, 0.040729932487010956, 0.054063908755779266, 0.09318456798791885, 0.01687820814549923, -0.007241728249937296, -0.04356531798839569, 0.02808564528822899, -0.042300887405872345, 0.06532882153987885, -0.09249488264322281, 0.02270224317908287, 0.025096995756030083, 0.010814697481691837, 0.0447147972881794, 0.016169361770153046, 0.02992481365799904, -0.027817431837320328, -0.02086307480931282, -0.0005941977142356336, -0.013611767441034317, 0.03394799679517746, 0.0034388629719614983, -0.021859290078282356, -0.10215051472187042, 0.05904499068856239, -0.03731980547308922, 0.06751283258199692, -0.04195604473352432, 0.013563872314989567, -0.027587536722421646, -0.01633220538496971, 0.06069257855415344, -0.0041932095773518085, -0.012883762829005718, 0.049964092671871185, 0.004372816067188978, 0.04900619387626648, 0.027127744629979134, 0.03055702894926071, -0.04873798042535782, 0.008170891553163528, 0.035135794430971146, 0.017309263348579407, 0.01799895241856575, 0.010000482201576233, 0.010671012103557587, 0.10023471713066101, 0.025499314069747925, 0.028449647128582, -0.014483456499874592, 0.000024003640646697022, 0.01039322093129158, 0.05843193456530571, -0.00912400335073471, 0.018008530139923096, -0.09877870976924896, 0.05425548925995827, 0.02070981077849865, -0.004116577561944723, -0.029273441061377525, 0.009440110065042973, 0.028871122747659683, -0.01583409681916237, 0.0683174654841423, -0.011945020407438278, -0.006058720871806145, 0.03699411824345589, -0.007380623836070299, -0.0603860504925251, 0.02837301418185234, 0.07145938277244568, -0.025767525658011436, 0.015134829096496105, 0.011207436211407185, -0.006106615997850895, -0.027836591005325317, -0.006532881874591112, -0.011724703013896942, 0.03597874566912651, -0.00017855865007732064, 0.04663059860467911, -0.04705207422375679, 0.006623882334679365, 0.021514447405934334, 0.049887463450431824, 0.08299250900745392, 0.038660865277051926, 0.03364146873354912, 0.028622068464756012, 0.007917048409581184, -0.06222522258758545, 0.070846326649189, 0.07893100380897522, -0.036725908517837524, 0.026744583621621132, -0.026744583621621132, 0.053680747747421265, -0.0066095138899981976, -0.019924331456422806, -0.007102832663804293, 0.02090139128267765, -0.03245367109775543, 0.05103694275021553, -0.050193991512060165, -0.026802057400345802, -0.014253560453653336, 0.018477901816368103, 0.030940188094973564, 0.021169602870941162, -0.09510036557912827, 0.04582596197724342, 0.03839265555143356, 0.038584236055612564, -0.03743475303053856, 0.03034628927707672, -0.009607742540538311, -0.0023288957308977842, -0.03450357913970947, -0.020345808938145638, -0.03402462974190712, 0.03364146873354912, 0.05352748557925224, -0.025135310366749763, -0.04961924999952316, -0.027261849492788315, -0.024024145677685738, 0.01211744174361229, -0.005747403483837843, 0.013171132653951645, -0.009713111445307732, -0.05984962731599808, 0.047971662133932114, -0.05233968794345856, -0.035250741988420486, -0.0336797833442688, -0.031342506408691406, 0.09877870976924896, 0.0011021842947229743, -0.022165820002555847, -0.006164090242236853, -0.03574885055422783, -0.009531110525131226, -0.03546147793531418, 0.001603286131285131, -0.021610237658023834, 0.020039279013872147, -0.02275971695780754, 0.024905415251851082, -0.0013554292963817716, 0.027989855036139488, -0.07854785025119781, 0.023468563333153725, 0.07598067075014114, 0.024043304845690727, -0.04701375961303711, -0.046324070543050766, -0.004506922326982021, 0.029733233153820038, -0.009258109144866467, 0.05636287108063698, 0.03446526080369949, 0.0016871023690328002, -0.006044352427124977, 0.053987275809049606, -0.05873846262693405, 0.003589732339605689, -0.034752633422613144, -0.02616984397172928, -0.046017542481422424, 0.009435320273041725, 0.019866857677698135, 0.02657216228544712, -0.0012021652655676007, 0.04364195093512535, 0.08896980434656143, 0.032932620495557785, -0.04862303286790848, 0.044101741164922714, 0.03153408691287041, 0.017357157543301582, -0.024100778624415398, -0.05824035406112671, -0.009885533712804317, -0.0026485950220376253, 0.012922078371047974, 0.0766320452094078, 0.05233968794345856, 0.012644287198781967, 0.006235932931303978, 0.02833469957113266, 0.0010429142275825143, -0.04283731430768967, -0.07214906811714172, 0.04111309349536896, -0.02423488348722458, 0.02643805555999279, 0.008170891553163528, 0.014904933050274849, 0.013966190628707409, 0.004868529736995697, -0.01600651815533638, -0.04686049744486809, 0.005991667974740267, 0.017290106043219566, -0.040346771478652954, -0.013611767441034317, -0.011054172180593014, -0.006331722717732191, 0.006350880954414606, 0.03189808875322342, -0.019790226593613625, 0.01600651815533638, 0.03394799679517746, 0.00032748226658441126, -0.03159156069159508, 0.03162987530231476, -0.055634863674640656, 0.01052732765674591, -0.012845446355640888, -0.008180471137166023, -0.023315299302339554, -0.03331578150391579, -0.050040725618600845, -0.034676000475883484, 0.04843145236372948, 0.07375834137201309, -0.024043304845690727, -0.013027448207139969, -0.01027827337384224, -0.016504626721143723, -0.03766465187072754, 0.02038412354886532, -0.008755210787057877, 0.09272477775812149, -0.019713593646883965, -0.012605971656739712, -0.038603391498327255, 0.04846976697444916, -0.014818721450865269, -0.016284309327602386, 0.015585042536258698, 0.042454153299331665, 0.009411373175680637, 0.01796063594520092, 0.08996602147817612, -0.025460997596383095, -0.04302889481186867, -0.025441838428378105, -0.01778821274638176, -0.029292600229382515, -0.01642799563705921, -0.0168398916721344, -0.01517314463853836, -0.02823890931904316, -0.02103549614548683, 0.004844582173973322, 0.05050051957368851, 0.025173626840114594, -0.07778152823448181, -0.00654725031927228, 0.008400787599384785, 0.013314818032085896, 0.014636720530688763, -0.05881509557366371, -0.027855748310685158, -0.014196086674928665, 0.019340012222528458, 0.0006441881414502859, 0.0112265944480896, 0.0034628105349838734, -0.011571438983082771, -0.04686049744486809, 0.03375641629099846, -0.03364146873354912, -0.014703773893415928, 0.027223534882068634, 0.008027207106351852, 0.024196568876504898, -0.07502277195453644, 0.0725705474615097, 0.047741763293743134, -0.04015519097447395, -0.027453429996967316, 0.04900619387626648, 0.020192544907331467, 0.05992626026272774, -0.023430248722434044, 0.020403282716870308, 0.01240481249988079, 0.011897125281393528, 0.03620864078402519, 0.005570191890001297, 0.019387908279895782, 0.01873653568327427, -0.05080704763531685, -0.05873846262693405, 0.01211744174361229, -0.07149770110845566, -0.06950526684522629, 0.023660143837332726, 0.03030797466635704, -0.03170650824904442, 0.006882515735924244, 0.00977537501603365, -0.02105465531349182, -0.033085886389017105, -0.08912307024002075, -0.04299057647585869, 0.005455243866890669, -0.03935055434703827, -0.046017542481422424, -0.046247441321611404, -0.05804877355694771, 0.006724461913108826, -0.02262561209499836, 0.06402607262134552, -0.023794250562787056, -0.0048038712702691555, -0.0909622386097908, 0.010412379167973995, 0.04651565104722977, -0.0071650962345302105, 0.01606399193406105, -0.046324070543050766, 0.012174916453659534, 0.04697544500231743, 0.01329565979540348, 0.018142636865377426, -0.006571197882294655, 0.0029958339873701334, -0.06931368261575699, -0.013477660715579987, 0.015623358078300953, -0.0006789120379835367, -0.03446526080369949, 0.023219509050250053, -0.02237655781209469, -0.016696207225322723, -0.015537147410213947, -0.02659131959080696, 0.05801045894622803, 0.016303468495607376, -0.009737059473991394, -0.04517459124326706, -0.03164903447031975, 0.004928398411720991, 0.01225154846906662, -0.03747307136654854, 0.004966714419424534, -0.006757988594472408, 0.023794250562787056, -0.042262572795152664, -0.010153746232390404, -0.029752392321825027, 0.04505964368581772, 0.00705972732976079, 0.03356483578681946, -0.02053738757967949, -0.012127021327614784, 0.007414150517433882, 0.0185832716524601, 0.01708894595503807, 0.0041213673539459705, 0.070846326649189, 0.02258729562163353, 0.059543099254369736, -0.015556305646896362, 0.02090139128267765, -0.051688313484191895, 0.04525122418999672, 0.06207195669412613, -0.06781935691833496, 0.04375689849257469, 0.03640022128820419, -0.05965804681181908, 0.028066486120224, -0.0009411373175680637, -0.03205135464668274, 0.03132334724068642, 0.014205665327608585, 0.017443370074033737, -0.016341783106327057, 0.08659420907497406, -0.024828782305121422, -0.01792231947183609, -0.00116744136903435, 0.012021652422845364, -0.025326890870928764, 0.02613152749836445, 0.04946598410606384, -0.047818396240472794, -0.0012931657256558537, -0.049964092671871185, 0.0143206138163805, -0.022070029750466347, -0.02662963606417179, -0.024196568876504898, -0.038737498223781586, 0.00903779175132513, 0.001079434179700911, 0.0975525975227356, 0.022204134613275528, -0.008716895245015621, -0.004348868504166603, 0.0113223847001791, -0.0414196215569973, 0.011945020407438278, -0.012184495106339455, 0.06314480304718018, -0.031035978347063065, -0.051688313484191895, 0.006006036419421434, -0.03582547977566719, -0.0036400221288204193, 0.006403565406799316, 0.0008848606375977397, 0.004827818833291531, 0.04138130322098732, -0.0050050304271280766, -0.0011297239689156413, -0.006935200188308954, -0.011054172180593014, 0.010603959672152996, -0.007078885100781918, 0.07517603784799576, 0.05421717092394829, 0.016399256885051727, 0.005843193270266056, -0.005551033653318882, 0.01333397626876831, 0.015623358078300953, 0.02440730668604374, 0.03572969138622284, -0.020192544907331467, 0.028449647128582, 0.025001205503940582, 0.04732028767466545, -0.04709039255976677, 0.032932620495557785, -0.044101741164922714, 0.057090874761343, 0.03797117993235588, 0.0059581417590379715, -0.03435031324625015, 0.03260693699121475, -0.014464298263192177, 0.07532930374145508, 0.020154228433966637, -0.047895029187202454, -0.00929163582623005, -0.046094175428152084, -0.02469467744231224, -0.039024870842695236, -0.014904933050274849, -0.011628912761807442, 0.013966190628707409, -0.055711496621370316, -0.10092440247535706, 0.017644528299570084, -0.09042581170797348, -0.03226209059357643, -0.033047568053007126, -0.05345085263252258, -0.06996505707502365, -0.02988649718463421, 0.0354231633245945, 0.01126491092145443, 0.04222425818443298, -0.01116912066936493, -0.045902594923973083, -0.0005636645946651697, -0.019110117107629776, 0.013525555841624737, 0.021897606551647186, -0.07525266706943512, -0.020307492464780807, -0.02459888719022274, -0.05279947817325592, 0.01881316676735878, 0.00705972732976079, 0.0019421434262767434, -0.04391016066074371, 0.029407547786831856, 0.0677427276968956, -0.10498590022325516, 0.0006447868072427809, -0.0026414107996970415, 0.01600651815533638, -0.05410222336649895, 0.021763501688838005, 0.04210931062698364, 0.05536665394902229, 0.011897125281393528, -0.029733233153820038, 0.0010357300052419305, 0.021092969924211502, 0.04969588294625282, 0.06306817382574081, 0.009818481281399727, 0.06893052160739899, -0.006662198342382908, 0.00002304948247910943, -0.056056343019008636, -0.04843145236372948, -0.010929645039141178, -0.013161554001271725, 0.012586813420057297, 0.02471383474767208, -0.018937693908810616, 0.02996313013136387, -0.03233872354030609, 0.02982902340590954, -0.034867580980062485, 0.025767525658011436, 0.015134829096496105, 0.029733233153820038, -0.007371044717729092, -0.010249536484479904, -0.009990902617573738, -0.007974522188305855, -0.07847121357917786, 0.007303991820663214, -0.007969732396304607, 0.009334741160273552, -0.029656602069735527, 0.009693954139947891, 0.021207919344305992, -0.008913264609873295, -0.04758850112557411, -0.013401028700172901, 0.0014859432121738791, 0.021686868742108345, -0.04145793616771698, 0.021686868742108345, -0.010316588915884495, 0.025116153061389923 ]
729,314
tinytuya.core
_encode_message
null
def _encode_message( self, msg ): # make sure to use the parent's self.seqno and session key if self.parent: return self.parent._encode_message( msg ) hmac_key = None iv = None payload = msg.payload self.cipher = AESCipher(self.local_key) if self.version >= 3.4: hmac_key = self.local_key if msg.cmd not in NO_PROTOCOL_HEADER_CMDS: # add the 3.x header payload = self.version_header + payload log.debug('final payload: %r', payload) if self.version >= 3.5: iv = True # seqno cmd retcode payload crc crc_good, prefix, iv msg = TuyaMessage(self.seqno, msg.cmd, None, payload, 0, True, PREFIX_6699_VALUE, True) self.seqno += 1 # increase message sequence number data = pack_message(msg,hmac_key=self.local_key) log.debug("payload encrypted=%r",binascii.hexlify(data)) return data payload = self.cipher.encrypt(payload, False) elif self.version >= 3.2: # expect to connect and then disconnect to set new payload = self.cipher.encrypt(payload, False) if msg.cmd not in NO_PROTOCOL_HEADER_CMDS: # add the 3.x header payload = self.version_header + payload elif msg.cmd == CONTROL: # need to encrypt payload = self.cipher.encrypt(payload) preMd5String = ( b"data=" + payload + b"||lpv=" + PROTOCOL_VERSION_BYTES_31 + b"||" + self.local_key ) m = md5() m.update(preMd5String) hexdigest = m.hexdigest() # some tuya libraries strip 8: to :24 payload = ( PROTOCOL_VERSION_BYTES_31 + hexdigest[8:][:16].encode("latin1") + payload ) self.cipher = None msg = TuyaMessage(self.seqno, msg.cmd, 0, payload, 0, True, PREFIX_55AA_VALUE, False) self.seqno += 1 # increase message sequence number buffer = pack_message(msg,hmac_key=hmac_key) log.debug("payload encrypted=%r",binascii.hexlify(buffer)) return buffer
(self, msg)
[ -0.02032090350985527, -0.05241690203547478, -0.030343519523739815, 0.0664367526769638, 0.0010559189831838012, -0.05639444291591644, -0.04832121729850769, 0.061435289680957794, 0.01408876571804285, -0.05411031097173691, 0.04312284663319588, 0.012552883476018906, 0.008117531426250935, 0.051944322884082794, -0.02642505057156086, 0.015496657229959965, 0.06509777903556824, -0.04347728192806244, 0.030697952955961227, -0.03934221342206001, 0.0019555422477424145, 0.041429437696933746, -0.00506545789539814, 0.05399216711521149, -0.0124741205945611, 0.03392724320292473, -0.012986080721020699, 0.017682336270809174, 0.025814635679125786, -0.03883025422692299, 0.00022829018416814506, -0.034813329577445984, 0.04985709860920906, 0.03847581893205643, -0.03701869770884514, -0.007891086861491203, -0.012040922418236732, -0.05710331350564957, -0.02018306776881218, -0.03239136189222336, 0.027704952284693718, -0.034813329577445984, 0.03365157172083855, -0.05147174373269081, 0.009328515268862247, 0.025401128455996513, -0.03105238825082779, 0.11200125515460968, 0.015644337981939316, 0.024318134412169456, -0.01086932048201561, -0.030343519523739815, 0.044343676418066025, 0.015122532844543457, -0.022782253101468086, 0.018243523314595222, -0.0027960932347923517, -0.021226679906249046, -0.022289982065558434, 0.05745774880051613, 0.005208216141909361, 0.014236446470022202, -0.0022693644277751446, 0.045840177685022354, -0.03772756829857826, -0.00028951626154594123, -0.006099224556237459, -0.010849629528820515, -0.02636597864329815, 0.0037535582669079304, 0.061317142099142075, -0.004312284756451845, -0.024278752505779266, 0.03099331445991993, -0.03239136189222336, 0.006724407430738211, -0.05718207731842995, 0.04548574239015579, -0.019612034782767296, 0.02156142331659794, 0.05930868163704872, -0.042807795107364655, 0.04044489935040474, 0.00780247850343585, 0.04650966450572014, 0.030245065689086914, 0.025381438434123993, 0.026070615276694298, -0.05875733867287636, -0.007162527646869421, 0.001990001183003187, -0.009298979304730892, -0.004511653911322355, 0.06576726585626602, 0.0377669483423233, -0.04938451945781708, 0.01623506285250187, 0.00040458436706103384, -0.0032588269095867872, -0.00017337131430394948, -0.04485563561320305, 0.0715169757604599, -0.08758466690778732, -0.06324683874845505, 0.0003181294596288353, -0.024259062483906746, -0.04808492586016655, 0.012503656558692455, 0.017062075436115265, 0.004469810985028744, 0.01551634818315506, -0.04213830828666687, -0.05170803517103195, 0.011528962291777134, 0.009628799743950367, -0.059860024601221085, -0.017455892637372017, 0.0074775805696845055, -0.016264598816633224, 0.01643197052180767, 0.024160608649253845, 0.002673025708645582, 0.024081844836473465, -0.059623733162879944, -0.013005771674215794, 0.026188760995864868, 0.05745774880051613, -0.050447821617126465, 0.018853938207030296, -0.08175618946552277, -0.04938451945781708, 0.050290297716856, 0.04958142712712288, 0.027704952284693718, -0.0170719213783741, -0.013517732731997967, 0.002781325252726674, -0.019100073724985123, 0.009594340808689594, 0.004819322843104601, 0.04816368967294693, 0.0330214686691761, 0.02802000567317009, -0.019740024581551552, 0.022408127784729004, -0.006158296950161457, 0.03233228996396065, -0.05761527270078659, -0.03713684529066086, -0.03260796144604683, 0.0531257726252079, -0.025598036125302315, -0.0020096921361982822, 0.0168750137090683, 0.05604001134634018, 0.020675336942076683, -0.016038155183196068, -0.022467199712991714, -0.049069467931985855, -0.00492023816332221, 0.00506545789539814, -0.02973310463130474, -0.01477794349193573, -0.008954389952123165, 0.03723529726266861, -0.0042778258211910725, -0.0016823324840515852, -0.02327452227473259, -0.006296132691204548, 0.016747023910284042, -0.02654319442808628, 0.028669800609350204, -0.06304993480443954, 0.020931318402290344, 0.02014368586242199, 0.03134774789214134, -0.04843936115503311, -0.03418322280049324, -0.00966325867921114, -0.006936083547770977, -0.0711231604218483, 0.04847874492406845, 0.00785662792623043, 0.03847581893205643, 0.027350516989827156, 0.0390862338244915, 0.09798140823841095, 0.050408441573381424, 0.07695163786411285, -0.04075995087623596, -0.06785448640584946, 0.00537066487595439, 0.00014683489280287176, 0.038160767406225204, -0.012779328040778637, 0.049148231744766235, 0.03883025422692299, -0.007265904452651739, -0.007585879880934954, 0.0315052755177021, -0.016047999262809753, -0.03408477082848549, 0.01400015689432621, -0.0231366865336895, -0.035167764872312546, -0.03209599852561951, -0.008979003876447678, 0.017337746918201447, -0.026720412075519562, -0.04162634536623955, 0.022211220115423203, 0.003224368207156658, 0.029851248487830162, 0.030402591452002525, 0.005158988758921623, -0.06655489653348923, -0.007792633026838303, 0.03156434744596481, 0.017505118623375893, -0.004952235613018274, 0.035167764872312546, 0.045800793915987015, -0.04682471603155136, -0.04014953598380089, 0.03430137038230896, -0.03788509592413902, -0.005995847750455141, 0.0027124073822051287, -0.03142651170492172, -0.0030003853607922792, 0.045682650059461594, 0.038121383637189865, 0.016687950119376183, 0.07896009832620621, -0.019296981394290924, 0.03766849637031555, -0.014177374541759491, -0.016077537089586258, -0.04997524246573448, 0.0038150919135659933, 0.009239906445145607, -0.06025383993983269, 0.053874023258686066, 0.03304115682840347, 0.013547268696129322, 0.0009316208306699991, 0.03944066911935806, 0.04229583218693733, -0.002197985304519534, 0.045958321541547775, -0.059623733162879944, -0.024318134412169456, -0.03412415087223053, -0.022782253101468086, -0.01018014270812273, -0.06245920807123184, 0.04481625556945801, 0.014630262739956379, 0.0140395388007164, 0.002221368020400405, -0.020793482661247253, 0.004735636990517378, -0.07017800211906433, 0.02321545034646988, -0.006665335036814213, 0.009230061434209347, -0.005995847750455141, 0.00394308241084218, -0.024337826296687126, 0.02664164826273918, 0.05422845482826233, 0.006729329936206341, -0.029969394207000732, 0.06454643607139587, -0.0018878552364185452, -0.05296824499964714, -0.026897629722952843, -0.016461506485939026, 0.012867935933172703, -0.015762483701109886, -0.01239535678178072, 0.00043473587720654905, 0.05288948118686676, -0.01160772517323494, -0.0073151313699781895, -0.007610493339598179, -0.016638724133372307, -0.05115669220685959, 0.0025376514531672, -0.03300177678465843, -0.076597198843956, -0.012247676029801369, -0.014344746246933937, 0.011981850489974022, 0.022565653547644615, -0.010731484740972519, -0.05706392973661423, 0.07640029489994049, 0.04014953598380089, -0.028531964868307114, -0.027685262262821198, 0.0591905377805233, 0.01810568757355213, -0.01765280030667782, 0.03758973255753517, 0.0008959312690421939, -0.007738483604043722, 0.038160767406225204, -0.012031077407300472, -0.02475133165717125, -0.008880550041794777, 0.019671106711030006, 0.034911785274744034, 0.006409354507923126, -0.008009231649339199, 0.002872395096346736, 0.08096855878829956, 0.0047824024222791195, 0.058678578585386276, 0.06423138082027435, 0.012789173051714897, -0.05820599943399429, -0.03735344111919403, 0.0352662168443203, 0.037904784083366394, -0.0203012116253376, 0.05552804842591286, -0.04836059734225273, 0.006694871000945568, -0.0430440828204155, -0.045722030103206635, 0.06427076458930969, -0.014856706373393536, -0.03392724320292473, -0.0715169757604599, -0.007354512810707092, -0.018440430983901024, 0.005326360929757357, 0.010593648999929428, -0.0026361055206507444, -0.014285673387348652, -0.06293179094791412, -0.010426277294754982, 0.014413664117455482, 0.004952235613018274, -0.07332853227853775, -0.053677115589380264, -0.013832785189151764, -0.005700485780835152, 0.0039086234755814075, -0.025479892268776894, -0.019789252430200577, 0.06029322370886803, 0.06576726585626602, 0.021147916093468666, -0.022624725475907326, -0.025381438434123993, -0.03766849637031555, 0.03847581893205643, 0.029910322278738022, 0.02331390418112278, 0.00853596068918705, 0.01556557510048151, 0.022861015051603317, -0.09105024486780167, 0.007536652963608503, -0.010219523683190346, -0.017416510730981827, 0.0630105510354042, 0.01798754371702671, 0.009638645686209202, -0.036703646183013916, 0.002567187650129199, 0.0332183763384819, -0.029949702322483063, 0.027527734637260437, -0.07218646258115768, 0.004853781778365374, -0.021266061812639236, -0.0676969587802887, 0.05804847180843353, 0.002702561905607581, -0.029004544019699097, 0.01327159721404314, 0.05336206033825874, 0.013005771674215794, 0.06076580286026001, -0.0017623263411223888, -0.011893241666257381, 0.041429437696933746, -0.01615629903972149, 0.059781260788440704, 0.05493732541799545, -0.03772756829857826, -0.038160767406225204, 0.04233521595597267, -0.028413821011781693, 0.030185991898179054, -0.01316329836845398, -0.06950851529836655, 0.023865247145295143, -0.0527319572865963, 0.04068118706345558, 0.00849657878279686, -0.01775125414133072, 0.012287057936191559, 0.06352251023054123, 0.060135696083307266, -0.0168750137090683, 0.014856706373393536, -0.0282759852707386, 0.04253212362527847, -0.013566959649324417, -0.011341899633407593, -0.016087381169199944, -0.050684113055467606, -0.0002613645629025996, 0.002788709243759513, 0.036290138959884644, 0.04792740195989609, -0.02502700313925743, 0.0496995747089386, -0.008639337494969368, 0.009057766757905483, -0.03115084208548069, 0.02492854930460453, -0.050605349242687225, -0.010475504212081432, -0.019149299710989, 0.002183217089623213, 0.04213830828666687, -0.007285594940185547, 0.014305364340543747, -0.0054297372698783875, -0.005050689447671175, 0.0261690691113472, -0.022467199712991714, -0.041311293840408325, -0.0332183763384819, 0.052141230553388596, 0.019986160099506378, 0.0011839092476293445, -0.024495352059602737, 0.030323827639222145, 0.08057474344968796, -0.0249482411891222, -0.06631860882043839, 0.021147916093468666, -0.025381438434123993, 0.03428167849779129, 0.053834639489650726, 0.037983547896146774, -0.036526430398225784, 0.0006664104294031858, -0.03741251677274704, -0.00027197913732379675, 0.07561266422271729, 0.022388435900211334, -0.03248981758952141, -0.0529288649559021, -0.011814478784799576, 0.026799175888299942, 0.0249482411891222, 0.06946913152933121, 0.012287057936191559, 0.023884937167167664, -0.04481625556945801, -0.039617884904146194, -0.006685025990009308, -0.03105238825082779, -0.017564190551638603, -0.002232444239780307, -0.027389898896217346, 0.03136743977665901, 0.027744334191083908, -0.03688086196780205, 0.025991853326559067, -0.0356600359082222, -0.05470103397965431, -0.04800616577267647, -0.030776716768741608, -0.025440510362386703, 0.033316828310489655, -0.014364437200129032, 0.009121761657297611, -0.012749791145324707, 0.06966604292392731, -0.0466671884059906, 0.06049013137817383, -0.008063381537795067, -0.0500933900475502, 0.05863919481635094, -0.01155849825590849, 0.0957760363817215, -0.007822168990969658, -0.009559881873428822, -0.05446474626660347, -0.03934221342206001, -0.08037783205509186, -0.04225645214319229, -0.002346897032111883, -0.009298979304730892, -0.03105238825082779, -0.04056304320693016, 0.017918625846505165, -0.01092839241027832, -0.029910322278738022, 0.010426277294754982, 0.03126898780465126, 0.04022829979658127, -0.0464702807366848, 0.02646443247795105, -0.027508044615387917, -0.045722030103206635, -0.01238551177084446, 0.033178992569446564, -0.039972320199012756, -0.010111224837601185, -0.0037240220699459314, -0.02325483225286007, 0.029083307832479477, 0.027645880356431007, 0.02193554863333702, 0.020793482661247253, -0.004307361785322428, 0.05021153390407562, -0.04698224365711212, 0.00023105919535737485, -0.015427740290760994, 0.021364515647292137, -0.09892656654119492, -0.025755563750863075, 0.022998850792646408, 0.03378940746188164, -0.009904471226036549, -0.031820327043533325, -0.05257442966103554, 0.03701869770884514, -0.05765465646982193, -0.08348897844552994, -0.011332053691148758, -0.012858090922236443, -0.059978168457746506, -0.07793617993593216, -0.05281071737408638, 0.034734565764665604, 0.009550036862492561, 0.04698224365711212, -0.050487205386161804, -0.011873550713062286, -0.10105317085981369, 0.00785662792623043, 0.03475425764918327, 0.04261088743805885, 0.0533226802945137, -0.06056889146566391, 0.015043769031763077, -0.018243523314595222, -0.011341899633407593, 0.026050925254821777, 0.01386232115328312, 0.02674010396003723, -0.06706685572862625, -0.04658842831850052, 0.012562728486955166, 0.025617728009819984, -0.023018542677164078, 0.035128381103277206, 0.017485428601503372, 0.03406507894396782, -0.005843244027346373, -0.0028822405729442835, 0.01930682733654976, 0.00732005387544632, -0.006561958231031895, -0.047139767557382584, -0.07695163786411285, 0.044343676418066025, 0.025952471420168877, -0.022053692489862442, 0.020114149898290634, 0.011784941889345646, 0.03723529726266861, -0.008289826102554798, 0.00897408090531826, 0.00468148710206151, 0.04710038751363754, 0.04174448922276497, 0.01491577923297882, 0.0003102838818449527, -0.06253797560930252, -0.047376058995723724, 0.026877937838435173, 0.022093074396252632, 0.04958142712712288, 0.025637418031692505, 0.022644417360424995, 0.030323827639222145, 0.0013106687692925334, 0.0008885472198016942, 0.019208373501896858, 0.02794124186038971, 0.034951165318489075, -0.011174527928233147, 0.0377669483423233, 0.0019616957288235426, -0.06537345051765442, 0.05726084113121033, -0.022742871195077896, 0.02349112182855606, 0.01641228049993515, 0.033277448266744614, 0.012375665828585625, -0.0705324336886406, -0.005013769492506981, -0.0029979238752275705, -0.06076580286026001, 0.01312391646206379, 0.021384205669164658, 0.004868549760431051, 0.00780740100890398, 0.010027538985013962, -0.08317393064498901, 0.002655796241015196, -0.0680907815694809, 0.024337826296687126, 0.04375295341014862, -0.0360538512468338, -0.019208373501896858, -0.055331140756607056, 0.008294748142361641, 0.03851519897580147, 0.050605349242687225, 0.02317606844007969, 0.02045873925089836, -0.02662195824086666, -0.030579809099435806, 0.022762561216950417, -0.0014669643715023994, -0.01651073433458805, 0.01325190719217062, -0.007216677535325289, -0.04209892451763153, -0.08317393064498901, -0.044107384979724884, 0.038259219378232956, 0.01408876571804285, -0.029083307832479477, -0.050723493099212646, -0.02656288631260395, 0.03229290619492531, -0.015329285524785519, 0.012966389767825603, 0.01156834326684475, 0.0330214686691761, 0.012887626886367798, 0.02043904736638069, 0.07297409325838089, 0.03597508743405342, 0.017239293083548546, 0.024593805894255638, -0.017642954364418983, 0.008102763444185257, 0.005188525188714266, 0.041114386171102524, 0.039480049163103104, 0.02028152160346508, -0.017121149227023125, 0.08254382014274597, -0.07009924203157425, 0.0282759852707386, 0.021187297999858856, -0.025440510362386703, 0.022861015051603317, 0.028394130989909172, -0.03087517060339451, 0.04710038751363754, -0.03865303471684456, 0.030835788697004318, 0.0013635876821354032, -0.008417815901339054, 0.03447858616709709, -0.010327823460102081, -0.029024235904216766, 0.000002206561475759372, -0.019808942452073097, 0.049030084162950516, 0.04966019093990326, -0.04477687180042267, -0.18446339666843414, 0.006005693227052689, -0.04792740195989609, -0.026838557794690132, -0.010027538985013962, -0.016303980723023415, 0.008629492484033108, 0.004647028166800737, -0.02179771289229393, -0.05088102072477341, -0.03422260656952858, -0.014295519329607487, -0.039893556386232376, -0.008491656742990017, -0.017997389659285545, 0.002786247758194804, 0.048872560262680054, -0.005587263964116573, -0.04784863814711571, -0.04166572913527489, -0.009417124092578888, -0.007201909087598324, 0.0022066000383347273, 0.022742871195077896, -0.002759173046797514, -0.009929084219038486, 0.05162927135825157, -0.02961495891213417, 0.05269257351756096, -0.01019983272999525, 0.04007077217102051, -0.06470396369695663, 0.046273373067379, 0.03424229845404625, 0.004080917686223984, 0.0008300901972688735, -0.03288363292813301, 0.0068622431717813015, -0.0070886872708797455, 0.010308132506906986, 0.01890316605567932, -0.009796171449124813, 0.029989084228873253, -0.02658257633447647, 0.016668260097503662, -0.0045091924257576466, -0.007620338816195726, -0.013891858048737049, -0.029240833595395088, 0.007423430681228638, 0.05907239392399788, -0.046037085354328156, 0.020074767991900444, -0.03447858616709709, 0.005405123811215162, -0.011036692187190056, 0.0009685410768724978, 0.06084456294775009, 0.0007734791142866015, 0.008555651642382145, 0.027035465463995934, 0.001490347203798592, 0.01918868161737919, -0.0620260126888752, -0.00409322464838624, 0.033474355936050415, -0.01086932048201561, -0.032036926597356796, 0.047572966665029526, 0.02032090350985527, -0.0250466950237751, -0.02636597864329815, -0.007187141105532646, 0.03292301297187805, 0.028295675292611122, -0.009983234107494354, 0.03420291468501091, 0.01322237029671669, 0.06049013137817383 ]
729,315
tinytuya.core
_get_socket
null
def _get_socket(self, renew): if renew and self.socket is not None: # self.socket.shutdown(socket.SHUT_RDWR) self.socket.close() self.socket = None if self.socket is None: # Set up Socket retries = 0 err = ERR_OFFLINE while retries < self.socketRetryLimit: if self.auto_ip and not self.address: bcast_data = find_device(self.id) if bcast_data['ip'] is None: log.debug("Unable to find device on network (specify IP address)") return ERR_OFFLINE self.address = bcast_data['ip'] new_version = float(bcast_data['version']) if new_version != self.version: # this may trigger a network call which will call _get_socket() again #self.set_version(new_version) self.version = new_version self.version_str = "v" + str(version) self.version_bytes = str(version).encode('latin1') self.version_header = self.version_bytes + PROTOCOL_3x_HEADER self.payload_dict = None if not self.address: log.debug("No address for device!") return ERR_OFFLINE self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) if self.socketNODELAY: self.socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) self.socket.settimeout(self.connection_timeout) try: retries = retries + 1 self.socket.connect((self.address, self.port)) if self.version >= 3.4: # restart session key negotiation if self._negotiate_session_key(): return True else: if self.socket: self.socket.close() self.socket = None return ERR_KEY_OR_VER else: return True except socket.timeout as e: # unable to open socket log.debug( "socket unable to connect (timeout) - retry %d/%d", retries, self.socketRetryLimit ) err = ERR_OFFLINE except Exception as e: # unable to open socket log.debug( "socket unable to connect (exception) - retry %d/%d", retries, self.socketRetryLimit, exc_info=True ) err = ERR_CONNECT if self.socket: self.socket.close() self.socket = None if retries < self.socketRetryLimit: time.sleep(self.socketRetryDelay) if self.auto_ip: self.address = None # unable to get connection return err # existing socket active return True
(self, renew)
[ 0.027991535142064095, -0.054266516119241714, -0.04322595149278641, 0.03778369352221489, -0.004603485576808453, -0.027367332950234413, -0.05301811173558235, 0.018033569678664207, -0.01237674430012703, -0.05040426924824715, -0.0261189304292202, 0.0018750426825135946, 0.011342911049723625, 0.016131706535816193, 0.022139646112918854, 0.01603417471051216, -0.0004910100251436234, -0.0313856303691864, -0.03101501055061817, -0.015283182263374329, -0.005583676975220442, 0.06417571008205414, 0.0084462258964777, -0.012288966216146946, 0.025845842435956, 0.07022266089916229, -0.0247925017029047, 0.035169851034879684, 0.05555393174290657, -0.0327315628528595, -0.01615121215581894, 0.022705327719449997, 0.08770030736923218, 0.03647677227854729, 0.029825126752257347, 0.03909061476588249, -0.018140854313969612, -0.05176970735192299, -0.039597779512405396, -0.01276687067002058, 0.0031063775531947613, -0.04322595149278641, 0.0046083624474704266, 0.008158507756888866, -0.026392018422484398, 0.0047180852852761745, -0.07143205404281616, 0.0596112385392189, 0.02964956872165203, -0.005169168580323458, -0.03753011301159859, 0.06636042147874832, -0.018306657671928406, 0.007105168420821428, -0.008173137903213501, -0.001667788252234459, -0.03747159242630005, 0.050794392824172974, -0.022607795894145966, -0.0037915362045168877, -0.035696521401405334, 0.008426719345152378, -0.029161911457777023, 0.03054685890674591, -0.04069013148546219, -0.004520583897829056, -0.055007752031087875, -0.0019140553195029497, 0.04552769288420677, 0.042874839156866074, 0.06792092323303223, 0.07100291550159454, 0.009280120022594929, -0.01615121215581894, 0.02442188188433647, 0.030156733468174934, -0.00431820610538125, -0.03819332644343376, -0.015341701917350292, 0.0023590426426380873, 0.03883703425526619, 0.026977207511663437, 0.024968057870864868, 0.008090236224234104, 0.060118403285741806, 0.0224322397261858, 0.012503535486757755, 0.014181076548993587, -0.05087241902947426, -0.021144824102520943, -0.037374064326286316, 0.06729672104120255, -0.006763807963579893, 0.0247925017029047, 0.051847733557224274, -0.04935092851519585, -0.01245476957410574, -0.019691605120897293, 0.034955281764268875, -0.05001414194703102, -0.051574647426605225, 0.03187328577041626, -0.10346139222383499, -0.033804409205913544, 0.046932145953178406, -0.04638596996665001, -0.006393188610672951, 0.03671084716916084, -0.023758668452501297, -0.011118588969111443, -0.010894265957176685, -0.03191230073571205, 0.027094244956970215, 0.08871462941169739, -0.019720865413546562, -0.015409973450005054, -0.027152763679623604, -0.0009442266309633851, 0.007231959141790867, 0.014385893009603024, -0.061132729053497314, 0.006154236383736134, -0.011011304333806038, -0.017955545336008072, 0.03234143927693367, 0.05656825751066208, 0.00011261837789788842, -0.00338921882212162, 0.08933883160352707, -0.028927836567163467, -0.02432435005903244, 0.01943802274763584, 0.05028723180294037, 0.01776048168540001, -0.04104124754667282, -0.022705327719449997, -0.04615189507603645, 0.028206104412674904, -0.03587207943201065, -0.03238045051693916, 0.0010307858465239406, 0.0211058109998703, -0.007110044825822115, 0.021515443921089172, -0.004320644307881594, 0.041704460978507996, -0.04447435587644577, 0.014161570928990841, 0.018160361796617508, -0.056490231305360794, 0.04193853586912155, -0.019135676324367523, -0.00614935951307416, -0.018589500337839127, -0.03792024031281471, -0.005978679750114679, -0.06620436906814575, -0.021651988849043846, -0.006573621649295092, -0.02475348860025406, -0.0743580013513565, -0.015887876972556114, 0.024675464257597923, -0.06538510322570801, 0.024129288271069527, -0.007763505447655916, -0.06242014467716217, -0.052784036844968796, 0.0696374773979187, 0.015858618542551994, -0.01516614481806755, 0.07049575448036194, 0.01182081550359726, -0.04416225478053093, -0.030098214745521545, 0.030468834564089775, -0.02853771112859249, -0.05793369933962822, -0.024460894986987114, 0.017936039716005325, -0.022861378267407417, -0.04669807106256485, -0.02943499945104122, -0.0395587682723999, 0.02327101118862629, 0.07825925946235657, 0.03862246498465538, 0.017068007960915565, 0.07607455551624298, 0.01896987296640873, -0.034955281764268875, 0.039753831923007965, 0.03370687738060951, 0.014922316186130047, 0.022919896990060806, -0.007787888403981924, 0.029376480728387833, 0.04353805258870125, 0.004957037512212992, 0.07201724499464035, -0.011567233130335808, 0.04174347221851349, -0.007095415145158768, 0.01878456212580204, -0.043186940252780914, -0.049936115741729736, -0.030644390732049942, -0.030722415074706078, 0.04455237835645676, 0.039383210241794586, -0.041236307471990585, 0.02379768155515194, 0.03914913535118103, 0.019906174391508102, 0.04412323981523514, -0.010318830609321594, 0.030839452520012856, -0.022510265931487083, -0.020013459026813507, -0.01770196296274662, -0.02231520228087902, -0.04451336711645126, -0.045293617993593216, -0.009070427156984806, -0.04892178997397423, -0.0009521510801278055, -0.0490778386592865, -0.02859622985124588, -0.01115760114043951, 0.07849333435297012, 0.06565818935632706, 0.03013722598552704, 0.0617179200053215, 0.012991192750632763, 0.011772049590945244, -0.021222850307822227, -0.03963679447770119, 0.03842740133404732, 0.027679434046149254, -0.016765661537647247, -0.030936984345316887, -0.03635973483324051, 0.024051262065768242, -0.007529430091381073, 0.06007939204573631, 0.025553246960043907, 0.04755634814500809, 0.004110951907932758, 0.023661136627197266, -0.007105168420821428, -0.014571202918887138, 0.009845802560448647, 0.0030356673523783684, -0.021964088082313538, -0.003435546299442649, -0.08926080912351608, -0.05820678547024727, 0.02717226929962635, -0.005973802879452705, 0.0020847353152930737, 0.008119495585560799, 0.056646283715963364, -0.06359052658081055, 0.011089328676462173, -0.0780641958117485, -0.034643180668354034, -0.0011222215835005045, 0.037432581186294556, -0.013449590653181076, 0.038017768412828445, 0.060703590512275696, 0.005242316983640194, -0.02881079912185669, 0.038076288998126984, 0.029844632372260094, -0.014912563376128674, 0.03425305336713791, -0.029942164197564125, 0.002833289559930563, -0.06452682614326477, -0.002402931684628129, 0.06811598688364029, 0.02178853191435337, 0.022334707900881767, -0.05095044523477554, -0.011274638585746288, -0.017682457342743874, -0.02210063301026821, 0.027679434046149254, 0.0067979441955685616, -0.04189952462911606, -0.05988432839512825, 0.020715685561299324, 0.02964956872165203, 0.012113410048186779, 0.02290039137005806, 0.01313749048858881, 0.052627984434366226, 0.019038144499063492, -0.01551725808531046, -0.034214042127132416, -0.008841228671371937, -0.051418595016002655, 0.05617813020944595, 0.07151007652282715, -0.05481269210577011, -0.005081390030682087, -0.0166193637996912, 0.008699808269739151, 0.018306657671928406, -0.021651988849043846, -0.03877851739525795, 0.05629516765475273, -0.010669943876564503, 0.07322663068771362, 0.014210336841642857, -0.0324389711022377, 0.034857749938964844, 0.019418517127633095, 0.08848055452108383, -0.00014050627942197025, 0.03994889184832573, -0.005432503297924995, 0.06366854906082153, -0.021281369030475616, 0.024070769548416138, 0.08777832984924316, -0.0027381961699575186, -0.005866518244147301, -0.008104865439236164, -0.0686231479048729, -0.0232124924659729, -0.03302415832877159, -0.010855253785848618, 0.004257249180227518, -0.021066799759864807, 0.013147243298590183, -0.04310891404747963, 0.011801308952271938, -0.03044932708144188, 0.0003709243901539594, -0.002587022492662072, -0.009382528252899647, -0.0068564629182219505, 0.0506383441388607, -0.014678487554192543, -0.017809247598052025, 0.008977772668004036, -0.03979284316301346, -0.008792462758719921, -0.027874495834112167, 0.00292106787674129, -0.0036525537725538015, 0.04732227325439453, 0.030878465622663498, 0.003950024954974651, -0.03185378015041351, 0.04673708602786064, 0.03470170125365257, -0.056217145174741745, -0.05200378596782684, 0.03476021811366081, -0.017936039716005325, 0.014532189816236496, -0.029239937663078308, 0.026743130758404732, -0.0000016286994650727138, -0.0003096624568570405, 0.04174347221851349, -0.02886931784451008, -0.07326564937829971, -0.05188674479722977, -0.003525763051584363, -0.04779042303562164, 0.02648955024778843, -0.023973237723112106, -0.025572754442691803, -0.008792462758719921, 0.04622992128133774, -0.04143137112259865, 0.0016543776728212833, -0.03103451617062092, 0.028245115652680397, -0.03555997833609581, 0.02574831061065197, -0.04607386887073517, -0.01989642158150673, 0.007485541049391031, 0.03852493315935135, 0.012259706854820251, -0.014200583100318909, 0.05208180844783783, 0.042133599519729614, 0.004159717354923487, -0.0011100301053375006, 0.042016562074422836, 0.03515034541487694, 0.004257249180227518, 0.0041377730667591095, -0.041704460978507996, -0.029571544378995895, 0.018433449789881706, 0.000850352575071156, 0.05535886809229851, -0.027250295504927635, 0.03782270848751068, 0.10041841119527817, -0.016287757083773613, -0.011050316505134106, -0.049624014645814896, -0.08411114662885666, 0.0087729562073946, -0.02939598821103573, -0.02401225082576275, 0.015731828287243843, 0.02559226006269455, 0.013586134649813175, 0.08832450956106186, 0.07424096018075943, 0.030039696022868156, -0.023446567356586456, -0.015683062374591827, 0.04346002638339996, 0.04463040456175804, -0.0685841366648674, 0.01652183197438717, -0.0166193637996912, 0.01717529259622097, -0.053798362612724304, 0.0490778386592865, 0.04338200017809868, 0.02200310118496418, 0.02015000395476818, -0.028830304741859436, 0.044240277260541916, -0.013264280743896961, -0.02442188188433647, -0.0020359696354717016, -0.010796735063195229, -0.029571544378995895, 0.053525276482105255, -0.024675464257597923, -0.03784221410751343, 0.040026918053627014, 0.026977207511663437, -0.01593664288520813, -0.01881382241845131, -0.033102184534072876, -0.04860968887805939, -0.005232563707977533, -0.019320985302329063, -0.03275107219815254, -0.0048863268457353115, 0.029747100546956062, -0.06043050438165665, -0.02026704140007496, -0.03148316219449043, 0.03199032321572304, 0.02426583133637905, -0.03731554374098778, -0.000871687603648752, 0.007114921230822802, 0.013156996108591557, 0.024246325716376305, -0.06690659373998642, 0.027952522039413452, 0.027698939666152, -0.025728803128004074, 0.02005247212946415, -0.014922316186130047, -0.013020452111959457, -0.04447435587644577, -0.026996713131666183, -0.03903209790587425, -0.017906779423356056, -0.04775141179561615, 0.006134729832410812, 0.00838770717382431, 0.006544362287968397, -0.06831105053424835, -0.06585325300693512, 0.01392749510705471, -0.012279213406145573, -0.004440120421350002, -0.03491627052426338, -0.04997513070702553, -0.03612565994262695, -0.04552769288420677, -0.006003062706440687, 0.018618758767843246, -0.06877920031547546, 0.04821956157684326, -0.007032019551843405, 0.015000341460108757, 0.05613911896944046, 0.02157396264374256, -0.09487862139940262, -0.007739122956991196, 0.0071783168241381645, -0.0585578978061676, -0.01216217502951622, -0.032419461756944656, -0.04673708602786064, 0.07587949186563492, 0.004225551150739193, -0.007144180592149496, -0.12062693387269974, 0.018140854313969612, 0.04654202237725258, 0.0014142064610496163, 0.030000682920217514, 0.01989642158150673, 0.027776965871453285, 0.028635242953896523, -0.019828150048851967, -0.006485843099653721, 0.0224322397261858, 0.008904623799026012, -0.07775209099054337, -0.0024687654804438353, 0.04790746048092842, 0.046932145953178406, 0.014824784360826015, 0.016199978068470955, -0.0701836496591568, 0.0146394744515419, 0.015575776807963848, 0.005481269210577011, -0.0021274052560329437, -0.03122957982122898, -0.04525460675358772, 0.015127132646739483, 0.011596492491662502, 0.0032477981876581907, 0.04053408280014992, -0.031054021790623665, 0.0071783168241381645, -0.012727857567369938, -0.12320176512002945, -0.04794647544622421, 0.01036759652197361, 0.01414206437766552, -0.005398367531597614, -0.08590572327375412, -0.06284928321838379, -0.007431898731738329, 0.02828412875533104, 0.04931191727519035, -0.02760140784084797, -0.04673708602786064, 0.021983595564961433, 0.0690912976861, 0.06479991227388382, -0.02147643081843853, 0.015585530549287796, -0.03717900067567825, 0.021222850307822227, -0.03682788461446762, 0.004798548761755228, -0.017809247598052025, -0.012737611308693886, -0.03066389635205269, 0.002496805740520358, 0.02311496064066887, -0.005544664338231087, -0.012191434390842915, 0.02094976231455803, -0.020774204283952713, 0.041977547109127045, 0.025397196412086487, 0.012220694683492184, -0.023466072976589203, 0.03793974593281746, -0.0029356975574046373, 0.02299792319536209, -0.012064644135534763, -0.02389521151781082, 0.01284489594399929, 0.02717226929962635, -0.00033038787660188973, 0.030351795256137848, -0.010279817506670952, 0.0007546498090960085, -0.03456515446305275, 0.02949351817369461, 0.024363363161683083, 0.00614935951307416, 0.03887604549527168, 0.006558991968631744, -0.06799894571304321, -0.02011099085211754, 0.023524591699242592, -0.02748437039554119, -0.04622992128133774, 0.010387102141976357, 0.03731554374098778, 0.04174347221851349, 0.029844632372260094, 0.0072417124174535275, 0.043342988938093185, -0.018667524680495262, 0.06776487082242966, 0.023544099181890488, -0.08801240473985672, -0.03122957982122898, 0.007641591131687164, -0.07365576922893524, 0.06413669884204865, 0.010796735063195229, -0.026294486597180367, -0.0110795758664608, 0.005578800570219755, -0.0014751636190339923, -0.02104729227721691, 0.006085964385420084, 0.03388243541121483, -0.06351249665021896, 0.07404589653015137, -0.02311496064066887, 0.006042074877768755, 0.04396719112992287, -0.0036281710490584373, -0.0006632140721194446, 0.005115526262670755, -0.06979352235794067, 0.03530639410018921, 0.02237372100353241, 0.009597097523510456, -0.006671153008937836, 0.0046717580407857895, 0.04193853586912155, -0.01717529259622097, 0.05188674479722977, 0.010972291231155396, -0.0329851470887661, 0.02559226006269455, 0.03792024031281471, 0.018140854313969612, -0.004115828312933445, 0.057270485907793045, 0.05313514918088913, -0.0044084228575229645, 0.052627984434366226, -0.05071637034416199, -0.0031088157556951046, 0.04443534091114998, 0.06156186759471893, -0.0010137178469449282, 0.004159717354923487, -0.01701924204826355, -0.023407554253935814, -0.014502930454909801, 0.03792024031281471, 0.0006900352309457958, 0.028206104412674904, -0.07271946966648102, 0.033102184534072876, -0.012366991490125656, 0.046346958726644516, -0.008514498360455036, 0.008651042357087135, 0.019642839208245277, 0.02153494954109192, -0.041080258786678314, 0.017097268253564835, 0.03499429300427437, 0.013186255469918251, -0.03979284316301346, -0.009055797941982746, -0.016853438690304756, 0.011645258404314518, -0.025709297508001328, -0.017126526683568954, 0.05641220882534981, -0.01115760114043951, -0.010660190135240555, -0.005749480798840523, -0.0522378608584404, -0.04100223258137703, 0.01965259201824665, 0.01058216579258442, 0.0024687654804438353, -0.05723147094249725, -0.03797875717282295, 0.003869561478495598, -0.04143137112259865, 0.04057309404015541, 0.0030332289170473814, -0.0406121090054512, -0.10088656097650528, -0.01599516160786152, -0.0029332591220736504, -0.010084754787385464, 0.04240668565034866, -0.030312784016132355, -0.07728394120931625, -0.040339019149541855, 0.059221114963293076, -0.005432503297924995, -0.006168866064399481, 0.03692541643977165, 0.004174347501248121, -0.0032673045061528683, -0.015731828287243843, 0.03181476891040802, 0.026509055867791176, -0.05629516765475273, -0.0005123450537212193, -0.00484243780374527, 0.03676936775445938, 0.03647677227854729, -0.0067979441955685616, 0.05863592401146889, -0.036808378994464874, -0.025611765682697296, 0.000850352575071156, -0.029766608029603958, -0.02785499021410942, -0.015487998723983765, 0.01822863332927227, -0.02600189298391342, 0.014132311567664146, 0.011615999042987823, -0.015058860182762146, 0.02052062377333641, -0.01245476957410574, -0.00045931231579743326, 0.029317962005734444, 0.003808604320511222, 0.04880475252866745, -0.015487998723983765, 0.006680906284600496, 0.011986618861556053, 0.05364231392741203, -0.02336854301393032, -0.030800441280007362, 0.049038827419281006, 0.026899181306362152, -0.030566364526748657, 0.03612565994262695, 0.012796130031347275, -0.02537769079208374, -0.03454564884305, 0.03199032321572304, -0.05851888656616211, -0.012103656306862831, 0.002472423017024994, 0.002326125744730234, 0.03708146885037422, 0.012932674027979374, 0.03333625942468643, -0.03540392592549324, 0.052627984434366226, 0.012249954044818878, -0.029688581824302673, -0.018053077161312103, -0.07424096018075943, 0.04763437435030937, 0.07080785185098648, 0.029200924560427666, 0.014649228192865849, 0.006573621649295092, -0.0014312744606286287, 0.058909013867378235, -0.08606177568435669, -0.0048912037163972855, -0.006744301877915859, 0.008748573251068592 ]
729,316
tinytuya.BulbDevice
_hexvalue_to_hsv
Converts the hexvalue used by Tuya for colour representation into an HSV value. Args: hexvalue(string): The hex representation generated by BulbDevice._rgb_to_hexvalue()
@staticmethod def _hexvalue_to_hsv(hexvalue, bulb="A"): """ Converts the hexvalue used by Tuya for colour representation into an HSV value. Args: hexvalue(string): The hex representation generated by BulbDevice._rgb_to_hexvalue() """ if bulb == "A": h = int(hexvalue[7:10], 16) / 360.0 s = int(hexvalue[10:12], 16) / 255.0 v = int(hexvalue[12:14], 16) / 255.0 if bulb == "B": # hexvalue is in hsv h = int(hexvalue[0:4], 16) / 360.0 s = int(hexvalue[4:8], 16) / 1000.0 v = int(hexvalue[8:12], 16) / 1000.0 return (h, s, v)
(hexvalue, bulb='A')
[ -0.014290327206254005, -0.10005958378314972, -0.05854395031929016, -0.037440475076436996, -0.025797178968787193, -0.0030199801549315453, 0.0032269214279949665, 0.07611805200576782, -0.04395344480872154, -0.015718450769782066, 0.03185533359646797, 0.027852948755025864, 0.04056961089372635, 0.011807030998170376, -0.005248579662293196, -0.018047109246253967, 0.06975062191486359, 0.029999680817127228, 0.02901727892458439, -0.03505723923444748, -0.015118093229830265, -0.026506692171096802, -0.02545151859521866, 0.034966275095939636, -0.023577675223350525, -0.008928043767809868, 0.029635827988386154, -0.010897397994995117, -0.023541290313005447, -0.01277124136686325, 0.021794795989990234, -0.0324556902050972, -0.01073366403579712, 0.04078792408108711, -0.029308360069990158, 0.0025174079928547144, 0.010924686677753925, 0.01721024699509144, -0.05374108999967575, -0.005266772583127022, 0.000020040342860738747, -0.07284337282180786, 0.029872333630919456, 0.032091837376356125, -0.021085282787680626, -0.023268401622772217, -0.027652829885482788, -0.01209811307489872, -0.046937040984630585, -0.03885950148105621, 0.03158244118094444, -0.017765123397111893, -0.013007745146751404, 0.05388663336634636, 0.026997894048690796, 0.0015918569406494498, -0.009214578196406364, 0.06352873891592026, 0.0007947914418764412, 0.07186096906661987, -0.007472631521522999, 0.013689969666302204, 0.035930484533309937, 0.00011469898163340986, 0.02075781486928463, -0.012352810241281986, -0.0035157299134880304, -0.010324329137802124, -0.007304349448531866, 0.02266804315149784, 0.0027766532730311155, 0.016782721504569054, 0.002294548088684678, -0.014281230978667736, 0.011770645156502724, 0.009305541403591633, -0.048028599470853806, 0.06090899556875229, -0.007740973029285669, -0.011306732892990112, 0.0690956860780716, 0.01402653381228447, 0.05039364472031593, -0.007140615489333868, 0.0030449950136244297, -0.04504500329494476, 0.00463457778096199, -0.006785858888179064, -0.03312881663441658, 0.052140139043331146, -0.029453901574015617, -0.07226120680570602, -0.06214609742164612, 0.051485203206539154, -0.005171261262148619, -0.035402897745370865, 0.03805902600288391, 0.014535928145051003, 0.008518708869814873, -0.050502799451351166, -0.027161628007888794, 0.029744984582066536, -0.03714939206838608, -0.012798530049622059, -0.030563654378056526, 0.0006879096035845578, -0.017555907368659973, 0.01679181680083275, 0.05432325601577759, -0.017091995105147362, -0.02859884686768055, -0.010278847999870777, 0.001022768090479076, -0.04304381087422371, -0.02721620537340641, -0.09110879898071289, 0.05399578809738159, 0.003881857031956315, -0.0072634159587323666, -0.027270784601569176, 0.020539503544569016, 0.02321382239460945, 0.01664627529680729, 0.04180671274662018, 0.005466891452670097, 0.0880524292588234, 0.005344091448932886, -0.007599980104714632, -0.0016589423175901175, 0.06512968987226486, 0.008395908400416374, 0.07200651615858078, -0.015900377184152603, -0.015381886623799801, 0.018238132819533348, -0.021831180900335312, 0.013871896080672741, 0.040751539170742035, 0.06851352751255035, -0.03161882609128952, -0.005657914560288191, 0.006435650400817394, 0.008455034345388412, -0.0706966444849968, 0.009073584340512753, 0.036621805280447006, 0.03367459774017334, -0.02665223367512226, -0.022358767688274384, 0.0599265918135643, -0.010087825357913971, 0.024578271433711052, 0.038677576929330826, 0.06625763326883316, 0.027034278959035873, -0.06003575026988983, 0.002624289831146598, -0.036639999598264694, 0.06101815029978752, 0.02708885818719864, 0.029472094029188156, 0.027834756299853325, 0.01794704981148243, -0.03849564865231514, -0.040751539170742035, 0.010624508373439312, -0.015909472480416298, 0.06454752385616302, 0.03442049399018288, -0.016591697931289673, -0.014454061165452003, -0.014663277193903923, -0.1004234328866005, 0.09009000658988953, 0.011033843271434307, -0.030290763825178146, -0.030545461922883987, -0.005071201361715794, 0.07106049358844757, -0.016236940398812294, -0.025051280856132507, 0.019702641293406487, -0.023432133719325066, 0.009441985748708248, 0.0703691765666008, 0.02308647334575653, 0.05654275789856911, 0.005767070222645998, 0.0024287188425660133, -0.02954486571252346, 0.028344150632619858, 0.0027766532730311155, 0.029071856290102005, 0.048974618315696716, 0.05727046728134155, -0.02241334691643715, -0.0021865293383598328, -0.028071260079741478, -0.05963550880551338, -0.027725599706172943, 0.0045981924049556255, -0.039514437317848206, -0.03216460719704628, 0.013517139479517937, 0.025633445009589195, -0.05756154656410217, 0.03476615622639656, -0.02048492431640625, -0.04791944473981857, -0.035639405250549316, -0.03434772416949272, 0.016027726233005524, -0.028071260079741478, 0.05661553144454956, 0.026834160089492798, -0.08295848965644836, 0.006299205590039492, 0.04479030519723892, 0.03467519208788872, -0.009059940464794636, 0.03274677321314812, -0.011979861184954643, 0.04195225238800049, 0.02350490540266037, 0.0305272676050663, -0.003179165767505765, -0.0345478430390358, 0.020666850730776787, 0.00016487090033479035, -0.01585489511489868, 0.033328935503959656, 0.013062323443591595, -0.0017203425522893667, 0.04566355422139168, -0.055742282420396805, 0.03560301661491394, 0.043662361800670624, -0.030290763825178146, -0.008905302733182907, -0.03618518263101578, 0.01277124136686325, 0.01752861961722374, 0.05570589751005173, 0.007240674924105406, 0.01637338660657406, -0.052285678684711456, 0.011079324409365654, 0.04180671274662018, -0.11614188551902771, -0.0326194241642952, -0.058471180498600006, -0.02101251110434532, 0.07757346332073212, -0.0029699502047151327, -0.03425676375627518, -0.025778986513614655, 0.006444746628403664, 0.034693386405706406, 0.013417080044746399, -0.03809541091322899, -0.020557695999741554, -0.05672468617558479, 0.040205758064985275, 0.05596059560775757, -0.006071797106415033, -0.006885918322950602, 0.010388003662228584, 0.05883503332734108, -0.05632444843649864, -0.008223078213632107, 0.11868885904550552, -0.02914462611079216, -0.09874971210956573, -0.026215611025691032, -0.005316802300512791, -0.006135471630841494, 0.014608698897063732, -0.021667446941137314, 0.049665939062833786, 0.013226057402789593, -0.0266704261302948, -0.04853799194097519, 0.01408111210912466, 0.023814180865883827, 0.05392301827669144, 0.019902760162949562, 0.004720992874354124, -0.05657914653420448, 0.029053663834929466, -0.02348671294748783, 0.0027971200179308653, -0.05887141823768616, -0.07589974254369736, 0.012543832883238792, 0.03036353550851345, 0.074226014316082, -0.02927197515964508, 0.02157648466527462, -0.014190267771482468, -0.028635233640670776, 0.0020307546947151423, 0.0028880834579467773, -0.01140679232776165, -0.005953545216470957, -0.08565100282430649, 0.003151876851916313, 0.044462841004133224, 0.015154478140175343, 0.0009841087739914656, -0.04577270895242691, -0.013599006459116936, -0.004934756550937891, 0.04191586747765541, -0.008573287166655064, 0.017483137547969818, -0.01979360356926918, -0.003888679202646017, 0.018865779042243958, 0.009578431025147438, 0.011079324409365654, -0.03509362414479256, -0.021794795989990234, 0.003843197599053383, 0.046391259878873825, 0.05184905603528023, -0.005871678236871958, -0.01979360356926918, -0.026834160089492798, -0.00539866928011179, 0.006076345685869455, -0.07706406712532043, -0.018038013949990273, 0.030745580792427063, 0.04519054666161537, 0.0774279236793518, -0.055196505039930344, -0.019029513001441956, 0.09343745559453964, -0.0552692748606205, -0.01723753660917282, -0.0030063355807214975, 0.017919762060046196, 0.007481727749109268, 0.030472690239548683, 0.05501457676291466, -0.026415729895234108, -0.07917441427707672, -0.012252750806510448, 0.026288380846381187, 0.05032087117433548, 0.01540007907897234, -0.0641109049320221, -0.0004553847829811275, 0.04959316551685333, 0.0522129088640213, -0.00996047630906105, -0.015491042286157608, -0.06480222195386887, 0.031418707221746445, 0.016409771516919136, -0.02004830166697502, 0.009814934805035591, -0.013753644190728664, 0.010124210268259048, -0.05075749754905701, -0.0228135846555233, -0.07655467838048935, 0.009623912163078785, 0.02748909592628479, 0.01334430929273367, 0.0081139225512743, 0.06607571244239807, 0.02899908646941185, -0.006221886724233627, 0.023541290313005447, 0.019320596009492874, 0.00735892727971077, 0.014299423433840275, -0.0140174375846982, -0.007186097092926502, 0.030072452500462532, 0.03505723923444748, -0.043516822159290314, -0.001699875807389617, 0.03864119201898575, -0.027107050642371178, -0.010433485731482506, -0.040460456162691116, -0.03238292038440704, 0.0019875471480190754, -0.05021171644330025, 0.00677221454679966, 0.03682192414999008, -0.010142402723431587, 0.0486835353076458, -0.00770003953948617, -0.008309493772685528, 0.050939422100782394, 0.073898546397686, 0.012352810241281986, 0.000053973901231074706, -0.054214101284742355, -0.025869950652122498, -0.002656127093359828, -0.038277339190244675, -0.01788337528705597, 0.033601827919483185, 0.055596742779016495, -0.01072456780821085, -0.06363788992166519, 0.017601389437913895, -0.021685639396309853, -0.04457199573516846, -0.014426772482693195, -0.03316520154476166, 0.020685045048594475, 0.004341221414506435, 0.0004457199538592249, -0.03860480710864067, 0.044608380645513535, -0.013744547963142395, -0.0010790516389533877, -0.07873779535293579, 0.0026584011502563953, 0.018993128091096878, 0.04235249012708664, 0.020321190357208252, 0.06145477667450905, 0.026415729895234108, -0.01696464791893959, 0.05097580701112747, -0.013744547963142395, -0.0011529593029990792, -0.08361342549324036, -0.0016225570579990745, 0.012834914959967136, 0.011497755534946918, 0.013926474377512932, 0.04828329756855965, 0.03220099210739136, 0.009032650850713253, 0.04107900708913803, 0.01086101308465004, 0.031418707221746445, 0.02828957326710224, -0.06418367475271225, -0.05894418805837631, 0.016618987545371056, 0.05734323710203171, -0.06582101434469223, -0.01922963187098503, -0.026324765756726265, -0.02610645443201065, -0.00566701078787446, 0.05603336542844772, -0.03378375247120857, -0.014599602669477463, 0.0025833563413470984, 0.010442581959068775, 0.01935698091983795, 0.02103070542216301, 0.045008618384599686, -0.03207364305853844, -0.03258303925395012, -0.033056046813726425, -0.03398387134075165, 0.06440198421478271, -0.03998744860291481, 0.021794795989990234, -0.020539503544569016, -0.023432133719325066, -0.016091400757431984, 0.017428560182452202, 0.0486835353076458, 0.02969040721654892, -0.040642380714416504, 0.03185533359646797, -0.01545465737581253, -0.07091495394706726, -0.05181267112493515, -0.0019739025738090277, -0.013116901740431786, -0.03487531095743179, -0.008673346601426601, 0.01952071487903595, 0.05097580701112747, 0.038823116570711136, -0.02170383185148239, 0.018174458295106888, -0.03998744860291481, -0.051630742847919464, -0.059708282351493835, -0.054650723934173584, -0.007599980104714632, -0.01853831112384796, -0.043480437248945236, 0.024705620482563972, 0.022740812972187996, -0.04424452781677246, 0.023977914825081825, 0.007781906519085169, -0.027743792161345482, -0.012680278159677982, -0.05181267112493515, -0.00383410113863647, 0.00810482632368803, 0.04577270895242691, -0.006826792377978563, -0.02914462611079216, 0.0016919166082516313, -0.06563908606767654, 0.012734855525195599, 0.006449294742196798, -0.018192650750279427, 0.004457199480384588, 0.010333425365388393, -0.028253186494112015, -0.007822839543223381, -0.012471062131226063, 0.0070087187923491, -0.032492075115442276, 0.051084965467453, 0.03107304871082306, -0.02184937335550785, -0.018720237538218498, 0.024796582758426666, -0.042279720306396484, 0.0015577457379549742, 0.0022627110593020916, -0.008573287166655064, -0.045699939131736755, -0.03556663170456886, 0.0004960339865647256, -0.0012029890203848481, 0.0014940714463591576, -0.03160063549876213, 0.012607507407665253, -0.022849969565868378, -0.031655214726924896, -0.08041151612997055, 0.015973147004842758, -0.05294061452150345, -0.03693108260631561, -0.028562461957335472, -0.0486835353076458, -0.021121667698025703, -0.014317616820335388, 0.026834160089492798, -0.022595273330807686, -0.011634200811386108, -0.019065897911787033, 0.008505064062774181, 0.057634320110082626, -0.008591479621827602, -0.02665223367512226, -0.01924782432615757, -0.031164010986685753, -0.0087552135810256, -0.03396568074822426, 0.009578431025147438, -0.010069631971418858, -0.054104942828416824, -0.012834914959967136, 0.027816563844680786, -0.08928953111171722, 0.020648658275604248, -0.035948678851127625, 0.019429750740528107, 0.006703991908580065, -0.056688301265239716, 0.010606315918266773, -0.0015509234508499503, 0.017437655478715897, 0.003320158924907446, -0.05126689001917839, 0.023468520492315292, -0.01688278093934059, -0.045445241034030914, 0.08405004441738129, -0.0191204771399498, -0.01950252242386341, 0.052140139043331146, -0.03940528258681297, -0.04042407125234604, 0.003754508448764682, 0.027143435552716255, 0.04508138820528984, 0.05839841067790985, 0.01208901684731245, 0.024942124262452126, 0.016864586621522903, -0.014963455498218536, -0.0018818023381754756, -0.037167586386203766, -0.0401693731546402, -0.056288063526153564, 0.010378907434642315, 0.01953890733420849, -0.0021546920761466026, 0.011515947990119457, 0.01533640455454588, 0.0016737239202484488, 0.049120157957077026, -0.01539098285138607, 0.06611209362745285, -0.003090476617217064, 0.050648339092731476, -0.07255229353904724, -0.029381131753325462, -0.06254633516073227, 0.034857120364904404, 0.009787646122276783, -0.0017874279292300344, 0.057779859751462936, 0.013553525321185589, 0.04635487496852875, 0.017819702625274658, -0.014363097958266735, -0.05828925222158432, 0.05417771637439728, -0.026197416707873344, 0.04206141084432602, -0.0171101875603199, 0.029308360069990158, 0.010324329137802124, -0.036076027899980545, 0.03520277887582779, 0.005330446641892195, -0.02885354496538639, -0.04617294669151306, 0.029235590249300003, -0.01456321682780981, 0.027543673291802406, -0.005098490510135889, -0.05374108999967575, -0.0015577457379549742, 0.035111814737319946, 0.022067686542868614, 0.024396345019340515, 0.03531193733215332, 0.02488754689693451, 0.02157648466527462, -0.01979360356926918, 0.03893227502703667, 0.06243717670440674, 0.0176741611212492, -0.04166116937994957, -0.03875034675002098, -0.027598252519965172, 0.01140679232776165, 0.03549386188387871, -0.010679085738956928, -0.04497223347425461, 0.010260655544698238, -0.035930484533309937, 0.04890184476971626, 0.024814775213599205, -0.02748909592628479, -0.026743197813630104, 0.03329255059361458, -0.04828329756855965, 0.03465700149536133, -0.01217088382691145, 0.025778986513614655, 0.026197416707873344, 0.014062919653952122, 0.019902760162949562, 0.04919292777776718, -0.028889929875731468, -0.04508138820528984, 0.022213226184248924, -0.029563058167696, -0.05934442952275276, -0.04413537308573723, -0.005171261262148619, -0.027161628007888794, -0.03078196570277214, 0.05083026736974716, 0.0758269727230072, -0.02199491485953331, 0.031236782670021057, 0.03589409962296486, 0.012507447972893715, -0.0012871300568804145, 0.039259739220142365, 0.016346096992492676, -0.028944507241249084, 0.017910664901137352, 0.02914462611079216, -0.05603336542844772, -0.06687618792057037, -0.05552396923303604, -0.04784667119383812, 0.05868949368596077, -0.03958720713853836, 0.0016236940864473581, 0.020230228081345558, -0.02459646388888359, -0.0021114845294505358, 0.01964806392788887, -0.004152472596615553, -0.08244909346103668, -0.03623976185917854, 0.04766474664211273, 0.041333701461553574, -0.013380695134401321, 0.040060218423604965, -0.037294935435056686, 0.0033474478404968977, -0.03107304871082306, 0.00042951712384819984, -0.03725855052471161, -0.03090931475162506, 0.02077600732445717, 0.021758411079645157, 0.03529374301433563, -0.07604528218507767, -0.020666850730776787, -0.009496564045548439, 0.03627614676952362, 0.010378907434642315, -0.00025881887995637953, 0.07764623314142227, 0.04861076548695564, -0.04056961089372635, -0.02859884686768055, 0.05130327492952347, 0.05261314660310745, 0.010842819698154926, -0.018665660172700882, 0.011743356473743916, -0.027834756299853325, -0.05053918436169624, 0.009714875370264053, -0.026070069521665573, 0.01826542243361473, 0.005839840974658728, 0.02335936389863491, 0.015600197948515415, 0.008377715945243835, 0.05155797302722931, -0.016118688508868217, -0.036912888288497925, -0.015018033795058727, 0.01650073379278183, 0.04540885612368584, 0.06156393140554428, 0.0019090913701802492, 0.005817100405693054, -0.04195225238800049, 0.02612464688718319, 0.03207364305853844, -0.00882798433303833, 0.0843411311507225, 0.12720301747322083, -0.06840436905622482, 0.02390514314174652, 0.010242462158203125, -0.03423856943845749, -0.04206141084432602, 0.02597910538315773, 0.043480437248945236, 0.0003467974020168185, 0.008536901324987411, 0.033328935503959656, 0.026834160089492798, -0.01704651489853859, 0.02004830166697502 ]