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
|
---|---|---|---|---|---|---|
729,564 | collections | _replace | Return a new TuyaMessage object replacing specified fields with new values | def namedtuple(typename, field_names, *, rename=False, defaults=None, module=None):
"""Returns a new subclass of tuple with named fields.
>>> Point = namedtuple('Point', ['x', 'y'])
>>> Point.__doc__ # docstring for the new class
'Point(x, y)'
>>> p = Point(11, y=22) # instantiate with positional args or keywords
>>> p[0] + p[1] # indexable like a plain tuple
33
>>> x, y = p # unpack like a regular tuple
>>> x, y
(11, 22)
>>> p.x + p.y # fields also accessible by name
33
>>> d = p._asdict() # convert to a dictionary
>>> d['x']
11
>>> Point(**d) # convert from a dictionary
Point(x=11, y=22)
>>> p._replace(x=100) # _replace() is like str.replace() but targets named fields
Point(x=100, y=22)
"""
# Validate the field names. At the user's option, either generate an error
# message or automatically replace the field name with a valid name.
if isinstance(field_names, str):
field_names = field_names.replace(',', ' ').split()
field_names = list(map(str, field_names))
typename = _sys.intern(str(typename))
if rename:
seen = set()
for index, name in enumerate(field_names):
if (not name.isidentifier()
or _iskeyword(name)
or name.startswith('_')
or name in seen):
field_names[index] = f'_{index}'
seen.add(name)
for name in [typename] + field_names:
if type(name) is not str:
raise TypeError('Type names and field names must be strings')
if not name.isidentifier():
raise ValueError('Type names and field names must be valid '
f'identifiers: {name!r}')
if _iskeyword(name):
raise ValueError('Type names and field names cannot be a '
f'keyword: {name!r}')
seen = set()
for name in field_names:
if name.startswith('_') and not rename:
raise ValueError('Field names cannot start with an underscore: '
f'{name!r}')
if name in seen:
raise ValueError(f'Encountered duplicate field name: {name!r}')
seen.add(name)
field_defaults = {}
if defaults is not None:
defaults = tuple(defaults)
if len(defaults) > len(field_names):
raise TypeError('Got more default values than field names')
field_defaults = dict(reversed(list(zip(reversed(field_names),
reversed(defaults)))))
# Variables used in the methods and docstrings
field_names = tuple(map(_sys.intern, field_names))
num_fields = len(field_names)
arg_list = ', '.join(field_names)
if num_fields == 1:
arg_list += ','
repr_fmt = '(' + ', '.join(f'{name}=%r' for name in field_names) + ')'
tuple_new = tuple.__new__
_dict, _tuple, _len, _map, _zip = dict, tuple, len, map, zip
# Create all the named tuple methods to be added to the class namespace
namespace = {
'_tuple_new': tuple_new,
'__builtins__': {},
'__name__': f'namedtuple_{typename}',
}
code = f'lambda _cls, {arg_list}: _tuple_new(_cls, ({arg_list}))'
__new__ = eval(code, namespace)
__new__.__name__ = '__new__'
__new__.__doc__ = f'Create new instance of {typename}({arg_list})'
if defaults is not None:
__new__.__defaults__ = defaults
@classmethod
def _make(cls, iterable):
result = tuple_new(cls, iterable)
if _len(result) != num_fields:
raise TypeError(f'Expected {num_fields} arguments, got {len(result)}')
return result
_make.__func__.__doc__ = (f'Make a new {typename} object from a sequence '
'or iterable')
def _replace(self, /, **kwds):
result = self._make(_map(kwds.pop, field_names, self))
if kwds:
raise ValueError(f'Got unexpected field names: {list(kwds)!r}')
return result
_replace.__doc__ = (f'Return a new {typename} object replacing specified '
'fields with new values')
def __repr__(self):
'Return a nicely formatted representation string'
return self.__class__.__name__ + repr_fmt % self
def _asdict(self):
'Return a new dict which maps field names to their values.'
return _dict(_zip(self._fields, self))
def __getnewargs__(self):
'Return self as a plain tuple. Used by copy and pickle.'
return _tuple(self)
# Modify function metadata to help with introspection and debugging
for method in (
__new__,
_make.__func__,
_replace,
__repr__,
_asdict,
__getnewargs__,
):
method.__qualname__ = f'{typename}.{method.__name__}'
# Build-up the class namespace dictionary
# and use type() to build the result class
class_namespace = {
'__doc__': f'{typename}({arg_list})',
'__slots__': (),
'_fields': field_names,
'_field_defaults': field_defaults,
'__new__': __new__,
'_make': _make,
'_replace': _replace,
'__repr__': __repr__,
'_asdict': _asdict,
'__getnewargs__': __getnewargs__,
'__match_args__': field_names,
}
for index, name in enumerate(field_names):
doc = _sys.intern(f'Alias for field number {index}')
class_namespace[name] = _tuplegetter(index, doc)
result = type(typename, (tuple,), class_namespace)
# For pickling to work, the __module__ variable needs to be set to the frame
# where the named tuple is created. Bypass this step in environments where
# sys._getframe is not defined (Jython for example) or sys._getframe is not
# defined for arguments greater than 0 (IronPython), or where the user has
# specified a particular module.
if module is None:
try:
module = _sys._getframe(1).f_globals.get('__name__', '__main__')
except (AttributeError, ValueError):
pass
if module is not None:
result.__module__ = module
return result
| (self, /, **kwds) | [
0.0541859045624733,
0.0014151688665151596,
-0.015421349555253983,
-0.03568440303206444,
-0.032841190695762634,
-0.03333566337823868,
0.0027891318313777447,
0.021468330174684525,
0.021015064790844917,
-0.04615073278546333,
-0.04219495505094528,
0.05707032233476639,
0.004501756746321917,
0.06329242885112762,
0.010816577821969986,
0.03343867510557175,
-0.029791945591568947,
0.05636982247233391,
-0.06539393961429596,
-0.03234671801328659,
0.019016573205590248,
0.015946725383400917,
0.03345927968621254,
0.059831127524375916,
0.0319964662194252,
0.010981401428580284,
0.01885174959897995,
0.010471477173268795,
0.001819502911530435,
-0.006005776114761829,
-0.004115450195968151,
-0.015823107212781906,
-0.03016279824078083,
-0.010744467377662659,
0.002868968527764082,
-0.060943689197301865,
-0.05002409592270851,
0.05855374038219452,
0.04919997602701187,
-0.005011681001633406,
0.06395173072814941,
-0.09955371916294098,
-0.04952962324023247,
-0.061067305505275726,
-0.0017873106990009546,
0.02338441088795662,
0.022704511880874634,
-0.011424366384744644,
-0.02427033893764019,
-0.05344419553875923,
0.023590439930558205,
0.006345725618302822,
0.01578190177679062,
-0.004233917687088251,
-0.023178379982709885,
-0.0009329298045486212,
-0.0018426812021061778,
0.06185021996498108,
-0.006896855775266886,
0.023116571828722954,
-0.002180055482313037,
0.05760600045323372,
-0.015112304128706455,
0.010419969446957111,
-0.054227109998464584,
-0.02420853078365326,
-0.009317709133028984,
-0.0735115185379982,
-0.022766320034861565,
0.0012265226105228066,
-0.009024116210639477,
-0.0008640385349281132,
0.01875903643667698,
0.02427033893764019,
0.0763547345995903,
0.04223616048693657,
-0.029194457456469536,
-0.010857783257961273,
0.04425525292754173,
-0.05158992484211922,
-0.01659572124481201,
-0.013443460687994957,
-0.08076377958059311,
-0.04347233846783638,
-0.03424219414591789,
0.039495959877967834,
-0.05047736316919327,
-0.0004539099463727325,
0.030121592804789543,
-0.001704898662865162,
-0.053114548325538635,
0.016049740836024284,
-0.0037909529637545347,
0.033376868814229965,
-0.05167233571410179,
-0.08661503344774246,
0.0038321588654071093,
-0.03793013095855713,
-0.01295929029583931,
0.0358080230653286,
0.02497084252536297,
-0.045738670974969864,
-0.09180699288845062,
-0.021056270226836205,
-0.008704769425094128,
-0.019820090383291245,
-0.019490443170070648,
-0.015163811855018139,
0.03597284480929375,
-0.03265576437115669,
-0.04322510585188866,
-0.05772962048649788,
-0.02997737191617489,
0.060820069164037704,
-0.0039686537347733974,
-0.03403616324067116,
0.02109747752547264,
-0.025959786027669907,
-0.030677873641252518,
-0.031089933589100838,
0.027134157717227936,
0.018800241872668266,
-0.06127333641052246,
0.0491175651550293,
0.008488438092172146,
-0.008993211202323437,
0.06143816187977791,
-0.026000991463661194,
0.03893968090415001,
-0.00331450835801661,
0.022951748222112656,
0.002977134194225073,
-0.04240098223090172,
0.05674067512154579,
0.017924614250659943,
0.03840400278568268,
0.049859270453453064,
0.05027133226394653,
-0.06984418630599976,
0.03760048374533653,
0.04200952872633934,
-0.012135169468820095,
0.06555876135826111,
0.03545777127146721,
-0.0018529827939346433,
-0.04623314365744591,
0.013309541158378124,
0.006984418723732233,
-0.03751807287335396,
0.030121592804789543,
-0.03304722160100937,
-0.03599344938993454,
0.018903257325291634,
0.02243667282164097,
-0.04643917456269264,
-0.00514817563816905,
-0.011187431402504444,
-0.06407534331083298,
-0.02326079271733761,
-0.04157686233520508,
0.018542705103754997,
-0.05319695919752121,
-0.016142453998327255,
-0.01570979133248329,
0.055298466235399246,
0.02132410928606987,
0.04334872215986252,
-0.08529643714427948,
-0.013659792020916939,
-0.03356229513883591,
-0.0004024024528916925,
0.041206009685993195,
0.026371845975518227,
0.04417284205555916,
-0.03411857783794403,
0.01944923587143421,
-0.007108036894351244,
0.02480601705610752,
0.024002499878406525,
-0.020458783954381943,
0.03881606087088585,
-0.01431908831000328,
-0.06197383999824524,
0.008874744176864624,
0.058471329510211945,
0.03181103989481926,
-0.002030683681368828,
0.06226228177547455,
0.0522904247045517,
0.026845715939998627,
0.01612185128033161,
-0.04005224257707596,
0.005732785910367966,
-0.00664446922019124,
0.008725372143089771,
0.06300398707389832,
-0.06353966891765594,
0.04615073278546333,
0.01761556975543499,
0.11043210327625275,
-0.0275668203830719,
0.03317083790898323,
0.029235664755105972,
-0.017450744286179543,
0.032841190695762634,
-0.0294622965157032,
0.05488640442490578,
-0.05113665759563446,
-0.03158440813422203,
-0.033788926899433136,
0.08340096473693848,
-0.021406522020697594,
0.007726126816123724,
0.019562553614377975,
-0.010816577821969986,
-0.0725637823343277,
0.053526606410741806,
-0.029853753745555878,
0.006350876297801733,
-0.00420558825135231,
0.08818086236715317,
0.02344621904194355,
-0.02610400691628456,
-0.005830650217831135,
0.041432641446590424,
-0.04882912337779999,
-0.016173359006643295,
-0.02909144200384617,
-0.03840400278568268,
-0.06386931240558624,
0.062715545296669,
-0.012856274843215942,
-0.02909144200384617,
-0.019243206828832626,
0.023961294442415237,
-0.016307277604937553,
0.009204392321407795,
-0.03576681762933731,
-0.02315777726471424,
-0.02633064053952694,
0.027772851288318634,
0.035725612193346024,
-0.03380953148007393,
-0.00980703067034483,
-0.009801879525184631,
-0.06741303205490112,
-0.027834659442305565,
0.028205513954162598,
-0.019820090383291245,
0.007726126816123724,
-0.01666783168911934,
0.014998987317085266,
-0.010981401428580284,
0.032779380679130554,
0.004336932674050331,
-0.024723606184124947,
-0.03564319759607315,
-0.013505269773304462,
-0.014267580583691597,
-0.027772851288318634,
0.004107723943889141,
-0.058347709476947784,
0.03076028637588024,
0.045038167387247086,
0.051219068467617035,
-0.027772851288318634,
0.004645977634936571,
-0.02569194696843624,
0.01316532026976347,
0.01528743002563715,
0.12032154947519302,
0.03628189116716385,
-0.015421349555253983,
0.01625577174127102,
-0.04536781832575798,
-0.03343867510557175,
0.016472103074193,
-0.025176871567964554,
0.022786922752857208,
-0.05113665759563446,
-0.008869593963027,
-0.022931143641471863,
-0.022869335487484932,
-0.011341954581439495,
0.022725114598870277,
0.061355747282505035,
-0.055298466235399246,
0.030677873641252518,
-0.008488438092172146,
-0.00011404084943933412,
0.045161787420511246,
-0.03286179155111313,
0.0134640634059906,
-0.03191405534744263,
0.0004265465831849724,
0.024105515331029892,
-0.08570849895477295,
0.020489688962697983,
0.02338441088795662,
-0.06873162090778351,
-0.024929635226726532,
0.01825426146388054,
0.041267819702625275,
0.03887787088751793,
0.051631130278110504,
-0.0418240986764431,
-0.0274019967764616,
-0.004432221408933401,
-0.01104321051388979,
0.04664520174264908,
-0.027649233117699623,
0.013474364764988422,
-0.021550742909312248,
0.005810047499835491,
0.060243185609579086,
0.022457275539636612,
0.0014525118749588728,
-0.014689942821860313,
0.01481356006115675,
0.04318389669060707,
-0.014782655984163284,
-0.06288037449121475,
-0.04800499975681305,
-0.014380897395312786,
-0.008751126006245613,
-0.03393314778804779,
-0.05064218491315842,
-0.0077879359014332294,
0.011857029050588608,
-0.017914311960339546,
-0.035725612193346024,
0.007051378488540649,
0.014174867421388626,
0.05785323679447174,
0.0011988373007625341,
-0.009698865003883839,
0.01001306064426899,
-0.025939183309674263,
0.004447673447430134,
-0.020551497116684914,
0.0491175651550293,
-0.010471477173268795,
-0.04623314365744591,
-0.011177130043506622,
-0.0071337902918457985,
-0.017945216968655586,
0.014123359695076942,
0.01697687618434429,
0.12658485770225525,
-0.022889938205480576,
0.01169220544397831,
-0.0836481973528862,
-0.05307333916425705,
0.014061550609767437,
0.04870550334453583,
-0.028349734842777252,
0.002307536546140909,
-0.01325803343206644,
0.006711428984999657,
-0.009152884595096111,
0.008962307125329971,
-0.05414469540119171,
0.0012857562396675348,
0.01137285865843296,
0.020170342177152634,
-0.03541656583547592,
-0.032264307141304016,
-0.014998987317085266,
-0.014659037813544273,
-0.011352255940437317,
0.016204264014959335,
-0.01584370993077755,
-0.0294622965157032,
-0.03568440303206444,
-0.047098468989133835,
-0.03212008625268936,
0.02727837860584259,
0.07379996031522751,
-0.08727432787418365,
-0.06786629557609558,
0.013556777499616146,
-0.06642408668994904,
0.027834659442305565,
0.021045969799160957,
0.012217582203447819,
-0.0024401682894676924,
0.05583414435386658,
0.029009031131863594,
0.014164566062390804,
0.06279795616865158,
-0.06691855937242508,
0.01894446276128292,
-0.03601405397057533,
-0.03150199353694916,
0.035375360399484634,
-0.013484667055308819,
-0.03939294442534447,
-0.03599344938993454,
-0.050106506794691086,
-0.012413310818374157,
0.0077827852219343185,
-0.04376078397035599,
-0.03529294580221176,
0.044337667524814606,
-0.029194457456469536,
0.01812034286558628,
0.09650447219610214,
-0.04413163661956787,
0.009431025944650173,
-0.00850904081016779,
0.046397965401411057,
0.02363164722919464,
-0.06300398707389832,
-0.08335975557565689,
0.06436378508806229,
0.02243667282164097,
0.010528135113418102,
0.03347988426685333,
0.03560199216008186,
0.034551240503787994,
-0.0024569083470851183,
-0.006443589925765991,
0.00601092679426074,
0.023198982700705528,
-0.02886481024324894,
0.04429646208882332,
-0.04384319484233856,
0.024847224354743958,
0.013618586584925652,
0.005070914514362812,
-0.040690936148166656,
0.0012497010175138712,
0.0047129373997449875,
-0.012681149877607822,
0.054227109998464584,
-0.03760048374533653,
-0.007896102033555508,
-0.03745626285672188,
-0.010857783257961273,
0.028885412961244583,
0.008864442817866802,
-0.0002852228353731334,
0.010898989625275135,
-0.05043615773320198,
0.010765070095658302,
0.015194715932011604,
-0.04755173623561859,
0.012217582203447819,
0.042091939598321915,
0.016719337552785873,
0.07515975832939148,
0.056699469685554504,
0.08463714271783829,
0.015627378597855568,
-0.002007505390793085,
-0.038136161863803864,
-0.03922812268137932,
-0.048334650695323944,
0.01609094627201557,
0.0022392889950424433,
0.017759790644049644,
-0.025774359703063965,
0.0500653013586998,
0.0332738533616066,
-0.041267819702625275,
-0.008406026288866997,
0.03881606087088585,
-0.0690612718462944,
-0.01538014318794012,
-0.04110299423336983,
0.06551755219697952,
-0.01528743002563715,
0.02490903250873089,
-0.019696472212672234,
-0.03471606224775314,
0.016183659434318542,
0.00029632914811372757,
-0.008581151254475117,
-0.018707528710365295,
-0.07862106710672379,
0.05274369195103645,
-0.021880391985177994,
0.054103489965200424,
0.0022663306444883347,
-0.0027556519489735365,
0.030080387368798256,
0.05286731198430061,
0.030327623710036278,
-0.009977005422115326,
0.030410034582018852,
-0.06180901452898979,
0.027875864878296852,
0.05183716118335724,
-0.00830301083624363,
0.005537057761102915,
-0.006479645147919655,
-0.024311546236276627,
0.041515056043863297,
-0.043513547629117966,
-0.033603500574827194,
0.04289545491337776,
-0.050394948571920395,
0.025877373293042183,
-0.031131140887737274,
0.0665477067232132,
-0.039495959877967834,
0.06044921651482582,
0.01107411552220583,
-0.012506023980677128,
-0.03261455520987511,
-0.06378690153360367,
-0.019016573205590248,
0.017481649294495583,
-0.03016279824078083,
0.0019302440341562033,
0.006026378832757473,
0.004669155925512314,
0.02379647083580494,
-0.06568238139152527,
-0.05286731198430061,
0.037497468292713165,
0.029791945591568947,
-0.032841190695762634,
0.015328635461628437,
-0.029894959181547165,
0.028782397508621216,
0.025424107909202576,
-0.00830301083624363,
0.039908021688461304,
0.02445576712489128,
0.003023491008207202,
-0.050394948571920395,
-0.023549234494566917,
-0.05488640442490578,
0.03852761909365654,
0.03704420104622841,
-0.00464082695543766,
0.017883408814668655,
0.04052611067891121,
0.020201247185468674,
0.0481698252260685,
0.054474346339702606,
-0.055463287979364395,
-0.026371845975518227,
-0.011084416881203651,
0.00035186068271286786,
-0.024538177996873856,
0.010002759285271168,
-0.01528743002563715,
-0.030307020992040634,
-0.006484795827418566,
-0.017656775191426277,
0.0015297731151804328,
-0.01034270878881216,
-0.04664520174264908,
-0.01609094627201557,
-0.035911038517951965,
0.004867460113018751,
0.01720350980758667,
0.030142195522785187,
0.004996228497475386,
0.006572358775883913,
0.024435164406895638,
-0.009765824303030968,
-0.0010694246739149094,
0.0319964662194252,
0.03976380079984665,
0.017728885635733604,
-0.00738102663308382,
-0.018305769190192223,
0.03063666820526123,
0.0082360515370965,
0.04693364351987839,
0.017656775191426277,
0.013896727003157139,
0.0294622965157032,
-0.036899980157613754,
0.0038733649998903275,
-0.014823862351477146,
-0.05739997327327728,
0.02769043855369091,
0.04289545491337776,
-0.01157888863235712,
-0.06168539822101593,
-0.01148617547005415,
-0.026289435103535652,
-0.02046908624470234,
0.008210297673940659,
0.027237173169851303,
0.00853994581848383,
-0.02363164722919464,
0.04240098223090172,
-0.0047129373997449875,
-0.00038308711373247206,
-0.0193256177008152,
0.02208642102777958,
-0.03657033294439316,
0.006484795827418566,
0.0102963512763381,
0.0009715604246594012,
-0.048046208918094635,
0.03811555728316307,
-0.03352108970284462,
-0.0025753756053745747,
0.00420558825135231,
-0.03652912750840187,
-0.01549345999956131,
0.006335423793643713,
0.05055977404117584,
0.014185168780386448,
0.061479367315769196,
-0.04854067787528038,
0.03964018076658249,
0.008241201750934124,
-0.021591948345303535,
-0.01825426146388054,
-0.014566324651241302,
-0.015122605487704277,
0.012423612177371979,
-0.04800499975681305,
-0.06803112477064133,
0.024229133501648903,
0.012897481210529804,
0.00937951821833849,
-0.00914258323609829,
-0.05665826424956322,
-0.011238939128816128,
-0.03718842566013336,
0.051219068467617035,
-0.0449969619512558,
-0.030677873641252518,
-0.028123101219534874,
0.023301998153328896,
-0.06695976853370667,
-0.036323096603155136,
0.0124339135363698,
0.020829638466238976,
-0.014772354625165462,
0.014164566062390804,
0.06226228177547455,
0.011702506802976131,
-0.032264307141304016,
-0.0065157003700733185,
0.014380897395312786,
-0.010744467377662659,
-0.023198982700705528,
0.051754746586084366,
-0.0960099995136261,
0.04442007839679718,
0.01549345999956131,
-0.02008792944252491,
0.053938668221235275,
0.015277127735316753,
-0.0316874198615551,
-0.025547726079821587,
0.0071337902918457985,
-0.0782502144575119,
-0.010569341480731964,
0.02785526216030121,
0.012423612177371979,
0.012186677195131779,
-0.049859270453453064,
0.035313550382852554,
-0.027463804930448532,
0.005748238414525986,
0.05027133226394653,
-0.024311546236276627,
0.05616379156708717,
0.053279370069503784,
0.01885174959897995,
-0.023549234494566917,
-0.0038836663588881493,
0.05455675721168518,
-0.0037317192181944847,
-0.026639685034751892,
-0.02863817662000656,
0.025424107909202576,
0.0487879142165184,
-0.0323261134326458,
-0.0016173358308151364,
0.06127333641052246,
0.013361048884689808,
-0.04487334564328194,
-0.026248227804899216,
-0.007442835718393326,
-0.009168337099254131,
0.021045969799160957,
0.005403138231486082,
0.030595462769269943,
-0.08752156794071198,
0.03939294442534447,
0.019789185374975204,
0.017368333414196968,
0.019820090383291245,
-0.06168539822101593,
-0.024167325347661972,
0.027298981323838234,
-0.03181103989481926,
0.04800499975681305,
-0.020366070792078972,
0.020603004842996597,
0.005217710975557566,
-0.002402825513854623,
0.03976380079984665,
0.0036930886562913656,
0.05233163386583328,
-0.001327606150880456,
0.02256029099225998,
0.03881606087088585,
-0.006798991467803717,
-0.00866356398910284,
0.04417284205555916,
0.012011552229523659,
-0.00917348824441433,
0.050930626690387726,
-0.05430952087044716,
0.026536669582128525,
0.07029744982719421,
-0.015606775879859924,
0.03415978327393532,
0.028967825695872307,
-0.017749488353729248,
0.08636779338121414,
-0.0024672099389135838,
0.005065763834863901,
0.000005377102752390783,
-0.03003918193280697,
-0.02544471062719822,
-0.037497468292713165,
0.01787310652434826,
0.04413163661956787,
0.04487334564328194,
-0.04606831818819046,
0.023178379982709885,
0.03244973346590996,
-0.031893450766801834,
0.02598038874566555,
0.018717829138040543,
-0.006175750866532326,
0.07388237863779068,
-0.05801806226372719,
0.06250951439142227,
-0.0012213719310238957,
0.0459447018802166,
-0.0497356541454792,
-0.018892955034971237,
0.05896579846739769,
0.024352751672267914,
-0.0076849209144711494,
0.026536669582128525,
0.012979893013834953,
0.03801254555583,
-0.01964496448636055,
-0.01958315633237362,
0.032717570662498474,
-0.06551755219697952,
0.03945475444197655,
-0.011857029050588608,
-0.02832913212478161,
-0.05274369195103645,
-0.031007522717118263,
-0.002333290409296751,
0.018068835139274597,
0.019346222281455994,
-0.0017512553604319692,
0.036735158413648605,
0.005598866380751133,
0.03275877609848976
] |
729,565 | tinytuya.core | XenonDevice | null | class XenonDevice(object):
def __init__(
self, dev_id, address=None, local_key="", dev_type="default", connection_timeout=5, version=3.1, persist=False, cid=None, node_id=None, parent=None, connection_retry_limit=5, connection_retry_delay=5, port=TCPPORT # pylint: disable=W0621
):
"""
Represents a Tuya device.
Args:
dev_id (str): The device id.
address (str): The network address.
local_key (str, optional): The encryption key. Defaults to None.
cid (str: Optional sub device id. Default to None.
node_id (str: alias for cid)
parent (object: gateway device this device is a child of)
Attributes:
port (int): The port to connect to.
"""
self.id = dev_id
self.cid = cid if cid else node_id
self.address = address
self.auto_ip = False
self.dev_type = dev_type
self.dev_type_auto = self.dev_type == 'default'
self.last_dev_type = ''
self.connection_timeout = connection_timeout
self.retry = True
self.disabledetect = False # if True do not detect device22
self.port = port # default - do not expect caller to pass in
self.socket = None
self.socketPersistent = False if not persist else True # pylint: disable=R1719
self.socketNODELAY = True
self.socketRetryLimit = connection_retry_limit
self.socketRetryDelay = connection_retry_delay
self.version = 0
self.dps_to_request = {}
self.seqno = 1
self.sendWait = 0.01
self.dps_cache = {}
self.parent = parent
self.children = {}
self.received_wrong_cid_queue = []
self.local_nonce = b'0123456789abcdef' # not-so-random random key
self.remote_nonce = b''
self.payload_dict = None
if not local_key:
local_key = ""
# sub-devices do not need a local key, so only look it up if we are not a sub-device
if not parent:
devinfo = device_info( dev_id )
if devinfo and 'key' in devinfo and devinfo['key']:
local_key = devinfo['key']
self.local_key = local_key.encode("latin1")
self.real_local_key = self.local_key
self.cipher = None
if self.parent:
# if we are a child then we should have a cid/node_id but none were given - try and find it the same way we look up local keys
if not self.cid:
devinfo = device_info( dev_id )
if devinfo and 'node_id' in devinfo and devinfo['node_id']:
self.cid = devinfo['node_id']
if not self.cid:
# not fatal as the user could have set the device_id to the cid
# in that case dev_type should be 'zigbee' to set the proper fields in requests
log.debug( 'Child device but no cid/node_id given!' )
XenonDevice.set_version(self, self.parent.version)
self.parent._register_child(self)
elif (not address) or address == "Auto" or address == "0.0.0.0":
# try to determine IP address automatically
self.auto_ip = True
bcast_data = find_device(dev_id)
if bcast_data['ip'] is None:
log.debug("Unable to find device on network (specify IP address)")
raise Exception("Unable to find device on network (specify IP address)")
self.address = bcast_data['ip']
self.set_version(float(bcast_data['version']))
time.sleep(0.1)
elif version:
self.set_version(float(version))
else:
# make sure we call our set_version() and not a subclass since some of
# them (such as BulbDevice) make connections when called
XenonDevice.set_version(self, 3.1)
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
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))
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
def _check_socket_close(self, force=False):
if (force or not self.socketPersistent) an | (dev_id, address=None, local_key='', dev_type='default', connection_timeout=5, version=3.1, persist=False, cid=None, node_id=None, parent=None, connection_retry_limit=5, connection_retry_delay=5, port=6668) | [
0.027121014893054962,
-0.05033116415143013,
-0.022678779438138008,
0.03154199570417404,
-0.00004591350443661213,
-0.03995886072516441,
-0.08272334933280945,
0.04744052141904831,
-0.04569763317704201,
-0.09777168184518814,
-0.014315050095319748,
0.017513884231448174,
0.0064986287616193295,
0.027291052043437958,
-0.0032307165674865246,
0.002999571617692709,
0.0004752421227749437,
-0.013379842042922974,
0.007582619320601225,
-0.046547822654247284,
-0.031371958553791046,
0.06729242205619812,
0.019107988104224205,
-0.006817449349910021,
-0.0025439236778765917,
0.06610216200351715,
-0.023082619532942772,
0.025845732539892197,
0.047653067857027054,
-0.03734453395009041,
-0.017747685313224792,
0.008948234841227531,
0.0809379518032074,
0.03052176907658577,
0.017620157450437546,
-0.0017362444195896387,
0.0027033339720219374,
-0.015292766503989697,
-0.08289338648319244,
0.004763712640851736,
-0.005871614906936884,
-0.05768529325723648,
-0.014740143902599812,
-0.005478402599692345,
0.00016198416415136307,
0.0478656142950058,
-0.020702091977000237,
0.10023722797632217,
-0.0017375728348270059,
0.015898525714874268,
-0.03738704323768616,
0.022338705137372017,
-0.009607130661606789,
0.0247617419809103,
-0.04144669324159622,
0.026355845853686333,
-0.003570792032405734,
0.04365718364715576,
-0.024166610091924667,
-0.005228659603744745,
-0.016642440110445023,
0.06032087653875351,
-0.01417689397931099,
-0.012859102338552475,
-0.024782996624708176,
-0.028375042602419853,
-0.039299964904785156,
-0.00011108908802270889,
0.013252314180135727,
0.04714295640587807,
0.04697291925549507,
0.009527425281703472,
0.019022969529032707,
0.009112958796322346,
0.046845387667417526,
0.01459136139601469,
-0.022232430055737495,
0.0029384642839431763,
-0.036218032240867615,
0.010324477218091488,
0.02610078826546669,
0.017078163102269173,
0.034198835492134094,
0.0043067364022135735,
0.04659033194184303,
0.05441206693649292,
0.04748303070664406,
0.05836544558405876,
-0.04210558906197548,
-0.00365846767090261,
-0.05768529325723648,
0.041552964597940445,
-0.0075613646768033504,
0.05721769109368324,
0.04374220222234726,
-0.03409256041049957,
-0.004487401340156794,
-0.007890812121331692,
0.006785567384213209,
-0.0368131659924984,
-0.057175181806087494,
0.030543023720383644,
-0.1063585877418518,
-0.050968803465366364,
0.012104559689760208,
-0.03666438162326813,
-0.040213920176029205,
0.0422968789935112,
0.012412752956151962,
0.015728488564491272,
-0.05479465425014496,
-0.022721288725733757,
0.03566541150212288,
0.04557010531425476,
-0.0009856873657554388,
-0.02979910932481289,
-0.036643125116825104,
0.01453822385519743,
-0.009389270097017288,
-0.017556393519043922,
-0.030989373102784157,
0.0020258398726582527,
-0.02658964693546295,
-0.012338361702859402,
0.003015512600541115,
0.05798285827040672,
0.0329873152077198,
-0.0027763969264924526,
0.036366816610097885,
-0.03056427836418152,
-0.013443606905639172,
0.016599930822849274,
0.044252313673496246,
0.051648955792188644,
-0.0038896126206964254,
-0.04204182326793671,
-0.022572506219148636,
0.007311621680855751,
-0.043572165071964264,
-0.045400068163871765,
0.014857045374810696,
0.009824991226196289,
0.03071306087076664,
-0.03373122960329056,
0.002434993162751198,
0.020638328045606613,
-0.036026738584041595,
-0.07290367037057877,
-0.04918340966105461,
-0.07668700814247131,
0.003467175178229809,
-0.023146383464336395,
-0.013868700712919235,
-0.00970809068530798,
-0.0478656142950058,
0.044337332248687744,
-0.07838738709688187,
-0.05942818149924278,
-0.004564449656754732,
-0.015898525714874268,
-0.08387110382318497,
-0.04548508673906326,
0.019766883924603462,
-0.043380871415138245,
-0.024251628667116165,
-0.024931779131293297,
-0.0846787765622139,
-0.061893727630376816,
0.0587480291724205,
0.03604799509048462,
-0.01577099785208702,
0.05258416384458542,
0.003124442882835865,
-0.009325506165623665,
-0.03192457929253578,
0.03859855979681015,
-0.024251628667116165,
-0.058960575610399246,
-0.03783339262008667,
0.013188550248742104,
0.005536852870136499,
-0.02028762362897396,
0.006509256083518267,
-0.008400925435125828,
0.031988345086574554,
0.060108330100774765,
0.06070346385240555,
0.046122729778289795,
0.10015220940113068,
0.020967775955796242,
-0.015972917899489403,
0.011052451096475124,
0.047227974981069565,
0.029203977435827255,
0.02571820467710495,
0.027907438576221466,
0.0680575966835022,
-0.006286081857979298,
0.019065478816628456,
0.057897839695215225,
-0.03970380499958992,
0.039384983479976654,
0.014006856828927994,
-0.01933116279542446,
-0.04569763317704201,
-0.027269797399640083,
-0.01341172493994236,
0.005866301245987415,
0.024676723405718803,
0.007242543622851372,
-0.00610541645437479,
0.013656153343617916,
-0.015845390036702156,
0.05373191833496094,
0.05186150223016739,
-0.0754542350769043,
-0.011371271684765816,
0.034347616136074066,
-0.017556393519043922,
-0.030628042295575142,
0.009022626094520092,
-0.004096846096217632,
-0.03609050437808037,
-0.03806719183921814,
-0.0606609545648098,
0.022529996931552887,
-0.03262598440051079,
-0.001421408960595727,
0.04199931398034096,
0.05394446477293968,
0.06151114031672478,
0.03075557015836239,
0.030202947556972504,
0.04484744742512703,
0.022955091670155525,
-0.02274254336953163,
-0.014761398546397686,
0.009282995946705341,
0.00635515945032239,
-0.0340287983417511,
-0.021275969222187996,
-0.04306204989552498,
0.06444429606199265,
-0.04846074804663658,
0.03555913642048836,
0.027418581768870354,
0.040256429463624954,
0.03464518487453461,
-0.006434864830225706,
-0.03762084245681763,
-0.02518683671951294,
-0.04310455918312073,
0.018852930516004562,
-0.019203634932637215,
-0.004261570051312447,
-0.09743160754442215,
-0.006461433134973049,
0.0303304772824049,
0.011785739101469517,
0.009702776558697224,
-0.026313336566090584,
0.04144669324159622,
-0.08191566914319992,
0.04087281599640846,
-0.02129722386598587,
-0.0004659431870095432,
0.01238087099045515,
0.0174926295876503,
-0.023528968915343285,
0.017577648162841797,
0.12565787136554718,
0.016801850870251656,
-0.05190401151776314,
0.03645183518528938,
0.003052708227187395,
-0.03725951164960861,
-0.004224374424666166,
-0.023869043216109276,
-0.02263627015054226,
-0.06576208770275116,
-0.01966061070561409,
0.026993487030267715,
0.02971409074962139,
0.03927871212363243,
-0.055262256413698196,
-0.055347274988889694,
-0.038811106234788895,
-0.026759684085845947,
-0.010664552450180054,
-0.003204148029908538,
-0.07643195241689682,
-0.01560095977038145,
-0.032859787344932556,
0.0133585873991251,
0.009947205893695354,
0.0009850230999290943,
-0.06903531402349472,
0.05373191833496094,
0.0007186750299297273,
-0.04552759602665901,
-0.0005114415544085205,
0.033858757466077805,
-0.025059306994080544,
0.02811998687684536,
0.030458005145192146,
-0.0030208262614905834,
0.03047925978899002,
-0.005791909527033567,
0.009670894593000412,
0.01091429591178894,
0.0071043879725039005,
-0.02750360034406185,
0.053476858884096146,
0.009968460537493229,
0.0534343495965004,
0.005398697219789028,
0.0071362704038619995,
0.0035681352019309998,
0.04138292744755745,
0.10372300446033478,
-0.017216317355632782,
0.057090163230895996,
-0.008767569437623024,
0.09275557100772858,
0.011977030895650387,
0.018969831988215446,
0.10261775553226471,
-0.0038178779650479555,
-0.021477889269590378,
-0.005409324541687965,
-0.06848268955945969,
-0.00574408657848835,
-0.04599520191550255,
-0.039725061506032944,
0.003942749463021755,
-0.00871974602341652,
-0.004200462717562914,
0.003108501899987459,
-0.01442132331430912,
-0.024527939036488533,
0.005956633482128382,
0.032370928674936295,
-0.02697223238646984,
-0.015324648469686508,
-0.0010580861708149314,
-0.0606609545648098,
0.007991772145032883,
-0.015218375250697136,
-0.020021939650177956,
0.05249914154410362,
0.011009941808879375,
0.004410353023558855,
0.011626328341662884,
0.04219060763716698,
0.057515256106853485,
-0.07056564837694168,
-0.0395125113427639,
0.020967775955796242,
0.02042577974498272,
-0.02423037402331829,
-0.019543709233403206,
0.017907096073031425,
-0.016844360157847404,
0.0009923294419422746,
-0.04000137001276016,
-0.029884127900004387,
-0.0029225230682641268,
-0.027716146782040596,
0.06529448181390762,
-0.006158553529530764,
-0.034113816916942596,
-0.06886526942253113,
-0.007768597919493914,
-0.012125814333558083,
0.05007610470056534,
-0.009479602798819542,
-0.029671581462025642,
0.0028454747516661882,
0.00739132659509778,
-0.0022941806819289923,
0.005866301245987415,
-0.005135670304298401,
0.0534343495965004,
-0.007141584064811468,
-0.0017056907527148724,
-0.02350771427154541,
0.013146040961146355,
-0.0011783081572502851,
0.021849846467375755,
0.016695577651262283,
0.004620243329554796,
0.06134110316634178,
0.0011836219346150756,
0.03398628905415535,
-0.024442920461297035,
0.028672609478235245,
0.0478656142950058,
0.0206276997923851,
0.0029278367292135954,
-0.08578402549028397,
-0.03947000205516815,
-0.014091875404119492,
-0.019150497391819954,
0.05521974712610245,
0.016908124089241028,
0.023486459627747536,
0.12455262243747711,
-0.008416866883635521,
-0.014888927340507507,
0.005489029921591282,
-0.05555982142686844,
0.032944805920124054,
-0.02716352418065071,
0.003714261343702674,
-0.005409324541687965,
0.03124442882835865,
0.01874665729701519,
0.09853685647249222,
0.07979019731283188,
0.016068562865257263,
-0.04293452203273773,
0.013996229507029057,
0.00800239946693182,
0.02884264662861824,
-0.02652588300406933,
0.02777991071343422,
-0.004792938008904457,
0.002557207830250263,
-0.030160438269376755,
0.035304080694913864,
0.041021596640348434,
0.020415153354406357,
-0.0024589046370238066,
-0.030075419694185257,
0.04854576662182808,
-0.009426465258002281,
0.017290709540247917,
-0.029820363968610764,
-0.019299279898405075,
-0.016355501487851143,
-0.002065692562609911,
0.003732859157025814,
0.010760199278593063,
0.030415495857596397,
0.0133585873991251,
0.009314877912402153,
-0.0413404181599617,
-0.010659239254891872,
0.002049751579761505,
0.008788824081420898,
-0.02316763810813427,
-0.057090163230895996,
0.034156326204538345,
-0.012434007599949837,
-0.06151114031672478,
-0.030925609171390533,
-0.023911552503705025,
0.023826533928513527,
0.005226003006100655,
-0.012391498312354088,
0.008709118701517582,
0.0247617419809103,
0.007417895365506411,
-0.0019594188779592514,
-0.05772780254483223,
0.088079534471035,
0.03957627713680267,
0.004343932028859854,
0.02374151535332203,
0.00016762995801400393,
0.010106616653501987,
0.008570963516831398,
-0.04408227652311325,
0.0019275369122624397,
0.005632499232888222,
-0.04620774835348129,
-0.006620843429118395,
-0.03260473161935806,
-0.05181899294257164,
-0.09071511775255203,
-0.03364621102809906,
-0.038237228989601135,
0.0395975336432457,
-0.014400068670511246,
-0.038428522646427155,
-0.0698004812002182,
0.055984918028116226,
-0.04561261460185051,
0.006408296059817076,
-0.006009770557284355,
-0.08535893261432648,
0.007056565023958683,
-0.0017455433262512088,
-0.0022769111674278975,
0.059300653636455536,
0.018948577344417572,
-0.07294617593288422,
-0.018534110859036446,
-0.016525540500879288,
-0.0715433657169342,
-0.041850533336400986,
-0.035155296325683594,
-0.03209461644291878,
0.013103530742228031,
0.02047891728579998,
0.020882755517959595,
-0.09020500630140305,
0.04999108612537384,
0.0009644326637499034,
0.015229002572596073,
0.002656839322298765,
-0.0012752828188240528,
0.02274254336953163,
-0.010547651909291744,
-0.030436750501394272,
0.025484401732683182,
0.028141241520643234,
0.0188423041254282,
-0.03623928874731064,
-0.0165786761790514,
0.049098387360572815,
0.05105382204055786,
0.04244566336274147,
0.0016166866989806294,
-0.013369214721024036,
0.03166952356696129,
-0.009192664176225662,
0.025059306994080544,
0.034198835492134094,
0.002209161873906851,
-0.03326362743973732,
0.0037647411227226257,
-0.0012540281750261784,
0.0035282825119793415,
0.05007610470056534,
-0.030202947556972504,
-0.021424751728773117,
-0.02427288331091404,
-0.07048062980175018,
-0.0678875595331192,
0.016079191118478775,
0.01567535102367401,
-0.04748303070664406,
-0.09037504345178604,
-0.05513472855091095,
-0.05292423814535141,
0.028587590903043747,
0.04233938828110695,
-0.014410695992410183,
-0.03413506969809532,
0.009049194864928722,
0.031456977128982544,
0.07022557407617569,
-0.02221117541193962,
0.017864586785435677,
-0.042126841843128204,
0.03485773131251335,
-0.021360987797379494,
0.003161638742312789,
-0.007757970597594976,
-0.004992200993001461,
-0.006960918661206961,
-0.004769026301801205,
-0.020850874483585358,
0.03317860886454582,
0.005419951863586903,
-0.0025744771119207144,
-0.0007877528551034629,
0.03449640050530434,
0.0023606016766279936,
-0.004022454377263784,
0.024336647242307663,
0.016185464337468147,
0.0339437797665596,
-0.043529655784368515,
-0.008932293392717838,
-0.02101028524339199,
0.06678231060504913,
0.0029597189277410507,
-0.02624957077205181,
0.03528282418847084,
0.036218032240867615,
-0.06401919573545456,
-0.0412553995847702,
0.015388413332402706,
0.047653067857027054,
0.03783339262008667,
0.07753719389438629,
-0.0014081248082220554,
-0.07876996695995331,
-0.031308192759752274,
-0.008879156783223152,
-0.02750360034406185,
-0.026079533621668816,
-0.0008123285952024162,
0.05139390006661415,
0.031031882390379906,
0.028821391984820366,
0.02335892990231514,
0.005765341222286224,
-0.022274939343333244,
0.04416729509830475,
0.051351387053728104,
-0.0991319864988327,
0.016376757994294167,
-0.002664809813722968,
-0.07375385612249374,
0.05156393721699715,
-0.018565991893410683,
-0.036175522953271866,
0.0068812137469649315,
0.025463147088885307,
-0.020053822547197342,
0.01478265319019556,
-0.03983133286237717,
-0.009755914099514484,
-0.04476242884993553,
0.028778882697224617,
-0.00499751465395093,
-0.01352862548083067,
0.01912924274802208,
-0.0005496336380019784,
-0.006689921021461487,
-0.01686561480164528,
-0.09003496915102005,
0.0019461347255855799,
0.019533082842826843,
-0.0005047994782216847,
-0.024697978049516678,
0.01715255342423916,
0.04642029479146004,
-0.022870073094964027,
0.028566336259245872,
0.031159410253167152,
-0.04416729509830475,
-0.028587590903043747,
0.00008626424823887646,
-0.005791909527033567,
-0.014272540807723999,
0.06095851957798004,
0.04144669324159622,
0.011902639642357826,
0.007662324234843254,
-0.055687349289655685,
0.004120757803320885,
0.02514432743191719,
0.026313336566090584,
-0.007237229961901903,
-0.011456291191279888,
-0.00814586877822876,
-0.015314021147787571,
0.02321014739573002,
-0.028948919847607613,
-0.005303051322698593,
0.012327734380960464,
0.024017827585339546,
-0.02365649677813053,
0.012635927647352219,
0.021998628973960876,
0.020733973011374474,
0.011403153650462627,
0.007311621680855751,
0.025271855294704437,
-0.029777854681015015,
0.03392252326011658,
0.01495269127190113,
0.03424134477972984,
-0.03715324029326439,
-0.016748715192079544,
0.003966661170125008,
0.04748303070664406,
-0.009591189213097095,
-0.011573191732168198,
-0.0003287838480900973,
-0.010042852722108364,
-0.022168666124343872,
0.011530682444572449,
-0.011520055122673512,
-0.032328419387340546,
0.020128214731812477,
0.019639356061816216,
0.028183750808238983,
-0.007922695018351078,
-0.029650326818227768,
-0.007455090992152691,
-0.01567535102367401,
0.055687349289655685,
0.029012683779001236,
-0.041127871721982956,
-0.11809118837118149,
-0.012646554969251156,
-0.005531539209187031,
0.023954061791300774,
0.05453959479928017,
-0.057940348982810974,
-0.08323346078395844,
0.00015060957230161875,
0.01754576712846756,
-0.031945835798978806,
-0.01917175203561783,
0.028523826971650124,
-0.021318478509783745,
-0.03388001397252083,
-0.005552793852984905,
0.03177579864859581,
0.03944874927401543,
-0.05075625702738762,
-0.03834350407123566,
0.04206307977437973,
0.015292766503989697,
0.07311621308326721,
0.01074425783008337,
0.0663997232913971,
-0.055687349289655685,
-0.01184950303286314,
0.0385560505092144,
-0.019979430362582207,
-0.015972917899489403,
-0.019299279898405075,
0.042615700513124466,
-0.017567021772265434,
0.023443950340151787,
0.05964072793722153,
-0.021743573248386383,
0.013836818747222424,
-0.0032094616908580065,
0.02705725096166134,
0.01499520055949688,
0.01221083290874958,
0.03470894694328308,
-0.0010521083604544401,
0.03158450499176979,
-0.03706822171807289,
0.0216266717761755,
-0.030543023720383644,
-0.047610558569431305,
0.06652725487947464,
-0.016408639028668404,
-0.034730203449726105,
0.04480493813753128,
-0.0021786082070320845,
-0.011902639642357826,
-0.04263695701956749,
0.011094960384070873,
-0.015377785079181194,
0.007991772145032883,
0.008268083445727825,
0.03555913642048836,
0.03998011723160744,
0.00905982218682766,
0.04008638858795166,
-0.030202947556972504,
-0.00845937617123127,
0.010483887977898121,
0.027673637494444847,
-0.021212205290794373,
-0.062318820506334305,
0.06618718057870865,
0.04437984153628349,
-0.023231402039527893,
0.0017601560102775693,
-0.024379156529903412,
-0.0348152220249176,
0.029501542448997498,
-0.014474459923803806,
0.004564449656754732,
-0.018321562558412552,
0.03936373069882393
] |
729,602 | tinytuya.core | appenddevice | null | def appenddevice(newdevice, devices):
if newdevice["ip"] in devices:
return True
devices[newdevice["ip"]] = newdevice
return False
| (newdevice, devices) | [
0.010829346254467964,
-0.01377464085817337,
-0.06788545101881027,
0.016261978074908257,
-0.024711742997169495,
-0.004388758912682533,
-0.021856242790818214,
0.011933831498026848,
0.026920713484287262,
-0.027531323954463005,
-0.01725870929658413,
-0.05908548831939697,
0.0025524392258375883,
0.030692126601934433,
0.015310145914554596,
-0.04270677641034126,
-0.020688900724053383,
0.025771329179406166,
0.0147623922675848,
-0.02557377889752388,
-0.019808903336524963,
0.0249452106654644,
0.05714590474963188,
0.0030238658655434847,
0.01666605845093727,
0.107251837849617,
0.046621862798929214,
0.027872545644640923,
0.04597533494234085,
0.01313709281384945,
-0.008512620814144611,
-0.08052866905927658,
0.06763402372598648,
0.006303649395704269,
0.06734668463468552,
0.039222706109285355,
-0.0018587684025987983,
0.008862823247909546,
-0.03212885558605194,
0.03252395614981651,
-0.013648927211761475,
-0.04694512486457825,
-0.03810924291610718,
0.017132995650172234,
0.07169278711080551,
0.07072299718856812,
-0.017061159014701843,
0.09037026762962341,
0.03706761449575424,
-0.027531323954463005,
-0.02993784472346306,
-0.004011617507785559,
0.04076718911528587,
0.03882760554552078,
-0.005859161261469126,
-0.021928079426288605,
-0.012481585144996643,
0.006590995006263256,
-0.035666801035404205,
0.020347677171230316,
-0.007690990809351206,
-0.023257054388523102,
0.013702805154025555,
-0.05635570362210274,
-0.0025075413286685944,
0.0325419157743454,
-0.04640635475516319,
-0.010694652795791626,
-0.004530186764895916,
0.05678671970963478,
-0.03378109633922577,
-0.008081601932644844,
0.0032124368008226156,
-0.06095323711633682,
0.004532431717962027,
0.04884879291057587,
0.010317511856555939,
0.018695438280701637,
-0.017770543694496155,
-0.039222706109285355,
-0.003995903301984072,
-0.0027410099282860756,
0.025232557207345963,
0.05430836230516434,
-0.011404038406908512,
0.08534171432256699,
-0.01831829734146595,
0.01139505859464407,
-0.036690473556518555,
-0.0249452106654644,
0.005279979668557644,
-0.0027275406755506992,
0.02850111573934555,
0.024011336266994476,
0.07715235650539398,
-0.019395845010876656,
0.0027567241340875626,
-0.005450591444969177,
0.027710914611816406,
0.007740378379821777,
0.01989869959652424,
-0.046765536069869995,
-0.016118304803967476,
-0.05470346286892891,
0.02648969367146492,
-0.07844541221857071,
0.00318774301558733,
0.07187237590551376,
0.0069591570645570755,
0.048130426555871964,
-0.04529288783669472,
-0.03548721224069595,
-0.00788854155689478,
0.01284076739102602,
0.01853380724787712,
0.015651369467377663,
0.0624258853495121,
0.010416286997497082,
-0.0047097778879106045,
-0.0020720327738672495,
-0.022107670083642006,
-0.009940369985997677,
0.02751336432993412,
-0.01986278034746647,
0.029776211827993393,
-0.035415373742580414,
-0.015004840679466724,
0.009679962880909443,
0.01715095527470112,
-0.03399660438299179,
-0.06515567004680634,
-0.009311800822615623,
-0.030350904911756516,
0.026884794235229492,
0.0019665230065584183,
-0.05355408042669296,
-0.05373367294669151,
-0.02015012688934803,
-0.006222833413630724,
-0.01139505859464407,
-0.04238351061940193,
-0.008853843435645103,
0.02634602226316929,
0.007201605010777712,
0.012535462155938148,
-0.01764483004808426,
-0.06310833245515823,
0.027315814048051834,
-0.005679570138454437,
0.02092236839234829,
-0.04256310313940048,
0.01701626181602478,
-0.048381853848695755,
-0.014394230209290981,
-0.05851079523563385,
0.02543010748922825,
-0.042814530432224274,
-0.03442762419581413,
0.022143589332699776,
-0.04525696858763695,
0.016531364992260933,
-0.04173698276281357,
-0.022215425968170166,
0.04349697753787041,
-0.02304154448211193,
-0.004328146576881409,
-0.045005541294813156,
0.031266819685697556,
-0.04080310836434364,
0.04935164749622345,
-0.014008109457790852,
0.00812201015651226,
0.08124703913927078,
-0.004076719284057617,
-0.027639077976346016,
0.0065011996775865555,
-0.03164396062493324,
-0.062066700309515,
0.015687286853790283,
-0.015346063300967216,
-0.01157464925199747,
0.032146815210580826,
0.050608787685632706,
0.08218090981245041,
0.0403720885515213,
0.010245675221085548,
0.0008884149719960988,
0.05355408042669296,
0.026292143389582634,
0.0536259189248085,
0.02571745216846466,
0.01704319939017296,
0.01232893206179142,
-0.009311800822615623,
0.004256310407072306,
-0.004826512187719345,
0.001899176393635571,
0.07198013365268707,
-0.06472465395927429,
0.11989504843950272,
-0.06781361997127533,
-0.04568798840045929,
0.00859792623668909,
-0.0018408092437312007,
0.02593296207487583,
0.017420342192053795,
-0.001377239590510726,
0.006101609207689762,
0.004651410970836878,
-0.017456259578466415,
0.01405300758779049,
-0.001167342416010797,
0.039438217878341675,
0.010317511856555939,
0.013819538988173008,
0.013415458612143993,
0.003735495964065194,
0.04945940151810646,
-0.09374658018350601,
-0.0333859957754612,
-0.02810601517558098,
-0.020868491381406784,
0.010604857467114925,
-0.015624430030584335,
-0.04561615362763405,
0.007560787256807089,
-0.015534634701907635,
0.007363236974924803,
-0.025268474593758583,
0.0310333501547575,
0.07294992357492447,
0.06490424275398254,
0.016684018075466156,
-0.005464060697704554,
0.005221612751483917,
0.019701149314641953,
0.0023526439908891916,
-0.014178721234202385,
0.06443730741739273,
0.027818668633699417,
0.01982686296105385,
0.025699494406580925,
0.021389305591583252,
-0.034714970737695694,
0.018731357529759407,
-0.012688114307820797,
0.01828237809240818,
-0.025376228615641594,
-0.005140796769410372,
-0.02641785889863968,
0.012715053744614124,
0.01293056271970272,
0.005841202102601528,
-0.0019777475390583277,
0.0016084632370620966,
-0.03775005787611008,
-0.03642108663916588,
-0.0066314032301306725,
0.021479101851582527,
-0.06055813655257225,
-0.00370406755246222,
0.07345277816057205,
0.02898601070046425,
0.02257460728287697,
-0.09403392672538757,
-0.0021966241765767336,
0.03230844810605049,
0.06598179042339325,
-0.018363194540143013,
0.03178763389587402,
0.08383315056562424,
0.02589704468846321,
0.03155416622757912,
-0.05815161392092705,
0.030799882486462593,
-0.017725646495819092,
0.032146815210580826,
0.05118347704410553,
0.0009714758489280939,
-0.03146436810493469,
0.008975068107247353,
0.019216252490878105,
-0.0293451938778162,
0.011879954487085342,
-0.021586855873465538,
-0.037642303854227066,
0.020311759784817696,
0.11055631190538406,
0.005666100885719061,
-0.013568111695349216,
-0.015651369467377663,
0.009446494281291962,
-0.0454365611076355,
0.05132715031504631,
-0.07787071913480759,
0.05358999967575073,
-0.015076677314937115,
0.03491251915693283,
0.006366506218910217,
-0.007879561744630337,
-0.0383247509598732,
0.03245212137699127,
-0.059300996363162994,
-0.006644872482866049,
-0.01817462407052517,
0.009365678764879704,
0.009904451668262482,
-0.0156693272292614,
-0.014313414692878723,
-0.0005471917684189975,
-0.0329010970890522,
0.007502420339733362,
-0.05078837648034096,
0.015355043113231659,
0.06177935376763344,
0.024352559819817543,
-0.020599104464054108,
0.021748488768935204,
-0.01558851171284914,
0.061312418431043625,
0.0011684648925438523,
0.012553421780467033,
-0.08871802687644958,
0.05297938734292984,
-0.00841833557933569,
-0.017267689108848572,
0.09475228935480118,
0.002478357870131731,
-0.004507737699896097,
0.001533259404823184,
-0.016118304803967476,
-0.034050483256578445,
-0.001517545199021697,
0.005787324625998735,
0.00921302568167448,
-0.004880389664322138,
-0.04575982317328453,
-0.07873275876045227,
-0.015094636008143425,
0.04913613945245743,
-0.034786805510520935,
-0.01923421211540699,
-0.0424194298684597,
-0.03536149859428406,
0.06569444388151169,
-0.06594587117433548,
0.00532038789242506,
0.04213208332657814,
-0.059516508132219315,
0.013675865717232227,
0.01291260402649641,
0.056032437831163406,
0.007098339963704348,
0.024568069726228714,
0.08426416665315628,
-0.007614664733409882,
-0.026956630870699883,
0.03033294528722763,
0.015453818254172802,
-0.012616278603672981,
-0.012391788884997368,
0.021155837923288345,
-0.004411207512021065,
-0.014241578057408333,
-0.02011420950293541,
0.03442762419581413,
0.011799138970673084,
0.0028869276866316795,
-0.018551765009760857,
-0.06368301808834076,
-0.018444010987877846,
-0.01012894045561552,
0.06939402222633362,
0.003706312272697687,
0.05337448790669441,
-0.014861167408525944,
-0.029650498181581497,
0.005715488456189632,
-0.02902192994952202,
0.041054535657167435,
-0.03403252363204956,
0.001978870015591383,
0.017465239390730858,
0.014421169646084309,
0.04529288783669472,
0.011772199533879757,
-0.002628765534609556,
0.004321412183344364,
0.003079988295212388,
0.014717495068907738,
-0.001628667232580483,
0.04004882648587227,
-0.05693039298057556,
0.028806420043110847,
-0.049531240016222,
-0.015624430030584335,
-0.010892203077673912,
-0.06792137026786804,
-0.0671311691403389,
-0.007403645198792219,
-0.010434245690703392,
-0.00616446603089571,
-0.04245534911751747,
0.07456624507904053,
0.0044493707828223705,
0.004328146576881409,
-0.016773812472820282,
-0.009230985306203365,
-0.023059504106640816,
-0.03230844810605049,
0.00358957820571959,
-0.013038317672908306,
-0.015399941243231297,
-0.008584456518292427,
-0.03166192024946213,
0.030512535944581032,
0.023544399067759514,
0.0065999748185276985,
0.018444010987877846,
0.053913261741399765,
-0.01544483844190836,
-0.020904410630464554,
-0.04931572824716568,
0.03713944926857948,
-0.014555863104760647,
-0.04640635475516319,
0.02945294789969921,
-0.03590027242898941,
-0.009248943999409676,
-0.00029632539371959865,
-0.000848006980959326,
-0.02279011718928814,
0.04769941046833992,
0.0018857070244848728,
0.026794999837875366,
-0.022466853260993958,
0.08139070868492126,
-0.05183000490069389,
0.02586112543940544,
0.03972556069493294,
-0.011260365135967731,
-0.039330460131168365,
-0.046657782047986984,
-0.004593043588101864,
-0.09310004860162735,
-0.011125671677291393,
-0.041198208928108215,
-0.03433782607316971,
0.03821699693799019,
0.0051677352748811245,
0.06285690516233444,
-0.0841204971075058,
0.01803993061184883,
0.03022519126534462,
0.048381853848695755,
-0.03487659990787506,
0.0054954891093075275,
-0.003843250684440136,
0.029830090701580048,
0.010084043256938457,
-0.021640732884407043,
0.0583312064409256,
-0.013711784034967422,
0.02776479162275791,
-0.01157464925199747,
0.055852849036455154,
0.008606906048953533,
-0.029722334817051888,
0.04586758092045784,
0.033062729984521866,
0.04698104411363602,
-0.020419513806700706,
0.023795828223228455,
-0.02480153739452362,
0.005015082657337189,
-0.00406100507825613,
0.030099475756287575,
-0.0001229778426932171,
-0.025088883936405182,
-0.0062452820129692554,
-0.06084548309445381,
-0.041270047426223755,
0.003569374093785882,
0.0020720327738672495,
0.010371388867497444,
-0.03976147994399071,
-0.004049780312925577,
0.003064274089410901,
-0.01828237809240818,
0.031159063801169395,
-0.01624402031302452,
-0.08792782574892044,
0.005845692008733749,
-0.03272150829434395,
0.012939542531967163,
-0.014008109457790852,
0.014026069082319736,
0.05886998027563095,
0.03029702603816986,
-0.014933004043996334,
0.0022606037091463804,
0.00797833688557148,
-0.014340353198349476,
-0.04421534016728401,
-0.0208505317568779,
-0.013289744965732098,
-0.005059980787336826,
0.02993784472346306,
-0.05272796005010605,
0.05822345241904259,
0.030386822298169136,
0.033906809985637665,
0.03182355314493179,
0.011808117851614952,
0.014915045350790024,
-0.003194477641955018,
-0.011089753359556198,
0.0017959114629775286,
0.004476309288293123,
-0.023508481681346893,
0.041270047426223755,
0.050105929374694824,
0.05093204975128174,
-0.04012066125869751,
0.007690990809351206,
0.015606471337378025,
-0.045041460543870926,
-0.0078032356686890125,
-0.03706761449575424,
-0.01666605845093727,
-0.04022841900587082,
0.048417773097753525,
0.009608126245439053,
-0.020527267828583717,
0.03399660438299179,
0.04249126464128494,
0.05872630700469017,
-0.019324008375406265,
-0.033026810735464096,
-0.04159330949187279,
0.005710998550057411,
-0.02264644391834736,
0.011134651489555836,
-0.08016949146986008,
-0.06034262478351593,
0.04626268148422241,
-0.02945294789969921,
-0.020635023713111877,
0.015696266666054726,
-0.041162289679050446,
-0.0498904213309288,
0.03857617825269699,
0.015651369467377663,
0.030566412955522537,
0.02318521775305271,
0.0013761172303929925,
-0.044933706521987915,
-0.008862823247909546,
-0.0016252999193966389,
0.025286434218287468,
0.01595667377114296,
-0.016226060688495636,
0.029542744159698486,
0.055816929787397385,
0.01757299341261387,
-0.039366379380226135,
-0.0997808426618576,
0.017177892848849297,
0.016953404992818832,
-0.027459487318992615,
0.009850574657320976,
-0.013550152070820332,
-0.045077379792928696,
-0.01701626181602478,
-0.02871662564575672,
-0.03532557934522629,
0.014959942549467087,
0.015759123489260674,
0.009275882504880428,
-0.06443730741739273,
-0.1050967425107956,
0.06217445433139801,
0.00926690362393856,
-0.03187742829322815,
0.07115401327610016,
-0.021389305591583252,
0.011565670371055603,
0.03586435317993164,
-0.0156693272292614,
-0.015175452455878258,
-0.02212562970817089,
0.050177767872810364,
-0.054128773510456085,
-0.010766489431262016,
-0.023759908974170685,
-0.0020450942683964968,
0.028896216303110123,
0.013918314129114151,
-0.04015658050775528,
0.025160720571875572,
-0.04012066125869751,
-0.01708809845149517,
0.01025465503334999,
-0.13735130429267883,
-0.009302821941673756,
-0.015804020687937737,
-0.07083074748516083,
-0.04227575659751892,
-0.03695985674858093,
-0.05136306956410408,
0.032667629420757294,
0.03536149859428406,
0.0033583545591682196,
0.059624262154102325,
0.016935445368289948,
0.0051363068632781506,
-0.04963899403810501,
-0.007233033422380686,
0.04734022542834282,
0.018012993037700653,
0.0009507106733508408,
0.017061159014701843,
0.07000462710857391,
-0.005760386120527983,
-0.056032437831163406,
-0.06738259643316269,
-0.0031069268006831408,
0.029686417430639267,
0.0012537706643342972,
-0.009239964187145233,
-0.010353430174291134,
-0.021856242790818214,
0.037462715059518814,
0.017106056213378906,
-0.025340311229228973,
-0.05463162809610367,
0.03457129746675491,
-0.06152792647480965,
0.019216252490878105,
0.03121294267475605,
-0.05614019185304642,
-0.005926507990807295,
-0.008324049413204193,
-0.06799320876598358,
0.05466754734516144,
-0.0072914008051157,
-0.00926690362393856,
-0.013217908330261707,
-0.04723247140645981,
-0.04058760032057762,
0.043353304266929626,
0.00965302437543869,
0.004087943583726883,
0.0036434554494917393,
0.06260547786951065,
0.006882830988615751,
0.0033965175971388817,
0.03706761449575424,
-0.005966915749013424,
-0.01701626181602478,
0.009904451668262482,
0.006326098460704088,
0.018444010987877846,
-0.08383315056562424,
0.034786805510520935,
0.048884712159633636,
0.05657121166586876,
-0.06192302703857422,
-0.03821699693799019,
0.02043747343122959,
-0.01460076030343771,
-0.06023487076163292,
-0.016818711534142494,
0.010990978218615055,
0.04378432407975197,
-0.045221053063869476,
-0.041270047426223755,
0.01725870929658413,
-0.034714970737695694,
-0.035110071301460266,
0.002334684832021594,
-0.03897127881646156,
0.050393275916576385,
-0.017707686871290207,
-0.004420187324285507,
0.07822990417480469,
0.06932218372821808,
-0.0012638727203011513,
-0.013146071694791317,
-0.013397499918937683,
0.04927981272339821,
-0.055637337267398834,
0.007197115104645491,
0.05624794960021973,
-0.029668457806110382,
0.002639989834278822,
-0.023095421493053436,
0.043030038475990295,
-0.0454365611076355,
0.01232893206179142,
0.013523213565349579,
0.11012529581785202,
-0.013927293941378593,
-0.041234128177165985,
0.0013604029081761837,
-0.05348224565386772,
-0.03857617825269699,
-0.004970184992998838,
0.0017959114629775286,
-0.016926465556025505,
-0.015399941243231297,
0.02392154186964035,
0.02638193964958191,
-0.06310833245515823,
0.002204481279477477,
-0.048741038888692856,
-0.018255440518260002,
-0.032811302691698074,
0.018928907811641693,
0.024262763559818268,
0.04259902238845825,
0.009679962880909443,
0.050105929374694824,
-0.03121294267475605,
-0.013936272822320461,
-0.07000462710857391,
0.0095811877399683,
-0.028590910136699677,
-0.013379540294408798,
0.02176644653081894,
-0.035110071301460266,
0.04913613945245743,
-0.007295890245586634,
0.05297938734292984,
-0.007412624545395374,
0.010030165314674377,
-0.0461549237370491,
-0.030817842110991478,
0.008422824554145336,
0.01814768649637699,
0.009163638576865196,
0.007242013234645128,
0.06594587117433548,
-0.020455431193113327,
-0.002996927360072732,
-0.059516508132219315,
0.03433782607316971,
0.012544441968202591,
-0.04004882648587227,
0.03439170494675636,
0.04414350539445877,
0.053841426968574524,
-0.00875057838857174,
0.008153438568115234,
0.057828351855278015,
0.031572125852108,
0.001972135389223695,
0.03625945374369621,
0.03979739919304848,
-0.002538969973102212,
-0.04033617302775383,
0.0009389249607920647,
-0.029758254066109657,
-0.005957936402410269,
-0.027639077976346016,
0.04540064185857773,
-0.03318844363093376,
0.01768074929714203
] |
729,603 | tinytuya.core | assign_dp_mappings | Adds mappings to all the devices in the tuyadevices list
Parameters:
tuyadevices = list of devices
mappings = dict containing the mappings
Response:
Nothing, modifies tuyadevices in place
| def assign_dp_mappings( tuyadevices, mappings ):
""" Adds mappings to all the devices in the tuyadevices list
Parameters:
tuyadevices = list of devices
mappings = dict containing the mappings
Response:
Nothing, modifies tuyadevices in place
"""
if type(mappings) != dict:
raise ValueError( '\'mappings\' must be a dict' )
if (not mappings) or (not tuyadevices):
return None
for dev in tuyadevices:
try:
devid = dev['id']
productid = dev['product_id']
except:
# we need both the device id and the product id to download mappings!
log.debug( 'Cannot add DP mapping, no device id and/or product id: %r', dev )
continue
if productid in mappings:
dev['mapping'] = mappings[productid]
else:
log.debug( 'Device %s has no mapping!', devid )
dev['mapping'] = None
| (tuyadevices, mappings) | [
0.04867133870720863,
0.01078788097947836,
-0.050685327500104904,
-0.01459207758307457,
-0.043972037732601166,
0.018694642931222916,
-0.023496508598327637,
-0.03060140460729599,
0.0067972042597830296,
0.030265741050243378,
-0.03875059261918068,
0.004163171164691448,
-0.0024242429062724113,
0.07727740705013275,
0.028773898258805275,
-0.01597203128039837,
-0.040018655359745026,
0.0813053771853447,
0.027114225551486015,
-0.000666084059048444,
0.020419584587216377,
0.026498841121792793,
0.0003044872428290546,
0.056615397334098816,
-0.05079721286892891,
0.02640560083091259,
0.03481585904955864,
0.015272730961441994,
0.046470873057842255,
0.018069934099912643,
0.04747786745429039,
-0.03569231554865837,
0.041100241243839264,
0.043673668056726456,
0.04009325057268143,
0.03765035793185234,
0.02248951606452465,
0.04464336484670639,
-0.10084850341081619,
-0.029072267934679985,
0.012671331875026226,
-0.017482521012425423,
0.0056177168153226376,
0.022937068715691566,
0.03709091618657112,
0.07462938874959946,
-0.06008392944931984,
0.004191142972558737,
0.051282063126564026,
-0.004699301905930042,
-0.017333338037133217,
0.005044290330260992,
0.0029533805791288614,
0.03595338761806488,
-0.014452217146754265,
0.04527739807963371,
-0.03093707002699375,
0.018153849989175797,
-0.027338001877069473,
0.010853148996829987,
-0.023664340376853943,
-0.04404662922024727,
-0.028736602514982224,
-0.07668066769838333,
0.01682984083890915,
0.025678327307105064,
-0.008890444412827492,
-0.026163175702095032,
0.0013158511137589812,
0.04967833310365677,
-0.027729609981179237,
-0.0030652687419205904,
-0.03533800318837166,
-0.053743600845336914,
0.06288113445043564,
0.07537531107664108,
0.03334266319870949,
-0.010741260834038258,
-0.0007890444830991328,
-0.04348718747496605,
-0.020643360912799835,
0.01376224122941494,
0.0008717950549907982,
0.01765035279095173,
0.03766900673508644,
0.09980421513319016,
-0.015328674577176571,
0.01765967719256878,
-0.004449884407222271,
-0.056615397334098816,
-0.0011748254764825106,
-0.00013629082241095603,
0.019244760274887085,
0.03233567252755165,
0.021221449598670006,
0.017566436901688576,
0.002291375771164894,
0.023123547434806824,
-0.028139866888523102,
0.021519817411899567,
0.010722612962126732,
-0.07075060158967972,
0.005356644745916128,
-0.0337156243622303,
0.04404662922024727,
-0.06705828756093979,
-0.018331006169319153,
0.01375291682779789,
0.002369464375078678,
0.020848490297794342,
-0.05944989621639252,
-0.014713290147483349,
0.07194407284259796,
-0.017641030251979828,
-0.0308997742831707,
0.010200468823313713,
0.031048957258462906,
-0.015319351106882095,
0.0014615388354286551,
0.04993940517306328,
-0.049566444009542465,
0.015561775304377079,
0.004965036176145077,
-0.005524476524442434,
-0.028139866888523102,
-0.03444289788603783,
0.03558042645454407,
0.054601412266492844,
0.004738928750157356,
0.027188817039132118,
-0.051841504871845245,
-0.00477855559438467,
0.008265736512839794,
0.030657349154353142,
0.004680653568357229,
-0.02692774496972561,
-0.038060612976551056,
-0.018993010744452477,
0.060792554169893265,
-0.06034500151872635,
-0.006223777774721384,
-0.02166900224983692,
0.03114219754934311,
0.008531470783054829,
0.010741260834038258,
-0.005347320344299078,
-0.008522146381437778,
0.03901166468858719,
-0.028773898258805275,
-0.006200467702001333,
-0.04080187529325485,
-0.0008671330288052559,
-0.003972028847783804,
0.03671795502305031,
-0.09480654448270798,
0.05105828493833542,
0.015804199501872063,
0.018955715000629425,
0.00015340912796091288,
-0.0000013202945865486981,
0.03125408664345741,
-0.07951516658067703,
-0.011123545467853546,
0.010172496549785137,
-0.007477857172489166,
-0.07216785103082657,
-0.0561305470764637,
0.0020349654369056225,
0.04744056984782219,
-0.037202805280685425,
0.01933799870312214,
-0.00886247307062149,
0.05217716842889786,
-0.01794872246682644,
0.04430770128965378,
-0.02219114638864994,
0.02051282487809658,
-0.10069932043552399,
0.029016323387622833,
0.03735198825597763,
-0.027039632201194763,
0.04180886596441269,
0.017790213227272034,
0.06254547089338303,
0.024503501132130623,
0.060233112424612045,
-0.021463874727487564,
0.08242426067590714,
0.012018650770187378,
0.033044297248125076,
0.05486248433589935,
0.0015594408614560962,
0.0023531473707407713,
0.03517017140984535,
-0.002125874627381563,
0.014657345600426197,
0.04050350561738014,
-0.01769697293639183,
-0.012736599892377853,
0.05456411466002464,
-0.03265268728137016,
-0.03395804762840271,
0.027170168235898018,
0.06951982527971268,
0.029296044260263443,
-0.0016317019471898675,
-0.005006994120776653,
0.01093706488609314,
0.013622380793094635,
-0.06582751870155334,
0.03287646546959877,
-0.02383217215538025,
-0.009179488755762577,
-0.05448952317237854,
-0.02972494810819626,
-0.009351983666419983,
0.026256415992975235,
0.025976695120334625,
-0.035766907036304474,
-0.04747786745429039,
-0.057435911148786545,
-0.04076457768678665,
-0.015888115391135216,
-0.009263405576348305,
0.0034125882666558027,
-0.025976695120334625,
-0.03543124347925186,
-0.006111889611929655,
-0.011701634153723717,
0.023216787725687027,
0.023981356993317604,
-0.013445224612951279,
0.01624242775142193,
0.009743591770529747,
0.11919815838336945,
-0.05034966021776199,
0.026741264387965202,
-0.05784616619348526,
0.037762247025966644,
0.03000466898083687,
0.020344993099570274,
-0.005594406742602587,
-0.00801398791372776,
-0.009184150956571102,
-0.048745930194854736,
0.05851749703288078,
-0.020587416365742683,
-0.003358975052833557,
0.005249418318271637,
-0.019282056018710136,
0.024242429062724113,
0.004368299152702093,
0.0029230776708573103,
0.03252215310931206,
-0.024671334773302078,
0.030825180932879448,
0.014806530438363552,
0.011860142461955547,
-0.007958043366670609,
-0.0617995485663414,
0.011860142461955547,
0.03457343578338623,
-0.07395806163549423,
0.001118881395086646,
0.00449417345225811,
0.01238228753209114,
0.03901166468858719,
0.04833567515015602,
-0.04244289919734001,
-0.003888112725690007,
0.09048020839691162,
0.048745930194854736,
0.02614452876150608,
-0.035263411700725555,
0.01993473619222641,
0.040279727429151535,
0.049305371940135956,
0.0025407930370420218,
0.014629374258220196,
0.0021468535996973515,
0.005976691376417875,
-0.0018822847632691264,
-0.026648024097085,
0.06254547089338303,
0.02948252484202385,
-0.006867134477943182,
-0.012773895636200905,
0.08734733611345291,
0.02554779127240181,
-0.04796271398663521,
0.001731935073621571,
0.029053619131445885,
-0.021501170471310616,
0.006083917338401079,
-0.03968299180269241,
0.03401399403810501,
-0.039123550057411194,
-0.020326344296336174,
0.0033962710294872522,
-0.025118887424468994,
-0.01740792952477932,
0.052065279334783554,
0.0589650496840477,
0.09331470727920532,
-0.03200000524520874,
0.011179490014910698,
0.031104901805520058,
-0.013398604467511177,
0.005529138725250959,
-0.0072447569109499454,
-0.039757583290338516,
0.0019836833234876394,
-0.01883450336754322,
0.05568299442529678,
0.00855478085577488,
-0.02972494810819626,
-0.004946387838572264,
0.0504988469183445,
0.013669000938534737,
0.03852681443095207,
-0.03826574236154556,
0.03405128791928291,
0.006596738006919622,
0.02334732376039028,
0.059076935052871704,
0.02191142737865448,
0.07809791713953018,
0.016960376873612404,
0.0005163171445019543,
-0.03682984411716461,
-0.01600000262260437,
-0.038862477988004684,
-0.01306293997913599,
0.021016322076320648,
0.03144056722521782,
0.012186482548713684,
-0.030116556212306023,
-0.026163175702095032,
-0.014088581316173077,
0.056354325264692307,
-0.007822845131158829,
0.018349654972553253,
-0.0644102692604065,
-0.0018041961593553424,
0.061613067984580994,
0.008955713361501694,
-0.01937529630959034,
-0.0023706299252808094,
-0.05221446231007576,
-0.03809791058301926,
0.03181352838873863,
0.006111889611929655,
0.0147505858913064,
0.01880653016269207,
0.06064337119460106,
-0.016130540519952774,
0.018741263076663017,
0.03062005341053009,
-0.0017331006238237023,
0.032391615211963654,
-0.04952915012836456,
-0.005324010271579027,
-0.01882517896592617,
-0.013967368751764297,
0.010331004858016968,
0.028289049863815308,
-0.05329604819417,
0.018069934099912643,
-0.01913287118077278,
-0.024522149935364723,
0.037184156477451324,
-0.0035804202780127525,
0.03688579052686691,
0.021221449598670006,
0.0036620055325329304,
0.013193476013839245,
-0.05273660644888878,
0.020662009716033936,
-0.05672728642821312,
0.0731375440955162,
-0.05721213296055794,
-0.01631701923906803,
0.011132869869470596,
0.073100246489048,
0.03544989228248596,
-0.030526813119649887,
0.01746387407183647,
-0.037482526153326035,
-0.07194407284259796,
-0.005454546771943569,
0.018965039402246475,
0.03451748937368393,
-0.010032636113464832,
0.038601405918598175,
-0.03091842122375965,
-0.0393473282456398,
-0.03621445968747139,
-0.019020983949303627,
0.001728438655845821,
-0.06653614342212677,
-0.01798601821064949,
-0.050648029893636703,
-0.017631705850362778,
0.06291843205690384,
0.023962710052728653,
-0.012941727414727211,
0.058032646775245667,
0.029874132946133614,
-0.00256177200935781,
0.04598602280020714,
0.013118883594870567,
0.003060606773942709,
0.02194872312247753,
0.003067599842324853,
-0.03282051905989647,
0.05747320502996445,
-0.010592076927423477,
0.002412587869912386,
0.04993940517306328,
-0.009603731334209442,
0.03990676999092102,
-0.07619582116603851,
-0.03725874796509743,
-0.0003814103256445378,
0.006344989873468876,
-0.06981819868087769,
0.043934740126132965,
-0.010610724799335003,
-0.0067132883705198765,
0.023440564051270485,
0.02748718485236168,
-0.010191144421696663,
0.05225175991654396,
-0.057435911148786545,
0.09696971625089645,
0.020419584587216377,
0.04993940517306328,
-0.0036876464728266,
0.003643357427790761,
-0.0728391781449318,
0.009715619497001171,
-0.014312357641756535,
0.0013088580453768373,
-0.04468066245317459,
-0.024503501132130623,
-0.004815851803869009,
-0.06097903475165367,
-0.04747786745429039,
-0.0036386954598128796,
0.006386947818100452,
-0.006750584114342928,
-0.05109558254480362,
0.04102564975619316,
-0.006237763445824385,
0.07336132228374481,
-0.013678324408829212,
-0.03759441524744034,
-0.05400467291474342,
-0.028475530445575714,
0.04516551271080971,
-0.008606062270700932,
-0.06780420988798141,
0.019748255610466003,
0.024876462295651436,
0.011552450247108936,
0.07690444588661194,
-0.024578094482421875,
-0.019766904413700104,
0.005715618841350079,
0.034144528210163116,
0.023533804342150688,
0.004755245987325907,
0.047589752823114395,
-0.03427506610751152,
-0.026554783806204796,
-0.03200000524520874,
0.02276923507452011,
0.027058281004428864,
-0.010153848677873611,
0.014564105309545994,
0.020568769425153732,
-0.017799537628889084,
0.04378555715084076,
0.018340330570936203,
-0.024279724806547165,
-0.008648020215332508,
0.027393944561481476,
-0.029277395457029343,
-0.03759441524744034,
0.036699309945106506,
0.029818188399076462,
-0.09786482155323029,
0.0364195890724659,
-0.05034966021776199,
-0.036923084408044815,
-0.002463869983330369,
0.04796271398663521,
0.022638699039816856,
0.040839169174432755,
-0.05676458030939102,
-0.04165968298912048,
-0.03600933030247688,
0.007286714855581522,
-0.03848952054977417,
0.022638699039816856,
-0.005780886858701706,
-0.04106294736266136,
0.017855482175946236,
-0.07116085290908813,
0.029277395457029343,
0.001914918888360262,
-0.005072262138128281,
-0.009379955008625984,
-0.022582756355404854,
0.012932403944432735,
0.013501168228685856,
0.04326341301202774,
-0.028773898258805275,
-0.007202798966318369,
-0.025641031563282013,
0.023086251690983772,
0.040317025035619736,
-0.006503497716039419,
0.01682984083890915,
0.03533800318837166,
-0.00016899770707823336,
0.0020582755096256733,
-0.008857810869812965,
-0.02109091356396675,
-0.05255012959241867,
-0.03766900673508644,
0.003172494936734438,
-0.003037296701222658,
-0.028307698667049408,
0.035524483770132065,
-0.020680656656622887,
0.0365314781665802,
-0.0896596908569336,
-0.011347321793437004,
-0.005202798172831535,
0.02888578735291958,
-0.02864336222410202,
0.0017913756892085075,
-0.08458743244409561,
0.01792074926197529,
-0.0026923082768917084,
-0.08607926964759827,
-0.08510957658290863,
0.06567833572626114,
0.01569231040775776,
-0.04177157208323479,
-0.0033403271809220314,
-0.02836364321410656,
0.05974826589226723,
-0.03257809579372406,
0.0017505831783637404,
-0.038377631455659866,
-0.02222844399511814,
-0.017351984977722168,
0.003799534635618329,
-0.0033473200164735317,
-0.04576224833726883,
0.019505832344293594,
-0.0014417252968996763,
0.029818188399076462,
-0.033790215849876404,
-0.10442892462015152,
0.0020093244966119528,
-0.046470873057842255,
-0.024540798738598824,
-0.026219120249152184,
0.02306760475039482,
-0.034685321152210236,
-0.0005597320850938559,
-0.05821912735700607,
-0.058592088520526886,
-0.0011783218942582607,
-0.04725408926606178,
0.011934734880924225,
-0.03196271136403084,
-0.06918416172266006,
0.07537531107664108,
-0.02916550822556019,
0.003829837776720524,
0.044009335339069366,
-0.0477016419172287,
-0.03237296640872955,
0.017296040430665016,
0.028214458376169205,
-0.09398603439331055,
-0.03349184989929199,
0.03265268728137016,
-0.029669003561139107,
0.014909094199538231,
-0.05974826589226723,
-0.01740792952477932,
-0.022694643586874008,
0.05031236633658409,
-0.0013496506726369262,
0.0019778558053076267,
-0.03759441524744034,
0.038377631455659866,
0.01576690375804901,
-0.045948728919029236,
0.09212122857570648,
-0.019860144704580307,
-0.0048717958852648735,
-0.05445222556591034,
-0.026349656283855438,
-0.03125408664345741,
-0.007221446838229895,
0.03257809579372406,
0.05806994438171387,
0.023701636120676994,
0.013986016623675823,
-0.09294174611568451,
-0.01659674011170864,
-0.01876923441886902,
0.02157576195895672,
-0.026349656283855438,
-0.07421912997961044,
-0.015850819647312164,
0.028475530445575714,
-0.017324013635516167,
0.002501165959984064,
-0.03151515871286392,
-0.027170168235898018,
-0.004386947490274906,
0.001399767235852778,
0.01248485129326582,
-0.03531935438513756,
-0.029072267934679985,
0.04658276215195656,
0.01502098236232996,
0.009403265081346035,
0.009240095503628254,
0.019766904413700104,
-0.038377631455659866,
0.018582753837108612,
0.0168484877794981,
0.023738933727145195,
0.03196271136403084,
0.030526813119649887,
-0.04796271398663521,
0.09764104336500168,
-0.0037086254451423883,
-0.031310029327869415,
0.008251749910414219,
-0.019468536600470543,
-0.0007797204307280481,
-0.022638699039816856,
-0.001437063212506473,
-0.049342669546604156,
0.02638695202767849,
0.02672261744737625,
0.04177157208323479,
-0.07153381407260895,
-0.010871796868741512,
-0.007258743047714233,
-0.008111889474093914,
-0.0036643364001065493,
-0.01852681115269661,
0.004212121944874525,
-0.10890445113182068,
0.02273193933069706,
0.04576224833726883,
0.013435900211334229,
-0.031310029327869415,
-0.006130537483841181,
0.025100238621234894,
0.020550120621919632,
-0.04326341301202774,
0.007701633498072624,
-0.033324018120765686,
0.03751982003450394,
-0.02862471528351307,
-0.005771562922745943,
0.014620049856603146,
0.02271329239010811,
0.00955711118876934,
-0.02806527353823185,
-0.02700233645737171,
0.04464336484670639,
0.018461542204022408,
-0.08257344365119934,
0.024018652737140656,
0.019170166924595833,
-0.03794872760772705,
-0.012326342985033989,
0.0393100306391716,
0.036904435604810715,
-0.06855013221502304,
0.014843826182186604,
0.04415851831436157,
-0.06355246156454086,
-0.0038251755759119987,
0.030452221632003784,
-0.01349184475839138,
-0.002090909518301487,
0.010806528851389885,
0.026890449225902557,
0.013827509246766567,
-0.03295105695724487,
-0.02357110008597374,
-0.008177158422768116,
0.00045425418647937477,
-0.05974826589226723,
0.025044294074177742,
-0.0337715707719326,
-0.03848952054977417,
0.01475991029292345,
0.026461543515324593,
0.04542658478021622,
-0.01220513042062521,
0.005501166917383671,
-0.047589752823114395,
-0.025752918794751167,
0.03901166468858719,
0.05251283198595047,
-0.0013414921704679728,
0.030135205015540123,
0.0009691144223324955,
0.0364382378757,
0.013958045281469822,
-0.003969697747379541,
-0.05281120166182518,
-0.008344990201294422,
-0.01625175215303898,
-0.0019801869057118893,
-0.002972028683871031,
-0.01626107655465603,
0.011580422520637512,
-0.041435904800891876,
-0.055720292031764984,
-0.07145922631025314,
-0.01907692663371563,
0.033510494977235794,
0.015216786414384842,
-0.0064895120449364185,
0.01854545809328556,
-0.036046627908945084,
-0.004941726103425026,
0.06687180697917938,
0.016624711453914642,
0.004055944737046957,
-0.016456879675388336,
0.00326806609518826,
0.0016631705220788717,
0.0049836840480566025,
0.017249420285224915,
0.0645594522356987,
0.02748718485236168,
-0.08898836374282837,
0.028811195865273476,
0.038937073200941086,
-0.02834499441087246,
0.033025648444890976,
-0.006983684375882149,
0.002636364195495844,
-0.027020985260605812,
-0.014927742071449757,
0.012979024089872837,
-0.019580423831939697,
0.00033741266815923154,
0.03682984411716461,
0.016634035855531693,
0.01333333645015955,
0.016195807605981827
] |
729,605 | tinytuya.core | bin2hex | null | def bin2hex(x, pretty=False):
if pretty:
space = " "
else:
space = ""
if IS_PY2:
result = "".join("%02X%s" % (ord(y), space) for y in x)
else:
result = "".join("%02X%s" % (y, space) for y in x)
return result
| (x, pretty=False) | [
-0.016537640243768692,
0.01622174307703972,
0.024759503081440926,
-0.00900733657181263,
0.03630255535244942,
-0.04402069002389908,
-0.005365982186049223,
0.009630593471229076,
0.06840453296899796,
-0.022881196811795235,
0.09507649391889572,
0.03362169861793518,
0.026569508016109467,
-0.017160898074507713,
-0.003069324651733041,
-0.01608514040708542,
0.00642466451972723,
0.038829732686281204,
0.05696393549442291,
0.0595252625644207,
0.026279224082827568,
0.013668953441083431,
-0.02206157147884369,
-0.01584608294069767,
-0.005788601003587246,
0.034697454422712326,
-0.02214694954454899,
0.04231313616037369,
-0.04767484962940216,
-0.018919676542282104,
0.010877106338739395,
-0.044942766427993774,
0.03640500828623772,
-0.056724876165390015,
0.005361713003367186,
0.005284873303025961,
0.006125842686742544,
0.029182063415646553,
0.0010229303734377027,
-0.04641126096248627,
0.05221693962812424,
-0.08722175657749176,
-0.05706638842821121,
-0.027167152613401413,
0.024537522345781326,
-0.02397402934730053,
-0.0032037943601608276,
0.050816748291254044,
-0.06789226830005646,
-0.04757239669561386,
0.011158851906657219,
-0.02759403921663761,
0.03372415155172348,
0.035073116421699524,
0.08127947151660919,
0.002147246617823839,
-0.02183958888053894,
0.030394425615668297,
0.030753010883927345,
0.027337906882166862,
-0.006979618687182665,
0.07055604457855225,
0.09391535818576813,
-0.04415729269385338,
-0.028584420680999756,
0.0014663602923974395,
-0.010484369471669197,
-0.0594228096306324,
0.004670154768973589,
0.01750240847468376,
0.006313673220574856,
0.044942766427993774,
-0.03695142641663551,
-0.012738337740302086,
0.011346682906150818,
0.0398542620241642,
0.007730941753834486,
0.00856764242053032,
-0.027252528816461563,
0.007419313304126263,
0.034697454422712326,
-0.020797982811927795,
-0.04374748095870018,
0.022693365812301636,
0.003799303201958537,
-0.03616595268249512,
-0.006843014620244503,
0.011987014673650265,
0.042722951620817184,
0.026979321613907814,
0.016973067075014114,
-0.007308322470635176,
-0.025288844481110573,
0.05286581069231033,
-0.044396352022886276,
-0.05132901296019554,
0.07062435150146484,
-0.0023991104681044817,
0.021002888679504395,
-0.04692352935671806,
-0.04723088815808296,
-0.00034444525954313576,
-0.08530929684638977,
0.027440359815955162,
-0.036609914153814316,
-0.013583576306700706,
-0.010159933939576149,
-0.0024652781430631876,
0.025049787014722824,
-0.05139731615781784,
-0.014975231140851974,
-0.024998560547828674,
0.08285041898488998,
-0.10279463231563568,
0.026245074346661568,
-0.010458756238222122,
0.09268592298030853,
-0.010381915606558323,
0.058773938566446304,
-0.058876391500234604,
0.10115537792444229,
-0.01774146594107151,
0.007598606403917074,
0.029062533751130104,
0.003077862551435828,
0.04811881482601166,
-0.03353632241487503,
0.021429777145385742,
-0.011380833573639393,
-0.0052421847358345985,
0.030326122418045998,
0.05716884136199951,
-0.03592689335346222,
0.01789514534175396,
0.04630880802869797,
-0.016401037573814392,
-0.017186511307954788,
0.004789683502167463,
0.03362169861793518,
-0.03616595268249512,
0.01789514534175396,
-0.0393761470913887,
0.042722951620817184,
0.01004894357174635,
-0.0400250181555748,
0.006364900153130293,
0.020319867879152298,
0.026381678879261017,
0.030531030148267746,
0.02187374047935009,
-0.005613577086478472,
0.012422440573573112,
-0.03425349295139313,
-0.015513109974563122,
0.0006211220170371234,
0.03609764948487282,
-0.022932423278689384,
-0.054880719631910324,
0.06888264417648315,
0.003611472435295582,
0.013797019608318806,
0.03725878521800041,
0.01191017497330904,
-0.01760486140847206,
-0.006898509804159403,
-0.004401215352118015,
-0.03152140974998474,
0.028362438082695007,
0.03613179922103882,
-0.01782684214413166,
0.02566450648009777,
-0.028738100081682205,
-0.025083938613533974,
0.04746994376182556,
0.026449980214238167,
-0.019090430811047554,
-0.026893943548202515,
0.02201034501194954,
-0.01085149310529232,
-0.06819962710142136,
-0.0016467204550281167,
-0.01774146594107151,
0.03158971294760704,
-0.02600601688027382,
0.011500362306833267,
-0.04565994068980217,
0.054744116961956024,
0.01699868030846119,
-0.0012795967049896717,
-0.04733334109187126,
0.0029391238931566477,
0.0019796930719166994,
0.02183958888053894,
0.01727188751101494,
0.016264433041214943,
-0.054436758160591125,
0.01086856797337532,
-0.01501791924238205,
-0.012234609574079514,
-0.07151227444410324,
-0.028567343950271606,
-0.009212243370711803,
0.005511124152690172,
-0.008657288737595081,
0.07076095044612885,
-0.0297967828810215,
0.034646227955818176,
-0.07513228803873062,
-0.015991223976016045,
-0.079913429915905,
0.06874604523181915,
-0.0046616168692708015,
-0.05344637855887413,
-0.013532349839806557,
-0.06447716057300568,
0.032784998416900635,
0.013515274040400982,
0.016255894675850868,
0.009485451504588127,
-0.008413962088525295,
-0.03620010241866112,
-0.012670035474002361,
0.029438195750117302,
0.028738100081682205,
0.02556205354630947,
0.04900674149394035,
0.00490067433565855,
0.009459838271141052,
0.025203466415405273,
-0.0198929812759161,
0.09220780432224274,
0.010074556805193424,
-0.05522223189473152,
0.042927857488393784,
-0.03375830128788948,
0.010262387804687023,
0.052899960428476334,
-0.06789226830005646,
0.01608514040708542,
-0.044567108154296875,
-0.009664744138717651,
0.010731964372098446,
0.07472247630357742,
-0.04712843522429466,
0.07294662296772003,
-0.02361544407904148,
0.02218109928071499,
-0.015128910541534424,
-0.05313901603221893,
-0.015333816409111023,
-0.07588361203670502,
0.007304053753614426,
0.010825879871845245,
-0.03510726988315582,
-0.02006373554468155,
-0.02574988454580307,
-0.016341272741556168,
0.04565994068980217,
-0.03719048202037811,
0.0593203566968441,
-0.042518045753240585,
0.025118090212345123,
0.011782108806073666,
-0.06898509711027145,
0.07130736857652664,
-0.05563204362988472,
-0.03184584528207779,
0.04535258188843727,
0.008631675504148006,
0.023273933678865433,
-0.00904148817062378,
-0.10935162752866745,
-0.015607025474309921,
0.01780976727604866,
-0.003156836610287428,
0.005737374536693096,
-0.026671960949897766,
0.0008847253629937768,
-0.02361544407904148,
-0.01775854080915451,
-0.02585233747959137,
-0.00875120423734188,
0.024691201746463776,
0.008123678155243397,
-0.005438553169369698,
0.0023820349015295506,
-0.00700950063765049,
-0.005485510919243097,
-0.020951662212610245,
-0.030667632818222046,
0.062428101897239685,
0.02187374047935009,
-0.0033318607602268457,
-0.03736123815178871,
-0.03135065361857414,
0.01799759827554226,
0.047094281762838364,
-0.0301041416823864,
0.014975231140851974,
-0.016230281442403793,
-0.014838626608252525,
0.05344637855887413,
-0.014403200708329678,
-0.028311211615800858,
-0.009143941104412079,
-0.00994649063795805,
-0.04207408055663109,
0.002161120530217886,
0.005536737386137247,
0.01660594344139099,
-0.07287831604480743,
-0.018509862944483757,
0.0013745793839916587,
0.010971021838486195,
0.01710113324224949,
-0.02190789207816124,
-0.03420226648449898,
-0.04784560576081276,
0.021327324211597443,
0.016836462542414665,
-0.01606806367635727,
0.044669561088085175,
-0.008836581371724606,
0.044772014021873474,
0.008140753954648972,
0.01380555797368288,
-0.03211905434727669,
0.01201262790709734,
0.027115926146507263,
-0.022232327610254288,
0.005651996936649084,
0.024298464879393578,
0.04405483976006508,
0.014215370640158653,
-0.044942766427993774,
0.0007561253733001649,
0.040468983352184296,
-0.009024412371218204,
-0.10702935606241226,
0.007581530604511499,
0.015197212807834148,
0.0402982272207737,
0.05225108936429024,
-0.00147703243419528,
-0.01186748594045639,
-0.022915348410606384,
-0.06362338364124298,
0.03404858708381653,
-0.050577688962221146,
0.026893943548202515,
0.020968738943338394,
-0.05245599523186684,
0.03510726988315582,
0.022522609680891037,
0.05522223189473152,
-0.03348509594798088,
-0.018544014543294907,
-0.01396777480840683,
0.011500362306833267,
0.07048774510622025,
0.03413396328687668,
-0.009092714637517929,
-0.018800146877765656,
-0.026279224082827568,
0.010877106338739395,
0.018561089411377907,
-0.042552195489406586,
-0.016768161207437515,
0.021310249343514442,
-0.003731001168489456,
-0.007107685320079327,
0.04118615388870239,
-0.02977970615029335,
-0.060788851231336594,
-0.02221525087952614,
0.02957480028271675,
-0.04166426882147789,
-0.006983887404203415,
-0.02156638167798519,
-0.05419769883155823,
0.013284754008054733,
-0.006185607053339481,
-0.03777104988694191,
0.007859008386731148,
-0.006561268586665392,
0.016699858009815216,
0.007090609520673752,
-0.0196368470788002,
0.040878795087337494,
0.028311211615800858,
-0.07260511070489883,
0.02006373554468155,
0.0060490029864013195,
0.002563462359830737,
0.011244229972362518,
-0.02561328001320362,
0.07240020483732224,
-0.005703223403543234,
0.019192883744835854,
0.005758719053119421,
-0.032528866082429886,
0.0034492549020797014,
0.06478451937437057,
-0.04630880802869797,
-0.03143603354692459,
0.0029860814101994038,
-0.036609914153814316,
-0.017263351008296013,
-0.00008744533988647163,
0.002766234101727605,
-0.021259022876620293,
0.048562780022621155,
0.0007422515191137791,
-0.027337906882166862,
0.03322895988821983,
-0.01770731434226036,
-0.02016618847846985,
-0.011286919005215168,
0.014044615440070629,
0.0068558212369680405,
-0.04402069002389908,
-0.0099123390391469,
-0.06427225470542908,
0.015385042876005173,
-0.003071459010243416,
0.031077446416020393,
-0.012601733207702637,
0.08722175657749176,
0.024708276614546776,
0.023069027811288834,
0.02617677114903927,
0.009673281572759151,
0.03316066041588783,
-0.05122656002640724,
-0.013353056274354458,
0.03427056968212128,
0.07731795310974121,
0.007282709237188101,
0.0395127534866333,
0.05737374722957611,
0.016716934740543365,
0.004866523202508688,
-0.011705269105732441,
-0.03579029068350792,
0.02602309174835682,
0.021156568080186844,
-0.031094521284103394,
-0.013651877641677856,
0.026347527280449867,
-0.000268139032414183,
0.045011069625616074,
-0.041015397757291794,
0.025101013481616974,
-0.011645504273474216,
-0.013122537173330784,
-0.08489948511123657,
0.04374748095870018,
0.0076669082045555115,
-0.02977970615029335,
0.01669131964445114,
0.0035517080686986446,
0.020576002076268196,
-0.04538673162460327,
-0.0805964544415474,
-0.02578403428196907,
-0.0782058835029602,
0.0009220780921168625,
0.04822126775979996,
0.028294136747717857,
-0.0011814124882221222,
0.02600601688027382,
0.0020586673635989428,
0.0029284516349434853,
0.050816748291254044,
0.06778981536626816,
-0.02182251401245594,
0.026928095147013664,
0.011022248305380344,
-0.058876391500234604,
-0.032563015818595886,
-0.04835787042975426,
-0.04576239362359047,
0.03742953762412071,
-0.007645564153790474,
0.05296826362609863,
-0.014206832274794579,
0.07260511070489883,
0.0028324017766863108,
-0.010774653404951096,
0.004260342102497816,
0.05747620016336441,
0.04210823029279709,
-0.05542713776230812,
-0.0038526642601937056,
0.058569032698869705,
-0.03592689335346222,
-0.03213612735271454,
-0.03404858708381653,
-0.05607600510120392,
0.007449195720255375,
0.0011910174507647753,
-0.05013372749090195,
-0.005698954686522484,
-0.06427225470542908,
-0.03345094248652458,
0.040400680154561996,
0.005792870186269283,
-0.005485510919243097,
-0.006288059987127781,
-0.03770274668931961,
-0.052490148693323135,
-0.04958730936050415,
0.017177972942590714,
-0.03811255842447281,
-0.006262446753680706,
0.02368374541401863,
-0.011543051339685917,
-0.03179461881518364,
0.00885365717113018,
-0.010074556805193424,
-0.023222707211971283,
0.058569032698869705,
-0.01608514040708542,
-0.015077684074640274,
-0.008166367188096046,
-0.012524893507361412,
0.03409981355071068,
0.0023201361764222383,
-0.04589899629354477,
0.022829970344901085,
-0.03596104308962822,
0.04186917468905449,
-0.028840553015470505,
-0.01965392380952835,
-0.02378619834780693,
0.05751034989953041,
-0.022778743878006935,
0.04822126775979996,
0.01185894850641489,
-0.0019679537508636713,
0.027064699679613113,
-0.008785354904830456,
-0.01806589961051941,
-0.04887013882398605,
-0.047094281762838364,
0.03575613722205162,
0.012738337740302086,
0.02610846981406212,
0.016264433041214943,
-0.024571672081947327,
-0.0597984716296196,
0.007782168220728636,
0.022693365812301636,
0.05529053136706352,
-0.017408492043614388,
-0.056793179363012314,
-0.02216402441263199,
0.002196338726207614,
-0.02769649215042591,
0.026484131813049316,
-0.030855463817715645,
-0.007790706120431423,
-0.005391595419496298,
-0.010825879871845245,
-0.060413189232349396,
0.01968807354569435,
-0.005054353736341,
-0.052899960428476334,
0.00418563699349761,
-0.03375830128788948,
-0.0028708218596875668,
0.02605724334716797,
-0.010603898204863071,
0.01579485647380352,
-0.03339971601963043,
0.0020245162304490805,
-0.028089230880141258,
-0.06478451937437057,
0.0399908684194088,
-0.018919676542282104,
-0.01086856797337532,
-0.0019370042718946934,
-0.05587109923362732,
-0.03763444721698761,
0.05330977216362953,
0.00027014006627723575,
0.080869659781456,
-0.0150606082752347,
-0.003154702251777053,
-0.03365584835410118,
-0.02382034994661808,
-0.04518182575702667,
0.004606121685355902,
0.0008916623191908002,
0.046786922961473465,
-0.05593940243124962,
-0.017212124541401863,
0.02561328001320362,
0.007363818120211363,
-0.012832253240048885,
0.09084176272153854,
-0.01295178197324276,
0.062257345765829086,
0.012243147939443588,
0.05389034003019333,
0.014488578774034977,
0.011235691606998444,
-0.06826792657375336,
-0.01086856797337532,
-0.03708802908658981,
-0.03310943394899368,
0.04583069682121277,
0.026825642213225365,
0.03239225968718529,
-0.05716884136199951,
0.04968976229429245,
0.0147617869079113,
-0.052899960428476334,
-0.06888264417648315,
0.01665716990828514,
-0.02788432314991951,
0.038454070687294006,
-0.04958730936050415,
0.007816319353878498,
0.010714888572692871,
0.02214694954454899,
-0.02392280288040638,
0.058773938566446304,
0.0035837246105074883,
-0.038522373884916306,
0.02988215908408165,
0.028089230880141258,
0.01794637180864811,
0.01284932903945446,
-0.03444132208824158,
-0.042927857488393784,
-0.028089230880141258,
0.017288964241743088,
-0.028584420680999756,
0.04429389908909798,
0.003891084110364318,
0.005946549586951733,
-0.02373497188091278,
-0.010322151705622673,
0.0300016887485981,
0.0004202178679406643,
-0.010177009738981724,
-0.08667533844709396,
-0.060652244836091995,
-0.07554209977388382,
-0.009502526372671127,
-0.017519483342766762,
-0.0391029417514801,
0.03824916481971741,
0.06959982216358185,
0.02602309174835682,
0.012029703706502914,
0.01810005120933056,
-0.020456472411751747,
0.012840790674090385,
0.014488578774034977,
0.0016018971800804138,
0.006322211120277643,
0.018561089411377907,
-0.024332616478204727,
0.009536677971482277,
0.011158851906657219,
-0.02353006601333618,
-0.046582017093896866,
-0.05375373736023903,
0.02552790194749832,
-0.0402299240231514,
-0.04760655015707016,
-0.02014911361038685,
0.009434225037693977,
-0.020644303411245346,
0.0029220483265817165,
0.07424435764551163,
-0.013498198240995407,
-0.03249471262097359,
0.05146561563014984,
-0.019039204344153404,
0.014036077074706554,
-0.02803800255060196,
0.024571672081947327,
-0.04388408735394478,
-0.015837544575333595,
0.030889615416526794,
-0.012328525073826313,
0.003963654860854149,
-0.050714295357465744,
-0.024264313280582428,
0.01704990677535534,
0.05112410709261894,
-0.0011472614714875817,
0.031248200684785843,
0.0057757943868637085,
-0.012567582540214062,
0.08223570138216019,
-0.05132901296019554,
0.07315152883529663,
-0.042927857488393784,
0.040673889219760895,
0.08551420271396637,
0.05593940243124962,
-0.020985813811421394,
0.06393074244260788,
-0.026791490614414215,
0.01750240847468376,
0.04521597549319267,
-0.022522609680891037,
0.06263300776481628,
-0.004670154768973589,
-0.014650795608758926,
0.054607510566711426,
0.020985813811421394,
-0.04757239669561386,
-0.030770085752010345,
-0.012507818639278412,
0.042483892291784286,
0.036848973482847214,
0.008648750372231007,
0.02568158134818077,
0.02793554961681366,
-0.042518045753240585,
-0.013335980474948883,
0.00648442842066288,
0.009084176272153854,
0.01598268561065197,
-0.005237915553152561,
0.036575764417648315,
-0.06492112576961517,
0.01787806861102581,
0.06471621990203857,
0.03790765255689621,
0.06765320897102356,
-0.010228236205875874,
0.027303755283355713,
0.002851611701771617,
0.029216215014457703,
0.036370858550071716,
0.02008081041276455,
-0.018561089411377907,
0.04514767602086067,
0.03223858028650284,
0.008413962088525295,
0.06591150909662247,
0.05146561563014984,
-0.025391297414898872,
-0.05201203376054764,
-0.017323113977909088,
0.0590471476316452,
-0.058432430028915405,
0.012200458906590939,
0.06621886789798737,
-0.011150314472615719,
-0.08189418911933899,
0.028584420680999756,
-0.013515274040400982,
-0.0399225652217865,
-0.00910978950560093,
0.0393078476190567,
-0.04210823029279709,
-0.028686873614788055,
0.03244348615407944,
-0.0033724152017384768,
0.06123281270265579,
0.03186291828751564
] |
729,608 | tinytuya.core | decrypt | null | def decrypt(msg, key):
return AESCipher( key ).decrypt( msg, use_base64=False, decode_text=True )
| (msg, key) | [
0.06981678307056427,
-0.030133523046970367,
0.03970114141702652,
0.054365526884794235,
-0.00046496832510456443,
-0.05940864235162735,
0.0044395532459020615,
0.025465955957770348,
0.07403726130723953,
0.030240824446082115,
0.021102407947182655,
0.027969632297754288,
-0.022139644250273705,
0.019367719069123268,
-0.018366247415542603,
0.040523774921894073,
0.01818741485476494,
-0.03558795899152756,
0.022819213569164276,
-0.025072522461414337,
0.00025162496604025364,
0.0010612678015604615,
0.012929695658385754,
0.006183184217661619,
-0.010792629793286324,
0.030437540262937546,
0.05583196505904198,
0.012080234475433826,
0.051182281225919724,
-0.046210695058107376,
0.010488612577319145,
0.004072943702340126,
0.0025617964565753937,
0.06666930019855499,
-0.08784324675798416,
0.007435021921992302,
0.023767033591866493,
-0.028041165322065353,
0.003478320548310876,
-0.029060520231723785,
0.016631558537483215,
0.026610493659973145,
0.11524061113595963,
-0.037662431597709656,
-0.006053529679775238,
-0.013287363573908806,
-0.003985762130469084,
-0.004334488417953253,
-0.03517664223909378,
-0.0006588913965970278,
0.03124229423701763,
-0.034371890127658844,
0.04288438335061073,
0.04377855360507965,
0.04599609598517418,
-0.0017726917285472155,
-0.06058894842863083,
0.0010478552430868149,
-0.011409606784582138,
0.04613916203379631,
-0.021656792610883713,
-0.045960329473018646,
-0.05086037889122963,
0.04782020300626755,
-0.01560326386243105,
0.013957991264760494,
0.0244287196546793,
0.010730038397014141,
-0.02603822574019432,
-0.02187139354646206,
-0.01429777592420578,
0.02530500665307045,
-0.05808527395129204,
0.0389142706990242,
-0.031474776566028595,
-0.02555537410080433,
-0.007180183660238981,
0.026789328083395958,
-0.029078403487801552,
-0.007823986001312733,
0.025483841076493263,
-0.014574968256056309,
0.0027719265781342983,
0.04352818801999092,
0.015639029443264008,
-0.01301911287009716,
0.06581089645624161,
0.008065411821007729,
-0.03816317021846771,
0.002684745006263256,
0.0025908569805324078,
-0.013725507073104382,
-0.07110438495874405,
0.0320291630923748,
-0.02103087492287159,
-0.027236413210630417,
0.023892218247056007,
0.05114651471376419,
-0.022837096825242043,
0.016765683889389038,
0.00775245251134038,
0.10694271326065063,
-0.012876045890152454,
-0.009129473939538002,
0.028363067656755447,
-0.015907282009720802,
-0.03478320688009262,
-0.013287363573908806,
0.04106028005480766,
-0.012965462170541286,
-0.0017179237911477685,
0.025287123396992683,
-0.031134992837905884,
0.009201007895171642,
-0.03610657900571823,
0.019618086516857147,
-0.02353454940021038,
-0.022622495889663696,
-0.04249095171689987,
0.035248175263404846,
0.01650637574493885,
-0.0349799245595932,
-0.033334650099277496,
-0.05654729902744293,
-0.0031921863555908203,
-0.026073992252349854,
0.008020703680813313,
-0.027647731825709343,
0.04960854351520538,
-0.02544807270169258,
-0.04624646529555321,
0.023158999159932137,
0.019027933478355408,
0.012223301455378532,
-0.043814320117235184,
0.006035646423697472,
0.03236894682049751,
0.007135475054383278,
0.03927193954586983,
0.03930770605802536,
0.04978737607598305,
0.05769183859229088,
0.05965901166200638,
0.01906369999051094,
0.004935817327350378,
-0.05164724960923195,
0.020261887460947037,
-0.03233318030834198,
0.016095057129859924,
0.01782974600791931,
-0.009254657663404942,
0.039486538618803024,
0.01714123599231243,
-0.03916464000940323,
0.10737191140651703,
-0.01221435982733965,
-0.01525453757494688,
0.044815793633461,
-0.044243521988391876,
-0.01110558956861496,
0.0508246123790741,
0.03269084915518761,
-0.010265070013701916,
-0.04359972104430199,
0.06480942666530609,
-0.02423200197517872,
0.04478002339601517,
-0.00561538664624095,
-0.012956520542502403,
-0.01661367528140545,
-0.06101815029978752,
-0.0045401472598314285,
-0.04338512197136879,
-0.034854739904403687,
0.03394268825650215,
0.0005163830937817693,
-0.04406468942761421,
-0.0036839796230196953,
0.004182479344308376,
-0.038699671626091,
-0.04020187631249428,
0.0564042329788208,
0.0012451314833015203,
0.022336361929774284,
0.012715094722807407,
0.05214798450469971,
0.022783447057008743,
0.05497356131672859,
0.006965583190321922,
-0.09349440038204193,
-0.07264235615730286,
-0.008709213696420193,
-0.03469378873705864,
-0.030294474214315414,
-0.06323569267988205,
0.0408814437687397,
-0.0038963451515883207,
-0.0087986309081316,
-0.0723562240600586,
0.003075944259762764,
-0.005168301519006491,
-0.013582440093159676,
0.00040740612894296646,
0.01979692094027996,
-0.04166831448674202,
0.017472079023718834,
-0.022121760994195938,
0.03494415804743767,
-0.0193498358130455,
-0.038592368364334106,
0.04435082525014877,
-0.002356137614697218,
0.024088935926556587,
0.020476488396525383,
0.025680556893348694,
0.029847389087080956,
-0.04535229504108429,
0.034175172448158264,
-0.0018811097834259272,
0.05100344866514206,
0.03573102504014969,
0.025144055485725403,
-0.019242534413933754,
-0.001742513501085341,
0.009889517910778522,
0.024106819182634354,
-0.007224892266094685,
0.006773336324840784,
-0.04985890910029411,
-0.02923935279250145,
0.039879973977804184,
0.0131442965939641,
-0.012965462170541286,
0.04170408099889755,
0.023302065208554268,
-0.013010171242058277,
-0.04417198896408081,
-0.012321660295128822,
-0.03211858123540878,
0.01858084835112095,
0.013510906137526035,
-0.028327301144599915,
0.03401422128081322,
0.03866390511393547,
0.05951594561338425,
0.01090887188911438,
0.016005640849471092,
0.06387948989868164,
-0.017561495304107666,
0.043957389891147614,
-0.008472259156405926,
-0.03748359903693199,
0.014574968256056309,
-0.013323130086064339,
0.023767033591866493,
0.005351606290787458,
-0.01093569677323103,
-0.021120291203260422,
-0.008029645308852196,
0.039236173033714294,
0.025376539677381516,
-0.00835601706057787,
-0.08161982148885727,
0.00749314296990633,
0.04617492854595184,
-0.007663035299628973,
-0.030401773750782013,
0.03444342315196991,
0.019922103732824326,
-0.008378371596336365,
0.1074434444308281,
-0.03794856742024422,
0.03773396834731102,
0.017132293432950974,
0.0006030057556927204,
0.002577444538474083,
0.013278421945869923,
-0.0179281048476696,
0.06480942666530609,
0.057119566947221756,
0.013805982656776905,
-0.029400303959846497,
-0.003227953100576997,
0.022515196353197098,
0.027826564386487007,
0.01400269940495491,
0.002816634951159358,
-0.07632634043693542,
0.029346654191613197,
0.027039695531129837,
0.014682268723845482,
-0.024840038269758224,
0.005821045488119125,
0.03526605665683746,
-0.0244287196546793,
0.010551203973591328,
0.002245483919978142,
-0.0029395832680165768,
0.03973690792918205,
0.01284922007471323,
-0.016577908769249916,
0.032798148691654205,
0.02403528429567814,
0.0006583325448445976,
0.0051370058208703995,
0.01892063394188881,
-0.03199339658021927,
0.011445374228060246,
0.029310887679457664,
0.014619676396250725,
-0.0058568124659359455,
-0.004770396277308464,
0.009549734182655811,
-0.0006818044930696487,
-0.01695346087217331,
-0.003026764839887619,
0.029114169999957085,
0.008119062520563602,
0.04388585686683655,
0.038842737674713135,
0.06434445828199387,
-0.05153995007276535,
-0.017910221591591835,
0.051611483097076416,
-0.006008821073919535,
-0.03539124131202698,
-0.007837398909032345,
-0.047391001135110855,
0.09270752966403961,
0.0026042696554213762,
-0.022586729377508163,
0.017033934593200684,
-0.008288954384624958,
-0.07661247253417969,
-0.042634017765522,
-0.01425306685268879,
-0.04452965781092644,
-0.022050227969884872,
-0.0029708791989833117,
0.034175172448158264,
0.0014574967790395021,
-0.093136727809906,
0.0017402779776602983,
-0.009397724643349648,
0.004935817327350378,
0.012446844018995762,
-0.029471836984157562,
-0.011499023996293545,
-0.010282953269779682,
-0.047784436494112015,
0.019331952556967735,
-0.03276238217949867,
0.058299873024225235,
0.00507441395893693,
-0.027236413210630417,
0.0062055387534201145,
-0.020476488396525383,
0.014539201743900776,
0.01576421409845352,
-0.006415668409317732,
-0.008226362057030201,
0.02004728838801384,
-0.0427413173019886,
-0.000018843929865397513,
-0.10594124346971512,
0.021638909354805946,
-0.05386479198932648,
-0.09721414744853973,
0.0546516589820385,
0.046997565776109695,
0.00009046484046848491,
0.012598852626979351,
-0.027361596003174782,
0.05615386366844177,
-0.033084284514188766,
-0.013913282193243504,
-0.08147675544023514,
0.016032464802265167,
0.07911614328622818,
0.05035964399576187,
-0.03769820183515549,
-0.009102649055421352,
0.01705181784927845,
0.0408814437687397,
0.024357186630368233,
0.059337109327316284,
-0.034371890127658844,
-0.01695346087217331,
0.02038707211613655,
0.0008891401230357587,
-0.05415092408657074,
0.0301692895591259,
0.006826986558735371,
-0.017847629263997078,
-0.036875564604997635,
0.021138174459338188,
0.005749511998146772,
-0.004756983369588852,
-0.03288756683468819,
-0.04982314258813858,
0.010747921653091908,
0.08834397792816162,
-0.012053409591317177,
0.021603142842650414,
-0.009791160002350807,
0.06928028166294098,
-0.03440765663981438,
0.018831215798854828,
-0.020476488396525383,
-0.0013691975036635995,
0.019922103732824326,
0.023373600095510483,
-0.004734629299491644,
-0.02049437165260315,
-0.016917692497372627,
-0.018053289502859116,
0.035158757120370865,
-0.028416717424988747,
0.021209707483649254,
-0.010873105376958847,
0.00180286995600909,
-0.05314945429563522,
0.005172772333025932,
-0.11724355071783066,
-0.06824304163455963,
0.03632117807865143,
-0.01452131848782301,
-0.008481200784444809,
0.015844689682126045,
-0.021978694945573807,
-0.053042154759168625,
-0.06581089645624161,
0.0018017522525042295,
-0.014914752915501595,
-0.0179817546159029,
0.0160682313144207,
-0.01886698417365551,
-0.02879226766526699,
-0.015692681074142456,
-0.012876045890152454,
-0.043993156403303146,
0.009907402098178864,
0.03551642596721649,
0.007363488432019949,
0.00022242474369704723,
0.007578089367598295,
-0.021603142842650414,
0.08519650250673294,
0.009862693026661873,
-0.03278026729822159,
0.08476729691028595,
0.06058894842863083,
-0.027182763442397118,
0.0001320996234426275,
0.004734629299491644,
-0.03995150700211525,
0.06817150861024857,
0.051718782633543015,
-0.010077293962240219,
-0.008472259156405926,
-0.0263422429561615,
-0.00203311862424016,
-0.05622540041804314,
-0.01803540624678135,
0.01901005022227764,
0.03632117807865143,
-0.031134992837905884,
-0.029704321175813675,
0.05479472875595093,
0.006165300961583853,
0.0019817037973552942,
-0.03848506882786751,
0.02870285138487816,
-0.005154889076948166,
0.032207995653152466,
0.019689619541168213,
0.08977465331554413,
-0.00619212631136179,
-0.03934347257018089,
0.03129594400525093,
-0.04613916203379631,
-0.07561100274324417,
-0.0640583261847496,
-0.05486626178026199,
-0.0018475784454494715,
-0.05551006272435188,
-0.01901005022227764,
-0.021012991666793823,
0.025144055485725403,
0.020852040499448776,
-0.046568363904953,
0.08355122804641724,
0.006594502367079258,
0.00889698974788189,
0.017185945063829422,
-0.05615386366844177,
-0.018437782302498817,
0.009987876750528812,
0.0021873628720641136,
-0.06845764070749283,
-0.012938637286424637,
0.003006645943969488,
-0.01189245842397213,
-0.05665460228919983,
0.0007354546687565744,
-0.006429081317037344,
-0.00965703371912241,
-0.012071292847394943,
0.05347135663032532,
-0.007220421452075243,
-0.014485551044344902,
0.03217222914099693,
0.0029753500130027533,
-0.0624130554497242,
0.00022857215662952513,
0.0036683317739516497,
-0.04878590628504753,
-0.014753801748156548,
-0.0018151648109778762,
-0.014619676396250725,
0.005221951752901077,
0.03730476647615433,
-0.00771668553352356,
0.05232681706547737,
0.031868211925029755,
0.023015931248664856,
-0.05597503110766411,
-0.03834200277924538,
-0.009817984886467457,
0.0038292822428047657,
-0.0639510229229927,
-0.008932756260037422,
0.03281603381037712,
-0.03256566449999809,
-0.04585302993655205,
-0.020905690267682076,
-0.017963871359825134,
0.020083054900169373,
-0.09220679104328156,
0.004600503947585821,
-0.020852040499448776,
-0.010470728389918804,
-0.022336361929774284,
-0.030044106766581535,
-0.06134004890918732,
0.10007549077272415,
-0.029096286743879318,
0.03794856742024422,
-0.013153238222002983,
0.02029765583574772,
-0.05007351189851761,
0.01317112147808075,
-0.027969632297754288,
-0.025519607588648796,
0.061447352170944214,
-0.06076778098940849,
-0.06691966950893402,
-0.030687907710671425,
-0.06505979597568512,
0.001048414153046906,
-0.00151450012344867,
0.0039924681186676025,
-0.0018676972249522805,
0.016783567145466805,
0.04782020300626755,
0.038449302315711975,
-0.01301911287009716,
-0.007859752513468266,
0.038985803723335266,
-0.01744525320827961,
-0.0007002467755228281,
-0.03540912643074989,
0.04968007653951645,
0.006487201899290085,
-0.0015357367228716612,
0.03773396834731102,
0.008047528564929962,
-0.00992528535425663,
0.014905811287462711,
-0.003775632008910179,
-0.03134959563612938,
-0.04417198896408081,
0.0582641065120697,
0.04756983369588852,
-0.011597382836043835,
-0.015898339450359344,
0.01110558956861496,
-0.027433130890130997,
0.04048800840973854,
0.025662673637270927,
0.006335193291306496,
-0.04245518520474434,
0.06906567513942719,
0.04982314258813858,
0.033084284514188766,
0.012750862166285515,
0.02516193874180317,
0.07264235615730286,
-0.006268130615353584,
0.012241184711456299,
0.03149266168475151,
-0.023838568478822708,
0.06992407888174057,
-0.0024612024426460266,
0.014288834296166897,
0.04742676764726639,
-0.05583196505904198,
0.03773396834731102,
0.001342372503131628,
0.06319992244243622,
-0.01833048090338707,
-0.0012194240698590875,
0.033048518002033234,
0.021585259586572647,
0.0933513268828392,
0.011338073760271072,
-0.0007242775755003095,
-0.048428237438201904,
0.017373720183968544,
0.018849100917577744,
0.02176409400999546,
0.02991892211139202,
-0.0195107851177454,
0.0106585044413805,
0.008525908924639225,
0.031027693301439285,
-0.004061766434460878,
-0.02963278815150261,
-0.04585302993655205,
0.018384132534265518,
-0.05576043203473091,
0.04420775547623634,
0.06606126576662064,
0.04985890910029411,
0.02117394097149372,
0.005347135476768017,
0.022962281480431557,
-0.017311127856373787,
0.006777807138860226,
0.007944699376821518,
0.026521077379584312,
-0.019296184182167053,
-0.04914357513189316,
-0.01723959483206272,
-0.10050468891859055,
0.003087121294811368,
0.02598457597196102,
0.00768986064940691,
-0.03208281472325325,
0.017811862751841545,
0.024929454550147057,
-0.02569844014942646,
0.026950279250741005,
0.013358897529542446,
0.03362078592181206,
-0.05508086085319519,
0.05676190182566643,
0.010166711173951626,
0.009961051866412163,
-0.004931346513330936,
0.01730218715965748,
-0.012500493787229061,
-0.04445812478661537,
0.01709652692079544,
-0.010721095837652683,
-0.03641059622168541,
0.004654154181480408,
0.02943607047200203,
0.023570315912365913,
-0.02712911181151867,
0.08312202990055084,
0.0339963361620903,
-0.05164724960923195,
-0.050145044922828674,
-0.0038404595106840134,
-0.00884333997964859,
0.04814210534095764,
-0.05193338543176651,
0.07221315801143646,
0.04220481589436531,
0.0008170476648956537,
0.0428486168384552,
-0.023856451734900475,
-0.0026892158202826977,
-0.008150357753038406,
0.06194808706641197,
0.021460076794028282,
0.02516193874180317,
-0.05912251025438309,
-0.12704364955425262,
0.00481510441750288,
-0.05576043203473091,
-0.0022220120299607515,
-0.09757181257009506,
-0.002666861517354846,
-0.003990232944488525,
0.00240755220875144,
-0.030133523046970367,
-0.034318238496780396,
0.029793739318847656,
-0.07754240930080414,
-0.039093103259801865,
0.011624207720160484,
-0.013036996126174927,
-0.014825335703790188,
-0.027433130890130997,
-0.018634499981999397,
-0.009934226982295513,
-0.025000987574458122,
-0.04878590628504753,
-0.010765804909169674,
-0.053578656166791916,
0.007283013314008713,
-0.0332273505628109,
0.03632117807865143,
0.04728370159864426,
-0.08169135451316833,
0.0014820864889770746,
-0.02215752750635147,
0.004984996747225523,
-0.002367314649745822,
0.010309778153896332,
0.055295463651418686,
-0.010345544666051865,
-0.0017603968735784292,
-0.04796326905488968,
-0.044815793633461,
-0.020011520013213158,
0.019242534413933754,
0.02426776848733425,
0.012500493787229061,
-0.021942928433418274,
0.005369490012526512,
0.025537490844726562,
-0.07078248262405396,
-0.04406468942761421,
-0.07303579151630402,
-0.024553904309868813,
0.004249542020261288,
0.03503357246518135,
-0.048571303486824036,
0.04717640206217766,
-0.012965462170541286,
0.040559545159339905,
-0.03540912643074989,
0.01100723072886467,
-0.02103087492287159,
0.04703333228826523,
0.015272420831024647,
-0.012339543551206589,
-0.03523029014468193,
0.02230059541761875,
-0.0488574393093586,
0.053685955703258514,
-0.00007949728751555085,
0.016425900161266327,
-0.051325347274541855,
-0.011651032604277134,
-0.0002798472123686224,
-0.05007351189851761,
-0.01199081726372242,
0.03379961848258972,
0.002624388551339507,
-0.035158757120370865,
-0.04764137044548988,
-0.00855273474007845,
0.0175972618162632,
0.02870285138487816
] |
729,609 | tinytuya.core | decrypt_udp | null | def decrypt_udp(msg):
try:
header = parse_header(msg)
except:
header = None
if not header:
return decrypt(msg, udpkey)
if header.prefix == PREFIX_55AA_VALUE:
payload = unpack_message(msg).payload
try:
if payload[:1] == b'{' and payload[-1:] == b'}':
return payload.decode()
except:
pass
return decrypt(payload, udpkey)
if header.prefix == PREFIX_6699_VALUE:
unpacked = unpack_message(msg, hmac_key=udpkey, no_retcode=None)
payload = unpacked.payload.decode()
# app sometimes has extra bytes at the end
while payload[-1] == chr(0):
payload = payload[:-1]
return payload
return decrypt(msg, udpkey)
| (msg) | [
0.03800623491406441,
0.032130271196365356,
-0.001140254084020853,
-0.014314848929643631,
-0.026343608275055885,
-0.03982796147465706,
0.025772085413336754,
0.04943668097257614,
0.006425161380320787,
-0.02921907976269722,
-0.001214484916999936,
0.014493449591100216,
-0.02311093360185623,
0.008398699574172497,
0.020199742168188095,
0.10487435013055801,
0.008738040924072266,
0.04147109016776085,
-0.003074164967983961,
-0.054758984595537186,
0.020556943491101265,
-0.0012691814918071032,
0.0024937125854194164,
0.061760131269693375,
-0.034809283912181854,
-0.023771757259964943,
0.01714567095041275,
-0.01696706935763359,
0.011903738602995872,
-0.02245011180639267,
0.03143372759222984,
0.00851478986442089,
-0.0027058010455220938,
0.043185655027627945,
-0.10601739585399628,
-0.01185015868395567,
0.04765067622065544,
-0.043721459805965424,
-0.04361429810523987,
-0.014725630171597004,
0.009599789045751095,
-0.011600117199122906,
0.07994168996810913,
-0.018324434757232666,
0.007014543749392033,
0.021664269268512726,
-0.013600445352494717,
-0.013957646675407887,
-0.03732755407691002,
0.051472730934619904,
0.022485831752419472,
-0.017788631841540337,
0.01806546375155449,
0.019163858145475388,
0.02578994631767273,
-0.030719324946403503,
-0.01502925157546997,
0.00849692989140749,
-0.0016665681032463908,
0.06383190304040909,
-0.015850814059376717,
-0.016386616975069046,
-0.05161561071872711,
0.01389513723552227,
-0.04747207462787628,
0.0029826322570443153,
0.029862042516469955,
-0.02387891709804535,
-0.053865980356931686,
-0.049115199595689774,
-0.022289371117949486,
0.023628877475857735,
-0.03580944612622261,
0.0040609342977404594,
0.035702284425497055,
-0.018628057092428207,
0.03223743289709091,
-0.021342787891626358,
-0.02743307128548622,
-0.02280731312930584,
0.053473059087991714,
-0.01414517778903246,
0.05500902608036995,
0.048615120351314545,
0.037256114184856415,
0.017074229195713997,
0.07147601246833801,
0.02721875160932541,
-0.006376046221703291,
0.004132374189794064,
0.040685247629880905,
-0.062331654131412506,
-0.049329522997140884,
0.022950192913413048,
-0.027272330597043037,
-0.03450566157698631,
0.011287566274404526,
0.07286909967660904,
-0.06101001054048538,
0.0007194260833784938,
0.00008204470941564068,
0.09658727794885635,
-0.09222941845655441,
0.012350240722298622,
0.027200890704989433,
0.026879409328103065,
-0.02695085108280182,
0.022414391860365868,
0.01104645524173975,
-0.024200398474931717,
0.021878588944673538,
-0.02498624287545681,
-0.06304606050252914,
0.029094059020280838,
0.01750287227332592,
0.00457664392888546,
-0.002685708459466696,
-0.04657907038927078,
-0.0522942952811718,
0.03711323067545891,
-0.013930857181549072,
-0.007898617535829544,
-0.02802245505154133,
-0.04597182944417,
-0.004081026650965214,
-0.049329522997140884,
-0.0062822806648910046,
-0.05568770691752434,
0.06890416145324707,
0.004996355623006821,
-0.025629205629229546,
0.042399812489748,
-0.010090941563248634,
-0.010796413756906986,
-0.02423611842095852,
-0.03839915618300438,
0.07987024635076523,
0.02645076811313629,
0.02516484260559082,
-0.00951048918068409,
0.003989493940025568,
0.05829527974128723,
0.024664761498570442,
-0.00986769050359726,
-0.01830657571554184,
0.00728244474157691,
-0.010099871084094048,
0.010716043412685394,
-0.007094914093613625,
-0.0026432909071445465,
-0.06786827743053436,
-0.005518762394785881,
-0.0022648805752396584,
0.029165498912334442,
0.11594759672880173,
-0.035916607826948166,
-0.04597182944417,
-0.012609211727976799,
-0.05597347021102905,
0.0012513214023783803,
0.03379125893115997,
-0.003641222370788455,
-0.015216781757771969,
-0.0704401284456253,
0.02325381524860859,
-0.041899729520082474,
0.06633231043815613,
-0.024200398474931717,
-0.03407701849937439,
0.041221048682928085,
-0.05572342872619629,
0.03989940136671066,
-0.0220929104834795,
0.010126661509275436,
0.031076526269316673,
-0.011144685558974743,
-0.05590203031897545,
-0.018136903643608093,
-0.04204261302947998,
-0.029433399438858032,
-0.009474768303334713,
0.07622679322957993,
0.043900057673454285,
-0.03305899351835251,
0.0037349876947700977,
0.07915583997964859,
0.026379328221082687,
0.08087041229009628,
0.035880886018276215,
-0.039399322122335434,
-0.04740063473582268,
-0.014011227525770664,
-0.01302892342209816,
-0.006911848206073046,
-0.031147968024015427,
0.03348763659596443,
0.02766525372862816,
0.015404312871396542,
-0.016145506873726845,
-0.07786992192268372,
0.012850322760641575,
-0.03148730844259262,
-0.02364673651754856,
0.035202205181121826,
-0.12151993811130524,
0.0009716995991766453,
0.002685708459466696,
0.0756552666425705,
-0.039399322122335434,
-0.04475734382867813,
-0.007094914093613625,
0.012957482598721981,
0.03800623491406441,
0.015538263134658337,
-0.026557927951216698,
-0.020985586568713188,
-0.051687050610780716,
0.04079240560531616,
0.006996683776378632,
0.01055530272424221,
0.008318329229950905,
0.01869949698448181,
-0.027022290974855423,
0.007773596793413162,
-0.002424504840746522,
0.01923529803752899,
-0.04868656024336815,
0.021092746406793594,
0.012510981410741806,
-0.019878260791301727,
0.09530135244131088,
-0.00031171407317742705,
0.01848517544567585,
0.03943504020571709,
0.039970844984054565,
0.01621694676578045,
-0.03279109299182892,
-0.035738006234169006,
0.029361959546804428,
-0.004701664205640554,
0.002487015211954713,
-0.0283796563744545,
0.06254597753286362,
0.07115452736616135,
0.05629495158791542,
0.03675603121519089,
0.00021697198098991066,
0.02957628108561039,
-0.00009878852870315313,
0.04847223684191704,
-0.06533214449882507,
0.005558947566896677,
0.020521223545074463,
0.02516484260559082,
-0.006014379672706127,
-0.01607406511902809,
0.002511572791263461,
0.021128466352820396,
0.022414391860365868,
0.013002132996916771,
0.021199906244874,
-0.06433198601007462,
-0.011305426247417927,
-0.01142151653766632,
0.006594832055270672,
0.009599789045751095,
0.012278799898922443,
-0.014645259827375412,
0.011314356699585915,
-0.008327258750796318,
0.03789907321333885,
-0.05786663666367531,
0.03193381056189537,
-0.022146491333842278,
0.03270179405808449,
0.005264256615191698,
0.01220736000686884,
0.006733247544616461,
0.10866068303585052,
0.029504841193556786,
0.0338091179728508,
-0.042506974190473557,
0.0023017169442027807,
0.0230216346681118,
0.026218587532639503,
0.06115289032459259,
-0.005795593839138746,
-0.037220392376184464,
0.03393413871526718,
0.026004265993833542,
0.02686155028641224,
-0.08351369947195053,
-0.014359498396515846,
0.01660986803472042,
-0.02802245505154133,
0.04747207462787628,
0.022200070321559906,
0.007970057427883148,
0.031380146741867065,
0.017431430518627167,
-0.05283009633421898,
0.03148730844259262,
0.024932662025094032,
0.006219770293682814,
-0.0007852850831113756,
0.0396493636071682,
-0.032094549387693405,
0.001385271898470819,
0.05354449898004532,
-0.04222121089696884,
-0.013600445352494717,
-0.03377339988946915,
0.004339997656643391,
-0.03661315143108368,
0.049329522997140884,
0.010519582778215408,
-0.0021286974661052227,
0.019038837403059006,
0.040113724768161774,
0.01941389963030815,
0.037577591836452484,
-0.0008857480133883655,
-0.05986696481704712,
0.07794135808944702,
0.002868774114176631,
-0.01213591918349266,
-0.001701171975582838,
0.0033041134011000395,
0.06268885731697083,
-0.005835779011249542,
-0.008112938143312931,
-0.01335933431982994,
-0.011564397253096104,
-0.03911355882883072,
0.0676182359457016,
-0.03163018822669983,
-0.010635673068463802,
-0.0021923240274190903,
-0.030219243839383125,
-0.018503036350011826,
0.034719981253147125,
-0.07608391344547272,
0.01994970068335533,
0.025414884090423584,
0.05375881865620613,
-0.016181226819753647,
-0.020985586568713188,
0.024307560175657272,
0.015565053559839725,
-0.0042529297061264515,
0.027986735105514526,
-0.010367772541940212,
0.008604089729487896,
0.02734377235174179,
0.012966413050889969,
0.008112938143312931,
-0.017011718824505806,
-0.007782526779919863,
0.050972647964954376,
0.007519090548157692,
0.008291538804769516,
0.009555138647556305,
-0.043900057673454285,
-0.0021041398867964745,
-0.05643783137202263,
-0.0038912633899599314,
-0.0577237568795681,
-0.029522700235247612,
0.0757267102599144,
0.028165334835648537,
-0.039256442338228226,
0.028433235362172127,
-0.0019813517574220896,
-0.00894343201071024,
-0.06072424724698067,
-0.02886187843978405,
-0.012600281275808811,
0.032487474381923676,
0.03450566157698631,
0.023128794506192207,
0.0030205848161131144,
-0.012457400560379028,
-0.039613641798496246,
0.030487144365906715,
0.04186401143670082,
0.008912176825106144,
-0.039042118936777115,
-0.021324926987290382,
-0.05054400488734245,
0.01950320042669773,
-0.014895301312208176,
0.06272457540035248,
0.045185983180999756,
-0.016154436394572258,
-0.03668459132313728,
0.041756849735975266,
-0.06847552210092545,
0.009305098094046116,
-0.053865980356931686,
-0.03932788223028183,
0.017154600471258163,
0.00014469449524767697,
-0.00785843189805746,
0.07226185500621796,
-0.01527929212898016,
0.03127298876643181,
0.01492209080606699,
0.013180733658373356,
-0.019074557349085808,
-0.010403492487967014,
0.03954220190644264,
0.025647064670920372,
-0.007121704053133726,
-0.029147639870643616,
0.00031115594902075827,
-0.02984418161213398,
0.03729183226823807,
0.016047274693846703,
0.04382861778140068,
-0.00550090242177248,
-0.003723825328052044,
-0.052580054849386215,
-0.0010716044344007969,
-0.050758328288793564,
-0.0568307526409626,
0.013421844691038132,
-0.046078987419605255,
0.030987227335572243,
-0.020860565826296806,
0.019163858145475388,
-0.021485667675733566,
-0.006853803060948849,
0.022414391860365868,
-0.03530936315655708,
0.02677224949002266,
0.01693134941160679,
-0.0013718768022954464,
-0.012430611066520214,
0.0063046058639883995,
-0.007751271594315767,
-0.02805817499756813,
0.019074557349085808,
-0.00493384525179863,
-0.02712945081293583,
-0.005125841125845909,
0.03377339988946915,
-0.0063224658370018005,
0.009921270422637463,
-0.018645916134119034,
-0.01708316057920456,
0.04654334858059883,
-0.02743307128548622,
0.005210676230490208,
0.013002132996916771,
-0.00488919485360384,
-0.05972408503293991,
0.05500902608036995,
0.08065608888864517,
-0.008572835475206375,
-0.025932826101779938,
-0.009412258863449097,
0.004315440077334642,
-0.039970844984054565,
-0.018181554973125458,
-0.03580944612622261,
0.06729675829410553,
-0.005916149355471134,
-0.050436846911907196,
-0.013252174481749535,
0.011734068393707275,
-0.008211168460547924,
-0.0495438426733017,
0.02009258233010769,
0.02450402081012726,
0.03932788223028183,
0.010296331718564034,
0.11266133934259415,
0.005884894169867039,
-0.04382861778140068,
0.0063224658370018005,
0.027415212243795395,
-0.06454630196094513,
-0.04640046879649162,
-0.03488072380423546,
0.02257513254880905,
-0.019842540845274925,
-0.04440014064311981,
0.00821563322097063,
0.015404312871396542,
-0.0046793390065431595,
-0.06476062536239624,
0.02021760307252407,
0.005032075569033623,
-0.013314684852957726,
0.061974454671144485,
-0.08708571642637253,
0.010153451934456825,
-0.001759217237122357,
0.03379125893115997,
-0.05558054894208908,
-0.004853474907577038,
0.022128630429506302,
-0.012010899372398853,
-0.03911355882883072,
-0.014038017019629478,
-0.04025660455226898,
0.014689910225570202,
0.05143700912594795,
0.04182828962802887,
0.012332380749285221,
-0.04186401143670082,
0.049901045858860016,
0.015216781757771969,
-0.010001640766859055,
-0.04022088274359703,
0.050758328288793564,
-0.027915293350815773,
-0.011617977172136307,
-0.024700481444597244,
-0.0053356969729065895,
0.008144193328917027,
0.03005850315093994,
0.0171099491417408,
0.03234459087252617,
0.017154600471258163,
0.04204261302947998,
-0.07522662729024887,
-0.01385048683732748,
0.010233822278678417,
-0.05154417082667351,
-0.01875307597219944,
0.018378015607595444,
0.03764903545379639,
-0.05086548626422882,
0.012689582072198391,
-0.016440197825431824,
-0.042471252381801605,
-0.006416231393814087,
-0.1715995818376541,
-0.010162381455302238,
0.013645095750689507,
0.015145341865718365,
-0.020289042964577675,
-0.025200562551617622,
-0.06958284229040146,
0.06618943065404892,
-0.027504513040184975,
0.0659036710858345,
0.012475261464715004,
0.023093074560165405,
-0.07451222836971283,
0.018949536606669426,
-0.004402508027851582,
-0.010492793284356594,
0.016922419890761375,
-0.028093894943594933,
-0.08215633779764175,
0.013136083260178566,
-0.027093730866909027,
0.0020940934773534536,
-0.02734377235174179,
-0.0032259756699204445,
0.014002297073602676,
0.057437993586063385,
-0.010082011111080647,
0.0477578341960907,
-0.04029232636094093,
-0.06025988608598709,
-0.026004265993833542,
-0.00979624968022108,
-0.048615120351314545,
-0.03407701849937439,
0.02030690386891365,
0.0283796563744545,
-0.019699661061167717,
-0.013609375804662704,
-0.0031523029319941998,
-0.020646244287490845,
0.04347141832113266,
-0.008371909148991108,
-0.03180878981947899,
-0.010724973864853382,
0.07701263576745987,
0.003949308767914772,
-0.034862861037254333,
-0.0016397779108956456,
0.060867127031087875,
0.01186801865696907,
0.04132821038365364,
0.0016754980897530913,
-0.020324762910604477,
-0.042292654514312744,
0.06490350514650345,
0.02587924525141716,
-0.0024579926393926144,
0.045900385826826096,
-0.011019664816558361,
0.08315649628639221,
0.021146327257156372,
0.03768475353717804,
0.013529005460441113,
0.014797070063650608,
0.06829691678285599,
-0.05911684036254883,
0.039220720529556274,
0.025575624778866768,
-0.05990268662571907,
0.00438241520896554,
0.002685708459466696,
-0.01619015634059906,
-0.011189335957169533,
0.010546373203396797,
0.028718996793031693,
0.037756193429231644,
0.0811561718583107,
-0.03179093077778816,
0.0033309035934507847,
-0.04368573799729347,
0.000641288235783577,
-0.02012830227613449,
-0.016181226819753647,
0.04582894593477249,
-0.02957628108561039,
-0.0023686920758336782,
0.016833119094371796,
0.013529005460441113,
-0.0037573128938674927,
-0.015189992263913155,
-0.019699661061167717,
0.03277323395013809,
-0.02102130651473999,
0.0450788252055645,
0.05804523825645447,
0.042292654514312744,
-0.04668623208999634,
-0.010832134634256363,
-0.023325255140662193,
-0.05086548626422882,
-0.054187461733818054,
-0.014109457843005657,
0.05515190586447716,
-0.039399322122335434,
-0.026075705885887146,
-0.013546865433454514,
-0.05533050745725632,
0.037756193429231644,
0.025379164144396782,
-0.008233494125306606,
-0.008157588541507721,
-0.005773268640041351,
0.036452408879995346,
-0.009403328411281109,
-0.03148730844259262,
0.02111060544848442,
0.028933318331837654,
-0.04868656024336815,
0.06961856782436371,
0.0468648299574852,
0.0021264648530632257,
-0.019842540845274925,
0.02805817499756813,
-0.049150921404361725,
-0.0180386733263731,
0.0073896050453186035,
0.024164678528904915,
-0.027147311717271805,
0.02307521365582943,
0.030665745958685875,
0.04147109016776085,
-0.07172605395317078,
0.045543186366558075,
0.02262871339917183,
-0.03280895575881004,
0.014743490144610405,
0.025664925575256348,
-0.061402931809425354,
0.022200070321559906,
-0.03314829617738724,
0.06361757963895798,
0.03772047534584999,
0.03413059934973717,
0.019878260791301727,
0.0015415475936606526,
-0.01884237676858902,
0.0005695688887499273,
0.05390170216560364,
0.03629167005419731,
-0.013153944164514542,
-0.05157989263534546,
-0.09058628976345062,
0.016886699944734573,
-0.08965756744146347,
-0.007144029252231121,
0.005023145582526922,
-0.00534462695941329,
-0.015216781757771969,
0.009394397959113121,
0.00828707404434681,
-0.020949864760041237,
0.039399322122335434,
-0.06904704123735428,
-0.04747207462787628,
0.004746314603835344,
-0.023843197152018547,
-0.008590695448219776,
0.009233658201992512,
-0.02018188312649727,
-0.008657670579850674,
-0.0038756357971578836,
0.0019813517574220896,
-0.031147968024015427,
-0.00392028596252203,
-0.03171949088573456,
-0.04325709864497185,
0.055116184055805206,
0.051472730934619904,
-0.10030216723680496,
0.005067795515060425,
-0.03313043713569641,
0.022646572440862656,
-0.0036501523572951555,
0.020164022222161293,
0.019163858145475388,
0.006318000610917807,
-0.002386552281677723,
-0.058152396231889725,
-0.0220929104834795,
0.01140365656465292,
-0.05340161919593811,
0.0532587394118309,
0.015565053559839725,
0.044793061912059784,
0.00991234090179205,
-0.0034269015304744244,
-0.051294129341840744,
0.0074119302444159985,
-0.03652384877204895,
-0.0010107684647664428,
-0.010349912568926811,
0.03241603076457977,
-0.028879737481474876,
0.03682747110724449,
0.022646572440862656,
0.06268885731697083,
-0.027022290974855423,
0.0044828783720731735,
-0.009805180132389069,
0.021932169795036316,
0.011251846328377724,
-0.008090613409876823,
-0.013993367552757263,
0.02734377235174179,
-0.06043848767876625,
0.0018674938473850489,
-0.02757595293223858,
-0.02093200571835041,
-0.05104408785700798,
-0.011100035160779953,
-0.0072333295829594135,
-0.0406138077378273,
-0.0405423641204834,
0.03014780394732952,
0.013395055197179317,
-0.013457564637064934,
-0.06597510725259781,
-0.000844446592964232,
-0.014931021258234978,
0.019931841641664505
] |
729,610 | tinytuya.core | deviceScan | Scans your network for Tuya devices and returns dictionary of devices discovered
devices = tinytuya.deviceScan(verbose)
Parameters:
verbose = True or False, print formatted output to stdout [Default: False]
maxretry = The number of loops to wait to pick up UDP from all devices
color = True or False, print output in color [Default: True]
poll = True or False, poll dps status for devices if possible
forcescan = True or False, force network scan for device IP addresses
Response:
devices = Dictionary of all devices found
To unpack data, you can do something like this:
devices = tinytuya.deviceScan()
for ip in devices:
id = devices[ip]['gwId']
key = devices[ip]['productKey']
vers = devices[ip]['version']
dps = devices[ip]['dps']
| def deviceScan(verbose=False, maxretry=None, color=True, poll=True, forcescan=False, byID=False):
"""Scans your network for Tuya devices and returns dictionary of devices discovered
devices = tinytuya.deviceScan(verbose)
Parameters:
verbose = True or False, print formatted output to stdout [Default: False]
maxretry = The number of loops to wait to pick up UDP from all devices
color = True or False, print output in color [Default: True]
poll = True or False, poll dps status for devices if possible
forcescan = True or False, force network scan for device IP addresses
Response:
devices = Dictionary of all devices found
To unpack data, you can do something like this:
devices = tinytuya.deviceScan()
for ip in devices:
id = devices[ip]['gwId']
key = devices[ip]['productKey']
vers = devices[ip]['version']
dps = devices[ip]['dps']
"""
from . import scanner
return scanner.devices(verbose=verbose, scantime=maxretry, color=color, poll=poll, forcescan=forcescan, byID=byID)
| (verbose=False, maxretry=None, color=True, poll=True, forcescan=False, byID=False) | [
0.06054094806313515,
-0.022680792957544327,
-0.0008019910892471671,
-0.0430317297577858,
0.025593113154172897,
0.016176613047719002,
-0.04126668721437454,
-0.0452909842133522,
-0.021004002541303635,
-0.03247677907347679,
-0.024798844009637833,
0.009584179148077965,
-0.002490915823727846,
0.017685722559690475,
0.012205267325043678,
-0.021974775940179825,
-0.04832685738801956,
0.08126254379749298,
0.028364229947328568,
0.0019525779644027352,
-0.015514721162617207,
0.055069319903850555,
0.029988067224621773,
0.07504959404468536,
-0.028558384627103806,
0.07448478043079376,
0.036571674048900604,
-0.005705499090254307,
0.010078391060233116,
-0.012884808704257011,
0.013061312958598137,
0.020862799137830734,
0.03378291055560112,
0.02471059188246727,
-0.05559883266687393,
-0.0018047557678073645,
0.02359861508011818,
0.04560869187116623,
-0.08472202718257904,
-0.014420395717024803,
-0.05210404843091965,
-0.049244679510593414,
0.02132171019911766,
-0.023651566356420517,
0.04631470888853073,
0.04299642890691757,
0.013661427423357964,
0.017235638573765755,
-0.01964491978287697,
-0.024904746562242508,
-0.016520796343684196,
0.013228992000222206,
-0.05764628201723099,
0.0017970337066799402,
-0.015144062228500843,
-0.018232885748147964,
-0.07448478043079376,
0.023845721036195755,
0.04504387825727463,
-0.010546127334237099,
-0.03597155958414078,
-0.011914035305380821,
0.01457042433321476,
0.056657858192920685,
0.012611227110028267,
-0.01028137095272541,
-0.005904066376388073,
-0.003135156352072954,
-0.02525775507092476,
0.01231999509036541,
0.0175798200070858,
-0.014032086357474327,
0.021374661475419998,
-0.03455952927470207,
0.021780621260404587,
-0.03413591906428337,
-0.01923895999789238,
-0.061458770185709,
-0.03992525488138199,
-0.05718737095594406,
0.025416608899831772,
0.04546748846769333,
0.04126668721437454,
0.007660283241420984,
0.021851222962141037,
0.07914449274539948,
0.013634951785206795,
0.024516437202692032,
-0.050903819501399994,
0.02061569318175316,
-0.011552201583981514,
-0.03625396639108658,
0.005520169623196125,
0.03448892757296562,
-0.06643619388341904,
0.020245034247636795,
0.0011825782712548971,
0.05979963019490242,
0.01080205850303173,
-0.013034837320446968,
-0.038442619144916534,
-0.0606115497648716,
-0.042749322950839996,
-0.0452909842133522,
-0.0032741534523665905,
-0.05912891402840614,
-0.04889167100191116,
0.05626954883337021,
0.0440201535820961,
0.09114678204059601,
-0.012593576684594154,
-0.013114264234900475,
0.025557812303304672,
-0.006045269779860973,
0.01682085357606411,
-0.01698853261768818,
0.02982921339571476,
0.011066814884543419,
-0.0430317297577858,
-0.01665317453444004,
-0.00816332083195448,
0.040384165942668915,
0.009990138933062553,
0.00804418046027422,
-0.004637648351490498,
0.00358303589746356,
-0.010837359353899956,
0.023863371461629868,
0.049527086317539215,
0.07977990806102753,
-0.013935009017586708,
0.011190367862582207,
0.07639102637767792,
0.028823141008615494,
0.036642275750637054,
0.006111458875238895,
0.029387952759861946,
-0.015541196800768375,
-0.013714378699660301,
-0.0531630739569664,
-0.01648549549281597,
0.001909555052407086,
-0.02435758337378502,
-0.04747963696718216,
0.04049006849527359,
-0.07081349194049835,
-0.011428648605942726,
-0.05676376074552536,
0.013396671041846275,
0.010916786268353462,
-0.026281479746103287,
0.008176558651030064,
0.05552823096513748,
0.028152424842119217,
-0.05881120637059212,
0.02741110697388649,
0.010396098718047142,
-0.047938548028469086,
-0.002746846992522478,
-0.03365935757756233,
-0.0055687082931399345,
-0.03921923786401749,
-0.029529156163334846,
0.017756324261426926,
-0.023722168058156967,
0.011613978073000908,
-0.049103476107120514,
0.07667343318462372,
0.0264403335750103,
-0.025240104645490646,
-0.010634379461407661,
-0.013299593701958656,
-0.0029895403422415257,
-0.05093912035226822,
0.0003538358141668141,
0.011128591373562813,
-0.03667757660150528,
-0.049880094826221466,
0.036995284259319305,
0.013661427423357964,
-0.03985465317964554,
0.011481599882245064,
0.012090539559721947,
0.021762970834970474,
0.026758041232824326,
0.011005038395524025,
0.04769144207239151,
0.010581428185105324,
-0.012399422004818916,
-0.007329337764531374,
0.01587655581533909,
0.01909775659441948,
0.010343147441744804,
0.038230814039707184,
0.002385013271123171,
0.0061776479706168175,
0.03369465842843056,
0.04281992465257645,
-0.005612834356725216,
0.01748274452984333,
-0.03904273360967636,
-0.013829106464982033,
-0.0002625500492285937,
-0.003258709330111742,
-0.015426469035446644,
-0.022133629769086838,
0.01087266020476818,
0.02707574889063835,
0.013449622318148613,
-0.0443025603890419,
0.006998392753303051,
0.001878666807897389,
-0.023510362952947617,
0.00593495462089777,
0.007938277907669544,
0.014279192313551903,
0.08048592507839203,
0.013890882954001427,
-0.0034991963766515255,
-0.05994083359837532,
-0.04207860678434372,
-0.03191196545958519,
-0.033606406301259995,
-0.05888180807232857,
-0.01881534978747368,
0.002318824175745249,
-0.02125110849738121,
0.005056845955550671,
-0.004818565212190151,
-0.09319423139095306,
0.07667343318462372,
-0.05556353181600571,
0.04497327655553818,
0.06209418550133705,
-0.03667757660150528,
-0.016308991238474846,
0.018321137875318527,
0.0026585948653519154,
0.061141062527894974,
-0.0038786802906543016,
0.05602244287729263,
-0.01601775921881199,
-0.0005228937952779233,
-0.04334943741559982,
-0.02049214020371437,
-0.003671287791803479,
-0.008608994074165821,
0.009354723617434502,
0.001789311645552516,
-0.06530656665563583,
-0.037277691066265106,
-0.049032874405384064,
0.07512019574642181,
0.01904480531811714,
-0.0076338076032698154,
-0.04027826339006424,
0.031470704823732376,
0.038795627653598785,
-0.016926756128668785,
-0.037348292768001556,
-0.016097186133265495,
0.060117337852716446,
-0.05874060466885567,
0.07907389104366302,
-0.042113907635211945,
0.01881534978747368,
0.006804238073527813,
0.025169502943754196,
-0.05393969267606735,
0.009751858189702034,
0.004778851754963398,
0.061635274440050125,
-0.016688475385308266,
-0.012496499344706535,
-0.034153569489717484,
0.022468987852334976,
0.032441478222608566,
0.035600900650024414,
0.054645709693431854,
-0.053198374807834625,
-0.08112134039402008,
0.0032035517506301403,
0.002389425877481699,
0.008917875587940216,
0.005608421750366688,
-0.05895240977406502,
0.00496418122202158,
0.0905819684267044,
-0.03394176438450813,
-0.007404352072626352,
-0.002941001672297716,
-0.05023310333490372,
-0.0024335519410669804,
-0.034506577998399734,
0.005233350209891796,
0.04077247530221939,
-0.07455538213253021,
-0.01876239851117134,
0.004300084430724382,
-0.04123138636350632,
-0.04712662845849991,
0.013299593701958656,
-0.0443025603890419,
0.03231792524456978,
-0.02824067696928978,
0.05351608246564865,
0.03556559979915619,
-0.028293628245592117,
0.01470280159264803,
-0.023686867207288742,
-0.04056067019701004,
-0.031611908227205276,
0.09693612158298492,
-0.011428648605942726,
-0.06767172366380692,
-0.07335515320301056,
-0.03282978758215904,
0.047726742923259735,
0.02444583550095558,
0.06562427431344986,
0.007563205901533365,
0.06837774068117142,
0.01840939000248909,
0.007170484401285648,
0.02940560318529606,
0.040525369346141815,
0.04320823401212692,
0.006464467383921146,
-0.038725025951862335,
-0.007686758879572153,
0.017871052026748657,
-0.011358046904206276,
-0.003730857977643609,
-0.009284121915698051,
0.006248249672353268,
0.03157660737633705,
0.0015753002371639013,
0.01627369038760662,
-0.04659711569547653,
0.028293628245592117,
-0.015099936164915562,
0.002115844516083598,
-0.0177210234105587,
0.011084465309977531,
0.026563886553049088,
-0.028558384627103806,
-0.019186008721590042,
-0.030005717650055885,
-0.0018069620709866285,
0.010440224781632423,
0.09100557863712311,
0.04207860678434372,
0.007735297549515963,
0.07391996681690216,
0.09142918884754181,
-0.012761255726218224,
0.004099310841411352,
0.06138816848397255,
0.008507504127919674,
0.025804918259382248,
-0.10258425772190094,
0.05439860373735428,
-0.03210612013936043,
-0.03738359361886978,
0.02783471718430519,
-0.01035197265446186,
-0.029193799942731857,
-0.003953694831579924,
0.016812028363347054,
-0.0004870413395110518,
-0.008088306523859501,
0.038301415741443634,
-0.010404923930764198,
-0.004253752063959837,
0.04306703060865402,
-0.0006492045940831304,
-0.0044081928208470345,
-0.009345898404717445,
0.004198594484478235,
0.05019780248403549,
0.008573693223297596,
0.03302394226193428,
0.04334943741559982,
0.01021076925098896,
0.045643992722034454,
-0.03999585658311844,
-0.07801486551761627,
0.024181079119443893,
-0.060258541256189346,
0.018709447234869003,
-0.03406531736254692,
-0.0013359163422137499,
-0.05323367565870285,
0.01608836092054844,
0.009142918512225151,
0.00477443914860487,
0.0015786096919327974,
0.0020926783327013254,
-0.09870116412639618,
-0.07271973788738251,
-0.042043305933475494,
-0.0900171548128128,
-0.030535230413079262,
0.03323574736714363,
0.010819708928465843,
-0.02532835677266121,
0.11112706363201141,
-0.0721549242734909,
-0.027499359101057053,
0.006349739618599415,
0.011269794777035713,
-0.004026502836495638,
0.007775011006742716,
0.061705876141786575,
-0.029740961268544197,
0.030146921053528786,
-0.03275918588042259,
0.07766185700893402,
0.029229100793600082,
0.05545762926340103,
0.0011395553592592478,
-0.0620235837996006,
-0.021145205944776535,
0.014067387208342552,
0.03731299191713333,
0.04638531059026718,
0.042325712740421295,
-0.0015708876308053732,
0.01177283190190792,
-0.03724239021539688,
0.013564350083470345,
-0.023563314229249954,
-0.013352544978260994,
-0.04878576844930649,
0.010554952546954155,
-0.04342003911733627,
0.015338216908276081,
-0.03228262439370155,
0.014552773907780647,
-0.029440904036164284,
-0.036642275750637054,
-0.02089809998869896,
0.054645709693431854,
0.0031108870171010494,
-0.02817007526755333,
0.0022857296280562878,
0.013749679550528526,
0.010810883715748787,
-0.02942325361073017,
-0.022239532321691513,
-0.014235066249966621,
-0.07723824679851532,
0.06491825729608536,
-0.02691689506173134,
0.049597688019275665,
-0.010334322229027748,
-0.044549666345119476,
0.023175004869699478,
-0.017429793253540993,
0.0007887532701715827,
0.03584800660610199,
-0.026069674640893936,
-0.017562169581651688,
-0.0073778764344751835,
-0.05619894713163376,
0.03921923786401749,
-0.029705660417675972,
-0.003885299200192094,
0.02442818507552147,
-0.030270474031567574,
-0.010996213182806969,
0.02373981848359108,
-0.03770130127668381,
0.04352594166994095,
0.004099310841411352,
0.0010126930428668857,
-0.009151743724942207,
0.04144319146871567,
-0.043914251029491425,
-0.03883092850446701,
-0.00900171510875225,
-0.008141257800161839,
0.035071391612291336,
0.015249964781105518,
0.00017774527077563107,
0.006799825467169285,
0.059340719133615494,
-0.061141062527894974,
-0.027111049741506577,
-0.03335930034518242,
-0.041831500828266144,
0.02118050679564476,
-0.005608421750366688,
-0.03847791999578476,
-0.017668072134256363,
0.009769508615136147,
-0.020739246159791946,
0.040948979556560516,
-0.008388363756239414,
-0.0019051424460485578,
0.008441315032541752,
-0.04112548381090164,
0.0063056135550141335,
-0.02774646505713463,
0.007267561741173267,
-0.040384165942668915,
-0.0005945985903963447,
0.0345948301255703,
0.004114754963666201,
0.05115092545747757,
-0.012734780088067055,
0.03252973034977913,
0.0026983083225786686,
-0.007170484401285648,
0.011834608390927315,
-0.06509476155042648,
0.014649850316345692,
-0.03939574211835861,
-0.013890882954001427,
-0.013758504763245583,
-0.0006458951393142343,
0.08952294290065765,
0.047161929309368134,
0.03205316886305809,
0.028328929096460342,
0.03854852169752121,
0.031611908227205276,
0.06283550709486008,
-0.002460027579218149,
-0.02298085018992424,
0.02215128019452095,
0.010934436693787575,
-0.033323999494314194,
-0.05224525183439255,
0.0448673740029335,
-0.1263064295053482,
0.03260033205151558,
-0.045785196125507355,
-0.01627369038760662,
-0.004959768615663052,
0.05612834542989731,
0.032847438007593155,
-0.0021610737312585115,
-0.09037016332149506,
-0.003993408288806677,
0.004019883926957846,
0.002899081911891699,
-0.023369159549474716,
-0.029740961268544197,
-0.040242962539196014,
0.014711626805365086,
-0.04161969572305679,
0.007470541168004274,
0.008723721839487553,
-0.05005659908056259,
0.06576547771692276,
-0.04546748846769333,
-0.02804652228951454,
-0.005065671168267727,
-0.012470023706555367,
0.002318824175745249,
-0.015955982729792595,
-0.045926399528980255,
0.007655870635062456,
0.007192547433078289,
-0.03921923786401749,
-0.019274260848760605,
0.017765149474143982,
-0.05757568031549454,
-0.0261579267680645,
-0.015717701986432076,
0.017332715913653374,
-0.01890360191464424,
0.04825625568628311,
-0.03261798247694969,
0.03992525488138199,
0.00408166041597724,
0.018374089151620865,
-0.013917358592152596,
-0.031453054398298264,
0.006552719511091709,
0.0641416385769844,
-0.027322854846715927,
-0.002865987364202738,
0.01916835829615593,
-0.04147849231958389,
0.05602244287729263,
-0.00633650179952383,
-0.06820123642683029,
-0.04726783186197281,
0.051115624606609344,
0.02063334360718727,
-0.08507503569126129,
0.019327212125062943,
-0.058175794780254364,
0.008798735216259956,
-0.00799564179033041,
0.014111513271927834,
0.03328869864344597,
-0.007580856326967478,
-0.06505946069955826,
0.04423195868730545,
0.013246642425656319,
-0.11769301444292068,
0.021409962326288223,
-0.005467218346893787,
0.006367390044033527,
-0.04843275994062424,
-0.009372374042868614,
-0.050762616097927094,
-0.0006894696271046996,
-0.0003761746338568628,
-0.024745892733335495,
0.06474175304174423,
-0.0066453842446208,
0.020721595734357834,
-0.0065659573301672935,
-0.009866585955023766,
0.004390542395412922,
-0.014067387208342552,
-0.029034946113824844,
0.06756582111120224,
0.02907024696469307,
0.008573693223297596,
-0.005608421750366688,
0.009487101808190346,
-0.03876032680273056,
0.04109018296003342,
0.005546645261347294,
0.043561242520809174,
0.028558384627103806,
0.027587611228227615,
0.03904273360967636,
0.036430470645427704,
-0.06689510494470596,
-0.054645709693431854,
0.007320512551814318,
-0.026899244636297226,
-0.04804445058107376,
0.013802630826830864,
-0.0025946120731532574,
0.0627296045422554,
0.03752479702234268,
0.051327429711818695,
0.07279033958911896,
-0.009954838082194328,
-0.02624617889523506,
0.03168250992894173,
-0.02596377208828926,
0.005701086483895779,
-0.012187616899609566,
0.0021577642764896154,
-0.02608732506632805,
0.046420611441135406,
-0.056234247982501984,
0.02928205020725727,
0.0317884124815464,
0.023298557847738266,
-0.003966932650655508,
0.03621866554021835,
-0.011569852009415627,
0.032441478222608566,
0.00338226230815053,
-0.06431814283132553,
0.018303487449884415,
0.03065878339111805,
0.01994497701525688,
-0.013158390298485756,
-0.022945549339056015,
-0.010290196165442467,
0.06220008805394173,
0.024622339755296707,
0.07561440765857697,
-0.01698853261768818,
-0.012955410405993462,
0.006354152224957943,
-0.04882106930017471,
-0.008286873809993267,
0.016944406554102898,
-0.04437316209077835,
0.029935115948319435,
-0.035265542566776276,
0.04313763231039047,
0.028505433350801468,
-0.06071745231747627,
0.03175311163067818,
0.045432187616825104,
-0.06664799898862839,
-0.009372374042868614,
-0.03258268162608147,
0.012884808704257011,
-0.021021652966737747,
0.02871723845601082,
0.04913877695798874,
-0.021568816155195236,
0.010104866698384285,
-0.0066453842446208,
0.023210305720567703,
0.03584800660610199,
-0.05891710892319679,
0.0351596400141716,
-0.010025439783930779,
0.003516846802085638,
0.04310233145952225,
0.023633915930986404,
0.04154909402132034,
-0.03404766693711281,
-0.021974775940179825,
0.00249312212690711,
-0.015355867333710194,
0.05037430673837662,
0.0220806784927845,
-0.010025439783930779,
0.02283964678645134,
-0.01089913584291935,
-0.043702445924282074,
0.017597470432519913,
-0.017067959532141685,
0.038725025951862335,
0.08239217102527618,
0.002971889916807413,
-0.018215235322713852,
-0.014596899971365929,
0.055210523307323456,
0.013070138171315193,
0.086910679936409,
-0.030499929562211037,
0.018603544682264328,
0.022310134023427963,
-0.014835179783403873,
0.020086180418729782,
-0.027922969311475754,
-0.03390646353363991,
0.03286508843302727,
-0.040031157433986664,
0.0044412873685359955,
0.050833217799663544,
-0.020439188927412033,
0.06435344368219376,
-0.0026563885621726513,
-0.01118154264986515,
0.0033403425477445126,
0.0067910002544522285,
0.022592540830373764,
-0.03911333531141281,
-0.027428757399320602,
0.03660697489976883,
0.02063334360718727,
0.024940047413110733,
0.013202516362071037,
0.03466543182730675,
-0.018780048936605453,
-0.0009106515208259225,
0.005643722601234913,
0.05538702756166458,
0.04324353486299515,
-0.023616265505552292,
-0.03051757998764515,
-0.012143490836024284,
0.013776155188679695,
0.02511655166745186,
-0.02160411700606346,
-0.01862119510769844,
0.008458965457975864,
-0.012964235618710518,
0.011057989671826363,
-0.016256039962172508,
-0.009584179148077965
] |
729,611 | tinytuya.core | device_info | Searches the devices.json file for devices with ID = dev_id
Parameters:
dev_id = The specific Device ID you are looking for
Response:
{dict} containing the the device info, or None if not found
| def device_info( dev_id ):
"""Searches the devices.json file for devices with ID = dev_id
Parameters:
dev_id = The specific Device ID you are looking for
Response:
{dict} containing the the device info, or None if not found
"""
devinfo = None
try:
# Load defaults
with open(DEVICEFILE, 'r') as f:
tuyadevices = json.load(f)
log.debug("loaded=%s [%d devices]", DEVICEFILE, len(tuyadevices))
for dev in tuyadevices:
if 'id' in dev and dev['id'] == dev_id:
log.debug("Device %r found in %s", dev_id, DEVICEFILE)
devinfo = dev
break
except:
# No DEVICEFILE
pass
return devinfo
| (dev_id) | [
0.061090197414159775,
-0.024954665452241898,
0.006229471415281296,
-0.018288441002368927,
0.029110711067914963,
-0.010242998600006104,
0.011134892702102661,
-0.006450146436691284,
-0.022380122914910316,
-0.02480754815042019,
-0.05446994677186012,
-0.024917885661125183,
-0.019382622092962265,
-0.008215546607971191,
0.027988946065306664,
-0.010399309918284416,
-0.03361615911126137,
0.08282668888568878,
0.034682754427194595,
-0.01824246719479561,
0.00861092284321785,
0.05634568631649017,
0.021276747807860374,
0.004241097718477249,
-0.017883870750665665,
0.08701951056718826,
0.07789827883243561,
-0.022122669965028763,
0.07392612844705582,
-0.03953760489821434,
0.014123200438916683,
-0.009314324706792831,
0.030857721343636513,
0.03350582346320152,
-0.08893202990293503,
0.021810047328472137,
0.03630103915929794,
0.011980813927948475,
-0.11975297331809998,
0.0023584640584886074,
-0.04862206056714058,
0.011190061457455158,
0.024329420179128647,
-0.018959660083055496,
-0.003073359141126275,
0.028319958597421646,
-0.05020356550812721,
-0.019584907218813896,
-0.039353709667921066,
0.010500452481210232,
0.013672655448317528,
0.0015274848556146026,
-0.05509519204497337,
-0.004700837191194296,
0.006077757570892572,
-0.030140528455376625,
-0.04288451001048088,
-0.036006804555654526,
-0.00046031427336856723,
0.0205963347107172,
0.007640872150659561,
-0.04049386456608772,
0.027786660939455032,
-0.01652304083108902,
-0.02703268826007843,
-0.004873239900916815,
0.021975552663207054,
0.006509912665933371,
-0.039022695273160934,
0.0411926694214344,
0.013920915313065052,
0.014647303149104118,
-0.0007924761157482862,
-0.029533671215176582,
0.035528674721717834,
0.0012700306251645088,
-0.027492428198456764,
-0.03975827991962433,
-0.0038870982825756073,
-0.030912891030311584,
-0.0032641510479152203,
-0.01624719798564911,
0.042222484946250916,
0.004528434947133064,
-0.005590433720499277,
0.04601074010133743,
0.05708126723766327,
-0.029883073642849922,
-0.04954154044389725,
0.003916981164366007,
-0.00806383229792118,
0.0146013293415308,
0.0010792387183755636,
0.05428605154156685,
0.004307759925723076,
-0.017635611817240715,
0.02626032568514347,
0.049136966466903687,
0.018187299370765686,
0.039353709667921066,
-0.015217380598187447,
-0.04590040072798729,
-0.046562425792217255,
-0.028540633618831635,
0.0227111354470253,
-0.07179293781518936,
-0.022324955090880394,
0.0781189501285553,
0.014316290616989136,
0.0711309090256691,
-0.0748823881149292,
-0.06899771839380264,
-0.01075790636241436,
0.004735318012535572,
0.056125011295080185,
-0.022196227684617043,
0.01564953662455082,
0.0399421751499176,
0.013258890248835087,
-0.01131878886371851,
-0.01358070783317089,
0.0021102046594023705,
0.003358397865667939,
-0.012137125246226788,
0.01221987884491682,
-0.036632049828767776,
-0.03479309380054474,
-0.018729791045188904,
0.053476911038160324,
0.024550095200538635,
0.007194924633949995,
0.0005479521350935102,
0.030158918350934982,
0.021699709817767143,
0.03883880004286766,
0.005797316320240498,
-0.031188733875751495,
0.02890842594206333,
0.02228817529976368,
0.012964656576514244,
-0.009599362500011921,
-0.040420304983854294,
-0.03784576430916786,
-0.07315376400947571,
-0.03492182120680809,
-0.02123996987938881,
0.007571910973638296,
-0.07635354995727539,
-0.022435292601585388,
-0.0047996812500059605,
0.00458130519837141,
-0.0029308400116860867,
0.019382622092962265,
-0.028375128284096718,
-0.04060420021414757,
-0.01665176823735237,
0.014362265355885029,
-0.02550635300576687,
-0.006468536332249641,
-0.013884135521948338,
0.0008166124462150037,
-0.020412437617778778,
0.01774594932794571,
-0.0023561655543744564,
0.0003008421044796705,
-0.014114005491137505,
-0.06480489671230316,
0.023317992687225342,
0.006537497043609619,
-0.006739782635122538,
-0.003864111378788948,
0.012330216355621815,
0.01481280941516161,
-0.010831465013325214,
-0.003443449502810836,
-0.002209048718214035,
0.00026190790231339633,
-0.05730194225907326,
0.03547350689768791,
-0.010905023664236069,
-0.007365028373897076,
0.055426206439733505,
0.030287643894553185,
0.10018645226955414,
0.0119164502248168,
0.03589646890759468,
0.02900037355720997,
0.0238329004496336,
0.04560616984963417,
0.013350837863981724,
0.006675418931990862,
-0.03611714392900467,
-0.001896425848826766,
0.02144225500524044,
0.0027975153643637896,
-0.008183364756405354,
0.0768684595823288,
-0.012973851524293423,
-0.011346373707056046,
-0.037257298827171326,
-0.005052538122981787,
-0.021883605048060417,
-0.01075790636241436,
0.03429657220840454,
-0.046268194913864136,
0.03457241877913475,
0.042222484946250916,
0.02548796311020851,
-0.0252121202647686,
0.06399574875831604,
-0.047408346086740494,
-0.01849992200732231,
-0.011180867440998554,
0.026738455519080162,
0.04950476065278053,
-0.032935746014118195,
0.023520277813076973,
0.01784709095954895,
-0.04957831650972366,
-0.02513856068253517,
-0.01421514805406332,
-0.051858626306056976,
0.02129513770341873,
-0.004167539533227682,
-0.02990146353840828,
0.00033101250301115215,
-0.015079459175467491,
0.014463407918810844,
-0.0034227613359689713,
-0.014114005491137505,
0.046893440186977386,
-0.03185075893998146,
0.04281095042824745,
0.0011148685589432716,
-0.015585171990096569,
-0.023097317665815353,
0.009498219937086105,
-0.017764337360858917,
0.07966367900371552,
-0.04829104617238045,
0.06083274260163307,
-0.021074462682008743,
0.02263757772743702,
0.008528169244527817,
-0.018279246985912323,
-0.031133566051721573,
-0.0012987643713131547,
-0.013497954234480858,
-0.02228817529976368,
-0.08871135115623474,
0.008445416577160358,
-0.0065283020958304405,
0.06017071753740311,
0.013212916441261768,
0.003802046412602067,
-0.09393399208784103,
-0.036227479577064514,
-0.01537369191646576,
0.02403518557548523,
-0.03641137480735779,
-0.013645071536302567,
-0.0023561655543744564,
-0.00978325866162777,
0.07502949982881546,
-0.08731374144554138,
0.010592400096356869,
0.015180601738393307,
0.01841716840863228,
-0.017102312296628952,
0.007976481691002846,
0.09231571108102798,
0.08142907917499542,
-0.00497438246384263,
-0.07274919748306274,
-0.006827133242040873,
-0.014031252823770046,
0.008220143616199493,
0.004712331108748913,
0.049835771322250366,
-0.0017401144141331315,
-0.07922232896089554,
-0.03093128092586994,
-0.043068405240774155,
0.03254956379532814,
0.01072112750262022,
-0.05972936749458313,
-0.005521472543478012,
0.06807824224233627,
-0.021754877641797066,
0.042443159967660904,
0.0009079857263714075,
0.0017401144141331315,
-0.09437534213066101,
0.0008074176730588078,
-0.04060420021414757,
0.02081700973212719,
-0.027271753177046776,
0.004682447761297226,
0.04336263984441757,
-0.03745958209037781,
-0.06697486340999603,
0.03185075893998146,
-0.011162477545440197,
-0.0039077866822481155,
-0.06921839714050293,
0.03501376882195473,
0.025451183319091797,
-0.07826606929302216,
-0.026352273300290108,
-0.023777732625603676,
-0.012900292873382568,
-0.03254956379532814,
0.04748190566897392,
0.01844475232064724,
-0.012550891377031803,
-0.018306830897927284,
-0.04759224131703377,
0.058773111552000046,
0.01929067261517048,
0.07120446860790253,
0.029221048578619957,
0.06425320357084274,
0.01225665770471096,
0.01627478189766407,
0.09614074230194092,
-0.030214086174964905,
0.09540516138076782,
-0.010748711414635181,
0.003625046694651246,
0.06874026358127594,
-0.02585575543344021,
-0.03242083638906479,
0.003519306657835841,
-0.0018814842915162444,
0.09724412113428116,
0.022104280069470406,
-0.0192171148955822,
-0.022729525342583656,
-0.03227372094988823,
0.04435567557811737,
0.021479034796357155,
-0.05031390115618706,
-0.02089056745171547,
0.006114536430686712,
0.018306830897927284,
-0.019732022657990456,
0.08907914161682129,
-0.04328908026218414,
-0.025727028027176857,
-0.015107043087482452,
0.02201233245432377,
0.0074845608323812485,
-0.004057202022522688,
0.010307361371815205,
0.010886633768677711,
-0.010068297386169434,
-0.02340994030237198,
0.03277023881673813,
0.00030256612808443606,
0.035197664052248,
-0.07418358325958252,
0.03602519631385803,
-0.07554440945386887,
-0.022122669965028763,
-0.03514249622821808,
-0.025451183319091797,
-0.043693650513887405,
0.004041111096739769,
0.025690248236060143,
0.005241031292825937,
-0.0491737462580204,
0.05594111606478691,
0.008445416577160358,
-0.030692216008901596,
0.055646881461143494,
-0.03628264740109444,
0.008390247821807861,
0.011925645172595978,
-0.028540633618831635,
0.04762902110815048,
-0.05112304165959358,
0.03549189865589142,
-0.00182516616769135,
0.021570982411503792,
0.005820303224027157,
-0.018628649413585663,
-0.05803752690553665,
-0.021975552663207054,
-0.05082881078124046,
-0.004195123910903931,
0.004689343739300966,
0.02618676796555519,
-0.03983183950185776,
0.058846667408943176,
0.0015458744019269943,
0.011447516269981861,
0.05071847140789032,
-0.01614605449140072,
-0.01599893718957901,
0.0023883471731096506,
-0.030434761196374893,
-0.03240244835615158,
-0.05630890652537346,
0.06212001293897629,
0.01884932443499565,
-0.019529737532138824,
0.07797183841466904,
-0.026812013238668442,
-0.06278204172849655,
0.006114536430686712,
0.029496893286705017,
-0.008491390384733677,
-0.008491390384733677,
-0.009470636025071144,
-0.00023676588898524642,
0.04608429595828056,
-0.042921289801597595,
0.08481276035308838,
0.02353866770863533,
0.014555355533957481,
-0.024494925513863564,
-0.0491737462580204,
-0.03254956379532814,
-0.020651502534747124,
-0.05310911685228348,
0.0065972632728517056,
0.04133978486061096,
0.01714828610420227,
0.030085358768701553,
-0.010436088778078556,
0.009967154823243618,
0.011337178759276867,
0.02061472274363041,
-0.039647944271564484,
0.019051609560847282,
-0.02688557095825672,
0.03806643933057785,
-0.03986861929297447,
0.02061472274363041,
-0.0031790994107723236,
-0.012348605319857597,
0.021883605048060417,
0.012155515141785145,
0.027915388345718384,
-0.07782471925020218,
0.02136869728565216,
0.02653617039322853,
0.011419931426644325,
0.031188733875751495,
-0.04630497097969055,
-0.01481280941516161,
-0.05921446159482002,
0.025800585746765137,
-0.021479034796357155,
0.03431496396660805,
-0.05594111606478691,
-0.04847494140267372,
0.06851959228515625,
0.01794823445379734,
0.009590167552232742,
-0.04880595579743385,
0.023557057604193687,
-0.013718629255890846,
-0.056125011295080185,
-0.014500186778604984,
0.02648100070655346,
0.014261121861636639,
0.01435307040810585,
0.02116641029715538,
-0.024954665452241898,
0.06035461276769638,
0.06403253227472305,
-0.03205304592847824,
0.04395110532641411,
0.020412437617778778,
0.0019791789818555117,
-0.008560351096093655,
-0.015419665724039078,
-0.030011801049113274,
-0.008082222193479538,
0.026315495371818542,
-0.02703268826007843,
-0.020504385232925415,
-0.009139623492956161,
0.017267819494009018,
-0.06822535395622253,
0.015833431854844093,
-0.04211214557290077,
-0.006142120808362961,
-0.043693650513887405,
0.0011953229550272226,
-0.03637459874153137,
0.0016424197237938643,
-0.09967154264450073,
0.003328514751046896,
0.005181265063583851,
0.014095616526901722,
0.02138708531856537,
0.01712070219218731,
0.01579665206372738,
0.01337842270731926,
-0.03324836865067482,
0.013599097728729248,
-0.02166293002665043,
-0.06097986176609993,
-0.03924337029457092,
-0.052226416766643524,
0.04402466490864754,
0.010739517398178577,
0.0421857051551342,
0.023924848064780235,
0.025322457775473595,
0.0210928525775671,
-0.024954665452241898,
0.029956631362438202,
-0.00029207830084487796,
0.013433591462671757,
0.0359516367316246,
-0.04814393073320389,
0.029699178412556648,
-0.0070064314641058445,
0.010206218808889389,
0.05237353593111038,
0.019658464938402176,
0.009213181212544441,
0.004402006510645151,
-0.03679755702614784,
0.0021228475961834192,
-0.03424140438437462,
-0.011217646300792694,
-0.043914325535297394,
-0.011024555191397667,
-0.007424794603139162,
-0.012560085393488407,
0.02173648774623871,
-0.0686299279332161,
0.04807037115097046,
-0.04277417063713074,
-0.06811501830816269,
-0.0279521681368351,
0.045790065079927444,
-0.03357937932014465,
0.02138708531856537,
-0.049136966466903687,
0.0067581720650196075,
-0.037330854684114456,
-0.02340994030237198,
-0.005539861973375082,
0.03777220472693443,
-0.027768271043896675,
0.06818857789039612,
-0.028172843158245087,
0.023557057604193687,
-0.04178113490343094,
-0.025028223171830177,
0.014730056747794151,
-0.03876524418592453,
-0.012845124118030071,
-0.0396847203373909,
-0.023630615323781967,
-0.0025170743465423584,
0.04751868546009064,
-0.004535330925136805,
0.016238002106547356,
0.027216583490371704,
-0.035730961710214615,
-0.034186236560344696,
0.03159330412745476,
-0.009489024989306927,
-0.05719160661101341,
-0.007833962328732014,
0.051454056054353714,
-0.005705368239432573,
0.030820943415164948,
-0.06826213747262955,
0.010822270065546036,
0.022049110382795334,
0.0396847203373909,
0.04604751989245415,
-0.022950200363993645,
-0.044870585203170776,
0.03172203153371811,
0.020173372700810432,
0.04924730584025383,
-0.0052640181966125965,
-0.04163401946425438,
0.01701956056058407,
-0.007847755216062069,
0.03961116448044777,
-0.012560085393488407,
0.004287071526050568,
-0.030011801049113274,
-0.03466436639428139,
-0.006634042598307133,
-0.019456179812550545,
0.08900558948516846,
0.01075790636241436,
0.014638109132647514,
0.003291735425591469,
-0.0009068363578990102,
-0.05399181693792343,
-0.019658464938402176,
0.04064098000526428,
-0.09224215149879456,
0.018738986924290657,
0.025800585746765137,
-0.003956059459596872,
-0.0786338597536087,
-0.030508318915963173,
-0.04435567557811737,
-0.014316290616989136,
-0.03609875217080116,
-0.016412703320384026,
0.06921839714050293,
0.014895563013851643,
0.014233537949621677,
0.036926284432411194,
-0.02171809785068035,
-0.0046226815320551395,
-0.013157747685909271,
0.03562062233686447,
0.045790065079927444,
0.03589646890759468,
0.020173372700810432,
0.008633909747004509,
-0.02885325625538826,
0.010638373903930187,
0.007673054002225399,
-0.054948076605796814,
0.030232476070523262,
0.02900037355720997,
0.030581878498196602,
0.05226319655776024,
-0.0009620051132515073,
-0.07650066912174225,
-0.0210928525775671,
0.0205963347107172,
-0.07407324761152267,
-0.03297252580523491,
0.07753048837184906,
-0.01299224141985178,
0.041597239673137665,
-0.04832782596349716,
0.017939038574695587,
0.04744512587785721,
0.034406911581754684,
-0.061715442687273026,
0.030857721343636513,
0.020927347242832184,
-0.033910393714904785,
-0.036503322422504425,
0.0004278451669961214,
-0.036926284432411194,
0.043215520679950714,
0.04707733541727066,
-0.05428605154156685,
0.0025906325317919254,
0.012918682768940926,
-0.0559043362736702,
0.06811501830816269,
0.005567446351051331,
-0.006537497043609619,
0.0004367526271380484,
-0.11276493221521378,
0.024991445243358612,
-0.029864683747291565,
-0.00868448056280613,
-0.04821749031543732,
-0.00782476831227541,
-0.03280701860785484,
0.049909330904483795,
0.04770258069038391,
0.0868723914027214,
-0.03242083638906479,
-0.04678310081362724,
-0.015070264227688313,
-0.0039077866822481155,
0.044318895787000656,
0.030489930883049965,
-0.013553122989833355,
0.038949139416217804,
-0.015254159457981586,
0.06782078742980957,
0.03093128092586994,
-0.0210928525775671,
0.04954154044389725,
0.028191233053803444,
-0.027823440730571747,
0.003767566056922078,
0.047960035502910614,
-0.011438321322202682,
-0.04328908026218414,
0.01054642628878355,
0.029533671215176582,
-0.015290939249098301,
-0.06929194927215576,
0.026076430454850197,
0.10621823370456696,
0.00610993942245841,
0.028724530711770058,
0.005401940084993839,
0.0007896027527749538,
0.030986448749899864,
-0.01393011026084423,
-0.0016366729978471994,
-0.030434761196374893,
-0.040052514523267746,
0.01114408764988184,
-0.058368537575006485,
-0.018628649413585663,
0.006569678895175457,
0.011337178759276867,
0.047114115208387375,
-0.02186521515250206,
0.021883605048060417,
0.012799150310456753,
-0.04211214557290077,
-0.007852352224290371,
0.04751868546009064,
0.039353709667921066,
0.013773798011243343,
-0.013074994087219238,
0.0027952168602496386,
0.06451065838336945,
0.01704714447259903,
0.05663991719484329,
0.0456797257065773,
-0.020081425085663795,
-0.025929313153028488,
0.028393518179655075,
-0.030784163624048233,
-0.01657821051776409,
-0.05667669698596001,
-0.021552592515945435,
-0.033836834132671356,
0.0037445789203047752,
0.02543279528617859,
-0.04247993975877762,
0.012707202695310116,
0.0046364739537239075,
0.00005606668128166348,
0.05046101659536362,
0.041045550256967545,
0.02905554324388504,
0.010344141162931919,
0.0070064314641058445,
0.05476418137550354,
0.006992639508098364,
-0.01579665206372738,
0.04902663081884384,
0.028319958597421646,
-0.0038457217160612345,
0.013911720365285873,
0.03699984401464462,
0.01724942959845066,
-0.006422562059015036,
-0.03218177333474159,
0.03017730638384819,
0.06572437286376953,
0.03806643933057785,
-0.006873107049614191,
-0.022803084924817085,
-0.008840792812407017,
0.01089582871645689,
0.008863779716193676,
0.023170875385403633,
-0.048033591359853745,
0.006923678331077099
] |
729,612 | tinytuya.core | encrypt | null | def encrypt(msg, key):
return AESCipher( key ).encrypt( msg, use_base64=False, pad=True )
| (msg, key) | [
0.002321253763511777,
-0.06916942447423935,
0.025675999000668526,
0.07603035867214203,
0.029719049111008644,
-0.04585624858736992,
-0.018079964444041252,
0.004817531444132328,
0.09024229645729065,
0.01836000196635723,
0.053802330046892166,
-0.01273298542946577,
0.001334556844085455,
0.05173705145716667,
-0.0322393923997879,
-0.0352323018014431,
0.02046028897166252,
-0.0692044273018837,
0.0266911368817091,
-0.007521649822592735,
0.0260260459035635,
0.018990088254213333,
0.03903031721711159,
-0.01811496913433075,
0.0024175168946385384,
0.0777805969119072,
0.04690639302134514,
0.05033686012029648,
0.02945651486515999,
-0.05443241819739342,
0.04988179728388786,
-0.025255940854549408,
0.0014756697928532958,
0.035162292420864105,
-0.04792153090238571,
-0.0032685704063624144,
0.0059289331547915936,
-0.03990543633699417,
0.003773951670154929,
-0.05884302034974098,
0.02502841129899025,
0.032344408333301544,
0.07344000786542892,
-0.07708050310611725,
0.018465016037225723,
0.0022862490732222795,
0.002450333908200264,
0.06741918623447418,
0.020057734102010727,
-0.004506864119321108,
0.011149019002914429,
-0.04557621106505394,
0.06801427155733109,
0.03258943930268288,
0.024765875190496445,
0.029526524245738983,
-0.05740782245993614,
-0.052052091807127,
-0.022858114913105965,
0.02082783728837967,
-0.0049750530160963535,
-0.03547733277082443,
0.023960765451192856,
0.04645133018493652,
-0.029929079115390778,
0.007788561284542084,
-0.034864749759435654,
0.027286218479275703,
0.0007695580134168267,
-0.03451470285654068,
0.03393712639808655,
-0.0039796046912670135,
-0.03421716392040253,
0.01700356788933277,
-0.10242395848035812,
0.054187383502721786,
-0.05691775679588318,
0.06139836832880974,
-0.009451287798583508,
0.009267512708902359,
0.05366231128573418,
-0.03269445523619652,
-0.014929534867405891,
0.048656631261110306,
0.044071003794670105,
-0.0016846045618876815,
-0.017799925059080124,
0.0029666542541235685,
-0.03551233932375908,
-0.01816747523844242,
0.005241964478045702,
0.017694910988211632,
-0.051807060837745667,
0.024275807663798332,
0.01993521675467491,
-0.0033342044334858656,
0.06167840585112572,
-0.014929534867405891,
0.002498465357348323,
0.060138195753097534,
-0.019480153918266296,
0.09472290426492691,
0.016023432835936546,
-0.034864749759435654,
-0.0049487994983792305,
-0.07792061567306519,
-0.03236190974712372,
-0.013144291006028652,
0.02221052721142769,
0.024240802973508835,
0.01728360541164875,
-0.015577122569084167,
-0.052052091807127,
-0.022298038005828857,
-0.009355024434626102,
-0.005500124301761389,
-0.012067894451320171,
0.0052725933492183685,
-0.0058851768262684345,
0.02956152893602848,
0.04568122327327728,
-0.022578077390789986,
0.0017458628863096237,
-0.04386097565293312,
0.01570839062333107,
-0.011079009622335434,
0.025203434750437737,
-0.020145244896411896,
0.025395961478352547,
-0.09850342571735382,
-0.04151565581560135,
0.03244942054152489,
0.05488748103380203,
0.0217379629611969,
-0.02502841129899025,
-0.011149019002914429,
0.0066640330478549,
-0.0018410321790724993,
0.04785152152180672,
0.044596076011657715,
0.046311311423778534,
0.02530844882130623,
0.019620174542069435,
0.01764240488409996,
0.04018547758460045,
-0.06426876038312912,
0.02826635167002678,
-0.04466608539223671,
0.02021525427699089,
0.011770353652536869,
0.03728007897734642,
0.03657998517155647,
0.034199658781290054,
-0.013485588133335114,
0.05278719216585159,
-0.0019197928486391902,
0.0033035750966519117,
-0.009696321561932564,
0.0020521546248346567,
-0.01070270873606205,
0.027636265382170677,
0.0019449525279924273,
-0.022525569424033165,
-0.009967608377337456,
0.06636904180049896,
0.0018552527762949467,
-0.01289925817400217,
0.013809381984174252,
0.004511239938437939,
-0.031959354877471924,
-0.0030694808810949326,
-0.03728007897734642,
-0.04743146523833275,
-0.012855501845479012,
0.0639537125825882,
0.008094852790236473,
-0.08191116154193878,
-0.0013848762027919292,
0.0071934801526367664,
-0.04109559953212738,
-0.05572759360074997,
0.08002090454101562,
0.013030525296926498,
0.04190070927143097,
-0.009433785453438759,
0.010597693733870983,
0.06115333363413811,
0.04351092875003815,
0.030996723100543022,
-0.07939081639051437,
-0.03447970002889633,
0.010265149176120758,
-0.024713367223739624,
0.010545186698436737,
-0.06073327735066414,
0.04718643054366112,
-0.006475882604718208,
-0.05695275962352753,
-0.08744191378355026,
0.08191116154193878,
-0.020967857912182808,
-0.0057232799008488655,
0.01611969619989395,
0.0038330224342644215,
0.022280536592006683,
-0.019865207374095917,
-0.03636995702981949,
0.0022184273693710566,
-0.024678362533450127,
-0.04057052731513977,
0.05443241819739342,
-0.02298063226044178,
-0.00974882859736681,
0.03791016712784767,
0.024608353152871132,
0.00828300416469574,
0.005241964478045702,
0.0332370288670063,
-0.021230392158031464,
0.030856704339385033,
0.018657542765140533,
0.031259261071681976,
-0.035582348704338074,
-0.032921984791755676,
0.046696364879608154,
-0.005478246603161097,
0.001053971704095602,
-0.0028310108464211226,
-0.07589033991098404,
-0.03080419823527336,
0.05572759360074997,
0.015585874207317829,
-0.0269886776804924,
0.058667995035648346,
0.002890081377699971,
-0.02922898344695568,
-0.03036663867533207,
-0.027093691751360893,
-0.0194451492279768,
-0.010956493206322193,
0.021615445613861084,
-0.04165567457675934,
0.050266850739717484,
0.02455584704875946,
0.04981178790330887,
-0.00271068187430501,
-0.008803700096905231,
0.04386097565293312,
-0.019095102325081825,
0.0592980794608593,
-0.03808518871665001,
-0.02112537808716297,
-0.038015179336071014,
-0.0335695743560791,
0.0008466778672300279,
0.030069097876548767,
0.008812450803816319,
0.03146928921341896,
-0.025063415989279747,
0.017432374879717827,
-0.00154677324462682,
0.03309701010584831,
-0.06605400145053864,
-0.018377503380179405,
0.052892208099365234,
0.006629028357565403,
-0.05740782245993614,
0.05047687888145447,
0.03251942992210388,
0.010116378776729107,
0.05159703269600868,
0.013100535608828068,
0.05439741164445877,
0.05635767802596092,
0.014124425128102303,
-0.03875027969479561,
-0.012347932904958725,
0.025903530418872833,
0.04732644930481911,
0.04106059670448303,
-0.008326759561896324,
-0.01821998320519924,
-0.013231802731752396,
-0.003664561780169606,
-0.008077350445091724,
0.0006979075842536986,
-0.003307950682938099,
-0.030979221686720848,
0.004106496926397085,
-0.011682841926813126,
-0.010107627138495445,
0.023995770141482353,
-0.0008778540068306029,
0.006410248577594757,
-0.04109559953212738,
-0.03650997579097748,
-0.0062264734879136086,
0.011700344271957874,
0.049321722239255905,
0.0026100431568920612,
0.013888142071664333,
0.06300858408212662,
0.00353985745459795,
0.009591306559741497,
0.04491112008690834,
0.025378458201885223,
-0.06125834584236145,
0.03211687505245209,
-0.0058851768262684345,
0.0018191541312262416,
-0.05061689764261246,
-0.006594023667275906,
-0.009162498638033867,
0.006191468797624111,
0.012006635777652264,
-0.002844137605279684,
0.045926257967948914,
0.012794243171811104,
0.024520842358469963,
0.05950810760259628,
0.061993446201086044,
-0.02807382494211197,
-0.01645224168896675,
0.05093194171786308,
-0.006484633777290583,
-0.027951309457421303,
0.05558757483959198,
-0.05807291343808174,
0.06605400145053864,
-0.021107876673340797,
-0.01647849567234516,
0.034059640020132065,
-0.005845796782523394,
-0.07189979404211044,
-0.12223665416240692,
-0.00974882859736681,
-0.022805606946349144,
-0.006965949200093746,
-0.018324997276067734,
0.047081414610147476,
-0.002059811959043145,
-0.04624130204319954,
-0.016522251069545746,
0.0014100358821451664,
0.0017568018520250916,
-0.04438604786992073,
-0.01825498789548874,
-0.0329744927585125,
-0.04435104504227638,
-0.034252166748046875,
0.0014516040682792664,
-0.01949765719473362,
0.08471154421567917,
-0.003887717379257083,
0.014439467340707779,
0.00310448557138443,
-0.042110737413167953,
-0.01797494851052761,
0.01158657856285572,
0.01955016329884529,
0.03509228304028511,
0.015472108498215675,
-0.008466778323054314,
0.007937331683933735,
-0.10046368837356567,
0.06972949951887131,
-0.019130107015371323,
-0.10116378217935562,
0.040640536695718765,
0.0618884339928627,
0.017344864085316658,
-0.018132470548152924,
-0.06094330549240112,
0.05334727093577385,
-0.015095806680619717,
0.005578885320574045,
-0.09171249717473984,
0.018272489309310913,
0.042110737413167953,
0.011280287057161331,
-0.001038657152093947,
-0.006322736386209726,
0.03594989702105522,
0.04092057794332504,
0.03875027969479561,
0.04277582839131355,
0.03145178407430649,
0.006278980523347855,
0.037455104291439056,
0.00322919012978673,
-0.051982082426548004,
0.027338724583387375,
0.021615445613861084,
-0.0071541001088917255,
-0.05702276900410652,
0.01820247992873192,
0.013293061405420303,
0.0031898096203804016,
-0.03211687505245209,
-0.027706274762749672,
0.03393712639808655,
0.015944672748446465,
0.0441410169005394,
-0.005185081623494625,
-0.01222541555762291,
0.062378499656915665,
-0.06251852214336395,
-0.007464767433702946,
0.004996930714696646,
0.019235121086239815,
-0.016469744965434074,
0.015428352169692516,
-0.009433785453438759,
0.0005928932805545628,
-0.019760193303227425,
-0.05891302973031998,
0.011499066837131977,
-0.07715051621198654,
-0.013249305076897144,
0.02469586580991745,
-0.01770366169512272,
-0.05023184418678284,
-0.005443241912871599,
-0.01839500665664673,
-0.05019684135913849,
0.006909066345542669,
-0.0049225459806621075,
-0.047991540282964706,
0.0375601164996624,
-0.02655111812055111,
-0.037980176508426666,
-0.027443740516901016,
0.05030185356736183,
0.005937684327363968,
-0.030594168230891228,
0.02812633290886879,
0.025973539799451828,
-0.027881300076842308,
-0.01858753338456154,
0.000015827352399355732,
-0.020232757553458214,
-0.018727552145719528,
0.00042607367504388094,
0.010256397537887096,
0.019042594358325005,
0.008996225893497467,
-0.05229712650179863,
0.06811928004026413,
0.029333997517824173,
0.015472108498215675,
0.09661316871643066,
0.03540732339024544,
-0.017248600721359253,
0.05439741164445877,
0.014719505794346333,
-0.024660861119627953,
0.04928671568632126,
0.007937331683933735,
-0.021720459684729576,
-0.011332794092595577,
0.018097465857863426,
-0.006121458951383829,
-0.045121148228645325,
0.008646178059279919,
0.019095102325081825,
0.019480153918266296,
-0.0428108349442482,
-0.007810439448803663,
0.05548255890607834,
-0.018184978514909744,
0.04106059670448303,
-0.010335158556699753,
0.010903986170887947,
-0.016242213547229767,
0.06048824265599251,
0.012610468082129955,
0.05219211056828499,
0.00970507226884365,
-0.02068781852722168,
0.012444195337593555,
-0.06181842461228371,
-0.05964812636375427,
-0.01683729514479637,
-0.027636265382170677,
0.03174932673573494,
-0.03731508553028107,
0.005915806163102388,
-0.02093285322189331,
0.04172568768262863,
0.028336361050605774,
-0.02546597085893154,
0.08646178245544434,
-0.0025312823709100485,
0.034199658781290054,
0.008493032306432724,
-0.021055368706583977,
-0.06244850903749466,
-0.030821699649095535,
-0.06405872851610184,
-0.03194185346364975,
-0.03246692568063736,
-0.021055368706583977,
-0.02994658052921295,
-0.04848160594701767,
0.012995520606637001,
-0.0015248953131958842,
-0.04372095689177513,
0.007442889269441366,
0.05229712650179863,
0.015935922041535378,
0.007499772123992443,
0.02049529366195202,
-0.019340135157108307,
-0.07025457173585892,
0.01590091735124588,
-0.020285263657569885,
-0.04697640240192413,
-0.027653768658638,
-0.014631994068622589,
-0.06906440854072571,
0.005360105540603399,
0.038155198097229004,
0.005158828105777502,
0.04277582839131355,
0.017187342047691345,
0.04561121389269829,
0.010606445372104645,
-0.04428103566169739,
-0.047221433371305466,
0.04428103566169739,
-0.0830313116312027,
0.0006716540083289146,
0.031189249828457832,
0.014579487033188343,
-0.05016183480620384,
-0.011070258915424347,
-0.004134938586503267,
0.022858114913105965,
-0.02922898344695568,
-0.01634722761809826,
-0.033919621258974075,
-0.03250192850828171,
-0.02159794233739376,
-0.059753142297267914,
-0.0394853800535202,
0.1120152622461319,
-0.00598144019022584,
0.014203185215592384,
-0.05926307663321495,
-0.04823657497763634,
-0.05621765926480293,
-0.008615548722445965,
-0.027636265382170677,
0.029579030349850655,
0.06668408960103989,
-0.08086101710796356,
-0.03934536129236221,
-0.07666044682264328,
-0.05415238067507744,
0.025921031832695007,
0.02121289074420929,
0.005517627112567425,
-0.016023432835936546,
-0.02898394875228405,
0.009171249344944954,
-0.0006475882255472243,
-0.016697274520993233,
0.02817883901298046,
0.048131559044122696,
0.007871697656810284,
0.00007294939132407308,
0.0020795022137463093,
0.03225689381361008,
0.010212641209363937,
-0.05054688826203346,
0.005189456976950169,
-0.03474223613739014,
0.008269877173006535,
-0.00032051242305897176,
-0.051982082426548004,
-0.048166561871767044,
-0.028231346979737282,
0.025763511657714844,
0.055657584220170975,
0.03484724834561348,
-0.022665588185191154,
0.006817178800702095,
-0.0015369282336905599,
-0.00595956202596426,
0.038155198097229004,
-0.01570839062333107,
-0.04001045227050781,
0.03551233932375908,
0.04778151214122772,
0.051422007381916046,
-0.001047955360263586,
0.029544025659561157,
0.02998158521950245,
0.01584840938448906,
-0.003800205420702696,
0.025518476963043213,
0.0013487775577232242,
0.019760193303227425,
0.024520842358469963,
0.013153042644262314,
0.03703504800796509,
-0.05009182542562485,
0.05712778493762016,
0.0032510680612176657,
0.03605491295456886,
-0.005714528728276491,
0.04981178790330887,
0.014772012829780579,
-0.03728007897734642,
0.04008046165108681,
0.024398325011134148,
-0.045226164162158966,
-0.022718096151947975,
0.0474664680659771,
0.0313117653131485,
0.02851138450205326,
0.01508705597370863,
-0.041165608912706375,
-0.02417079359292984,
0.00645838025957346,
-0.005040687043219805,
0.030961718410253525,
-0.03896030783653259,
-0.04701140522956848,
-0.04428103566169739,
-0.02516843006014824,
0.06507387012243271,
0.06538891047239304,
0.030979221686720848,
0.03222189098596573,
-0.022000497207045555,
-0.012645472772419453,
0.023523205891251564,
-0.012785492464900017,
0.002030276693403721,
-0.021825473755598068,
-0.001168284215964377,
-0.0605582520365715,
-0.05625266581773758,
-0.052122101187705994,
-0.0035573597997426987,
-0.0034195284824818373,
-0.053032226860523224,
-0.08100103586912155,
-0.022805606946349144,
0.016723528504371643,
-0.06801427155733109,
0.034637220203876495,
0.018710048869252205,
0.04113060608506203,
0.01034390926361084,
0.017677409574389458,
-0.00221295771189034,
0.0401504710316658,
-0.027338724583387375,
0.023103147745132446,
0.026096055284142494,
-0.04382597282528877,
0.007394757587462664,
-0.01079897116869688,
-0.009932603687047958,
0.007578532677143812,
-0.01963767595589161,
0.03428717330098152,
-0.021055368706583977,
0.04543619230389595,
0.029666543006896973,
-0.06360366940498352,
-0.03647496923804283,
0.039590395987033844,
-0.00313511467538774,
0.05135199800133705,
-0.03647496923804283,
0.03409464657306671,
0.017528638243675232,
-0.010212641209363937,
0.03619493171572685,
0.015130812302231789,
-0.016793537884950638,
-0.03517979383468628,
0.006742794066667557,
0.0368950292468071,
0.0214054174721241,
-0.034917257726192474,
-0.10557438433170319,
-0.00389209296554327,
-0.03250192850828171,
-0.008978723548352718,
-0.07428012043237686,
0.012041640467941761,
-0.014719505794346333,
0.007897951640188694,
-0.007197855971753597,
-0.0395553894340992,
-0.022858114913105965,
-0.026306085288524628,
0.020372776314616203,
0.004681888036429882,
-0.009512546472251415,
-0.00865492969751358,
-0.034724730998277664,
0.018710048869252205,
-0.017764920368790627,
0.011997885070741177,
-0.02740873582661152,
0.02201800048351288,
-0.02511592209339142,
0.0007865134393796325,
-0.00823924783617258,
-0.0033188897650688887,
0.05229712650179863,
-0.023628219962120056,
0.00007117180939530954,
-0.01034390926361084,
0.017379868775606155,
0.013503090478479862,
0.014098171144723892,
0.026061050593852997,
-0.04757148399949074,
-0.030856704339385033,
-0.042110737413167953,
-0.04295085370540619,
-0.030681680887937546,
0.03633495047688484,
-0.008646178059279919,
0.0194451492279768,
0.007381631061434746,
-0.0015741207171231508,
0.050651900470256805,
-0.02259557880461216,
-0.01955016329884529,
-0.09605308622121811,
-0.04095558077096939,
-0.018079964444041252,
0.04025548696517944,
-0.04242578148841858,
0.01667977310717106,
0.008668055757880211,
-0.025150926783680916,
0.0345672108232975,
-0.019112603738904,
0.05226211994886398,
0.03784015774726868,
-0.0016441303305327892,
0.026761146262288094,
-0.03980042412877083,
0.05285720154643059,
-0.04186570644378662,
0.02774127945303917,
0.041445646435022354,
0.002356258686631918,
-0.06927444040775299,
0.02621857263147831,
0.026288582012057304,
-0.059613123536109924,
-0.021475426852703094,
0.007184728980064392,
0.004428103566169739,
-0.0097225746139884,
-0.031766828149557114,
0.010133881121873856,
0.055762600153684616,
0.049041684716939926
] |
729,613 | tinytuya.core | error_json | Return error details in JSON | def error_json(number=None, payload=None):
"""Return error details in JSON"""
try:
spayload = json.dumps(payload)
# spayload = payload.replace('\"','').replace('\'','')
except:
spayload = '""'
vals = (error_codes[number], str(number), spayload)
log.debug("ERROR %s - %s - payload: %s", *vals)
return json.loads('{ "Error":"%s", "Err":"%s", "Payload":%s }' % vals)
| (number=None, payload=None) | [
-0.041698064655065536,
-0.016370024532079697,
0.009876787662506104,
0.019665231928229332,
-0.012686106376349926,
-0.009355561807751656,
-0.06752966344356537,
-0.0030765573028475046,
-0.007288326974958181,
-0.08374950289726257,
0.06092157959938049,
0.04434836655855179,
0.027351103723049164,
-0.03367648646235466,
0.025107182562351227,
-0.01676756888628006,
0.01199702825397253,
-0.0186757855117321,
0.06509138643741608,
0.002977171214297414,
-0.012924632988870144,
0.0051680863834917545,
-0.019753575325012207,
0.07625798881053925,
-0.03226299211382866,
0.07781282812356949,
0.019188176840543747,
-0.004057168494910002,
0.04562050849199295,
-0.03519599139690399,
-0.04625658318400383,
-0.06731763482093811,
-0.020018603652715683,
0.08085183799266815,
-0.07279492914676666,
0.015212725847959518,
-0.06282979249954224,
-0.050532400608062744,
-0.0901808962225914,
0.030001403763890266,
-0.03646813705563545,
0.026184970512986183,
-0.05498490482568741,
-0.04880087077617645,
0.038835737854242325,
0.004357535857707262,
0.017704008147120476,
-0.005070908460766077,
-0.05286466330289841,
0.025495892390608788,
0.008405870757997036,
-0.007707957644015551,
-0.024471109732985497,
-0.02222718857228756,
-0.03579672798514366,
-0.0017249040538445115,
0.008595808409154415,
-0.03554936498403549,
-0.02346399612724781,
-0.03152091056108475,
-0.04802344739437103,
0.051097799092531204,
-0.01451481319963932,
0.01599898189306259,
-0.02786349505186081,
0.0018938607536256313,
-0.020000936463475227,
0.015539596788585186,
0.006051519885659218,
-0.011617151089012623,
0.024718470871448517,
0.005614220164716244,
-0.03199796378612518,
-0.025637242943048477,
0.05968477204442024,
-0.007663785945624113,
-0.04820013418793678,
0.019541550427675247,
-0.039330463856458664,
0.007897895760834217,
0.03731623291969299,
-0.0186757855117321,
0.00868415180593729,
0.05968477204442024,
0.03201563283801079,
-0.050143688917160034,
-0.013278006576001644,
0.020902037620544434,
-0.041061993688344955,
-0.05639839917421341,
-0.01063654012978077,
-0.04936626926064491,
-0.023905713111162186,
0.019011490046977997,
-0.005676060449331999,
0.0009364395518787205,
0.015230394899845123,
-0.04145070165395737,
0.038411691784858704,
-0.004951645154505968,
0.04554983600974083,
0.017385972663760185,
-0.029506681486964226,
-0.04431302845478058,
0.02466546557843685,
0.011670157313346863,
0.021820809692144394,
-0.005821827333420515,
-0.019947929307818413,
0.03668016195297241,
-0.012005861848592758,
-0.0120677025988698,
-0.05325337499380112,
-0.017315298318862915,
0.06473801285028458,
0.06650488078594208,
0.0531826987862587,
0.007425259333103895,
-0.00909053161740303,
-0.020230628550052643,
0.04668062925338745,
-0.035248998552560806,
-0.0073501672595739365,
0.025902271270751953,
0.04519646242260933,
0.019364863634109497,
-0.012615431100130081,
0.010389178991317749,
0.07866092771291733,
-0.05307668820023537,
0.02902962639927864,
0.012827455066144466,
0.015945976600050926,
0.0024603623896837234,
0.008962433785200119,
0.06774168461561203,
-0.06318316608667374,
-0.029612693935632706,
0.04611523076891899,
-0.005216675344854593,
0.0023698105942457914,
0.01469149999320507,
-0.03774028271436691,
-0.0012699357466772199,
-0.007451761979609728,
-0.015256897546350956,
0.020654676482081413,
0.007292744237929583,
-0.06601015478372574,
-0.02871159091591835,
0.028481898829340935,
0.0034188879653811455,
0.05696379765868187,
-0.07014462351799011,
0.017571493983268738,
-0.0008293232531286776,
0.013534202240407467,
-0.06950855255126953,
-0.04459572583436966,
-0.005331521388143301,
0.027669139206409454,
-0.035461023449897766,
0.061133600771427155,
-0.015601436607539654,
0.024700801819562912,
-0.006418144796043634,
0.08268938213586807,
-0.02906496450304985,
-0.014832849614322186,
0.034294892102479935,
-0.020018603652715683,
0.013958250172436237,
0.017023764550685883,
0.010088811628520489,
-0.029400669038295746,
0.0560096874833107,
0.03795230761170387,
0.0055479626171290874,
-0.02705073542892933,
0.016670390963554382,
-0.0012301811948418617,
0.029860055074095726,
0.005989679601043463,
0.08586974442005157,
0.0271214097738266,
-0.05533827841281891,
-0.01414377149194479,
0.008723906241357327,
0.04625658318400383,
0.02761613391339779,
0.049754977226257324,
0.06035618111491203,
0.005446367897093296,
0.015619105659425259,
0.027033066377043724,
0.011731998063623905,
0.05484355613589287,
-0.010115314275026321,
0.0630418211221695,
0.017924867570400238,
-0.0457971952855587,
0.03203330188989639,
-0.040355246514081955,
-0.025972947478294373,
-0.007716792169958353,
-0.04858884587883949,
0.003403427777811885,
0.0017547198804095387,
-0.015318738296627998,
0.0013339846627786756,
-0.05473754182457924,
0.028022512793540955,
-0.023057615384459496,
0.07526853680610657,
0.04569118469953537,
-0.02906496450304985,
0.028764596208930016,
0.003107477445155382,
0.025442887097597122,
-0.041698064655065536,
0.002601711777970195,
-0.02194448933005333,
0.030831830576062202,
-0.006771518383175135,
0.0035580287221819162,
0.0708160325884819,
0.03353513777256012,
-0.005684894975274801,
0.007796301040798426,
0.05986145883798599,
0.0029020793735980988,
-0.02367601916193962,
0.04470174014568329,
0.010981079190969467,
0.03360581398010254,
0.009920959360897541,
0.0034409738145768642,
-0.11774402856826782,
0.07134609669446945,
-0.05947274714708328,
0.0009033108362928033,
-0.06848376989364624,
-0.02169712819159031,
0.05579766258597374,
0.03332311287522316,
0.007663785945624113,
0.038235004991292953,
0.07562191039323807,
-0.07901430130004883,
-0.008556053973734379,
-0.0031096860766410828,
0.014779843389987946,
0.022103507071733475,
0.016564378514885902,
-0.021962158381938934,
-0.04371229186654091,
0.07830755412578583,
-0.002970545319840312,
0.002517785644158721,
-0.01373739168047905,
0.06548009812831879,
-0.04530247300863266,
-0.02659134939312935,
0.008516299538314342,
-0.017456647008657455,
-0.05745851993560791,
-0.020283633843064308,
0.02673269994556904,
0.05537361651659012,
0.04710467904806137,
0.02920631319284439,
0.009859118610620499,
0.001540487282909453,
-0.022421544417738914,
-0.0032046553678810596,
0.014099599793553352,
-0.038482364267110825,
-0.011087091639637947,
0.04901289567351341,
-0.07173480838537216,
-0.07071002572774887,
-0.02984238602221012,
0.016961924731731415,
0.008971267379820347,
0.021820809692144394,
-0.030761156231164932,
0.052793990820646286,
-0.07965037226676941,
0.020230628550052643,
0.05979078263044357,
0.019523881375789642,
-0.02477147802710533,
-0.07145210355520248,
-0.033729493618011475,
-0.04572652280330658,
0.013118988834321499,
0.01871112361550331,
-0.0059587592259049416,
0.01308365073055029,
0.02265123650431633,
-0.006250292528420687,
0.051910556852817535,
0.062405746430158615,
-0.033976856619119644,
-0.033835504204034805,
-0.02722742222249508,
-0.020424984395503998,
-0.0341712087392807,
-0.07095738500356674,
-0.03132655471563339,
0.012562424875795841,
0.0486241839826107,
-0.02134375460445881,
0.0331110917031765,
0.024524115025997162,
0.0641372799873352,
0.025301536545157433,
0.008326360955834389,
-0.0017701799515634775,
0.04350026696920395,
0.0331110917031765,
-0.061168938875198364,
0.009055194444954395,
-0.009311390109360218,
0.07710608094930649,
-0.08360815048217773,
0.00397986825555563,
-0.006069188471883535,
0.06579813361167908,
0.02222718857228756,
-0.03588506951928139,
-0.050603073090314865,
0.007314830087125301,
-0.0028026930522173643,
0.04512578621506691,
-0.04406566545367241,
0.012156045995652676,
-0.035072311758995056,
-0.050709087401628494,
0.05703447014093399,
-0.012774449773132801,
-0.08063981682062149,
0.007239738013595343,
0.030831830576062202,
-0.016193337738513947,
-0.025637242943048477,
0.04622124508023262,
-0.03678617253899574,
-0.017271125689148903,
-0.09385598450899124,
-0.06989726424217224,
0.08502164483070374,
0.001667480799369514,
0.033199433237314224,
-0.040885306894779205,
-0.02652067504823208,
-0.018269406631588936,
-0.03777562081813812,
0.01740364171564579,
0.031185204163193703,
0.038659051060676575,
-0.011078257113695145,
-0.05873066186904907,
0.007522436790168285,
-0.026997730135917664,
0.01361371111124754,
0.019859585911035538,
-0.031167536973953247,
0.06286513060331345,
0.02864091657102108,
0.021396761760115623,
-0.025743253529071808,
-0.0006327593000605702,
0.05410147085785866,
-0.04551449790596962,
0.0303017720580101,
0.01053052768111229,
-0.0020793818403035402,
-0.024223748594522476,
-0.006365139037370682,
-0.04127401486039162,
-0.03657415136694908,
-0.027633801102638245,
-0.004178640898317099,
-0.007005628198385239,
0.01673223078250885,
0.006555077154189348,
-0.05639839917421341,
-0.027845825999975204,
-0.004651277791708708,
-0.026432331651449203,
-0.011846844106912613,
0.039613161236047745,
0.025531230494379997,
-0.022951604798436165,
0.017279960215091705,
-0.008896175771951675,
0.013074817135930061,
-0.04180407524108887,
0.012005861848592758,
-0.05865998938679695,
-0.006625751499086618,
-0.021750133484601974,
-0.0036044090520590544,
0.06000280752778053,
-0.02091970667243004,
0.015910638496279716,
0.038411691784858704,
-0.023057615384459496,
0.05268797650933266,
0.0059587592259049416,
-0.03766960650682449,
-0.02367601916193962,
-0.07774215191602707,
0.024365097284317017,
0.019559219479560852,
-0.040779292583465576,
0.040885306894779205,
-0.020071610808372498,
0.00933789275586605,
-0.0005990783683955669,
0.004629191942512989,
0.007535688113421202,
0.03162692114710808,
-0.06332451850175858,
0.024683134630322456,
-0.010521694086492062,
0.03364114835858345,
0.03632678836584091,
0.05795324221253395,
-0.004748455248773098,
0.012951135635375977,
-0.0063872248865664005,
-0.04233413562178612,
0.06318316608667374,
-0.0023698105942457914,
-0.013074817135930061,
-0.005645140539854765,
0.007875810377299786,
0.016423029825091362,
0.05396012216806412,
0.03675083443522453,
-0.014558984898030758,
0.051875218749046326,
0.02162645384669304,
-0.02775748260319233,
0.0047307866625487804,
-0.00665667187422514,
-0.04491376131772995,
0.022704241797327995,
0.0019877254962921143,
-0.034047529101371765,
-0.000016029487596824765,
-0.10502257943153381,
0.07548056542873383,
-0.014709169045090675,
-0.03588506951928139,
-0.004176432266831398,
0.015566099435091019,
-0.004858884494751692,
-0.0028711589984595776,
0.037634268403053284,
-0.02754545770585537,
-0.013454693369567394,
-0.029153307899832726,
0.009761940687894821,
0.016758734360337257,
-0.002634840551763773,
-0.038659051060676575,
0.06830708682537079,
-0.027669139206409454,
0.05968477204442024,
-0.01828707568347454,
0.030460789799690247,
-0.003856187453493476,
0.041556715965270996,
0.053324051201343536,
-0.011899850331246853,
-0.002061713021248579,
0.0334644615650177,
0.0022925101220607758,
-0.027633801102638245,
0.03774028271436691,
0.006188452243804932,
0.051451168954372406,
0.06328918039798737,
-0.001608953345566988,
0.028658585622906685,
0.03650347515940666,
-0.010415681637823582,
-0.024347428232431412,
0.009850284084677696,
0.020336640998721123,
-0.0039003591518849134,
0.00011381108924979344,
-0.050002340227365494,
-0.02743944711983204,
-0.02417074143886566,
-0.007769798394292593,
0.039507150650024414,
0.03689218685030937,
-0.011811506934463978,
-0.0022858844604343176,
-0.03220998868346214,
0.0036485805176198483,
-0.03660948574542999,
0.040743954479694366,
0.051027122884988785,
0.01708560436964035,
0.04229879751801491,
0.015133216977119446,
0.10770822316408157,
0.017421310767531395,
-0.022986941039562225,
-0.04675130546092987,
-0.007394338957965374,
0.015009536407887936,
0.04300554469227791,
-0.023269640281796455,
0.030390115454792976,
0.0018960692686960101,
0.004827964585274458,
-0.016582047566771507,
0.011864513158798218,
0.014205611310899258,
0.013852238655090332,
0.012915798462927341,
-0.015530762262642384,
-0.03678617253899574,
0.07307762652635574,
-0.04431302845478058,
0.026679692789912224,
0.02081369422376156,
0.008900593034923077,
-0.0447370745241642,
-0.03155624866485596,
0.009982799179852009,
-0.024683134630322456,
-0.04304088279604912,
-0.05579766258597374,
-0.004326615948230028,
0.025495892390608788,
0.014179108664393425,
-0.02705073542892933,
-0.05721115693449974,
-0.0005030049942433834,
-0.016184503212571144,
0.008648814633488655,
-0.04452505335211754,
-0.002341098850592971,
0.04286419600248337,
-0.0031582750380039215,
0.06509138643741608,
0.007071885745972395,
-0.030142752453684807,
0.007429676130414009,
0.04501977562904358,
-0.007469430565834045,
0.052369941025972366,
-0.0010148442815989256,
-0.01599898189306259,
0.0032620783895254135,
-0.02162645384669304,
-0.007504768203943968,
-0.04586787149310112,
-0.006921702064573765,
-0.0560096874833107,
0.05325337499380112,
-0.07639933377504349,
0.017633333802223206,
-0.02991306036710739,
0.04445437714457512,
0.017589163035154343,
0.005172503646463156,
-0.026927055791020393,
-0.050673749297857285,
0.04399499297142029,
0.04130935296416283,
0.022739579901099205,
0.038305677473545074,
-0.025160187855362892,
0.025813927873969078,
-0.015345240943133831,
-0.02920631319284439,
0.02074301987886429,
0.0190291590988636,
-0.02346399612724781,
-0.013092485256493092,
-0.002654717769473791,
-0.04880087077617645,
-0.008882924914360046,
-0.02825220488011837,
0.008564888499677181,
-0.0022163139656186104,
0.04894221946597099,
0.09929793328046799,
0.03367648646235466,
-0.028623247519135475,
-0.0160343199968338,
0.02141442894935608,
-0.039860524237155914,
0.05943740904331207,
0.010627705603837967,
-0.03625611215829849,
0.020866701379418373,
0.015804626047611237,
0.024877488613128662,
-0.013207332231104374,
-0.02268657460808754,
-0.025866935029625893,
0.030743487179279327,
-0.051945894956588745,
-0.05597434937953949,
-0.030973181128501892,
-0.0018916521221399307,
0.007319246884435415,
-0.004167597740888596,
0.06357187777757645,
-0.01814572513103485,
-0.020159954205155373,
0.05410147085785866,
-0.010671877302229404,
-0.04653928056359291,
0.0373515710234642,
0.04194542393088341,
-0.025813927873969078,
-0.0036795008927583694,
-0.007451761979609728,
-0.07378437370061874,
-0.07788350433111191,
0.0009750897879712284,
0.019647562876343727,
0.07063934952020645,
-0.07350166887044907,
-0.011201937682926655,
-0.013127822428941727,
0.01719161681830883,
0.012156045995652676,
0.008229183964431286,
0.013984753750264645,
-0.0091612059623003,
-0.03153857961297035,
-0.12947602570056915,
-0.006585997063666582,
-0.007270658388733864,
0.03307575359940529,
-0.00048782097292132676,
-0.05699913203716278,
0.038022980093955994,
-0.03530200570821762,
0.005534711293876171,
-0.0012224512174725533,
0.007862558588385582,
0.01778351701796055,
-0.032139312475919724,
0.039825186133384705,
0.016149165108799934,
0.05972011014819145,
0.021573448553681374,
0.034259553998708725,
-0.010009301826357841,
0.020424984395503998,
-0.04247548431158066,
-0.013649048283696175,
0.051239147782325745,
-0.034471578896045685,
0.010910404846072197,
-0.03788163140416145,
0.06388991326093674,
-0.024612458422780037,
0.007473847828805447,
-0.010159485973417759,
0.07738877832889557,
0.02902962639927864,
0.01421444583684206,
0.010618871077895164,
0.018622780218720436,
0.01885247230529785,
0.0220151636749506,
-0.051592521369457245,
-0.039012424647808075,
0.03272238001227379,
-0.03604409098625183,
0.013410521671175957,
-0.04809412360191345,
0.013781563378870487,
-0.005627471953630447,
0.051663193851709366,
-0.0186757855117321,
0.03349979966878891,
-0.016157999634742737,
-0.052546627819538116,
-0.05516159161925316,
0.014788677915930748,
-0.06883714348077774,
-0.01213837694376707,
-0.008847586810588837,
0.03130888566374779,
0.025548899546265602,
0.010300835594534874,
-0.008958016522228718,
-0.04148603975772858,
-0.006104526109993458,
-0.0032841642387211323,
0.02683871239423752,
-0.02804018184542656,
-0.02141442894935608,
-0.040001872926950455,
-0.019700568169355392,
-0.10049939900636673,
-0.013534202240407467,
0.0077874669805169106,
0.04643326997756958,
0.006082440260797739,
-0.025531230494379997,
0.003052263054996729,
0.012209052219986916,
0.011254943907260895,
-0.01888781040906906,
-0.0015691989101469517,
-0.04092064127326012,
0.014629660174250603,
0.03738690912723541,
0.06576279550790787,
0.020283633843064308,
0.038022980093955994,
-0.005605386104434729,
-0.034683600068092346,
0.025672579184174538,
-0.02335798367857933,
-0.03710420802235603,
0.061628326773643494,
-0.024400435388088226,
-0.039613161236047745,
0.0271214097738266,
-0.01849909871816635,
-0.03167992830276489,
-0.04671596735715866,
-0.0059852623380720615,
0.021467436105012894,
0.023481663316488266,
0.03392384946346283,
-0.009956296533346176,
-0.04777608811855316,
0.02733343467116356,
0.040743954479694366,
0.000030040191631997004,
-0.0017249040538445115,
-0.041238680481910706,
-0.024524115025997162,
-0.011555311270058155,
-0.020265966653823853,
-0.08268938213586807,
0.01467383187264204,
0.022421544417738914,
-0.03152091056108475,
-0.006625751499086618,
0.03194495663046837,
0.0380583181977272,
0.009920959360897541,
-0.051981229335069656,
-0.021008050069212914,
0.003973242361098528,
0.013993587344884872,
-0.02265123650431633,
0.07007394731044769,
-0.020654676482081413,
-0.026927055791020393
] |
729,614 | tinytuya.core | find_device | Scans network for Tuya devices with either ID = dev_id or IP = address
Parameters:
dev_id = The specific Device ID you are looking for
address = The IP address you are tring to find the Device ID for
Response:
{'ip':<ip>, 'version':<version>, 'id':<id>, 'product_id':<product_id>, 'data':<broadcast data>}
| def find_device(dev_id=None, address=None):
"""Scans network for Tuya devices with either ID = dev_id or IP = address
Parameters:
dev_id = The specific Device ID you are looking for
address = The IP address you are tring to find the Device ID for
Response:
{'ip':<ip>, 'version':<version>, 'id':<id>, 'product_id':<product_id>, 'data':<broadcast data>}
"""
if dev_id is None and address is None:
return (None, None, None)
log.debug("Listening for device %s on the network", dev_id)
# Enable UDP listening broadcasting mode on UDP port 6666 - 3.1 Devices
client = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP)
client.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
try:
client.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1)
except AttributeError:
# SO_REUSEPORT not available
pass
client.bind(("", UDPPORT))
client.setblocking(False)
# Enable UDP listening broadcasting mode on encrypted UDP port 6667 - 3.3 Devices
clients = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP)
clients.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
try:
clients.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1)
except AttributeError:
# SO_REUSEPORT not available
pass
clients.bind(("", UDPPORTS))
clients.setblocking(False)
deadline = time.time() + SCANTIME
selecttime = SCANTIME
ret = None
while (ret is None) and (selecttime > 0):
rd, _, _ = select.select( [client, clients], [], [], selecttime )
for sock in rd:
try:
data, addr = sock.recvfrom(4048)
except:
# Timeout
continue
ip = addr[0]
gwId = version = "" # pylint: disable=W0621
result = data
try:
result = decrypt_udp(result)
result = json.loads(result)
ip = result["ip"]
gwId = result["gwId"]
version = result["version"]
product_id = '' if 'productKey' not in result else result['productKey']
log.debug( 'find() received broadcast from %r: %r', ip, result )
except:
result = {"ip": ip}
log.debug( 'find() failed to decode broadcast from %r: %r', addr, data )
continue
# Check to see if we are only looking for one device
if dev_id and gwId == dev_id:
# We found it by dev_id!
ret = {'ip':ip, 'version':version, 'id':gwId, 'product_id':product_id, 'data':result}
break
elif address and address == ip:
# We found it by ip!
ret = {'ip':ip, 'version':version, 'id':gwId, 'product_id':product_id, 'data':result}
break
selecttime = deadline - time.time()
# while
clients.close()
client.close()
if ret is None:
ret = {'ip':None, 'version':None, 'id':None, 'product_id':None, 'data':{}}
log.debug( 'find() is returning: %r', ret )
return ret
| (dev_id=None, address=None) | [
0.05377412214875221,
-0.03381526097655296,
-0.06525398790836334,
-0.013342829421162605,
-0.023000016808509827,
-0.027310002595186234,
-0.03607095405459404,
-0.01196323148906231,
-0.04048164188861847,
-0.06646239757537842,
-0.05542561039328575,
-0.015417261980473995,
-0.02624257653951645,
0.0032123492565006018,
0.012023651972413063,
0.02650439739227295,
-0.019364725798368454,
0.03524520993232727,
-0.014329695142805576,
-0.052605994045734406,
-0.013947033323347569,
0.07117518782615662,
0.02044222131371498,
0.04269705340266228,
0.005181045737117529,
0.06690547615289688,
0.010266426019370556,
-0.030733823776245117,
0.04668479785323143,
-0.012486874125897884,
0.05695626139640808,
-0.009229210205376148,
0.040159400552511215,
0.0013846332440152764,
-0.07596853375434875,
0.031418588012456894,
0.02751140482723713,
0.0033608826342970133,
-0.06311913579702377,
-0.013403249904513359,
-0.043381817638874054,
-0.055747851729393005,
0.00569965410977602,
0.02100614458322525,
-0.01216463278979063,
0.040723323822021484,
-0.03852805122733116,
0.019707107916474342,
-0.027310002595186234,
0.03659459948539734,
-0.008619971573352814,
0.03375484049320221,
-0.031217185780405998,
0.017542045563459396,
-0.01078503392636776,
-0.02376534231007099,
-0.08176888525485992,
0.023120857775211334,
-0.0006910578813403845,
-0.01216463278979063,
-0.02896149270236492,
0.029686536639928818,
0.005815459880977869,
0.07637133449316025,
-0.0362522155046463,
0.0037435449194163084,
-0.03262699395418167,
-0.0033684351947158575,
-0.027108602225780487,
0.0540560819208622,
0.03917253389954567,
0.02227497287094593,
0.012154562398791313,
-0.014178644865751266,
0.047772366553545,
0.00910333450883627,
0.0074417744763195515,
-0.0231007169932127,
-0.002807029290124774,
0.0010384749621152878,
0.05224347114562988,
0.03198251128196716,
0.04765152558684349,
0.002506186254322529,
0.05590897426009178,
0.06013840064406395,
0.026846779510378838,
0.023785481229424477,
-0.026484258472919464,
-0.06920145452022552,
-0.05131702497601509,
0.006177981849759817,
0.016192656010389328,
0.09224174916744232,
0.00869046151638031,
-0.006621064618229866,
0.024389686062932014,
0.017975056543946266,
0.005422727204859257,
-0.031116485595703125,
-0.030169900506734848,
0.0323248915374279,
-0.03615151718258858,
-0.0530087947845459,
0.031035924330353737,
-0.05453944578766823,
-0.021207546815276146,
0.07387395948171616,
0.02130824699997902,
0.06074260175228119,
-0.054660286754369736,
-0.037923846393823624,
-0.0067217652685940266,
0.045879192650318146,
0.0005387482233345509,
-0.017582325264811516,
-0.0027868892066180706,
0.02728986367583275,
-0.04152892902493477,
0.007955347187817097,
-0.019888369366526604,
0.039897579699754715,
-0.01926402561366558,
-0.02183189056813717,
0.004040611442178488,
0.0012121835025027394,
-0.009873693808913231,
-0.019596336409449577,
0.06384418159723282,
0.031458865851163864,
-0.01620272733271122,
0.01925395429134369,
0.009994534775614738,
0.05812438577413559,
-0.009984464384615421,
0.03200265020132065,
-0.009546416811645031,
0.004748033359646797,
0.004775725770741701,
-0.03143872693181038,
-0.015165510587394238,
-0.01183232106268406,
0.03143872693181038,
-0.04422770440578461,
0.022456234320998192,
-0.017199663445353508,
-0.03170054778456688,
-0.07842563092708588,
-0.012547294609248638,
-0.03454030677676201,
0.009939149022102356,
-0.007653245702385902,
0.022899316623806953,
0.022899316623806953,
-0.05131702497601509,
-0.0120740020647645,
-0.01978766731917858,
-0.06984593719244003,
-0.01612216606736183,
-0.03645361587405205,
-0.000579972518607974,
-0.040985144674777985,
0.0013053315924480557,
-0.01738092303276062,
-0.014682147651910782,
0.005226361099630594,
-0.06183017045259476,
0.06424698233604431,
0.049464136362075806,
0.020845023915171623,
-0.051075343042612076,
0.06062176078557968,
-0.03725922107696533,
-0.04785292595624924,
-0.06908061355352402,
0.015417261980473995,
-0.032606855034828186,
-0.0761699378490448,
0.017280222848057747,
-0.00792513694614172,
-0.010694404132664204,
-0.0035446612164378166,
-0.006238402333110571,
0.02302015759050846,
0.027571825310587883,
0.03139844909310341,
0.051035065203905106,
0.022476373240351677,
0.0524851530790329,
0.0362522155046463,
-0.03401666134595871,
0.01502452977001667,
0.012366034090518951,
0.025779353454709053,
0.005508322734385729,
0.04034066200256348,
0.04366378113627434,
0.049464136362075806,
-0.04249565303325653,
-0.0053018867038190365,
-0.03280825540423393,
-0.007285688538104296,
-0.010613842867314816,
0.00832290481775999,
-0.040461502969264984,
-0.030472001060843468,
0.004637262783944607,
0.05453944578766823,
0.02896149270236492,
-0.005176011007279158,
-0.04217341169714928,
0.00923927966505289,
0.03188180923461914,
0.027088461443781853,
0.060903724282979965,
-0.0035849413834512234,
0.01098643522709608,
0.02847813069820404,
0.024027163162827492,
-0.020281100645661354,
-0.030451862141489983,
-0.06887920945882797,
-0.04140808805823326,
-0.016585389152169228,
-0.039937857538461685,
0.004531526938080788,
-0.05232403054833412,
0.05139758810400963,
0.04406658187508583,
-0.008594796061515808,
0.10891777276992798,
0.005986650940030813,
0.07810338586568832,
0.0032702519092708826,
-0.011056926101446152,
-0.03856832906603813,
-0.026705799624323845,
0.004531526938080788,
0.03409722447395325,
-0.04475134611129761,
0.0420122891664505,
-0.03899127244949341,
0.03004905954003334,
-0.06384418159723282,
-0.0063391029834747314,
-0.021771470084786415,
0.028095467016100883,
-0.0021335938945412636,
0.023825762793421745,
-0.04736956208944321,
-0.029424715787172318,
-0.03711824119091034,
0.05598953366279602,
-0.01842821016907692,
0.013866472989320755,
-0.11036785691976547,
0.015779783949255943,
0.039494775235652924,
0.012758766300976276,
-0.018236879259347916,
-0.0026937411166727543,
0.04765152558684349,
-0.06110512465238571,
0.041287247091531754,
-0.0892610102891922,
0.016998261213302612,
0.0016464547952637076,
0.02314099855720997,
-0.04821544885635376,
0.002518773777410388,
0.06223297119140625,
0.034298624843358994,
-0.00976292323321104,
-0.025275850668549538,
-0.03387568145990372,
-0.017521904781460762,
0.025275850668549538,
0.029364295303821564,
-0.006696589756757021,
-0.05739934369921684,
-0.023523660376667976,
0.041065704077482224,
-0.005095450207591057,
0.025799494236707687,
-0.0056946189142763615,
-0.033170778304338455,
-0.0006086092325858772,
0.054821405559778214,
0.01231568306684494,
0.008912003599107265,
-0.02380562201142311,
-0.07085294276475906,
-0.03335203975439072,
-0.02549739181995392,
-0.04390546306967735,
0.0986865907907486,
0.001442536129616201,
0.02493346855044365,
0.014088014140725136,
-0.05635205656290054,
-0.08217169344425201,
0.014692218042910099,
0.006228331942111254,
0.01602146588265896,
-0.0026232507079839706,
0.04652367904782295,
0.05135730654001236,
-0.039756596088409424,
0.011701409704983234,
-0.03544661030173302,
-0.034781988710165024,
-0.07073210179805756,
0.09570585191249847,
-0.012355963699519634,
0.01847855933010578,
0.004405651241540909,
0.0005859516095370054,
0.0608634427189827,
0.011429518461227417,
0.08346065878868103,
-0.0005812312592752278,
0.055707573890686035,
0.03977673873305321,
0.06219268962740898,
0.05321019887924194,
-0.006580784451216459,
0.04136780649423599,
-0.0021990493405610323,
0.015175580978393555,
0.01846848987042904,
-0.0323248915374279,
-0.027330143377184868,
-0.029545556753873825,
0.0062887524254620075,
0.06545539200305939,
0.0296462569385767,
-0.013806052505970001,
-0.0022884211502969265,
0.003607599064707756,
-0.004529009573161602,
0.011359027586877346,
-0.010573563165962696,
-0.02616201527416706,
0.036050815135240555,
0.030995644629001617,
-0.02886079251766205,
-0.008685426786541939,
0.004287328105419874,
-0.04084416478872299,
0.03166026994585991,
0.07214190810918808,
0.020945724099874496,
0.00842864066362381,
0.08184944838285446,
0.07971459627151489,
0.002638355828821659,
-0.03484240919351578,
0.02672593854367733,
0.01759239472448826,
0.01308100763708353,
-0.08116468787193298,
0.03405694290995598,
-0.023644501343369484,
-0.0285989698022604,
-0.03387568145990372,
-0.00901773851364851,
-0.020230751484632492,
0.018317438662052155,
0.02908233366906643,
-0.02235553413629532,
-0.04761124402284622,
0.01130867749452591,
-0.006651274859905243,
-0.0015734469052404165,
0.036715440452098846,
-0.0038291404489427805,
-0.01227540336549282,
0.0058960202150046825,
-0.024148004129529,
0.03262699395418167,
-0.018941782414913177,
0.020069628953933716,
0.01742120459675789,
-0.002600593026727438,
0.06678463518619537,
-0.0571979396045208,
-0.033513158559799194,
-0.0014689699746668339,
-0.0280753280967474,
0.016736440360546112,
-0.01052321307361126,
0.026584958657622337,
0.01790456660091877,
-0.0033256374299526215,
-0.011771900579333305,
0.021247826516628265,
0.01960640773177147,
0.00833800993859768,
-0.06025923788547516,
-0.07818394899368286,
-0.0296462569385767,
-0.05695626139640808,
-0.07411564141511917,
0.06356222182512283,
0.03151928633451462,
0.028498269617557526,
0.10658151656389236,
-0.04817516729235649,
-0.02821630798280239,
-0.02467164769768715,
-0.06481090933084488,
-0.024792488664388657,
0.003642844269052148,
-0.012023651972413063,
-0.0446305051445961,
0.025356411933898926,
0.01628328673541546,
0.13155525922775269,
0.061910729855298996,
0.03673557937145233,
-0.0024180731270462275,
-0.0714571475982666,
0.01977759785950184,
-0.0016464547952637076,
0.011882671155035496,
0.029424715787172318,
0.0225770752876997,
0.007054076995700598,
-0.0008402206585742533,
0.018941782414913177,
-0.004931811708956957,
-0.0035144509747624397,
-0.01690763048827648,
-0.0636024996638298,
0.049464136362075806,
0.013362969271838665,
0.0189115721732378,
-0.03848776966333389,
0.049987778067588806,
-0.03435904532670975,
0.022335393354296684,
0.011016645468771458,
-0.006807360798120499,
0.010321811772882938,
-0.023745201528072357,
-0.016001325100660324,
-0.028800372034311295,
0.0070289019495248795,
0.02698776125907898,
-0.03842734917998314,
0.0022317771799862385,
-0.07516292482614517,
0.026021035388112068,
-0.002726468723267317,
0.03645361587405205,
-0.027712805196642876,
-0.05538532882928848,
0.08265504986047745,
-0.0021726153790950775,
-0.015528032556176186,
-0.0020517746452242136,
-0.003693194594234228,
0.016253076493740082,
0.01347374077886343,
-0.04245537146925926,
0.05321019887924194,
0.017441343516111374,
-0.060460641980171204,
0.02183189056813717,
-0.029767097905278206,
-0.009828378446400166,
-0.016998261213302612,
-0.05341159924864769,
0.02463136613368988,
0.02720930241048336,
-0.047007039189338684,
0.0000035697576095117256,
-0.01855912059545517,
-0.0662207156419754,
-0.059332795441150665,
0.005739934276789427,
-0.018669892102479935,
0.007658280897885561,
-0.009873693808913231,
-0.018186528235673904,
-0.07947291433811188,
0.02328197844326496,
-0.04624171555042267,
-0.0467250794172287,
-0.04314013570547104,
-0.07343088090419769,
-0.010236215777695179,
0.017008330672979355,
-0.02956569567322731,
0.02108670584857464,
-0.009249350056052208,
-0.033472880721092224,
0.013413320295512676,
-0.0024558359291404486,
-0.07520321011543274,
-0.003474170807749033,
-0.006031965836882591,
-0.030451862141489983,
-0.004382993560284376,
0.02018040046095848,
-0.025014029815793037,
-0.0333721786737442,
0.03592997416853905,
0.008272554725408554,
0.07294751703739166,
-0.013544230721890926,
0.013644931837916374,
0.040985144674777985,
-0.01629335805773735,
-0.02493346855044365,
-0.006948341615498066,
0.034439604729413986,
-0.012335823848843575,
-0.05768130347132683,
-0.009667257778346539,
0.01633363775908947,
0.09538360685110092,
0.020865164697170258,
0.057882703840732574,
0.006273647304624319,
0.03816552832722664,
-0.00008606754272477701,
0.015699224546551704,
-0.01571936346590519,
-0.04467078670859337,
-0.05651317536830902,
0.015115160495042801,
0.0026685658376663923,
-0.025014029815793037,
0.06960425525903702,
-0.07181967049837112,
0.03987743705511093,
-0.041690047830343246,
-0.0871664434671402,
-0.013926893472671509,
0.04608059674501419,
0.0388704314827919,
-0.03675571829080582,
-0.11931007355451584,
-0.02306043729186058,
-0.008720671758055687,
-0.016484688967466354,
0.05115590617060661,
-0.019797738641500473,
-0.01693784072995186,
0.016172517091035843,
-0.000747072568628937,
0.08603859692811966,
0.0047732084058225155,
-0.007270583417266607,
0.01807575859129429,
-0.035748712718486786,
0.0028825546614825726,
-0.005352236796170473,
-0.0035245211329311132,
-0.006082316394895315,
-0.022556934505701065,
-0.028196169063448906,
0.010503072291612625,
-0.021993011236190796,
-0.031015785411000252,
-0.01209414191544056,
-0.003620186587795615,
0.018901502713561058,
-0.028377428650856018,
-0.019757457077503204,
0.017390994355082512,
0.006908061448484659,
0.02261735498905182,
-0.07190022617578506,
0.012063931673765182,
-0.03675571829080582,
-0.04301929846405983,
0.02660509943962097,
0.003156963735818863,
0.01231568306684494,
0.029767097905278206,
0.025839773938059807,
-0.016091955825686455,
0.017179522663354874,
0.023241698741912842,
0.043341539800167084,
-0.016615599393844604,
-0.006142736878246069,
-0.014430396258831024,
0.025356411933898926,
-0.007300793658941984,
-0.024993889033794403,
0.03812524676322937,
-0.02926359511911869,
0.07387395948171616,
0.04499302804470062,
0.03329161927103996,
-0.002229259582236409,
0.0012776388321071863,
-0.0409650057554245,
0.0365140363574028,
0.041770610958337784,
-0.1342943161725998,
0.03961561620235443,
0.03198251128196716,
-0.06126624718308449,
-0.03087480366230011,
-0.0008194511174224317,
-0.04285817593336105,
-0.0013405767967924476,
-0.009626977145671844,
0.01589055545628071,
0.04197201132774353,
0.013352899812161922,
-0.008982493542134762,
-0.007512264885008335,
0.02183189056813717,
-0.03035116195678711,
-0.02978723682463169,
-0.008524306118488312,
0.045355550944805145,
0.04825572669506073,
-0.01351402048021555,
-0.03240545466542244,
0.003096543485298753,
-0.025094589218497276,
-0.007411564234644175,
-0.011137486435472965,
0.06251493096351624,
0.025839773938059807,
-0.0006860228604637086,
0.055707573890686035,
0.029686536639928818,
-0.03955519571900368,
-0.008081222884356976,
0.05852719023823738,
-0.03742034360766411,
-0.06013840064406395,
0.046926479786634445,
0.016253076493740082,
0.01913311332464218,
0.022516654804348946,
-0.018226807937026024,
0.054660286754369736,
0.03161998838186264,
-0.007069182116538286,
0.0166860893368721,
0.0005226990324445069,
-0.009737747721374035,
0.00493432953953743,
0.0029983604326844215,
-0.011852460913360119,
0.010452722199261189,
-0.03043172135949135,
-0.00602693110704422,
0.010915945284068584,
0.013594580814242363,
0.014863409101963043,
0.01777365617454052,
-0.0027315036859363317,
0.039373934268951416,
-0.017461484298110008,
-0.09498080611228943,
-0.015105090104043484,
0.013352899812161922,
0.026443976908922195,
-0.02541683241724968,
0.006631134543567896,
0.014621727168560028,
0.044831909239292145,
-0.0011435812339186668,
0.027531543746590614,
0.02455080673098564,
-0.032727696001529694,
0.0215297881513834,
-0.022476373240351677,
-0.025839773938059807,
-0.02227497287094593,
-0.02265763469040394,
0.03131788596510887,
-0.0041010319255292416,
0.01353416033089161,
-0.019203605130314827,
-0.023684781044721603,
0.031338028609752655,
0.039112113416194916,
-0.017390994355082512,
0.015376981347799301,
-0.07153770327568054,
0.0077388412319123745,
-0.07488096505403519,
-0.005629163701087236,
0.057318780571222305,
-0.025054309517145157,
-0.04289845749735832,
-0.00504510011523962,
0.004174039699137211,
-0.016303427517414093,
0.02354380115866661,
0.04086430370807648,
-0.016847210004925728,
0.01297023706138134,
-0.011620849370956421,
-0.019757457077503204,
0.03214363008737564,
-0.09256399422883987,
0.00995928980410099,
0.005191116128116846,
-0.003680607071146369,
0.025477252900600433,
-0.027591964229941368,
0.028901072219014168,
0.0014979214174672961,
0.018105968832969666,
0.029726818203926086,
-0.021932590752840042,
-0.01098643522709608,
0.016545109450817108,
0.05651317536830902,
-0.004654885269701481,
0.010754824616014957,
0.02130824699997902,
0.019807808101177216,
-0.010024745017290115,
0.017914636060595512,
0.025819633156061172,
0.002691223518922925,
0.008967388421297073,
0.040683042258024216,
-0.025275850668549538,
0.004516421817243099,
-0.03458058461546898,
0.0023224076721817255,
-0.036131374537944794,
-0.048054326325654984,
0.05598953366279602,
-0.02769266441464424,
0.016605529934167862,
0.00396256847307086,
-0.026222435757517815,
-0.005065240431576967,
-0.014098084531724453,
0.047409843653440475,
-0.07685469835996628,
-0.030250459909439087,
0.03518478944897652,
0.012235122732818127,
0.03091508522629738,
-0.009506137110292912,
0.03357357904314995,
-0.02642383798956871,
0.029948359355330467,
0.042777616530656815,
0.007195057813078165,
0.01612216606736183,
-0.030331021174788475,
0.04624171555042267,
0.030673403292894363,
0.04600003361701965,
0.019948789849877357,
0.012507014907896519,
-0.013453599996864796,
0.03155956789851189,
-0.05349215865135193,
-0.0094557860866189,
-0.035265348851680756,
0.038024548441171646
] |
729,615 | tinytuya.core | has_suffix | Check to see if payload has valid Tuya suffix | def has_suffix(payload):
"""Check to see if payload has valid Tuya suffix"""
if len(payload) < 4:
return False
log.debug("buffer %r = %r", payload[-4:], SUFFIX_BIN)
return payload[-4:] == SUFFIX_BIN
| (payload) | [
0.00467224046587944,
0.013796699233353138,
-0.011216828599572182,
0.02410755306482315,
-0.01763630472123623,
0.006902663502842188,
-0.012847582809627056,
0.06747353821992874,
0.017394712194800377,
-0.0827629342675209,
0.05363369733095169,
0.05083811655640602,
0.007398792542517185,
-0.05746467411518097,
0.023762419819831848,
-0.0007220833213068545,
0.043072622269392014,
0.0065532163716852665,
0.047455813735723495,
-0.0058154938742518425,
-0.040173500776290894,
0.05801688879728317,
0.014072805643081665,
0.0613301657140255,
-0.015513736754655838,
0.04642041400074959,
-0.009370366111397743,
0.013865725137293339,
0.02134648710489273,
0.042037222534418106,
-0.014090062119066715,
-0.10091694444417953,
0.03572128340601921,
0.04921599105000496,
0.022916844114661217,
-0.0011993377702310681,
0.006950119510293007,
0.013270370662212372,
-0.07703372836112976,
-0.05611865594983101,
0.018171261996030807,
-0.006510074716061354,
-0.0006697740755043924,
0.02602304145693779,
0.0066610705107450485,
0.027834990993142128,
-0.018930554389953613,
0.07275407761335373,
-0.05073457583785057,
0.04918147996068001,
0.03696376457810402,
-0.018067721277475357,
-0.015539621002972126,
0.0008283196366392076,
-0.048629265278577805,
-0.019379228353500366,
0.039138101041316986,
0.08655939996242523,
-0.05894874781370163,
0.06350450217723846,
-0.012493820860981941,
0.016436967998743057,
-0.00629436643794179,
-0.06046733260154724,
0.01798143796622753,
0.021760646253824234,
0.004646355286240578,
-0.033684998750686646,
-0.02864605374634266,
0.003930204082280397,
0.03962128981947899,
-0.0032873935997486115,
-0.03544517606496811,
0.055324848741292953,
-0.058223966509103775,
-0.03931066766381264,
-0.017653562128543854,
0.05032041668891907,
-0.05594608932733536,
0.00465498398989439,
0.022036753594875336,
-0.03951774910092354,
0.06830185651779175,
-0.028300920501351357,
0.004680868703871965,
-0.02124294638633728,
0.05052749812602997,
0.009318595752120018,
-0.014668160118162632,
0.026316404342651367,
-0.04535049945116043,
-0.029854020103812218,
0.04359032213687897,
-0.04662749171257019,
0.0026941958349198103,
-0.06837088614702225,
0.01865444891154766,
0.03868943080306053,
0.012813068926334381,
-0.0482151061296463,
0.0004756366543006152,
0.01513408962637186,
-0.017791615799069405,
0.007730983197689056,
0.030854906886816025,
0.09277179837226868,
-0.03332260996103287,
-0.04252040758728981,
-0.06319388747215271,
-0.03318455442786217,
0.03561774268746376,
-0.020863300189375877,
0.03948323428630829,
-0.0476628914475441,
0.020224804058670998,
-0.04680005833506584,
0.024021269753575325,
0.010828553698956966,
-0.06074343994259834,
-0.025004899129271507,
0.05915582552552223,
0.027817733585834503,
-0.0676461011171341,
-0.03487570956349373,
0.0311137568205595,
-0.025332774966955185,
0.05491068959236145,
0.03173499554395676,
0.01858542114496231,
0.025505341589450836,
-0.016204003244638443,
0.06077795475721359,
-0.01168275810778141,
0.01653187908232212,
0.0010057396721094847,
-0.002853820100426674,
0.030043844133615494,
0.03292570635676384,
-0.05729210749268532,
-0.03534163907170296,
-0.003677825443446636,
0.03934518247842789,
0.030785879120230675,
-0.033546946942806244,
-0.020725248381495476,
0.04424607381224632,
-0.02588498778641224,
-0.03199384734034538,
0.002308078110218048,
-0.018896041437983513,
-0.029267294332385063,
0.005107970908284187,
-0.009197799488902092,
0.011052889749407768,
-0.019983211532235146,
-0.020897815003991127,
-0.017377454787492752,
0.010052003897726536,
-0.02000046707689762,
-0.01834382861852646,
0.052943430840969086,
-0.0007592929759994149,
-0.06595495343208313,
-0.08441957831382751,
-0.04348678141832352,
-0.0021926742047071457,
-0.04158854857087135,
0.030854906886816025,
0.023986756801605225,
0.07378947734832764,
0.010802668519318104,
0.08704258501529694,
0.0051122852601110935,
0.05339210480451584,
-0.006630871444940567,
0.03508278727531433,
0.004057472106069326,
-0.026350919157266617,
-0.003289550542831421,
0.025298262014985085,
-0.016704445704817772,
0.008511846885085106,
0.0000953160779317841,
-0.0032162098214030266,
0.029646940529346466,
0.003613112960010767,
-0.018067721277475357,
0.0037511661648750305,
0.013201343826949596,
-0.004368091933429241,
-0.01879250258207321,
0.04269297420978546,
0.017058206722140312,
-0.02276153303682804,
-0.008779325522482395,
0.02255445346236229,
0.05760272964835167,
0.0019251960329711437,
-0.011389395222067833,
-0.0822107270359993,
-0.0034017188008874655,
-0.018965069204568863,
-0.01309780403971672,
-0.054220423102378845,
-0.005871578119695187,
-0.04507439211010933,
0.058189455419778824,
0.07054521888494492,
-0.10733641684055328,
-0.029301807284355164,
-0.005384077783674002,
-0.017179004848003387,
0.011812183074653149,
0.07358239591121674,
0.014357540756464005,
-0.00132768414914608,
-0.024159323424100876,
0.050113338977098465,
0.01102700550109148,
-0.014124575071036816,
0.047524839639663696,
0.008645585738122463,
0.04076023027300835,
0.031217295676469803,
0.007597244344651699,
0.016575021669268608,
0.08635231852531433,
0.08807798475027084,
0.06695583462715149,
-0.019672591239213943,
-0.03837880864739418,
0.054323963820934296,
0.07144256681203842,
0.03934518247842789,
0.014452451840043068,
0.011579218320548534,
0.03824075683951378,
0.006367707159370184,
0.0955328643321991,
-0.017213517799973488,
0.03244251757860184,
-0.012062404304742813,
-0.00577235221862793,
0.006855207961052656,
-0.01755865104496479,
-0.01968984864652157,
0.04265845939517021,
0.06074343994259834,
-0.055497415363788605,
-0.007001889403909445,
0.007433305960148573,
0.025073925033211708,
0.004706753883510828,
-0.031079242005944252,
0.013339397497475147,
-0.009586074389517307,
-0.007562730927020311,
-0.04131244122982025,
0.018119491636753082,
-0.004350834991782904,
-0.0338575653731823,
0.0031773822847753763,
-0.0004990949528291821,
0.08745674788951874,
-0.07779301702976227,
0.03717084228992462,
0.020276574417948723,
-0.008930320851504803,
-0.02346905693411827,
-0.004952661227434874,
0.08062311261892319,
-0.06505760550498962,
-0.056981489062309265,
-0.0016706603346392512,
0.01590201072394848,
-0.015539621002972126,
0.05232219025492668,
-0.02484958991408348,
0.0407257154583931,
0.006799123715609312,
0.011035633273422718,
-0.034427035599946976,
0.08552400022745132,
-0.009922578930854797,
0.04838767275214195,
0.030492516234517097,
0.014573248103260994,
-0.031458888202905655,
0.006924234330654144,
-0.008654214441776276,
-0.061157599091529846,
-0.06843990832567215,
-0.0018356770742684603,
0.020966840907931328,
-0.0408637672662735,
0.038965534418821335,
0.01773984543979168,
0.0032528801821172237,
0.032666854560375214,
-0.025142952799797058,
-0.06057087332010269,
0.04749032482504845,
-0.048525724560022354,
-0.026954902336001396,
-0.039069075137376785,
0.009836295619606972,
0.014392053708434105,
-0.003479373874142766,
-0.008529103361070156,
0.027420831844210625,
0.0076188151724636555,
-0.024590739980340004,
0.016894269734621048,
-0.06371158361434937,
0.023020382970571518,
0.07786204665899277,
0.011889837682247162,
0.016549136489629745,
-0.03278765082359314,
0.029129240661859512,
0.01212280336767435,
-0.02138100005686283,
-0.016980553045868874,
-0.003362891497090459,
-0.007157199550420046,
-0.019638078287243843,
-0.011889837682247162,
-0.002333963057026267,
-0.044556692242622375,
-0.037550490349531174,
-0.007174456026405096,
-0.044625721871852875,
0.04290005564689636,
-0.030992958694696426,
0.03151065856218338,
-0.05204608291387558,
-0.009551560506224632,
0.05038944259285927,
0.02460799552500248,
0.032770395278930664,
-0.025798704475164413,
-0.03696376457810402,
0.0036605687346309423,
0.05190803110599518,
0.06878504157066345,
-0.025263749063014984,
-0.055600956082344055,
-0.0014948580646887422,
0.054151397198438644,
-0.01837834157049656,
0.02683410421013832,
-0.011449793353676796,
-0.0032766081858426332,
-0.013805327005684376,
0.05925936624407768,
-0.04131244122982025,
0.0036864536814391613,
-0.010716385208070278,
0.002968145301565528,
0.06170981377363205,
-0.0021527681965380907,
-0.03668765723705292,
0.004624784458428621,
-0.0064453622326254845,
-0.020380115136504173,
-0.02145002782344818,
0.007174456026405096,
0.011268598027527332,
0.016687190160155296,
0.007916492410004139,
0.0028430346865206957,
-0.010492048226296902,
0.013201343826949596,
-0.028904903680086136,
-0.04434961453080177,
-0.024090295657515526,
0.0021387471351772547,
-0.03491022065281868,
-0.05228767544031143,
0.020725248381495476,
0.013192716054618359,
0.010595588944852352,
-0.03682570904493332,
0.03175225108861923,
0.019586307927966118,
-0.007864722050726414,
-0.044763773679733276,
-0.046006251126527786,
-0.03396110609173775,
0.014435195364058018,
0.059673525393009186,
0.015582762658596039,
0.015272143296897411,
0.01170001458376646,
-0.06467796117067337,
0.0016350684454664588,
-0.07109743356704712,
0.021225690841674805,
0.012968379072844982,
0.06309034675359726,
0.0021387471351772547,
-0.00807180255651474,
-0.0205699373036623,
0.06719742715358734,
0.01604006439447403,
0.033046502619981766,
0.056670866906642914,
0.03321906924247742,
0.007372907362878323,
0.08103726804256439,
-0.03006109967827797,
-0.0679222121834755,
-0.053012456744909286,
-0.05359918251633644,
-0.03458234295248985,
0.015712188556790352,
-0.005358192604035139,
-0.02414206601679325,
-0.0005263281054794788,
0.0006217790069058537,
-0.01120819989591837,
0.025626137852668762,
0.014901124872267246,
0.016160860657691956,
0.03844783455133438,
0.026074811816215515,
-0.03187305107712746,
-0.02198498323559761,
0.012312626466155052,
0.01590201072394848,
-0.04931953176856041,
-0.04683457314968109,
-0.04248589277267456,
0.012096918188035488,
0.06312485784292221,
-0.03195933252573013,
-0.030716853216290474,
-0.058292992413043976,
-0.06367707252502441,
-0.025039412081241608,
-0.017895154654979706,
0.03299473226070404,
0.0027416516095399857,
0.02336551621556282,
0.061295654624700546,
-0.02205401100218296,
-0.004072571638971567,
-0.02188144437968731,
0.06554079055786133,
0.001067216508090496,
-0.030216410756111145,
-0.020155778154730797,
-0.047317758202552795,
-0.02319294959306717,
0.05111422389745712,
-0.055566441267728806,
-0.007782753091305494,
-0.0025820275768637657,
-0.03370225429534912,
-0.049802716821432114,
-0.11762138456106186,
0.05042395740747452,
-0.0031536545138806105,
0.007476447615772486,
0.02286507375538349,
0.0616062730550766,
0.034754909574985504,
0.002443974371999502,
0.0011389395222067833,
0.04238235577940941,
-0.06170981377363205,
0.004120027180761099,
0.01943099871277809,
0.005474674981087446,
0.03523809835314751,
0.010052003897726536,
-0.01936197094619274,
0.0821416974067688,
-0.006216711364686489,
0.026074811816215515,
0.00792943499982357,
0.008826781064271927,
-0.03665314242243767,
-0.007851779460906982,
0.024728791788220406,
-0.04507439211010933,
-0.032942961901426315,
-0.016980553045868874,
0.029543399810791016,
-0.037757571786642075,
0.0052115111611783504,
-0.004439275711774826,
-0.000028530785129987635,
0.030613312497735023,
0.05377174913883209,
-0.024659765884280205,
0.006449676118791103,
0.07537708431482315,
-0.0239004734903574,
0.025833219289779663,
-0.00968098547309637,
0.0007576752104796469,
0.006855207961052656,
-0.045971740037202835,
-0.014383425004780293,
-0.05598060041666031,
-0.0035397722385823727,
-0.005897463299334049,
-0.026143837720155716,
0.007869036868214607,
-0.025971271097660065,
0.05656732991337776,
-0.010759526863694191,
0.03979385644197464,
0.014978780411183834,
0.07399655133485794,
-0.0044220187701284885,
-0.028870390728116035,
0.05076909065246582,
0.03931066766381264,
-0.016057321801781654,
-0.019983211532235146,
0.007208969444036484,
-0.05646378919482231,
0.04283102601766586,
-0.03941420838236809,
-0.041726600378751755,
-0.01171727105975151,
-0.009844924323260784,
0.005729211028665304,
0.0003216749173589051,
0.0030889420304447412,
0.058396533131599426,
-0.029681453481316566,
-0.0136672742664814,
0.018827015534043312,
-0.02191595733165741,
-0.05756821483373642,
0.01730842888355255,
-0.030527029186487198,
-0.019983211532235146,
-0.05594608932733536,
-0.000679480959661305,
-0.07572221755981445,
-0.08048506081104279,
0.06346999108791351,
-0.014754443429410458,
0.02683410421013832,
0.04648943990468979,
0.021053124219179153,
-0.009775897487998009,
-0.011199572123587132,
0.032304465770721436,
0.014435195364058018,
0.03204561397433281,
-0.04911245033144951,
0.007834522984921932,
0.041692089289426804,
-0.03259782865643501,
0.05218413844704628,
-0.047248732298612595,
-0.04918147996068001,
0.04493634030222893,
0.01699780859053135,
-0.0546690970659256,
0.02481507509946823,
-0.03803367540240288,
-0.04400448128581047,
0.006915606092661619,
0.019586307927966118,
-0.012562847696244717,
-0.0006115328287705779,
0.03144163265824318,
-0.02184692956507206,
-0.026454458013176918,
-0.019241174682974815,
0.0028322492726147175,
0.000018453165466780774,
0.015298028476536274,
-0.01025045569986105,
0.011337624862790108,
0.04818059131503105,
-0.017109977081418037,
0.01430577039718628,
0.002631640527397394,
-0.03261508420109749,
-0.007234854158014059,
-0.009197799488902092,
-0.03339163586497307,
-0.010034747421741486,
-0.014694045297801495,
0.0819346159696579,
0.039276156574487686,
-0.0821416974067688,
0.017472367733716965,
0.017403339967131615,
0.018878785893321037,
-0.022381886839866638,
0.006639499682933092,
0.03154517337679863,
0.05101068317890167,
0.05094165727496147,
0.005414276849478483,
-0.037757571786642075,
0.03931066766381264,
0.019948698580265045,
-0.03993190824985504,
0.011268598027527332,
-0.043038107454776764,
-0.04003544896841049,
0.008736183866858482,
0.02669605240225792,
-0.009301339276134968,
-0.02276153303682804,
-0.003837449476122856,
-0.01996595412492752,
0.03451331704854965,
-0.03228721022605896,
-0.02212303690612316,
-0.014366168528795242,
-0.029750479385256767,
0.041795630007982254,
0.025091182440519333,
0.010681872256100178,
-0.029612427577376366,
-0.046040765941143036,
0.009698241949081421,
0.004741267301142216,
-0.036273498088121414,
-0.1089930608868599,
-0.03554871678352356,
-0.041657574474811554,
0.04158854857087135,
-0.01074227038770914,
-0.008964834734797478,
-0.04521244764328003,
-0.04987174645066261,
-0.0053193653002381325,
0.004184739664196968,
-0.012183201499283314,
0.013132317923009396,
-0.05107970908284187,
-0.033754024654626846,
-0.04082925617694855,
-0.01589338295161724,
0.03868943080306053,
0.01858542114496231,
0.0053323074243962765,
-0.05908679962158203,
-0.014279885217547417,
0.04262394830584526,
-0.0020999195985496044,
0.004465160425752401,
0.02757614105939865,
0.03195933252573013,
0.040449608117341995,
0.048663780093193054,
0.047214217483997345,
0.02952614426612854,
-0.03168322518467903,
0.032735880464315414,
-0.08124434947967529,
-0.03982836753129959,
-0.002316706581041217,
0.04003544896841049,
-0.02167436294257641,
0.00962921604514122,
-0.04231332615017891,
0.024590739980340004,
-0.025764191523194313,
-0.016790729016065598,
0.020846044644713402,
-0.02588498778641224,
-0.06671424210071564,
0.027783220633864403,
-0.026368174701929092,
-0.02491861581802368,
0.02861154079437256,
0.09753463417291641,
-0.00315581145696342,
-0.008421249687671661,
-0.05052749812602997,
0.01989692822098732,
-0.005315050948411226,
0.016980553045868874,
0.06688681244850159,
0.02484958991408348,
0.027696937322616577,
0.009775897487998009,
-0.0339265912771225,
-0.015669045969843864,
-0.04151952266693115,
-0.011173686943948269,
0.08089921623468399,
0.0031881676986813545,
0.024055782705545425,
0.01543608121573925,
0.07655053585767746,
-0.036377038806676865,
-0.0613301657140255,
0.0019251960329711437,
0.010328110307455063,
0.00529348012059927,
-0.029370833188295364,
-0.003127769334241748,
0.03256331384181976,
-0.0952567607164383,
-0.044556692242622375,
-0.018740732222795486,
0.029181011021137238,
-0.021294716745615005,
0.024021269753575325,
0.008464391343295574,
-0.01607457734644413,
-0.036273498088121414,
-0.049940772354602814,
-0.03741243854165077,
-0.012036520056426525,
0.05632573366165161,
0.0311137568205595,
-0.02595401555299759,
0.03137260675430298,
0.018171261996030807,
0.04790448397397995,
-0.06626556813716888,
-0.07130451500415802,
0.02067347802221775,
0.0153843117877841,
-0.01200200617313385,
-0.00241593224927783,
-0.0014883868861943483,
0.03214915469288826,
-0.02956065721809864,
0.013460193760693073,
-0.02861154079437256,
-0.008878551423549652,
-0.04234784096479416,
-0.03147614747285843,
0.021657107397913933,
-0.0023210207000374794,
0.025091182440519333,
-0.007066601887345314,
0.026419945061206818,
0.009128772653639317,
0.013632760383188725,
0.013960637152194977,
0.02322746254503727,
0.011570589616894722,
0.026885874569416046,
-0.03537615016102791,
0.039207130670547485,
-0.004547129850834608,
-0.08421249687671661,
0.01872347481548786,
0.024659765884280205,
0.0068681500852108,
-0.002461231080815196,
-0.009991605766117573,
-0.029232779517769814,
-0.008787953294813633,
-0.03002658672630787,
0.0025173150934278965,
0.03565225750207901,
0.034116413444280624,
-0.05335758998990059,
0.017929669469594955,
-0.02407304011285305,
0.02043188363313675
] |
729,616 | tinytuya.core | hex2bin | null | def hex2bin(x):
if IS_PY2:
return x.decode("hex")
else:
return bytes.fromhex(x)
| (x) | [
0.009174341335892677,
0.010345346294343472,
0.00847437884658575,
0.007263753563165665,
0.021007655188441277,
-0.029671333730220795,
-0.008553620427846909,
0.07966356724500656,
0.02585015818476677,
-0.041064418852329254,
0.0886089876294136,
0.0406770221889019,
0.004706032108515501,
0.0018005304737016559,
0.01038936898112297,
-0.03803565725684166,
-0.021113310009241104,
0.011102537624537945,
0.05085508152842522,
0.03849349170923233,
-0.005727359559386969,
0.012018210254609585,
0.005678934510797262,
0.030181996524333954,
0.010045991279184818,
0.030921578407287598,
-0.012546483427286148,
0.05356688052415848,
-0.06198403239250183,
-0.010952860116958618,
0.027082795277237892,
-0.062300994992256165,
0.060927484184503555,
-0.02359619364142418,
-0.0006933583063073456,
0.021888110786676407,
0.014782839454710484,
0.09628655761480331,
-0.009508914314210415,
-0.043635349720716476,
0.03673258051276207,
-0.06768938153982162,
-0.06825286895036697,
0.023737067356705666,
0.024564694613218307,
-0.04476233199238777,
-0.044198840856552124,
0.034654706716537476,
-0.049129389226436615,
0.015496008098125458,
0.015038170851767063,
-0.046030186116695404,
0.04719238728284836,
0.05483473837375641,
0.08959510177373886,
-0.015839384868741035,
-0.03537668287754059,
0.046875424683094025,
0.01270496565848589,
0.07163381576538086,
0.013699879869818687,
0.06899245083332062,
0.07311297953128815,
-0.10192146897315979,
0.010283714160323143,
0.03120332397520542,
-0.012167887762188911,
-0.060504864901304245,
-0.013242042623460293,
0.02715323120355606,
0.00278003653511405,
0.04127572849392891,
-0.07917051017284393,
0.01762670837342739,
0.008082577027380466,
0.02403642050921917,
0.04124051332473755,
0.04303663969039917,
-0.008271874859929085,
0.028826097026467323,
0.06437886506319046,
-0.023965984582901,
-0.029565678909420967,
0.03888089209794998,
-0.030076341703534126,
-0.023719457909464836,
-0.00015834432269912213,
0.036873456090688705,
0.011137755587697029,
-0.012696160934865475,
0.023279229179024696,
-0.025920594111084938,
-0.02033851109445095,
0.06018790230154991,
-0.009077491238713264,
-0.05751131847500801,
0.06268839538097382,
0.010900032706558704,
-0.01266094297170639,
-0.02891414240002632,
-0.08086098730564117,
0.058180466294288635,
-0.11622005701065063,
0.02496970258653164,
-0.010178059339523315,
0.014668379910290241,
0.01900021918118,
-0.025128185749053955,
0.005621705204248428,
-0.09452565014362335,
-0.048284150660037994,
-0.03078070655465126,
-0.0005282729980535805,
-0.054588209837675095,
-0.03726085647940636,
0.0021890311036258936,
0.04296620190143585,
0.003693508682772517,
0.03030526079237461,
-0.0299706868827343,
0.07508520036935806,
0.02588537707924843,
-0.010600677691400051,
0.03666214644908905,
0.06068095937371254,
0.05712391808629036,
-0.01402564812451601,
0.004622388631105423,
0.018031718209385872,
0.016077108681201935,
0.026466477662324905,
0.060047030448913574,
-0.04437493160367012,
0.025004921481013298,
-0.013990430161356926,
-0.025216231122612953,
-0.04345925897359848,
0.0370495468378067,
0.008764929138123989,
-0.03317554295063019,
0.028315432369709015,
-0.026871485635638237,
0.07381734251976013,
-0.018683254718780518,
0.0018863747827708721,
0.003896013367921114,
-0.001624439493753016,
-0.020496992394328117,
-0.01672864519059658,
0.017248112708330154,
-0.0019171907333657146,
-0.006458137184381485,
-0.002544514834880829,
0.008078174665570259,
-0.027434976771473885,
0.03534146398305893,
-0.01601547561585903,
-0.054975610226392746,
0.07001378387212753,
-0.03620430827140808,
0.005775784607976675,
0.06994334608316422,
0.021430274471640587,
-0.06113879382610321,
0.003248878987506032,
0.013330088928341866,
-0.042332276701927185,
0.01130504161119461,
0.04021918401122093,
-0.05983572080731392,
-0.04169834777712822,
-0.015707317739725113,
-0.028156951069831848,
0.03440818190574646,
-0.0026765831280499697,
-0.04215618595480919,
0.008091381751000881,
0.020743519067764282,
0.017230503261089325,
-0.024142075330018997,
0.007373810280114412,
-0.018841736018657684,
0.005009789019823074,
-0.04588931426405907,
0.023296838626265526,
-0.0212894007563591,
0.06473105400800705,
0.03930351138114929,
0.0016145342960953712,
-0.06363928318023682,
0.032330308109521866,
-0.0015826178714632988,
0.020039156079292297,
0.00702603068202734,
-0.010398173704743385,
-0.021553538739681244,
0.006995215080678463,
0.01064470037817955,
-0.0532851368188858,
-0.032435961067676544,
0.02903740480542183,
-0.03472514450550079,
0.014589139260351658,
-0.009640982374548912,
0.006810319144278765,
-0.0435296930372715,
0.02171202003955841,
-0.02667778544127941,
0.009623372927308083,
-0.06480148434638977,
0.057793065905570984,
-0.02484644018113613,
-0.0664215236902237,
0.001571612199768424,
-0.06635108590126038,
0.016420485451817513,
-0.004151345230638981,
0.003651686944067478,
0.03134419769048691,
-0.007875669747591019,
-0.034654706716537476,
0.05254555493593216,
0.004160149954259396,
0.009825877845287323,
0.03176681697368622,
0.02401881292462349,
-0.02808651328086853,
0.01471240259706974,
0.058180466294288635,
-0.05765219405293465,
0.11051470786333084,
0.010794377885758877,
-0.02940719574689865,
0.03224226087331772,
-0.008241058327257633,
-0.008100185543298721,
0.05853264778852463,
-0.03680301830172539,
-0.042402710765600204,
-0.03521819785237312,
0.025497976690530777,
0.011498741805553436,
0.06015268340706825,
-0.010723941959440708,
0.04208574816584587,
-0.03541189804673195,
0.0031234140042215586,
-0.014439461752772331,
-0.07917051017284393,
-0.010503827594220638,
-0.02946002408862114,
-0.023261621594429016,
0.03743694722652435,
-0.058638300746679306,
0.018436728045344353,
-0.027434976771473885,
-0.0025621240492910147,
0.008359920233488083,
-0.042825330048799515,
0.04522016644477844,
-0.016279613599181175,
0.04536104202270508,
-0.013682270422577858,
-0.049094170331954956,
0.019405227154493332,
-0.067795030772686,
-0.041064418852329254,
0.05930744856595993,
0.05303860828280449,
0.002813053783029318,
0.05029159039258957,
-0.09868139773607254,
-0.013770315796136856,
0.00555567117407918,
-0.024335775524377823,
-0.02810412272810936,
-0.009949141182005405,
-0.008954226970672607,
0.0435296930372715,
0.0060927486047148705,
-0.024370994418859482,
-0.006308460142463446,
0.04303663969039917,
-0.02629038505256176,
-0.001066451077349484,
0.019792627543210983,
-0.001154496567323804,
-0.01863042823970318,
-0.012810620479285717,
-0.007193317171186209,
0.03565842658281326,
0.008020944893360138,
-0.03178442642092705,
-0.021042874082922935,
-0.026818659156560898,
0.05983572080731392,
0.018736081197857857,
-0.025955813005566597,
0.07029552757740021,
-0.020690692588686943,
0.005269523244351149,
0.05567997321486473,
-0.02949524112045765,
0.020074373111128807,
-0.010398173704743385,
-0.01938761956989765,
0.012238324619829655,
-0.025709286332130432,
-0.017503445968031883,
-0.003774950746446848,
-0.030181996524333954,
-0.02401881292462349,
0.04310707747936249,
-0.05479951947927475,
-0.0022242492996156216,
-0.03248878940939903,
0.020496992394328117,
-0.018876954913139343,
0.0012480448931455612,
0.008329104632139206,
0.015381548553705215,
0.06268839538097382,
0.012784206308424473,
0.02530427649617195,
-0.02850913256406784,
0.013074756599962711,
-0.008131002075970173,
0.02669539488852024,
0.02033851109445095,
0.005771382246166468,
0.0034293720964342356,
0.015531226061284542,
0.061807941645383835,
0.00011170772631885484,
-0.03905698284506798,
-0.013374111615121365,
0.03162594139575958,
0.017688341438770294,
-0.05015071481466293,
-0.025040140375494957,
0.019370010122656822,
0.021571146324276924,
0.07839570939540863,
0.006356885191053152,
-0.014016843400895596,
-0.020162418484687805,
-0.0633927583694458,
0.0006080642342567444,
-0.031115278601646423,
-0.0026787843089550734,
0.00667384872213006,
-0.04631193354725838,
-0.011375478468835354,
0.0021538129076361656,
0.013691075146198273,
-0.0589904822409153,
0.01793486811220646,
-0.031502678990364075,
0.009007054381072521,
0.06335753947496414,
0.003970852121710777,
-0.003251079935580492,
-0.03845827281475067,
-0.042825330048799515,
-0.013919993303716183,
0.03185486048460007,
-0.04124051332473755,
0.010882423259317875,
0.018489554524421692,
0.0036032621283084154,
-0.001721289474517107,
0.08198796957731247,
-0.05937788262963295,
-0.027029968798160553,
-0.017309745773673058,
0.0037463358603417873,
-0.019616536796092987,
-0.0076599582098424435,
-0.023930765688419342,
-0.00624242564663291,
0.01810215413570404,
-0.01313638873398304,
-0.021465493366122246,
-0.0027646287344396114,
-0.008241058327257633,
-0.00008226751378970221,
0.016446899622678757,
-0.05663086473941803,
0.04856589809060097,
0.008153012953698635,
-0.04490320384502411,
0.012608115561306477,
-0.021817674860358238,
0.0038585939910262823,
0.022028984501957893,
-0.005700945854187012,
0.09692048281431198,
-0.010503827594220638,
0.0676189437508583,
-0.004175557754933834,
-0.016807885840535164,
0.05522213503718376,
0.01679908111691475,
-0.02356097474694252,
-0.043283168226480484,
0.01952849142253399,
-0.009693809784948826,
-0.008500793017446995,
0.003590055275708437,
-0.04680498689413071,
-0.01178048737347126,
0.023455319926142693,
-0.030146779492497444,
-0.03456666320562363,
0.005780186969786882,
-0.005502843763679266,
-0.014641966670751572,
0.016385266557335854,
0.01751224882900715,
-0.01901782862842083,
-0.026096684858202934,
0.012097451835870743,
-0.022381165996193886,
-0.0397261306643486,
-0.0070612491108477116,
0.07726872712373734,
0.003970852121710777,
0.06099792197346687,
0.003618669928982854,
0.030921578407287598,
0.023191183805465698,
-0.022786175832152367,
-0.01494132075458765,
-0.05451777204871178,
-0.03845827281475067,
0.01903543621301651,
0.04152225703001022,
-0.012071037665009499,
0.05170031636953354,
0.06811200082302094,
-0.007620337884873152,
0.029266323894262314,
0.01248485129326582,
-0.025621240958571434,
0.009596959687769413,
0.015196653082966805,
-0.08466455340385437,
0.028685223311185837,
0.07297211140394211,
-0.01428097952157259,
0.002916507190093398,
-0.0889611691236496,
0.0767756775021553,
-0.006871951278299093,
-0.019704582169651985,
-0.07170425355434418,
0.0027646287344396114,
0.01583058014512062,
0.026079077273607254,
0.0015859195264056325,
-0.029706550762057304,
-0.025674067437648773,
-0.006026714574545622,
-0.07663480192422867,
-0.02444143034517765,
-0.05036202445626259,
-0.008896997198462486,
0.0444805845618248,
0.07719829678535461,
0.03673258051276207,
0.006700262427330017,
0.00394443841651082,
0.02303270250558853,
0.017873236909508705,
0.08424193412065506,
-0.018700864166021347,
0.03037569671869278,
0.014897298067808151,
-0.0004971818998456001,
-0.05342600867152214,
-0.05567997321486473,
-0.017573881894350052,
-0.005265120882540941,
0.0028966967947781086,
0.00995794590562582,
-0.03035808727145195,
0.028438696637749672,
0.010820792056620121,
-0.021359838545322418,
-0.0008100185659714043,
0.006374494172632694,
0.07075336575508118,
-0.018665645271539688,
-0.010935250669717789,
0.06631586700677872,
0.018788909539580345,
-0.031027233228087425,
0.007505878806114197,
-0.00948250014334917,
0.03261205181479454,
-0.016658209264278412,
-0.014307393692433834,
-0.025991031900048256,
-0.05296817049384117,
-0.04898851364850998,
0.04437493160367012,
-0.011938969604671001,
-0.044656675308942795,
-0.002810852602124214,
-0.01475642528384924,
-0.08508717268705368,
-0.029759379103779793,
-0.019281964749097824,
-0.02081395499408245,
-0.008461172692477703,
0.031907688826322556,
0.022081810981035233,
-0.02937197871506214,
-0.01938761956989765,
-0.007180110551416874,
-0.015487203374505043,
0.056454773992300034,
-0.001826944062486291,
-0.022363556548953056,
0.018454335629940033,
-0.008998249657452106,
0.013946406543254852,
-0.011516351252794266,
-0.02808651328086853,
0.022504430264234543,
-0.006374494172632694,
-0.02091960981488228,
-0.025181012228131294,
-0.054658643901348114,
-0.03937394544482231,
0.011146560311317444,
-0.013250847347080708,
0.027540631592273712,
-0.009341627359390259,
-0.015839384868741035,
-0.03255922719836235,
-0.018331073224544525,
0.00791529007256031,
-0.0012964699417352676,
-0.046452805399894714,
0.03218943253159523,
-0.00440227473154664,
0.050960734486579895,
-0.014589139260351658,
0.015540030784904957,
-0.047791097313165665,
-0.0138407526537776,
-0.0033963550813496113,
0.04109963774681091,
-0.014606747776269913,
-0.12734900414943695,
-0.013312479481101036,
0.04247314855456352,
-0.035147763788700104,
0.04173356667160988,
-0.02537471242249012,
-0.03623952716588974,
-0.02352575771510601,
0.02850913256406784,
-0.0881863683462143,
0.04074745625257492,
0.015760144218802452,
-0.057088702917099,
0.04662889614701271,
-0.007210926152765751,
0.03296423330903053,
0.0037705483846366405,
-0.0025621240492910147,
0.011648419313132763,
0.023296838626265526,
0.053707752376794815,
-0.01811976358294487,
-0.07839570939540863,
-0.0012557489098981023,
-0.037753909826278687,
-0.007158099208027124,
-0.006246828008443117,
-0.033739034086465836,
-0.02944241464138031,
0.04381144046783447,
-0.044691894203424454,
0.0389513298869133,
0.014413048513233662,
0.008201438002288342,
-0.01738898642361164,
0.00927999522536993,
-0.015839384868741035,
0.03708476573228836,
0.009429672732949257,
0.011261018924415112,
-0.035992998629808426,
-0.03268248960375786,
-0.0009255782933905721,
0.02990025095641613,
-0.049199823290109634,
0.07748004049062729,
-0.020585037767887115,
0.060469649732112885,
0.03183725103735924,
0.06923898309469223,
0.025550803169608116,
-0.023402493447065353,
-0.07075336575508118,
-0.013039538636803627,
-0.014148911461234093,
-0.0019854260608553886,
0.014413048513233662,
0.01586579903960228,
0.010107623413205147,
-0.03909220173954964,
0.037366509437561035,
0.042825330048799515,
-0.06247708573937416,
-0.08804550021886826,
0.008469977416098118,
-0.002846070798113942,
0.04772065952420235,
-0.03940916433930397,
0.026924313977360725,
-0.006286448799073696,
0.027540631592273712,
0.009649787098169327,
0.0370495468378067,
0.037331290543079376,
-0.006581400986760855,
-0.008883791044354439,
-0.009464890696108341,
0.02627277746796608,
0.02498731203377247,
-0.016904735937714577,
-0.025480367243289948,
-0.003484400687739253,
0.008258667774498463,
-0.011049710214138031,
0.037366509437561035,
0.04050092771649361,
-0.010952860116958618,
-0.01566329412162304,
-0.00012580875772982836,
0.019246745854616165,
-0.015055780299007893,
0.009517718106508255,
-0.05177075415849686,
-0.06430843472480774,
-0.07416953146457672,
0.03352772444486618,
-0.026484085246920586,
-0.05839177593588829,
0.04081789404153824,
0.02938958816230297,
0.010820792056620121,
0.005291534587740898,
0.031062452122569084,
-0.020585037767887115,
0.024159684777259827,
0.006502159871160984,
0.02540993131697178,
-0.0181373730301857,
0.05751131847500801,
-0.05025637149810791,
-0.02033851109445095,
0.000847437942866236,
-0.012062232941389084,
-0.05511648207902908,
-0.0624418668448925,
0.058180466294288635,
-0.021465493366122246,
-0.03750738129019737,
-0.036873456090688705,
0.033369243144989014,
-0.0198630653321743,
-0.020902002230286598,
0.05944832041859627,
0.01610352098941803,
0.0036208711098879576,
0.01588340848684311,
-0.011366673745214939,
0.01382314320653677,
-0.026114294305443764,
0.014703597873449326,
-0.01907065510749817,
-0.03224226087331772,
0.004312028177082539,
-0.01793486811220646,
0.006911571603268385,
-0.03771869093179703,
0.018331073224544525,
-0.007985726930201054,
0.011040905490517616,
-0.010486219078302383,
0.015496008098125458,
0.005705348215997219,
-0.0016651605255901814,
0.02266291156411171,
-0.03444340080022812,
0.06075139343738556,
-0.07557825744152069,
0.03365099057555199,
0.09973794221878052,
0.021183747798204422,
-0.052792079746723175,
0.017890844494104385,
-0.02091960981488228,
0.022962266579270363,
0.0435296930372715,
-0.019739801064133644,
-0.00006476158887380734,
-0.01715126261115074,
-0.04120529443025589,
0.07346516102552414,
0.04250836744904518,
-0.09762484580278397,
0.013268456794321537,
-0.06194881349802017,
0.029195887967944145,
0.004085311200469732,
-0.03754260018467903,
0.04331838712096214,
0.04835458844900131,
-0.00994033645838499,
-0.006876353640109301,
0.037859562784433365,
0.013726293109357357,
0.012854643166065216,
0.019352400675415993,
0.05892004817724228,
-0.0515594445168972,
-0.013180411420762539,
0.05451777204871178,
0.018366290256381035,
0.04247314855456352,
-0.029988296329975128,
-0.0007456353050656617,
-0.028808487579226494,
-0.0021251982543617487,
0.058638300746679306,
0.01815498247742653,
-0.03409121558070183,
0.029072623699903488,
-0.016587771475315094,
0.017688341438770294,
0.051841188222169876,
-0.005965082440525293,
0.009209559299051762,
-0.03623952716588974,
-0.0028790878131985664,
0.05448255315423012,
-0.05117204412817955,
0.00909509975463152,
0.06747806817293167,
-0.01674625463783741,
-0.07825484126806259,
0.040993984788656235,
-0.018700864166021347,
-0.03275292366743088,
-0.01334769744426012,
0.04293098673224449,
-0.01738898642361164,
-0.05761697515845299,
-0.013030733913183212,
-0.00394443841651082,
0.035940174013376236,
0.020215246826410294
] |
729,622 | tinytuya.core | pack_message | Pack a TuyaMessage into bytes. | def pack_message(msg, hmac_key=None):
"""Pack a TuyaMessage into bytes."""
if msg.prefix == PREFIX_55AA_VALUE:
header_fmt = MESSAGE_HEADER_FMT_55AA
end_fmt = MESSAGE_END_FMT_HMAC if hmac_key else MESSAGE_END_FMT_55AA
msg_len = len(msg.payload) + struct.calcsize(end_fmt)
header_data = ( msg.prefix, msg.seqno, msg.cmd, msg_len )
elif msg.prefix == PREFIX_6699_VALUE:
if not hmac_key:
raise TypeError( 'key must be provided to pack 6699-format messages' )
header_fmt = MESSAGE_HEADER_FMT_6699
end_fmt = MESSAGE_END_FMT_6699
msg_len = len(msg.payload) + (struct.calcsize(end_fmt) - 4) + 12
if type(msg.retcode) == int:
msg_len += struct.calcsize(MESSAGE_RETCODE_FMT)
header_data = ( msg.prefix, 0, msg.seqno, msg.cmd, msg_len )
else:
raise ValueError( 'pack_message() cannot handle message format %08X' % msg.prefix )
# Create full message excluding CRC and suffix
data = struct.pack( header_fmt, *header_data )
if msg.prefix == PREFIX_6699_VALUE:
cipher = AESCipher( hmac_key )
if type(msg.retcode) == int:
raw = struct.pack( MESSAGE_RETCODE_FMT, msg.retcode ) + msg.payload
else:
raw = msg.payload
data2 = cipher.encrypt( raw, use_base64=False, pad=False, iv=True if not msg.iv else msg.iv, header=data[4:])
data += data2 + SUFFIX_6699_BIN
else:
data += msg.payload
if hmac_key:
crc = hmac.new(hmac_key, data, sha256).digest()
else:
crc = binascii.crc32(data) & 0xFFFFFFFF
# Calculate CRC, add it together with suffix
data += struct.pack( end_fmt, crc, SUFFIX_VALUE )
return data
| (msg, hmac_key=None) | [
-0.017398707568645477,
-0.003759038867428899,
-0.029345372691750526,
-0.014060527086257935,
-0.016250908374786377,
-0.03426177427172661,
-0.017389141023159027,
0.02825496345758438,
-0.029307112097740173,
-0.04939357936382294,
0.047097984701395035,
0.06025940179824829,
-0.013477062806487083,
0.025691548362374306,
-0.033668745309114456,
0.02471591904759407,
0.0648888573050499,
-0.007546772714704275,
0.03368787467479706,
-0.022573363035917282,
0.043807629495859146,
0.06634273380041122,
-0.019665608182549477,
0.03598347306251526,
0.013352718204259872,
0.02492634952068329,
0.019283007830381393,
0.029785361140966415,
0.02607414685189724,
-0.033879175782203674,
0.04862838238477707,
-0.03336266428232193,
0.02913494221866131,
0.015303974971175194,
-0.07919806987047195,
-0.04717450216412544,
0.03498871251940727,
-0.04866664111614227,
-0.019082143902778625,
-0.03676779940724373,
0.0899873748421669,
-0.024773309007287025,
0.03269311785697937,
-0.05077093839645386,
0.053143054246902466,
-0.011028426699340343,
-0.05375521257519722,
0.1070513054728508,
-0.05892030522227287,
0.054635193198919296,
-0.012826643884181976,
-0.050503119826316833,
0.023969851434230804,
-0.004792057443410158,
-0.0216359943151474,
0.05080919712781906,
-0.045261505991220474,
-0.030665339902043343,
-0.038336459547281265,
0.08294754475355148,
-0.027355855330824852,
0.0244863610714674,
0.0007980783702805638,
0.007173738442361355,
-0.03713126853108406,
-0.03780081868171692,
-0.0142422616481781,
-0.037073880434036255,
-0.05226307362318039,
-0.01064582820981741,
0.04874316230416298,
0.06649576872587204,
-0.016231779009103775,
0.01877606473863125,
-0.019416918978095055,
0.005624210927635431,
-0.06508015096187592,
0.03542870283126831,
-0.030933160334825516,
0.03579217195510864,
0.028962772339582443,
-0.04285113140940666,
0.014529211446642876,
-0.016011783853173256,
0.04487890750169754,
0.0398668572306633,
0.040134675800800323,
0.027987144887447357,
0.0024414623621851206,
-0.03030187077820301,
-0.010684087872505188,
-0.06645750999450684,
-0.004416631534695625,
0.019742127507925034,
0.011133641935884953,
-0.06423843652009964,
0.028427133336663246,
0.06519493460655212,
-0.04969966039061546,
0.041397251188755035,
-0.061675019562244415,
0.005308566614985466,
-0.0233576912432909,
-0.0012781210243701935,
0.01900562457740307,
0.019531698897480965,
-0.047097984701395035,
-0.013190113939344883,
0.006002028007060289,
0.01303707342594862,
0.03737995773553848,
-0.10460267215967178,
-0.03722691908478737,
-0.022496843710541725,
0.01372575294226408,
-0.03770516812801361,
0.016356123611330986,
0.011573631316423416,
-0.008297624066472054,
-0.016719592735171318,
0.030225351452827454,
0.0023398343473672867,
0.032865285873413086,
-0.07942762970924377,
0.023663772270083427,
0.03408960625529289,
0.06462103873491287,
-0.021004706621170044,
0.03407047316431999,
-0.04124421253800392,
-0.023376822471618652,
0.06902092695236206,
0.0432719886302948,
0.002031363546848297,
-0.06010636314749718,
-0.019876038655638695,
0.047327544540166855,
-0.030244480818510056,
0.04155029356479645,
0.006676359102129936,
0.060297660529613495,
0.018623024225234985,
0.016671767458319664,
-0.013668362982571125,
0.001707349787466228,
-0.021234266459941864,
0.03370700404047966,
-0.04916401952505112,
-0.03167922794818878,
0.03495045378804207,
-0.019101273268461227,
-0.015877874568104744,
0.01890997402369976,
0.017006542533636093,
0.05976202338933945,
-0.043578069657087326,
0.029096683487296104,
-0.054749973118305206,
-0.046868424862623215,
-0.021578604355454445,
0.009541071951389313,
0.014079657383263111,
0.008192408829927444,
-0.04246853291988373,
0.009278034791350365,
0.01993342861533165,
0.02152121439576149,
-0.007403297815471888,
0.008331101387739182,
0.013285763561725616,
-0.04089987277984619,
0.015791788697242737,
-0.07598423957824707,
0.02131078578531742,
0.04813100025057793,
-0.00435924157500267,
-0.06504189223051071,
-0.033649615943431854,
-0.017810001969337463,
-0.02094731666147709,
-0.06274630129337311,
0.045031946152448654,
0.018747368827462196,
-0.013974442146718502,
-0.01811608113348484,
0.023663772270083427,
0.03913991525769234,
0.03812602907419205,
0.04908750206232071,
-0.055400390177965164,
-0.05716034770011902,
0.013017944060266018,
0.023376822471618652,
0.0808049887418747,
-0.020354287698864937,
0.04112943261861801,
0.013084898702800274,
-0.019742127507925034,
-0.0053803035989403725,
0.04040249437093735,
-0.026609787717461586,
-0.014634426683187485,
0.033420056104660034,
-0.007384167984127998,
0.004280330613255501,
-0.038776446133852005,
-0.03110533021390438,
0.013572713360190392,
-0.06209588050842285,
-0.06561579555273056,
0.02800627425312996,
-0.029785361140966415,
-0.021616864949464798,
0.06473581492900848,
0.0005924312281422317,
-0.02027776651084423,
0.03705475106835365,
0.008173279464244843,
-0.006580709479749203,
-0.017484791576862335,
0.044687606394290924,
0.030894899740815163,
0.0015973524423316121,
-0.008426751010119915,
0.02027776651084423,
0.026954125612974167,
0.006394192110747099,
0.040823355317115784,
-0.0375712588429451,
-0.03426177427172661,
0.0432719886302948,
0.0014204002218320966,
-0.026169797405600548,
0.021502085030078888,
-0.051191795617341995,
0.011602326296269894,
-0.0035294792614877224,
-0.0019536481704562902,
0.026150668039917946,
-0.02131078578531742,
0.03475915268063545,
-0.05681600794196129,
0.040364235639572144,
0.022726403549313545,
0.03210008889436722,
-0.045184988528490067,
-0.0018520201556384563,
0.013390977866947651,
-0.030014920979738235,
0.055170830339193344,
-0.09748632460832596,
-0.003283180994912982,
0.027068905532360077,
-0.031047940254211426,
0.009158472530543804,
-0.010827562771737576,
0.0267628263682127,
-0.030799249187111855,
-0.008460228331387043,
0.021119486540555954,
0.012214485555887222,
-0.02322378195822239,
-0.05042659863829613,
-0.008025022223591805,
-0.018948234617710114,
-0.018383899703621864,
-0.022152503952383995,
0.013649232685565948,
-0.01555266510695219,
0.05976202338933945,
0.07384168356657028,
-0.031258370727300644,
-0.02494547888636589,
0.03506523370742798,
-0.006178979761898518,
-0.014663121663033962,
0.002654283307492733,
-0.011870145797729492,
0.0569690465927124,
-0.0033262234646826982,
-0.026628917083144188,
-0.03745647892355919,
0.06504189223051071,
-0.008125454187393188,
0.012922294437885284,
0.035256531089544296,
-0.0341852530837059,
-0.03891035541892052,
-0.007111566141247749,
-0.040823355317115784,
-0.022056853398680687,
-0.024792440235614777,
-0.05547691136598587,
-0.006461147218942642,
-0.0193690937012434,
0.0014096396043896675,
-0.016002219170331955,
0.0007400906761176884,
0.05172743648290634,
-0.06071852147579193,
-0.01732218638062477,
0.11080078035593033,
0.05134483799338341,
0.0030870987102389336,
0.03074186109006405,
0.00820197444409132,
-0.0176569614559412,
0.005327696446329355,
-0.016078738495707512,
-0.012931859120726585,
-0.0019058231264352798,
-0.012377089820802212,
0.072923444211483,
-0.02073688618838787,
0.023893332108855247,
-0.011018862016499043,
0.10529135167598724,
-0.03628955036401749,
0.04135899245738983,
0.03921643644571304,
0.030225351452827454,
-0.06580709666013718,
-0.027317596599459648,
0.04621800407767296,
0.015237020328640938,
-0.011487546376883984,
-0.014548341743648052,
-0.045567587018013,
-0.003988598473370075,
-0.053487394005060196,
-0.023434212431311607,
0.03686344996094704,
-0.0004387936496641487,
-0.02528981864452362,
-0.04147377237677574,
0.02062210626900196,
-0.0026351532433182,
-0.002366138156503439,
-0.06113938242197037,
-0.0032162261195480824,
0.02391246147453785,
-0.0199142973870039,
-0.004069901071488857,
0.03397482633590698,
-0.0026040670927613974,
-0.05543864890933037,
-0.042545050382614136,
-0.005193786695599556,
-0.007111566141247749,
0.009168037213385105,
-0.009617592208087444,
-0.013706622645258904,
0.05409955233335495,
0.056433409452438354,
0.10062363743782043,
-0.010397138074040413,
-0.030703600496053696,
-0.00736982049420476,
0.03732256963849068,
0.09840456396341324,
0.05490301176905632,
-0.010368443094193935,
0.0040149022825062275,
-0.03246355801820755,
-0.09235949069261551,
0.021329915151000023,
0.0007586228311993182,
-0.01798216998577118,
0.04269808903336525,
0.009899758733808994,
0.04977617785334587,
-0.038087766617536545,
-0.012090140022337437,
0.04055553302168846,
-0.014605731703341007,
0.05341087281703949,
-0.038776446133852005,
0.02050732634961605,
-0.051306575536727905,
-0.04040249437093735,
0.06515667587518692,
-0.014605731703341007,
-0.015007460489869118,
0.018823890015482903,
0.05218655616044998,
0.0364617221057415,
0.03619389981031418,
-0.018986493349075317,
-0.04862838238477707,
0.03271224722266197,
0.0009738350054249167,
0.023089872673153877,
0.04690668359398842,
-0.01672915741801262,
-0.030454911291599274,
0.04001989588141441,
-0.013563147746026516,
0.06282281875610352,
-0.025825457647442818,
-0.0626697763800621,
0.06898266822099686,
-0.07146956771612167,
0.013180548325181007,
0.044343266636133194,
-0.03747560828924179,
0.0016989803407341242,
-0.0005472964840009809,
-0.012501434423029423,
-0.021023835986852646,
0.043118949979543686,
0.02869495376944542,
0.020641235634684563,
-0.04051727429032326,
0.03211921826004982,
0.0021844033617526293,
-0.006155067589133978,
-0.03921643644571304,
-0.047671884298324585,
-0.001260186661966145,
0.009880629368126392,
-0.027183685451745987,
-0.040479015558958054,
-0.02519416995346546,
0.02595936879515648,
-0.01912996917963028,
0.06060374155640602,
-0.06978612393140793,
-0.029307112097740173,
-0.014902246184647083,
-0.011774496175348759,
0.047671884298324585,
-0.01446225680410862,
-0.024888088926672935,
0.003146879840642214,
-0.029651451855897903,
-0.018871715292334557,
-0.042124193161726,
-0.028101924806833267,
-0.010559743270277977,
0.022745532914996147,
-0.04009641334414482,
-0.016949152573943138,
0.01675785332918167,
0.019856907427310944,
0.015457014553248882,
-0.007173738442361355,
-0.018039559945464134,
0.005394651088863611,
-0.011009297333657742,
0.02572980895638466,
0.08218234777450562,
-0.0009744327981024981,
0.0015531143872067332,
0.030550559982657433,
0.050503119826316833,
-0.06710793077945709,
0.03544783219695091,
-0.006590274162590504,
-0.03774343058466911,
-0.03259746730327606,
0.018967363983392715,
0.008101541548967361,
0.03221486881375313,
0.029115812852978706,
0.012558824382722378,
-0.007269388064742088,
-0.01856563426554203,
-0.024677660316228867,
0.023529861122369766,
-0.028274094685912132,
-0.0341661237180233,
-0.009249339811503887,
0.011411026120185852,
0.06657229363918304,
0.06626621633768082,
-0.013964877463877201,
0.03818341717123985,
0.008139802142977715,
-0.053372614085674286,
-0.06194283813238144,
0.023663772270083427,
-0.021138615906238556,
0.006303324829787016,
0.0244863610714674,
0.02997666224837303,
0.03156444802880287,
0.04487890750169754,
-0.043692849576473236,
0.02507939003407955,
-0.022707272320985794,
-0.025710677728056908,
0.05455867201089859,
0.00990932434797287,
0.06113938242197037,
0.02188468538224697,
-0.03087577037513256,
-0.01901518926024437,
0.005179439205676317,
-0.06588361412286758,
-0.05046485736966133,
-0.009660634212195873,
-0.032176606357097626,
-0.03705475106835365,
-0.03326701745390892,
0.012491869740188122,
-0.0027379768434911966,
0.03290354833006859,
0.026399357244372368,
0.04258331283926964,
-0.004653364885598421,
-0.06787312775850296,
0.031392280012369156,
-0.04996747896075249,
-0.02014385722577572,
0.002709281863644719,
0.042315490543842316,
-0.03345831483602524,
-0.04920228198170662,
0.021502085030078888,
-0.015610055066645145,
0.011028426699340343,
0.032080959528684616,
0.03628955036401749,
0.004997704178094864,
0.003099055029451847,
0.034242644906044006,
-0.02655239775776863,
0.00147420319262892,
-0.007020698394626379,
0.00945020467042923,
-0.033898305147886276,
-0.019856907427310944,
0.006556796841323376,
0.005351608619093895,
-0.007317213341593742,
-0.06641925126314163,
-0.03632781282067299,
0.01956995762884617,
-0.01189884077757597,
-0.0455293245613575,
-0.013582278043031693,
0.025882847607135773,
-0.05027355998754501,
-0.08960477262735367,
-0.05364043265581131,
0.08126410841941833,
0.0176378320902586,
0.023721162229776382,
-0.009880629368126392,
-0.03462524339556694,
-0.05149787664413452,
0.018766500055789948,
0.012558824382722378,
0.07483644038438797,
-0.015017026104032993,
-0.047901444137096405,
-0.004397501703351736,
-0.04966139793395996,
-0.021827295422554016,
0.002541894558817148,
-0.009373684413731098,
0.031487930566072464,
-0.044802386313676834,
-0.04793970286846161,
-0.05838466435670853,
0.05972376465797424,
-0.046638865023851395,
0.017408272251486778,
-0.014165742322802544,
0.046409305185079575,
-0.03856601566076279,
0.03588782250881195,
-0.0026566744782030582,
-0.027489764615893364,
-0.0051077017560601234,
-0.008068064227700233,
-0.0557829886674881,
0.008168497122824192,
0.02175077423453331,
-0.024103760719299316,
0.054023031145334244,
0.003919252194464207,
0.019550828263163567,
-0.009617592208087444,
0.013917052187025547,
0.029651451855897903,
0.029670581221580505,
0.014615296386182308,
0.046294525265693665,
-0.014873551204800606,
-0.029651451855897903,
-0.009493246674537659,
0.04824578016996384,
0.006772009190171957,
0.034357424825429916,
0.006647664122283459,
-0.03925469517707825,
-0.015648314729332924,
0.004002945963293314,
-0.00016454762953799218,
0.08830393850803375,
0.02643761783838272,
0.005705513060092926,
0.014921375550329685,
0.07950415462255478,
0.05635688826441765,
-0.052569154649972916,
0.043692849576473236,
-0.011956230737268925,
-0.011602326296269894,
0.018728239461779594,
-0.0036992577370256186,
0.004521846305578947,
-0.02597849816083908,
-0.022229023277759552,
-0.019187359139323235,
0.005992462858557701,
-0.034338295459747314,
0.0034720893017947674,
-0.0029029727447777987,
0.0024283104576170444,
0.03322875499725342,
-0.05903508514165878,
0.003464915556833148,
-0.03397482633590698,
-0.01548570953309536,
0.00007405390351777896,
-0.005954202730208635,
-0.025691548362374306,
-0.040593795478343964,
-0.007876764982938766,
0.06530971080064774,
0.06060374155640602,
-0.014328346587717533,
0.012386654503643513,
-0.04931706190109253,
-0.01891953870654106,
0.04602670669555664,
-0.00021775285131298006,
-0.01093277707695961,
0.012903164140880108,
-0.035333052277565,
-0.052224814891815186,
-0.07935111224651337,
-0.060871560126543045,
0.03493132442235947,
0.02142556570470333,
-0.06542449444532394,
-0.03496958315372467,
-0.045146726071834564,
0.052339594811201096,
-0.025557639077305794,
-0.0024534184485673904,
0.003816428827121854,
0.04009641334414482,
0.02777671441435814,
0.020201247185468674,
0.031851399689912796,
0.022477714344859123,
0.010406702756881714,
0.041167695075273514,
-0.055629950016736984,
-0.02037341706454754,
0.04396066814661026,
-0.013027508743107319,
0.028082793578505516,
0.011305811814963818,
-0.04985269904136658,
0.05907334387302399,
-0.053372614085674286,
0.027528025209903717,
0.07468339800834656,
-0.05134483799338341,
-0.018374335020780563,
0.03778168931603432,
0.008460228331387043,
0.0024318972136825323,
0.007446340285241604,
0.04947010055184364,
-0.018527375534176826,
0.08271798491477966,
0.04836056008934975,
-0.02027776651084423,
0.0005024605779908597,
0.0028623216785490513,
0.0012207311810925603,
0.06251674145460129,
0.037073880434036255,
-0.03630867972970009,
-0.11646325141191483,
0.023185523226857185,
-0.03317136690020561,
-0.013008379377424717,
0.004289895761758089,
-0.042545050382614136,
0.044802386313676834,
-0.0039049049373716116,
0.0012386655434966087,
-0.015992654487490654,
-0.045950185507535934,
-0.003759038867428899,
-0.038661666214466095,
-0.02630370669066906,
0.010980602353811264,
-0.027623675763607025,
0.06557753682136536,
-0.005547691136598587,
-0.020009947940707207,
-0.0364043302834034,
0.003821211401373148,
-0.028446264564990997,
0.007546772714704275,
-0.004756188485771418,
-0.022975092753767967,
0.027987144887447357,
-0.02048819698393345,
-0.02926885336637497,
0.07430080324411392,
0.01730305701494217,
0.00037094205617904663,
0.004737058654427528,
0.07143130153417587,
0.023893332108855247,
-0.005026399157941341,
0.0003117587184533477,
-0.04143551364541054,
0.038661666214466095,
-0.006547231692820787,
-0.010875387117266655,
0.01496920082718134,
0.04579714685678482,
0.011697975918650627,
-0.0014251826796680689,
0.017063932493329048,
0.02037341706454754,
0.014997895807027817,
-0.021100355312228203,
0.0010676913661882281,
0.062478478997945786,
0.05191873759031296,
-0.032616596668958664,
0.02540459856390953,
-0.017838696017861366,
0.0006103655905462801,
-0.0050168344751000404,
0.009148907847702503,
0.04281286895275116,
-0.005413781385868788,
0.002649500733241439,
0.022401193156838417,
-0.034816544502973557,
0.021387305110692978,
-0.09626200050115585,
0.004471630323678255,
0.040249455720186234,
-0.02766193449497223,
-0.055859509855508804,
0.015858745202422142,
0.0006540057947859168,
-0.0762903168797493,
-0.022936832159757614,
0.004026858601719141,
0.02142556570470333,
-0.019302139058709145,
-0.008025022223591805,
0.024199411273002625,
-0.00144431262742728,
0.03336266428232193
] |
729,623 | tinytuya.core | pad | null | def pad(s):
return s + (16 - len(s) % 16) * chr(16 - len(s) % 16)
| (s) | [
-0.03781580924987793,
0.040984537452459335,
0.028031056746840477,
0.050734471529722214,
-0.011517108418047428,
-0.011351707391440868,
-0.007786888163536787,
-0.00014758198813069612,
0.04993358626961708,
0.0018977548461407423,
0.03952204808592796,
0.03330646827816963,
0.03812920302152634,
0.0729852095246315,
0.027491329237818718,
-0.021223515272140503,
0.014955700375139713,
-0.004948961548507214,
0.06525490432977676,
-0.006328750867396593,
0.03426405042409897,
-0.0068728323094546795,
0.05076929181814194,
-0.021327978000044823,
-0.03694527968764305,
0.07023433595895767,
0.0015789233148097992,
0.0014363740338012576,
-0.05491301417350769,
-0.0072384546510875225,
0.03483859822154045,
-0.05825584754347801,
0.006546383257955313,
0.019900308921933174,
0.029998453333973885,
-0.00948006846010685,
0.02393956668674946,
-0.06824953109025955,
-0.08099408447742462,
-0.03487342223525047,
0.00903609860688448,
-0.0125269228592515,
-0.010176492854952812,
-0.06090226024389267,
0.0030490304343402386,
-0.014799005351960659,
0.047217532992362976,
0.010341892950236797,
-0.04317827522754669,
-0.012579154223203659,
0.02951095812022686,
0.02150208316743374,
0.0308515727519989,
0.019029779359698296,
0.09387792646884918,
0.03753724321722984,
-0.030259612947702408,
-0.025053845718503,
-0.004687802400439978,
-0.006259108893573284,
-0.013092766515910625,
0.0010342980967834592,
0.06111118569970131,
-0.018577104434370995,
-0.011952373199164867,
0.03320200368762016,
0.008779291994869709,
-0.03548279032111168,
0.05355498939752579,
-0.00878799706697464,
0.03774616867303848,
0.04690414294600487,
-0.01726260408759117,
-0.018350766971707344,
-0.03449038788676262,
0.03062523528933525,
0.00028047378873452544,
0.024357421323657036,
0.024374831467866898,
-0.04094971716403961,
0.03548279032111168,
-0.033881016075611115,
-0.003040325129404664,
0.03558725491166115,
0.030677467584609985,
0.012196121737360954,
-0.054425518959760666,
0.025123488157987595,
0.030102917924523354,
-0.012579154223203659,
0.04704342782497406,
-0.04624253883957863,
0.011343002319335938,
0.02117128297686577,
-0.034681905061006546,
0.010011091828346252,
0.05379873514175415,
0.014746773056685925,
-0.015791408717632294,
-0.008130747824907303,
-0.030259612947702408,
0.000677925010677427,
-0.023713229224085808,
-0.010959968902170658,
-0.05111750587821007,
-0.06570758670568466,
-0.01864674687385559,
0.0221985075622797,
-0.004411409143358469,
-0.026481514796614647,
0.02973729558289051,
-0.03893008828163147,
0.023852514103055,
-0.08364049345254898,
0.011490992270410061,
0.012448575347661972,
0.04390951991081238,
-0.012161300517618656,
0.03812920302152634,
-0.020927535369992256,
0.06396652013063431,
-0.030259612947702408,
0.00582819664850831,
-0.03903455287218094,
0.0012818550458177924,
0.036214035004377365,
-0.017706574872136116,
0.041889891028404236,
-0.019708793610334396,
-0.02075342833995819,
0.010080734267830849,
0.07326377928256989,
0.024009209126234055,
-0.003989202436059713,
0.028884176164865494,
-0.03361985832452774,
-0.011343002319335938,
0.04613807424902916,
-0.032122544944286346,
0.035447970032691956,
0.004193776752799749,
0.031669870018959045,
0.06581204384565353,
0.028692658990621567,
0.029145335778594017,
0.025889553129673004,
0.028013646602630615,
0.017132025212049484,
0.020492268726229668,
0.058743346482515335,
0.022006990388035774,
0.05404248461127281,
0.008492017164826393,
0.07688518613576889,
0.007308097090572119,
-0.00036126983468420804,
0.021345388144254684,
-0.03027702309191227,
0.06664775311946869,
-0.02984175831079483,
0.025994017720222473,
-0.04202917590737343,
-0.04982912167906761,
-0.0574897825717926,
-0.01065528392791748,
-0.0212931577116251,
-0.054425518959760666,
0.023016806691884995,
0.04227292165160179,
-0.008039342239499092,
0.003956557717174292,
-0.052510350942611694,
0.006737899966537952,
-0.014842531643807888,
0.05303267017006874,
-0.033428341150283813,
-0.04119346663355827,
-0.02529759332537651,
0.01353673730045557,
-0.11477063596248627,
0.012553039006888866,
-0.001646389369852841,
-0.0017356185708194971,
0.0057193804532289505,
0.010785862803459167,
-0.016383368521928787,
0.02696901001036167,
0.05324159935116768,
-0.0108729163184762,
-0.10063323378562927,
-0.004161132033914328,
0.0292672086507082,
-0.018246302381157875,
-0.01031577680259943,
-0.00707305409014225,
-0.005288468208163977,
0.07987980544567108,
0.005588800646364689,
-0.024009209126234055,
-0.04390951991081238,
-0.04223810136318207,
0.05540051311254501,
-0.018019964918494225,
-0.04673003405332565,
0.059300485998392105,
-0.026464102789759636,
-0.0017791450954973698,
-0.00790876243263483,
-0.09784754365682602,
-0.051988035440444946,
0.05414694920182228,
0.009027393534779549,
0.06177278980612755,
-0.02982434816658497,
-0.03913901746273041,
-0.01728872023522854,
0.0021741478703916073,
0.02416590414941311,
0.016679350286722183,
-0.015930693596601486,
-0.051291611045598984,
-0.04338720068335533,
0.01687086559832096,
-0.028327036648988724,
0.007660661358386278,
-0.0014570491621270776,
-0.047983597964048386,
0.030886394903063774,
0.016331138089299202,
0.010054618120193481,
0.05512194335460663,
0.011604161001741886,
0.013771779835224152,
0.038442593067884445,
0.05414694920182228,
-0.04390951991081238,
-0.009279847145080566,
-0.12389378994703293,
-0.03372432291507721,
-0.040984537452459335,
-0.01546931266784668,
0.0255065206438303,
0.04289970546960831,
0.07319413870573044,
0.04934162274003029,
-0.00699035357683897,
-0.03207031637430191,
0.02261636219918728,
-0.0003460355510469526,
-0.009001277387142181,
-0.053067490458488464,
0.006224287673830986,
-0.038825623691082,
0.0028292215429246426,
0.022773057222366333,
0.04359612986445427,
0.022006990388035774,
0.0353609174489975,
0.021885117515921593,
0.05627104267477989,
-0.00328624970279634,
0.04673003405332565,
-0.07263699918985367,
-0.037885453552007675,
0.02519313059747219,
0.019482454285025597,
-0.0346122607588768,
0.009924039244651794,
-0.03913901746273041,
-0.036562249064445496,
0.09332078695297241,
-0.016592295840382576,
0.010002386756241322,
0.009105741046369076,
0.028239984065294266,
-0.009802164509892464,
0.020892713218927383,
0.04039257764816284,
0.058847807347774506,
-0.09415649622678757,
0.051430895924568176,
0.003005503909662366,
-0.030416307970881462,
0.03247075900435448,
0.011517108418047428,
0.0463470034301281,
0.03903455287218094,
-0.02284269966185093,
0.015956809744238853,
-0.0308515727519989,
0.0015212506987154484,
-0.011717329733073711,
-0.0010941470973193645,
0.013440978713333607,
-0.015626007691025734,
-0.007878294214606285,
0.030642645433545113,
0.032575223594903946,
-0.008339675143361092,
-0.04739163815975189,
-0.07723339647054672,
0.019447633996605873,
0.02474045380949974,
0.032105136662721634,
-0.005240588914602995,
-0.02075342833995819,
-0.044640764594078064,
0.01795032247900963,
0.025645805522799492,
-0.016017746180295944,
-0.08064587414264679,
0.00618076091632247,
0.043770235031843185,
0.011438760906457901,
-0.0009956683497875929,
0.035447970032691956,
-0.03924347832798958,
0.01897754706442356,
0.03715420886874199,
0.015608597546815872,
0.047182708978652954,
-0.0008280914044007659,
-0.06379241496324539,
0.00012228221748955548,
-0.00040996508323587477,
0.03903455287218094,
-0.0338636077940464,
0.0001572394248796627,
-0.0015680416254326701,
-0.0006240609800443053,
-0.028814533725380898,
-0.005331994500011206,
0.01270102895796299,
-0.018716389313340187,
-0.0401836521923542,
0.012196121737360954,
-0.013014419004321098,
-0.03128683939576149,
-0.06379241496324539,
0.013858833350241184,
0.05933530628681183,
-0.014433383010327816,
0.006620378699153662,
-0.010794568806886673,
0.044536300003528595,
0.008966456167399883,
-0.027926594018936157,
0.02528018318116665,
-0.03572653979063034,
-0.03050336055457592,
0.026429282501339912,
0.009993680752813816,
0.06226028501987457,
-0.03529127314686775,
0.04185507073998451,
0.007686777506023645,
0.010446356609463692,
0.025906965136528015,
-0.00908832997083664,
0.019273528829216957,
0.0020511855836957693,
-0.02087530307471752,
0.037989918142557144,
-0.00010589177691144869,
-0.013824012130498886,
0.04070597141981125,
-0.02940649352967739,
-0.022546719759702682,
-0.009749933145940304,
0.053520165383815765,
-0.009767343290150166,
-0.026237765327095985,
-0.009863101877272129,
-0.045197904109954834,
-0.02618553303182125,
0.04161132127046585,
-0.053311239928007126,
-0.025680625811219215,
-0.02982434816658497,
-0.07486555725336075,
-0.058290671557188034,
-0.019569508731365204,
-0.05049072206020355,
0.03638814389705658,
0.04216846078634262,
0.003830330679193139,
0.013623789884150028,
-0.003836859716102481,
0.03147835284471512,
0.02240743488073349,
-0.036214035004377365,
-0.002576767932623625,
0.07618875801563263,
0.05665407329797745,
0.011865319684147835,
-0.0008019754895940423,
-0.03170469403266907,
-0.0016572709428146482,
0.008122041821479797,
0.040775611996650696,
0.022215917706489563,
-0.005945717915892601,
0.09130115807056427,
0.022337792441248894,
-0.01230929046869278,
0.02097976580262184,
-0.015356143936514854,
-0.026115892454981804,
-0.01808960735797882,
0.01542578637599945,
-0.01728872023522854,
0.022372614592313766,
-0.0008367967093363404,
-0.04836663231253624,
0.03990508243441582,
-0.06097190082073212,
-0.03494306281208992,
-0.022564129903912544,
0.020161468535661697,
-0.002820516237989068,
0.01048988290131092,
-0.07883517444133759,
-0.017689164727926254,
0.040566686540842056,
-0.014833826571702957,
0.005845607258379459,
-0.004487580619752407,
0.07124415040016174,
-0.03135647997260094,
-0.008148157969117165,
0.012866429053246975,
-0.016200557351112366,
0.05964869633316994,
-0.017793627455830574,
-0.004944609012454748,
0.024270368739962578,
0.059509411454200745,
0.026133302599191666,
0.001967397052794695,
0.022477077320218086,
0.04074079170823097,
-0.025541342794895172,
-0.032575223594903946,
-0.0006735723582096398,
0.06654328852891922,
0.012744555249810219,
-0.019465044140815735,
-0.0027944003231823444,
-0.0013612908078357577,
0.02439224347472191,
0.049202341586351395,
-0.016696760430932045,
-0.037328314036130905,
0.03614439442753792,
-0.005697616841644049,
-0.02662079967558384,
0.055957648903131485,
-0.06020583584904671,
-0.08865474909543991,
0.0037846278864890337,
-0.068319171667099,
0.005366815719753504,
-0.02096235565841198,
0.017358362674713135,
-0.03320200368762016,
0.01569565013051033,
-0.025106078013777733,
-0.016836045309901237,
-0.017776217311620712,
0.032679684460163116,
-0.0007970787701196969,
-0.00786958821117878,
0.015495428815484047,
0.03414217382669449,
0.0617031455039978,
-0.05334606021642685,
-0.0043265325948596,
0.01852487213909626,
-0.040566686540842056,
0.0158001147210598,
-0.02893640846014023,
-0.030311845242977142,
-0.008148157969117165,
-0.018698979169130325,
-0.020004773512482643,
0.010446356609463692,
0.014485614374279976,
0.027456507086753845,
0.021153872832655907,
0.04112382233142853,
0.04606843367218971,
0.049655016511678696,
-0.06330492347478867,
0.011943668127059937,
0.0151994489133358,
-0.009305962361395359,
0.005836901720613241,
-0.03072969987988472,
-0.06790132075548172,
-0.005466926842927933,
-0.03029443509876728,
-0.007247159723192453,
0.002365664578974247,
-0.08900295943021774,
-0.01728872023522854,
-0.02108423039317131,
-0.04248185083270073,
-0.007251512724906206,
0.050873756408691406,
0.022947164252400398,
0.013057946227490902,
-0.018385587260127068,
-0.025802500545978546,
-0.04060150682926178,
0.004870613571256399,
0.005401636939495802,
-0.003059912007302046,
-0.0740298479795456,
0.009079624898731709,
-0.059196021407842636,
-0.010829390026628971,
0.032993074506521225,
-0.00278569501824677,
-0.03670153394341469,
0.013641200959682465,
0.0027595791034400463,
0.03753724321722984,
-0.034681905061006546,
-0.06703078746795654,
0.03252299129962921,
-0.08377978205680847,
0.08510298281908035,
-0.046764858067035675,
0.015077575109899044,
-0.0443970151245594,
0.044292550534009933,
-0.05157018080353737,
0.019778436049818993,
0.009497479535639286,
-0.015608597546815872,
0.0009205851820297539,
-0.03729349374771118,
0.023016806691884995,
-0.07009505480527878,
-0.019882898777723312,
0.059753160923719406,
0.014799005351960659,
-0.05160500109195709,
0.03236629441380501,
-0.011029611341655254,
-0.11532777547836304,
-0.004892377182841301,
-0.014207044616341591,
0.019778436049818993,
0.017114615067839622,
-0.04418808966875076,
-0.005049072206020355,
-0.044780049473047256,
-0.04324791580438614,
0.058952271938323975,
0.016174443066120148,
0.0070338803343474865,
0.060066550970077515,
-0.08795832097530365,
-0.03718902915716171,
-0.024897150695323944,
-0.05439069867134094,
-0.061180830001831055,
-0.0454416498541832,
-0.00214259116910398,
-0.004213363863527775,
-0.008879403583705425,
-0.010907737538218498,
-0.005101304035633802,
-0.061389755457639694,
-0.03231406211853027,
-0.07465662807226181,
-0.0017987320898100734,
0.06570758670568466,
0.0026181181892752647,
-0.025106078013777733,
0.02639446035027504,
0.025489110499620438,
-0.028431501239538193,
0.03725867345929146,
-0.009218909777700901,
0.012326700612902641,
0.01003720797598362,
-0.027369454503059387,
-0.017541173845529556,
0.002790047787129879,
0.004335238132625818,
0.021919937804341316,
-0.006507209502160549,
-0.01680992916226387,
0.011665098369121552,
-0.025245361030101776,
0.016226673498749733,
0.0034190055448561907,
0.006620378699153662,
0.03478636592626572,
0.04578986391425133,
-0.02197217009961605,
0.048540737479925156,
0.11734740436077118,
0.06595133244991302,
-0.014346329495310783,
0.049863941967487335,
-0.08628690242767334,
-0.0287448912858963,
-0.005284115206450224,
0.0505603663623333,
0.010446356609463692,
-0.07368163764476776,
0.016992740333080292,
-0.010759747587144375,
-0.020109236240386963,
-0.0767458975315094,
0.010011091828346252,
-0.035117167979478836,
-0.02151949517428875,
0.12096881121397018,
-0.06776203215122223,
-0.007456087041646242,
0.01918647438287735,
0.06706561148166656,
-0.052196960896253586,
0.038547057658433914,
0.018664157018065453,
-0.052754100412130356,
-0.01236152183264494,
0.047739848494529724,
0.02529759332537651,
0.017088498920202255,
-0.0383729487657547,
0.01397200208157301,
-0.03403771296143532,
0.028466321527957916,
-0.0020936240907758474,
0.032540399581193924,
0.04711306840181351,
-0.03548279032111168,
-0.03048595041036606,
0.006650846917182207,
-0.009410426020622253,
-0.008548601530492306,
0.013937180861830711,
-0.007847825065255165,
-0.11685991287231445,
-0.05480854958295822,
-0.039208658039569855,
-0.045302364975214005,
0.02872748114168644,
-0.042412206530570984,
0.06602097302675247,
-0.044849690049886703,
0.042655956000089645,
0.002222027163952589,
-0.002402662066742778,
-0.0612504705786705,
0.01646171696484089,
-0.029127923771739006,
-0.023678408935666084,
0.003323247190564871,
-0.0035778770688921213,
-0.03173951432108879,
0.008840229362249374,
-0.040984537452459335,
0.007247159723192453,
-0.03886044770479202,
0.03614439442753792,
-0.026707852259278297,
-0.032122544944286346,
-0.00804369430989027,
0.00596312852576375,
-0.04624253883957863,
0.04606843367218971,
0.0217458326369524,
0.05069965124130249,
0.004774855449795723,
0.009906628169119358,
-0.01314499881118536,
0.001331910490989685,
-0.07806910574436188,
0.016827339306473732,
0.02905828133225441,
0.03072969987988472,
-0.015565071254968643,
-0.02597660757601261,
-0.005728085525333881,
-0.010994790121912956,
-0.056758537888526917,
0.020944945514202118,
0.003118672640994191,
0.012735850177705288,
0.004927198402583599,
0.007477850187569857,
-0.010663989000022411,
-0.0038629756309092045,
-0.04067114740610123,
0.010289661586284637,
0.005493042524904013,
-0.014642310328781605,
0.013789190910756588,
0.018559694290161133,
0.009245025925338268,
0.04526754468679428,
-0.0019293115474283695,
0.017558583989739418,
0.00749090826138854,
0.02862301655113697,
0.059300485998392105,
-0.0168534554541111,
-0.03603992983698845,
0.02084048092365265,
0.021119050681591034,
-0.01953468658030033,
-0.011804383248090744,
-0.02362617664039135,
0.053415704518556595,
-0.004526754375547171,
0.009053508751094341,
0.025262773036956787,
-0.006515915039926767,
-0.06654328852891922,
-0.02273823693394661,
-0.04223810136318207,
0.022494487464427948,
-0.0041001951321959496,
0.021937349811196327,
-0.006394040770828724,
0.009941449388861656,
0.018368177115917206,
0.04425773024559021,
-0.02084048092365265,
0.05393802002072334,
-0.02472304366528988,
0.013249462470412254,
-0.021589137613773346,
0.0022786115296185017,
-0.019604329019784927,
0.041889891028404236,
0.03478636592626572,
0.023034216836094856,
0.027700256556272507,
0.03704974427819252,
0.024218136444687843,
0.025924375280737877,
-0.020387805998325348,
0.022355202585458755,
0.04502379894256592,
0.06295670568943024,
-0.06372277438640594,
-0.01951727643609047,
0.005231883842498064,
-0.00804369430989027,
-0.04049704223871231,
0.0024788333103060722,
-0.008496370166540146,
-0.0092537309974432,
-0.04700860381126404,
-0.04780949279665947,
0.010350598022341728,
0.013693432323634624,
0.004666039254516363,
0.044884514063596725,
0.04617289453744888,
0.04756574332714081
] |
729,624 | tinytuya.core | parse_header | null | def parse_header(data):
if( data[:4] == PREFIX_6699_BIN ):
fmt = MESSAGE_HEADER_FMT_6699
else:
fmt = MESSAGE_HEADER_FMT_55AA
header_len = struct.calcsize(fmt)
if len(data) < header_len:
raise DecodeError('Not enough data to unpack header')
unpacked = struct.unpack( fmt, data[:header_len] )
prefix = unpacked[0]
if prefix == PREFIX_55AA_VALUE:
prefix, seqno, cmd, payload_len = unpacked
total_length = payload_len + header_len
elif prefix == PREFIX_6699_VALUE:
prefix, unknown, seqno, cmd, payload_len = unpacked
#seqno |= unknown << 32
total_length = payload_len + header_len + len(SUFFIX_6699_BIN)
else:
#log.debug('Header prefix wrong! %08X != %08X', prefix, PREFIX_VALUE)
raise DecodeError('Header prefix wrong! %08X is not %08X or %08X' % (prefix, PREFIX_55AA_VALUE, PREFIX_6699_VALUE))
# sanity check. currently the max payload length is somewhere around 300 bytes
if payload_len > 1000:
raise DecodeError('Header claims the packet size is over 1000 bytes! It is most likely corrupt. Claimed size: %d bytes. fmt:%s unpacked:%r' % (payload_len,fmt,unpacked))
return TuyaHeader(prefix, seqno, cmd, payload_len, total_length)
| (data) | [
-0.06376742571592331,
0.07711320370435715,
-0.03349905088543892,
-0.0363643541932106,
-0.027922285720705986,
-0.013499617576599121,
0.02742229960858822,
0.045306410640478134,
-0.03407595679163933,
-0.051344700157642365,
0.027845365926623344,
0.04676790535449982,
-0.020595571026206017,
0.00438689487054944,
-0.0069469185546040535,
0.017336048185825348,
0.03407595679163933,
0.04253725707530975,
-0.0005234226700849831,
-0.023191651329398155,
-0.01816294714808464,
0.04503718763589859,
-0.06522892415523529,
0.04846016690135002,
-0.0067834616638720036,
0.003913350868970156,
-0.021191706880927086,
-0.0069805714301764965,
0.029210710898041725,
-0.0195379089564085,
0.000739762675948441,
0.0064132800325751305,
-0.026999235153198242,
0.0064180875197052956,
-0.05219082906842232,
-0.002819631714373827,
0.023749327287077904,
-0.11661208420991898,
-0.04438335821032524,
0.012134271673858166,
0.025306975468993187,
-0.07999773323535919,
0.005735414568334818,
0.005735414568334818,
-0.007595938630402088,
-0.005677723791450262,
-0.01001894660294056,
0.056036874651908875,
-0.05053703114390373,
0.03613359108567238,
0.0010642727138474584,
-0.03821045532822609,
-0.020364807918667793,
-0.01618223451077938,
-0.025345435366034508,
0.002872514771297574,
0.008567065000534058,
0.00968241784721613,
-0.015730323269963264,
0.07184411585330963,
-0.0301914531737566,
0.05842142179608345,
0.016249539330601692,
-0.02628771774470806,
-0.0003629704879131168,
-0.05057549104094505,
0.06811345368623734,
-0.046075619757175446,
-0.05895986780524254,
-0.023730097338557243,
0.045229487121105194,
0.06584428995847702,
0.0020696530118584633,
0.01886484958231449,
0.06453663110733032,
-0.02290319837629795,
-0.0618828646838665,
-0.031768329441547394,
-0.02609541453421116,
0.039191197603940964,
0.05780605599284172,
0.00405036611482501,
0.0656135231256485,
0.0362682044506073,
0.035114388912916183,
0.005144085269421339,
0.08445914834737778,
0.0214993916451931,
-0.004033539444208145,
0.04488334432244301,
-0.011586210690438747,
-0.07784394919872284,
0.008043041452765465,
0.02023019641637802,
-0.018384095281362534,
-0.04434489831328392,
0.03226831555366516,
0.06253669410943985,
-0.029845308512449265,
-0.027787674218416214,
-0.06919034570455551,
0.037960462272167206,
-0.08553604036569595,
-0.005254658870398998,
0.013518847525119781,
0.04922937601804733,
-0.039325810968875885,
-0.01206696592271328,
-0.021749384701251984,
0.005639263428747654,
0.03836429864168167,
-0.0981510654091835,
-0.03553745523095131,
0.023826248943805695,
0.07049800455570221,
-0.07326715439558029,
0.05046010762453079,
0.00500947330147028,
-0.04253725707530975,
-0.017230281606316566,
0.007687282282859087,
0.020614800974726677,
-0.00839399266988039,
-0.029903000220656395,
-0.009951640851795673,
0.005966177210211754,
0.03580667823553085,
-0.05699838697910309,
0.06153671815991402,
-0.03771046921610832,
0.021960915997624397,
0.05246005207300186,
0.02613387443125248,
-0.037922002375125885,
-0.03286445513367653,
-0.02498006261885166,
0.0577675960958004,
0.0011670342646539211,
-0.01731681637465954,
-0.052075449377298355,
0.018278328701853752,
0.027653062716126442,
0.007860354147851467,
-0.05369078740477562,
-0.0040599810890853405,
0.03784508258104324,
0.04453720152378082,
-0.020268656313419342,
-0.03753739967942238,
0.0008010590681806207,
-0.059998299926519394,
-0.03949888050556183,
0.045229487121105194,
0.03151833638548851,
0.05769067257642746,
-0.08792058378458023,
-0.025826191529631615,
-0.10268940031528473,
-0.04957551881670952,
0.024730069562792778,
0.05788297578692436,
0.021941686049103737,
-0.03030683472752571,
-0.04680636525154114,
-0.0414988249540329,
-0.012807329185307026,
0.026018494740128517,
-0.010288170538842678,
-0.01206696592271328,
-0.02405701018869877,
-0.031152963638305664,
0.04292185977101326,
-0.0391719676554203,
0.0843053013086319,
-0.027653062716126442,
-0.048075560480356216,
-0.059998299926519394,
-0.027672292664647102,
-0.019768670201301575,
-0.03872967138886452,
-0.021941686049103737,
0.05711376667022705,
0.01610531285405159,
-0.01614377275109291,
-0.03080681897699833,
0.02419162169098854,
0.051998525857925415,
0.01876869983971119,
0.07657475769519806,
-0.050806254148483276,
-0.012220807373523712,
-0.041268061846494675,
-0.016499532386660576,
0.07107491046190262,
0.01745142973959446,
0.015355334617197514,
0.05730606988072395,
0.012038120999932289,
0.005519074387848377,
-0.08699753880500793,
0.03294137492775917,
-0.029787618666887283,
0.0003060309973079711,
-0.007754588034003973,
-0.04919091612100601,
-0.016307231038808823,
0.025268515571951866,
0.03347982093691826,
-0.0633828192949295,
-0.008629563264548779,
-0.01445151399821043,
-0.017047593370079994,
0.009369926527142525,
0.06419049203395844,
-0.030364524573087692,
-0.05934447422623634,
-0.043921831995248795,
-0.01174966711550951,
0.06826730072498322,
-0.027383839711546898,
0.048152483999729156,
0.052844658493995667,
0.012220807373523712,
-0.022633973509073257,
0.006259438116103411,
0.038614291697740555,
-0.00048165704356506467,
0.039806563407182693,
0.01742258295416832,
-0.00636039674282074,
0.05565226823091507,
-0.01273040845990181,
-0.0018112467369064689,
0.03976810351014137,
-0.02744153141975403,
0.040537312626838684,
0.02884533628821373,
0.008696869015693665,
0.016345690935850143,
-0.023230111226439476,
-0.026730012148618698,
-0.06249823048710823,
0.027960747480392456,
0.023037809878587723,
0.007451712153851986,
-0.04819094389677048,
0.0011988843325525522,
0.025056982412934303,
-0.01801872067153454,
0.005624840501695871,
-0.10261248052120209,
0.031191423535346985,
0.04015270993113518,
0.04146036505699158,
-0.03313367813825607,
0.01620146445930004,
0.011374677531421185,
-0.04707558825612068,
0.0048652468249201775,
-0.012999631464481354,
0.00007526830449933186,
-0.03630666434764862,
0.0275761429220438,
-0.009855490177869797,
-0.00010283663141308352,
-0.011701591312885284,
-0.005326772108674049,
0.031345266848802567,
-0.0014470743481069803,
-0.01106699462980032,
0.10622776299715042,
-0.03299906477332115,
-0.010288170538842678,
-0.010836231522262096,
0.0027066541370004416,
-0.05034472793340683,
-0.00874494481831789,
-0.0391719676554203,
0.08845902979373932,
0.004901303444057703,
-0.019922513514757156,
-0.0034830744843930006,
0.030499136075377464,
-0.025845421478152275,
0.02073018252849579,
0.06434433162212372,
-0.026326177641749382,
-0.02348010428249836,
-0.032460618764162064,
-0.0019146092236042023,
-0.04034500941634178,
-0.09068974107503891,
-0.05015242472290993,
0.006220977753400803,
0.022480132058262825,
0.06722886860370636,
-0.015730323269963264,
0.06545968353748322,
0.0360759012401104,
-0.03178756311535835,
-0.01813410222530365,
0.03703741356730461,
-0.00019485625671222806,
-0.061498258262872696,
-0.02351856417953968,
0.015961086377501488,
-0.02628771774470806,
0.012316958978772163,
-0.010499702766537666,
-0.07138259708881378,
0.03905658796429634,
0.00968241784721613,
0.03030683472752571,
-0.03332597762346268,
0.05630609765648842,
0.011470829136669636,
0.024345465004444122,
-0.0050335112027823925,
0.04765249788761139,
0.0022331099025905132,
0.050037045031785965,
-0.06765192747116089,
-0.011336217634379864,
0.01608608290553093,
0.015566866844892502,
0.00008247963705798611,
-0.025653120130300522,
-0.020441729575395584,
-0.037191253155469894,
-0.035922057926654816,
-0.0364605076611042,
-0.012836175039410591,
-0.0012241239892318845,
-0.03771046921610832,
-0.021730154752731323,
-0.012759254314005375,
0.02357625588774681,
0.009542998857796192,
-0.04049885272979736,
-0.006485393270850182,
-0.02340318262577057,
-0.02623002603650093,
0.028653034940361977,
0.036575887352228165,
0.03892197459936142,
-0.060767509043216705,
-0.04519102722406387,
-0.006422895006835461,
0.028364581987261772,
0.002704250393435359,
-0.03976810351014137,
-0.014316902495920658,
0.04153728485107422,
0.04234495386481285,
0.09330505132675171,
-0.02078787237405777,
-0.012634257785975933,
-0.03536438196897507,
0.05303695797920227,
0.06853652000427246,
0.06869035959243774,
-0.024403154850006104,
-0.009624727070331573,
-0.016297616064548492,
-0.0536523275077343,
-0.031114503741264343,
-0.05622917786240578,
0.06595966964960098,
0.039921946823596954,
0.03363366425037384,
0.006519046146422625,
-0.0018064392497763038,
-0.0012211193097755313,
-0.0024758914951235056,
-0.008696869015693665,
0.023172421380877495,
-0.0020708548836410046,
0.03032606467604637,
-0.0899205282330513,
-0.07642091065645218,
0.02555696852505207,
0.001368951634503901,
-0.060113683342933655,
0.009413194842636585,
0.0064132800325751305,
-0.0035071121528744698,
-0.024633917957544327,
0.004081615246832371,
-0.07630553096532822,
0.03432594984769821,
0.006793076638132334,
0.023364722728729248,
0.057959895581007004,
-0.007783433422446251,
-0.01445151399821043,
0.06376742571592331,
-0.052652355283498764,
0.015336103737354279,
0.005346002522855997,
-0.060767509043216705,
0.014634201303124428,
-0.06638273596763611,
-0.00935550406575203,
0.0643058717250824,
0.02069172076880932,
-0.022499362006783485,
0.05184468626976013,
0.004196996334940195,
-0.02338395267724991,
-0.012749639339745045,
0.017143744975328445,
0.029172251001000404,
0.027095386758446693,
0.01108622457832098,
-0.0005366434343159199,
0.023230111226439476,
0.027922285720705986,
-0.003947003744542599,
0.030441446229815483,
0.002028788672760129,
-0.040691155940294266,
-0.0168745219707489,
-0.03630666434764862,
0.04434489831328392,
0.0066825030371546745,
0.0387873612344265,
-0.06684426218271255,
-0.019922513514757156,
-0.01748988963663578,
-0.00486765056848526,
0.02753768116235733,
-0.009576652199029922,
0.015259183011949062,
-0.008442068472504616,
-0.002651367336511612,
-0.0009825442684814334,
-0.07915160804986954,
0.020634030923247337,
-0.010490087792277336,
-0.005192160606384277,
-0.00604309793561697,
0.040652696043252945,
0.007740165572613478,
0.011932354420423508,
0.0008040637476369739,
-0.029403014108538628,
-0.006230592727661133,
0.004547948017716408,
-0.053998470306396484,
-0.0010642727138474584,
0.0010654745856299996,
-0.03517208248376846,
-0.011913124471902847,
-0.02482621930539608,
0.039364270865917206,
-0.03957580402493477,
-0.008807443082332611,
0.035922057926654816,
0.008821865543723106,
-0.05819065868854523,
0.007163258735090494,
0.06903650611639023,
0.005336387548595667,
0.005446961149573326,
-0.00554311228916049,
0.043883372098207474,
0.000015793573766131885,
-0.032479848712682724,
-0.026980005204677582,
-0.03759508952498436,
-0.0549599826335907,
0.025230053812265396,
-0.008595910854637623,
0.054690759629011154,
0.06615196913480759,
0.010932383127510548,
0.043306466192007065,
0.0180379506200552,
-0.05911371111869812,
-0.02890302799642086,
0.08484375476837158,
-0.028595343232154846,
-0.02271089516580105,
0.01958598382771015,
0.021249398589134216,
0.033172138035297394,
-0.021634003147482872,
-0.03703741356730461,
-0.034672096371650696,
-0.04761403799057007,
-0.013355391100049019,
0.004692174959927797,
-0.03182602301239967,
0.02686462365090847,
0.055459968745708466,
-0.0071488358080387115,
0.04011425003409386,
0.003706625895574689,
-0.025922343134880066,
0.006927688606083393,
0.015922626480460167,
-0.05303695797920227,
-0.004309974145144224,
-0.04549871012568474,
0.0000611836658208631,
-0.0053988853469491005,
0.01731681637465954,
0.029018409550189972,
0.03969118371605873,
-0.0037378750275820494,
-0.0699210986495018,
0.0736517608165741,
-0.015259183011949062,
0.011624670587480068,
-0.023095499724149704,
0.03415288031101227,
-0.01955713890492916,
-0.013115013018250465,
-0.02830689027905464,
0.0428064800798893,
-0.021960915997624397,
-0.007629591505974531,
0.03899889439344406,
0.01604762300848961,
0.01512457150965929,
0.04849862679839134,
-0.03171063959598541,
0.0031225078273564577,
0.009586267173290253,
-0.019634058699011803,
-0.015259183011949062,
0.0008767780382186174,
0.0016694238875061274,
0.01678798533976078,
-0.011374677531421185,
-0.050037045031785965,
-0.006629619747400284,
0.01684567704796791,
-0.03207601606845856,
-0.037960462272167206,
0.01348038762807846,
0.002058835932984948,
-0.016682220622897148,
-0.027364609763026237,
-0.031191423535346985,
0.05315234139561653,
-0.009648765437304974,
0.04076807573437691,
0.007341138087213039,
-0.002110517118126154,
-0.03765277937054634,
0.003812392009422183,
0.014509204775094986,
0.007975735701620579,
-0.02142246998846531,
-0.027960747480392456,
-0.0035119198728352785,
0.00871129147708416,
0.0033893270883709192,
0.013509232550859451,
-0.0275761429220438,
-0.021980145946145058,
-0.021672463044524193,
0.01806679554283619,
-0.05903679132461548,
0.021845534443855286,
-0.06442125141620636,
-0.03549899533390999,
-0.04888322949409485,
0.04234495386481285,
-0.025787731632590294,
0.03684511035680771,
-0.002165804151445627,
0.017989875748753548,
-0.022287830710411072,
-0.06849806010723114,
-0.030441446229815483,
0.032614462077617645,
0.018278328701853752,
-0.01751873455941677,
0.047344811260700226,
0.006100788712501526,
0.04749865457415581,
-0.022364750504493713,
-0.010490087792277336,
-0.011893893592059612,
-0.01802833564579487,
0.0186917781829834,
-0.0013413081178441644,
-0.012701563537120819,
0.009610304608941078,
-0.017624501138925552,
0.022999348118901253,
-0.008360340259969234,
0.003620089730247855,
0.05322926118969917,
0.026980005204677582,
-0.0051681227050721645,
-0.0006024469039402902,
0.020710952579975128,
0.053267721086740494,
0.04369106888771057,
-0.005922909360378981,
0.01956675387918949,
0.07288254797458649,
-0.0007860354380682111,
-0.0067161559127271175,
0.033287517726421356,
-0.028518423438072205,
-0.07826701551675797,
0.044767964631319046,
0.010336245410144329,
-0.01824948377907276,
-0.04311416298151016,
-0.01273040845990181,
-0.021691692993044853,
0.05165238305926323,
-0.06876728683710098,
0.004684963263571262,
-0.02559542842209339,
0.004108056891709566,
-0.0026633860543370247,
-0.03740278631448746,
0.024403154850006104,
0.01142275333404541,
-0.0035551877226680517,
-0.014739966951310635,
-0.0010143943363800645,
-0.01947060227394104,
-0.05438307672739029,
0.03092220053076744,
-0.012807329185307026,
-0.011701591312885284,
-0.02355702593922615,
-0.02015327475965023,
0.013624614104628563,
-0.02548004686832428,
0.008490144275128841,
-0.021018635481595993,
-0.029749156907200813,
0.027095386758446693,
-0.022422442212700844,
-0.028460731729865074,
-0.027903055772185326,
-0.00420420803129673,
0.017961028963327408,
-0.012268883176147938,
-0.01742258295416832,
-0.00773055013269186,
0.022653205320239067,
0.041883427649736404,
0.0048652468249201775,
-0.001202489947900176,
0.04049885272979736,
0.03344136103987694,
0.04492180421948433,
0.07480557262897491,
0.039960406720638275,
0.009855490177869797,
-0.00974491611123085,
0.020441729575395584,
-0.06395972520112991,
0.08407454192638397,
0.02623002603650093,
0.04484488442540169,
0.007749780546873808,
0.02338395267724991,
0.018643703311681747,
0.048652470111846924,
-0.07172873616218567,
-0.003725856076925993,
0.05961369723081589,
-0.008547835052013397,
0.039921946823596954,
0.05288311839103699,
-0.03471055626869202,
-0.009172816760838032,
-0.056036874651908875,
0.0671134814620018,
-0.003980656620115042,
0.034595172852277756,
0.04222957417368889,
0.00454073678702116,
-0.06492123752832413,
0.019085997715592384,
0.008283419534564018,
0.04234495386481285,
-0.0070142243057489395,
0.0031201038509607315,
-0.03144141659140587,
0.011691976338624954,
-0.00602386798709631,
-0.058806028217077255,
0.06230592727661133,
-0.027749214321374893,
0.04511410742998123,
-0.0046008313074707985,
0.01173043716698885,
-0.02142246998846531,
-0.0033388477750122547,
-0.01751873455941677,
-0.05507536232471466,
0.012586181983351707,
0.03236446902155876,
-0.01811487227678299,
0.038056615740060806,
-0.0008689657552167773,
-0.026403099298477173,
-0.027326149865984917,
0.0046681370586156845,
0.0007517815683968365,
0.012941941618919373,
-0.06265207380056381,
0.01678798533976078,
0.03561437502503395,
0.004394106101244688,
-0.06303667277097702,
0.034768246114254,
0.016537992283701897,
0.04515256732702255,
0.020287886261940002,
0.0551522858440876,
0.025941573083400726,
0.06926726549863815,
-0.02611464448273182,
-0.030364524573087692,
0.024037780240178108,
-0.010509317740797997,
-0.0458063967525959,
0.005528689362108707,
0.056767623871564865,
0.05361386761069298,
-0.042729560285806656,
0.030633747577667236,
0.015566866844892502,
0.04234495386481285,
-0.0026249256916344166,
0.0469217486679554,
0.05638301745057106,
0.050613950937986374,
-0.00724017946049571,
0.031076043844223022,
0.0015696671325713396,
0.036652807146310806,
-0.056652240455150604,
0.032595232129096985,
0.027845365926623344,
-0.009639150463044643,
0.02630694769322872,
0.02144169993698597,
-0.07349792122840881,
-0.048614006489515305,
-0.06172902137041092,
-0.002058835932984948,
-0.027710754424333572,
-0.006004637572914362,
-0.06703656166791916,
0.019768670201301575,
0.003874890273436904,
-0.033941347151994705,
-0.0012343400157988071,
0.028768416494131088,
0.04746019467711449,
0.01816294714808464,
-0.04442181810736656,
0.0007121192757040262,
0.013249624520540237,
0.028768416494131088
] |
729,625 | tinytuya.core | scan | Scans your network for Tuya devices with output to stdout | def scan(maxretry=None, color=True, forcescan=False):
"""Scans your network for Tuya devices with output to stdout"""
from . import scanner
scanner.scan(scantime=maxretry, color=color, forcescan=forcescan)
| (maxretry=None, color=True, forcescan=False) | [
0.021504735574126244,
-0.03920025750994682,
0.006012495141476393,
-0.006808966863900423,
0.012769518420100212,
0.04134726896882057,
-0.05672263354063034,
-0.05409081652760506,
-0.01927115209400654,
-0.030439069494605064,
0.008873732760548592,
0.0431479848921299,
0.020413914695382118,
0.0032313375268131495,
0.02550440840423107,
-0.006332815624773502,
0.006640149746090174,
0.06506827473640442,
0.021522048860788345,
0.029746485874056816,
-0.032187845557928085,
0.04733812063932419,
0.029763799160718918,
0.05744984745979309,
-0.0352698415517807,
0.07999345660209656,
0.007098986767232418,
-0.022768700495362282,
-0.03660306707024574,
-0.011280463077127934,
0.0006557904998771846,
-0.014881899580359459,
-0.013488074764609337,
0.028880754485726357,
-0.020950667560100555,
0.020794836804270744,
-0.026248935610055923,
0.023980723693966866,
-0.09606140851974487,
-0.0057527762837708,
0.0002805506519507617,
-0.04674942418932915,
-0.010068440809845924,
0.001223925850354135,
0.024725250899791718,
0.018093759194016457,
0.02147010527551174,
0.005882635712623596,
-0.022768700495362282,
-0.046437762677669525,
-0.03005814738571644,
0.013349557295441628,
-0.05814243108034134,
0.03255144879221916,
0.013505388982594013,
-0.017375202849507332,
-0.050454746931791306,
0.03608362749218941,
0.07040116935968399,
-0.036326032131910324,
-0.02822279930114746,
-0.019686702638864517,
0.008622671477496624,
0.1093590259552002,
0.041381895542144775,
-0.004549411591142416,
-0.02546977810561657,
-0.008804474957287312,
-0.009323912672698498,
-0.0014533443609252572,
0.013791079632937908,
0.016795163974165916,
0.0035646434407681227,
-0.024534789845347404,
0.006692093331366777,
-0.007640067953616381,
-0.04494870454072952,
-0.05814243108034134,
-0.07382945716381073,
-0.016916366294026375,
0.06655732542276382,
0.0719594806432724,
0.03587585315108299,
-0.009358542039990425,
-0.010129041969776154,
0.030144721269607544,
0.01599869132041931,
-0.013565990142524242,
-0.049173466861248016,
0.02851714752614498,
-0.015851518139243126,
-0.00963557604700327,
0.015141618438065052,
0.02031002752482891,
-0.029988888651132584,
0.02920973300933838,
-0.004584040492773056,
0.02247435227036476,
-0.024223126471042633,
-0.03494086489081383,
-0.0560993067920208,
0.011678698472678661,
-0.016587387770414352,
-0.05644559860229492,
-0.0021394353825598955,
-0.06510289758443832,
-0.05776150897145271,
0.06520678848028183,
0.06821952760219574,
0.07542240619659424,
-0.022976476699113846,
-0.04006598889827728,
0.028621036559343338,
-0.028586406260728836,
0.025937272235751152,
0.011973046697676182,
0.042801693081855774,
0.014362461864948273,
-0.011635412462055683,
0.007211531512439251,
0.036914728581905365,
0.016518129035830498,
0.04228225722908974,
0.010172327980399132,
-0.013262984342873096,
0.028984643518924713,
-0.00443253805860877,
0.04636850208044052,
0.08567264676094055,
0.06870433688163757,
0.014951158314943314,
-0.0010870323749259114,
0.034179024398326874,
0.00226388406008482,
0.028240114450454712,
0.03826526924967766,
0.01007709838449955,
0.008336980827152729,
-0.04422149062156677,
-0.06963932514190674,
-0.029123159125447273,
0.019392354413866997,
-0.02548709325492382,
-0.061259061098098755,
0.04117412120103836,
-0.03253413736820221,
-0.03843841329216957,
-0.03310551866889,
0.057657621800899506,
0.0016481336206197739,
0.008505797944962978,
-0.008172491565346718,
0.013678534887731075,
0.05890427529811859,
-0.06572622805833817,
0.04595295339822769,
-0.013695850037038326,
-0.000595730496570468,
0.005839349236339331,
-0.0028114584274590015,
-0.009124794974923134,
-0.02607578970491886,
-0.019790589809417725,
0.004956304561346769,
-0.03544298931956291,
-0.001945728319697082,
-0.0734831690788269,
0.09806989878416061,
0.03149525821208954,
-0.02129695937037468,
-0.0038654848467558622,
-0.047407377511262894,
-0.05973537638783455,
-0.04221299663186073,
0.013964226469397545,
-0.0034953851718455553,
-0.02704540826380253,
-0.013332243077456951,
0.028759552165865898,
0.0035451645962893963,
-0.06254033744335175,
-0.0033503754530102015,
-0.007951730862259865,
-0.042836323380470276,
0.02979842945933342,
-0.023980723693966866,
0.04650701954960823,
0.008016660809516907,
-0.00237426464445889,
-0.009973210282623768,
0.035062067210674286,
0.05848872289061546,
0.036326032131910324,
0.00406460277736187,
0.03215321525931358,
-0.034750405699014664,
-0.0027876507956534624,
0.054921913892030716,
-0.006367444526404142,
-0.02060437574982643,
-0.029417507350444794,
0.0402737632393837,
0.007717983331531286,
-0.0287941824644804,
0.024153869599103928,
-0.0547141395509243,
0.001174146425910294,
0.029746485874056816,
0.01360061950981617,
-0.01704622432589531,
0.011522866785526276,
0.01037144660949707,
-0.007211531512439251,
0.02003299444913864,
-0.020794836804270744,
0.011193890124559402,
0.06600326299667358,
-0.0003719934029504657,
0.019340408965945244,
-0.04349428042769432,
-0.0027248854748904705,
-0.037953607738018036,
-0.01570434309542179,
-0.06576085835695267,
-0.01431917492300272,
0.001996590057387948,
-0.011765271425247192,
0.0008186560007743537,
0.00604712450876832,
-0.1036105751991272,
0.05201306194067001,
-0.03412707895040512,
0.016552759334445,
0.06846193224191666,
-0.05083566904067993,
-0.053502120077610016,
0.00023807576508261263,
0.01446634903550148,
0.005562315694987774,
-0.007769927382469177,
0.00788247212767601,
-0.011393007822334766,
-0.02676837332546711,
-0.05024697259068489,
-0.01324567012488842,
0.0043741012923419476,
-0.01330627128481865,
-0.007756941486150026,
-0.0029196746181696653,
-0.019825218245387077,
-0.0027789934538304806,
-0.06877359747886658,
0.033157460391521454,
-0.02434432879090309,
-0.02806696854531765,
-0.013981540687382221,
-0.028984643518924713,
0.025417834520339966,
0.006531933322548866,
-0.006172655615955591,
-0.011280463077127934,
0.06454883515834808,
-0.041243381798267365,
0.05256712809205055,
-0.054644882678985596,
0.022924533113837242,
-0.0033092531375586987,
0.02031002752482891,
-0.028153542429208755,
-0.042974840849637985,
0.030923878774046898,
0.05235935375094414,
-0.02432701550424099,
0.005549329798668623,
-0.0575883649289608,
0.013514046557247639,
0.02143547683954239,
0.02863834984600544,
0.023530542850494385,
-0.04647238925099373,
-0.02060437574982643,
0.033901989459991455,
0.030837304890155792,
-0.012518457137048244,
-0.006081753876060247,
-0.05114733427762985,
0.012752204202115536,
0.07382945716381073,
-0.05803854390978813,
-0.025729497894644737,
0.01972133107483387,
-0.05138973519206047,
0.044983334839344025,
-0.04560666158795357,
0.06354458630084991,
0.0107956537976861,
-0.05457562208175659,
-0.0051164645701646805,
-0.04706108570098877,
-0.0309758223593235,
-0.020985295996069908,
-0.045398883521556854,
-0.048861805349588394,
0.007830528542399406,
-0.005428127478808165,
0.05644559860229492,
-0.0017736644949764013,
-0.03715713322162628,
0.0022400766611099243,
-0.005047206301242113,
-0.04934661462903023,
-0.0004623539571184665,
0.08463377505540848,
-0.038784708827733994,
-0.06312903761863708,
-0.043113358318805695,
-0.0046056839637458324,
0.06018555536866188,
0.03324403613805771,
0.036776214838027954,
0.004553740378469229,
0.02792845293879509,
0.032897744327783585,
-0.011375692673027515,
-0.015834202989935875,
0.018457364290952682,
0.013107153587043285,
0.028309373185038567,
-0.08103233575820923,
-0.043702054768800735,
0.019825218245387077,
-0.012180821970105171,
0.0172799713909626,
-0.03871544823050499,
-0.031010450795292854,
0.03608362749218941,
-0.014803984202444553,
-0.0022487337701022625,
-0.028863441199064255,
-0.013834366574883461,
-0.004813459236174822,
0.033624954521656036,
0.012613686732947826,
0.023842206224799156,
0.006999427452683449,
0.015236848965287209,
-0.04882717505097389,
-0.0063544586300849915,
0.008367281407117844,
0.0023721004836261272,
0.08158639818429947,
0.06780397891998291,
-0.009453772567212582,
0.0849108025431633,
0.0906592532992363,
0.029175102710723877,
0.04207448288798332,
0.0309758223593235,
-0.012648316100239754,
-0.001498795230872929,
-0.10741978883743286,
0.049277354031801224,
-0.04688794165849686,
-0.04016987606883049,
0.01475204061716795,
-0.017427146434783936,
0.004408730193972588,
-0.0002080457634292543,
0.044983334839344025,
0.03726102039217949,
-0.019548185169696808,
0.014128714799880981,
-0.011254491284489632,
-0.001301841577515006,
-0.007350048050284386,
0.01411139965057373,
-0.001616750960238278,
-0.03660306707024574,
0.0073413909412920475,
0.025435149669647217,
0.020102251321077347,
0.021400846540927887,
0.022959161549806595,
-0.013081181794404984,
0.06392550468444824,
-0.04650701954960823,
-0.10146356374025345,
0.03816138207912445,
-0.041520413011312485,
0.011618097312748432,
-0.01044070441275835,
-0.03234367445111275,
-0.019755959510803223,
-0.020050307735800743,
0.02361711673438549,
-0.002155667869374156,
-0.021989542990922928,
0.037953607738018036,
-0.08671152591705322,
-0.02765141800045967,
-0.04910420998930931,
-0.05869649723172188,
-0.0403430201113224,
0.007228846196085215,
-0.007163916248828173,
-0.014492321759462357,
0.10458019375801086,
-0.0763920247554779,
0.005575301591306925,
-0.02905390039086342,
-0.0019489747937768698,
-0.015392680652439594,
-0.00632848683744669,
0.05530283600091934,
-0.0417628176510334,
0.014518293552100658,
-0.02995426021516323,
0.04577980563044548,
0.00734571972861886,
0.04453315585851669,
-0.0025690540205687284,
-0.06700750440359116,
0.009618260897696018,
0.026248935610055923,
0.0763920247554779,
0.037364911288022995,
0.030439069494605064,
-0.019184578210115433,
0.003214022843167186,
-0.034317538142204285,
0.025573667138814926,
-0.032741911709308624,
-0.01410274300724268,
-0.04200522229075432,
0.002480316674336791,
0.0020074115600436926,
-0.008687601424753666,
-0.015531197190284729,
0.017072197049856186,
-0.043113358318805695,
-0.0047442009672522545,
-0.03149525821208954,
0.029833057895302773,
-0.012752204202115536,
0.019478926435112953,
0.02690689079463482,
0.0031772293150424957,
0.008077261969447136,
-0.02488108165562153,
-0.04048153758049011,
-0.06143220514059067,
-0.05918130651116371,
-0.000536211533471942,
-0.03511401265859604,
0.04837699607014656,
-0.0033676899038255215,
-0.034317538142204285,
0.06929303705692291,
0.0034585916437208652,
0.012544428929686546,
0.03516595438122749,
-0.01840542070567608,
0.009090165607631207,
0.004960633348673582,
-0.03326134756207466,
-0.01844005100429058,
-0.0026188334450125694,
0.005198709201067686,
0.017236685380339622,
-0.04823847860097885,
-0.03570270910859108,
0.00784351397305727,
-0.03367689996957779,
0.011393007822334766,
0.028707608580589294,
-0.011211204342544079,
-0.027322441339492798,
0.005588287487626076,
-0.041970591992139816,
-0.006631492171436548,
-0.04948513209819794,
0.026387453079223633,
0.04162430018186569,
0.019046060740947723,
0.0016838449519127607,
-0.0048437598161399364,
0.027305126190185547,
-0.09751583635807037,
-0.01519356295466423,
-0.04723423346877098,
-0.03468114510178566,
0.020396599546074867,
0.004510453436523676,
0.023236194625496864,
-0.01129777729511261,
0.005133779253810644,
-0.028257429599761963,
0.020483173429965973,
0.004281035158783197,
-0.022560926154255867,
0.017885982990264893,
-0.03573733568191528,
-0.010812968946993351,
0.0014360297936946154,
0.023703688755631447,
-0.017193399369716644,
0.016111236065626144,
-0.004088410176336765,
0.015505225397646427,
0.058800384402275085,
0.022560926154255867,
0.04861940070986748,
0.003298431634902954,
0.0015680536162108183,
0.0006682354141958058,
-0.09592289477586746,
0.03753805533051491,
-0.059250567108392715,
0.016656646504998207,
-0.023669060319662094,
-0.006921512074768543,
0.06676509976387024,
0.007414977997541428,
-0.021366218104958534,
0.028724923729896545,
0.03227441757917404,
0.05786539614200592,
0.07791570574045181,
-0.040550798177719116,
0.015591798350214958,
0.04401371628046036,
0.021764453500509262,
-0.031893495470285416,
-0.06011629477143288,
0.06174386665225029,
-0.0806167870759964,
0.03854230418801308,
-0.026751060038805008,
0.05080103874206543,
-0.02794576622545719,
0.024136554449796677,
0.008293693885207176,
-0.01928846538066864,
-0.05568375810980797,
-0.03281116858124733,
0.022058801725506783,
0.011029400862753391,
-0.013150439597666264,
-0.021418161690235138,
-0.009523030370473862,
0.013141782023012638,
-0.018959488719701767,
-0.010925513692200184,
-0.010605193674564362,
-0.012059619650244713,
0.10326427966356277,
-0.030023518949747086,
-0.028447890654206276,
0.03829989954829216,
0.013739136047661304,
0.03371153026819229,
-0.016293039545416832,
-0.050904929637908936,
0.0033785116393119097,
-0.00005752370634581894,
-0.06638418138027191,
0.0027032422367483377,
0.02302842028439045,
-0.03268996626138687,
-0.004060273990035057,
0.026231620460748672,
0.009012250229716301,
-0.020206140354275703,
0.030439069494605064,
-0.04145115613937378,
0.02247435227036476,
0.009592289105057716,
0.02114112861454487,
-0.006458346266299486,
-0.029867688193917274,
-0.0024240443017333746,
0.04474093019962311,
-0.014743383042514324,
-0.03733028098940849,
0.020119566470384598,
-0.012068277224898338,
0.027703361585736275,
-0.05135510861873627,
-0.0749375969171524,
-0.008908362127840519,
0.03826526924967766,
0.03227441757917404,
-0.06939692050218582,
0.01173929963260889,
-0.04782292991876602,
0.00920271035283804,
0.019080691039562225,
0.0072028739377856255,
0.06302514672279358,
0.023842206224799156,
-0.045849066227674484,
0.05267101898789406,
-0.013228355906903744,
-0.08865075558423996,
0.025937272235751152,
0.012942664325237274,
0.0031274498905986547,
-0.040654685348272324,
0.006159669253975153,
-0.014483664184808731,
0.008709244430065155,
0.034525316208601,
-0.0331401452422142,
0.030854620039463043,
-0.052913423627614975,
0.028015024960041046,
-0.03052564151585102,
0.02721855416893959,
-0.009566317312419415,
0.03423096612095833,
-0.008008003234863281,
0.08685003966093063,
0.01489921472966671,
0.013964226469397545,
-0.012786833569407463,
0.033451810479164124,
-0.054921913892030716,
-0.0028157869819551706,
0.029330935329198837,
0.049589019268751144,
0.01560911349952221,
0.005726804491132498,
-0.0037291322369128466,
0.011609440669417381,
-0.07791570574045181,
-0.07729238271713257,
0.018214961513876915,
-0.000031551804568152875,
-0.038923222571611404,
-0.014630838297307491,
-0.03843841329216957,
0.09024370461702347,
0.042386144399642944,
0.04567591845989227,
0.04408297687768936,
-0.051181960850954056,
-0.053917668759822845,
0.049589019268751144,
-0.028032340109348297,
0.020916039124131203,
0.0003430455399211496,
0.043702054768800735,
0.01561777014285326,
0.09135183691978455,
-0.05931982398033142,
-0.02216268889605999,
0.01773015223443508,
0.016673961654305458,
0.020690947771072388,
-0.0033893331419676542,
-0.020950667560100555,
0.031876180320978165,
0.008280708454549313,
-0.004283199552446604,
-0.004047288093715906,
0.02662985771894455,
0.039096370339393616,
-0.02922704629600048,
-0.05772688239812851,
-0.021695194765925407,
0.04148578643798828,
0.005549329798668623,
0.06375236064195633,
-0.037191763520240784,
0.006930169183760881,
0.00784351397305727,
-0.04207448288798332,
0.0034088122192770243,
0.022855274379253387,
-0.029313620179891586,
0.028101598843932152,
-0.04228225722908974,
0.02778993546962738,
0.014275888912379742,
-0.022058801725506783,
0.06271348893642426,
0.007449607364833355,
-0.05696503818035126,
-0.011860501952469349,
-0.02359980158507824,
-0.03227441757917404,
-0.01610257849097252,
0.020188825204968452,
0.05713818594813347,
-0.023928778246045113,
0.05235935375094414,
-0.025140801444649696,
0.004445523954927921,
0.01194707490503788,
-0.0691198855638504,
0.07389871776103973,
-0.03365958482027054,
-0.005107807461172342,
0.025227373465895653,
-0.0025647252332419157,
0.05114733427762985,
-0.016933679580688477,
-0.0154705960303545,
0.0032032013405114412,
-0.013583304360508919,
0.05454099550843239,
-0.01354001834988594,
-0.003571136621758342,
0.06721528619527817,
-0.04276706650853157,
-0.029105843976140022,
0.013055209070444107,
0.002315827878192067,
0.009098823182284832,
0.05426396057009697,
-0.001388414646498859,
0.011245833709836006,
-0.0330708883702755,
0.05097418650984764,
-0.0011773928999900818,
0.08546487241983414,
-0.04882717505097389,
0.03435216844081879,
0.06728453934192657,
-0.013669878244400024,
0.03871544823050499,
-0.018163016065955162,
-0.04723423346877098,
0.0338154174387455,
-0.041104864329099655,
0.03544298931956291,
0.050004567950963974,
0.007544837426394224,
0.07708460837602615,
-0.031322114169597626,
-0.008319665677845478,
-0.014449034817516804,
-0.015713000670075417,
-0.013617933727800846,
-0.05516431853175163,
-0.016466185450553894,
0.02056974731385708,
0.00853176973760128,
0.028395947068929672,
-0.00039363664109259844,
0.043251875787973404,
-0.026525968685746193,
0.003419633721932769,
0.031027765944600105,
0.06884285807609558,
0.0691891461610794,
-0.00021521508460864425,
-0.01425857376307249,
-0.03397124633193016,
0.010570564307272434,
0.07680757343769073,
0.0001757161517161876,
0.00417281873524189,
-0.02938287891447544,
0.018959488719701767,
0.009107480756938457,
-0.014803984202444553,
-0.01842273585498333
] |
729,627 | tinytuya.core | set_debug | Enable tinytuya verbose logging | def set_debug(toggle=True, color=True):
"""Enable tinytuya verbose logging"""
if toggle:
if color:
logging.basicConfig(
format="\x1b[31;1m%(levelname)s:%(message)s\x1b[0m", level=logging.DEBUG
)
else:
logging.basicConfig(format="%(levelname)s:%(message)s", level=logging.DEBUG)
log.setLevel(logging.DEBUG)
log.debug("TinyTuya [%s]\n", __version__)
log.debug("Python %s on %s", sys.version, sys.platform)
if AESCipher.CRYPTOLIB_HAS_GCM == False:
log.debug("Using %s %s for crypto", AESCipher.CRYPTOLIB, AESCipher.CRYPTOLIB_VER)
log.debug("Warning: Crypto library does not support AES-GCM, v3.5 devices will not work!")
else:
log.debug("Using %s %s for crypto, GCM is supported", AESCipher.CRYPTOLIB, AESCipher.CRYPTOLIB_VER)
else:
log.setLevel(logging.NOTSET)
| (toggle=True, color=True) | [
0.012692468240857124,
-0.027477404102683067,
0.06971221417188644,
0.04511654004454613,
0.05069645494222641,
-0.046181127429008484,
-0.0656006932258606,
0.0009917424758896232,
-0.03983030468225479,
0.003618225222453475,
-0.035994116216897964,
-0.030781300738453865,
-0.011269957758486271,
0.02608242630958557,
0.015207100659608841,
-0.0477229468524456,
-0.02074112743139267,
-0.008952640928328037,
0.0485672764480114,
-0.02316398359835148,
0.050623033195734024,
0.06457281857728958,
0.015005195513367653,
0.02485264278948307,
-0.02186078019440174,
0.054624419659376144,
-0.004357013385742903,
0.010012641549110413,
0.013270650058984756,
-0.03142372518777847,
-0.01486753299832344,
-0.06846407055854797,
0.012334546074271202,
-0.004992554429918528,
-0.04988883435726166,
-0.021273421123623848,
0.025329871103167534,
0.03215792402625084,
-0.01929108425974846,
-0.0015831169439479709,
-0.021273421123623848,
0.004549740348011255,
0.001681774971075356,
0.005827705841511488,
-0.03318580240011215,
0.018052121624350548,
0.04159238189458847,
0.06905142962932587,
-0.03674666956067085,
-0.014766581356525421,
0.036324504762887955,
0.00026041126693598926,
0.02272346429526806,
0.02639446035027504,
-0.013325715437531471,
-0.007897229865193367,
0.036563120782375336,
-0.0152988750487566,
-0.006043376866728067,
-0.024228572845458984,
-0.0063829440623521805,
0.025935586541891098,
-0.007543896324932575,
0.055835846811532974,
-0.0013651516055688262,
-0.02373298816382885,
-0.06512346863746643,
0.05792831629514694,
0.022246235981583595,
0.007594372611492872,
-0.021034806966781616,
-0.007722857408225536,
-0.027091950178146362,
-0.05124710127711296,
-0.07797195017337799,
0.020484156906604767,
-0.10565125942230225,
0.030561041086912155,
-0.04328104108572006,
-0.031643982976675034,
-0.03291047737002373,
0.015399827621877193,
0.04548363760113716,
0.0663716048002243,
-0.0054743727669119835,
0.0004918560734950006,
-0.01585870236158371,
0.02074112743139267,
0.03847203776240349,
-0.0012596104061231017,
-0.07995428889989853,
-0.010021818801760674,
0.007484242785722017,
0.04423550143837929,
-0.04933818429708481,
0.017547359690070152,
0.00860389694571495,
0.020025283098220825,
-0.007241039536893368,
0.013472555205225945,
0.025696970522403717,
-0.027550823986530304,
0.034654200077056885,
-0.0578916035592556,
-0.05355982854962349,
-0.04911792650818825,
-0.048971086740493774,
0.08509368449449539,
0.04728242754936218,
0.01752900518476963,
-0.013059567660093307,
-0.04878753423690796,
-0.023457663133740425,
-0.03529662638902664,
0.013775411993265152,
-0.02597229555249214,
0.03261679783463478,
-0.024981126189231873,
-0.022686755284667015,
-0.0044074892066419125,
-0.01075601764023304,
-0.0063737668097019196,
-0.01886891946196556,
-0.0017471646424382925,
0.001354826963506639,
-0.0003688203578349203,
0.04023411497473717,
0.0751819983124733,
-0.00011744318908313289,
-0.013995671644806862,
-0.006763809826225042,
0.00045916129602119327,
0.01093039009720087,
0.025146322324872017,
0.029367966577410698,
-0.028798962011933327,
-0.040894895792007446,
0.016152381896972656,
0.03248831257224083,
0.05172433331608772,
-0.08428606390953064,
-0.060057491064071655,
-0.06482978910207748,
-0.03735238313674927,
0.02142026089131832,
-0.004246883559972048,
-0.01629004441201687,
-0.04082147404551506,
-0.010453160852193832,
0.02760588936507702,
0.06835394352674484,
-0.004579567350447178,
-0.06457281857728958,
-0.010324675589799881,
-0.02441212348639965,
-0.004781472031027079,
0.039646755903959274,
0.023329179733991623,
0.07235532999038696,
0.016501126810908318,
-0.019254373386502266,
-0.016693854704499245,
-0.025311516597867012,
-0.018226495012640953,
0.018676191568374634,
-0.00424229446798563,
-0.03604917973279953,
0.036526408046483994,
0.030193941667675972,
0.00787428580224514,
-0.044639311730861664,
-0.01585870236158371,
0.0000962919439189136,
0.0570472776889801,
0.07463134825229645,
0.018446754664182663,
-0.013389957137405872,
0.008360693231225014,
-0.030983205884695053,
-0.042179740965366364,
-0.04434562847018242,
0.04148225486278534,
-0.010774373076856136,
0.09214199334383011,
0.04621783643960953,
-0.034103550016880035,
0.053963638842105865,
-0.010453160852193832,
-0.00579099589958787,
0.00465528154745698,
0.05165091156959534,
0.024430477991700172,
-0.01653783582150936,
-0.050512902438640594,
0.012701645493507385,
0.06901472061872482,
0.014986841008067131,
-0.11570978909730911,
0.038875848054885864,
-0.008750736713409424,
-0.0428038127720356,
0.03202943876385689,
-0.035975757986307144,
-0.00022298432304523885,
0.058735933154821396,
-0.004942078143358231,
-0.005043030716478825,
0.018226495012640953,
0.05113697424530983,
0.003652640851214528,
0.046181127429008484,
-0.0037880088202655315,
0.03905939683318138,
0.04412537068128586,
-0.0001128544463426806,
-0.05601939558982849,
0.013270650058984756,
0.0617094412446022,
-0.06097524240612984,
0.03274528309702873,
0.05132052302360535,
-0.03171740472316742,
0.005758874583989382,
0.018887273967266083,
0.000472640705993399,
0.05657004565000534,
0.0177584420889616,
-0.005038441624492407,
-0.052531950175762177,
-0.06424243003129959,
-0.012784243561327457,
0.031001560389995575,
-0.06908814609050751,
0.06405887752771378,
-0.025550130754709244,
-0.024155152961611748,
-0.01259151566773653,
0.012251948937773705,
-0.00381324696354568,
-0.06985905021429062,
0.016262512654066086,
0.039977144449949265,
0.060718271881341934,
0.04522667080163956,
-0.00887004379183054,
-0.04449247196316719,
-0.02485264278948307,
0.043905109167099,
-0.055505458265542984,
0.01662043295800686,
-0.051761042326688766,
-0.08098217099905014,
0.030964849516749382,
-0.011747187003493309,
-0.021713940426707268,
-0.020337317138910294,
0.0532294400036335,
0.07804537564516068,
-0.005020086653530598,
-0.053633250296115875,
-0.03968346491456032,
-0.001689805299974978,
-0.056753598153591156,
0.04067463427782059,
0.04438234120607376,
-0.002913852920755744,
0.029459742829203606,
-0.04533679783344269,
-0.002075259806588292,
-0.003911904990673065,
0.09485853463411331,
0.04269368201494217,
-0.014362771064043045,
0.04445575922727585,
-0.0488242469727993,
-0.04328104108572006,
-0.024889351800084114,
0.008897576481103897,
-0.032561734318733215,
-0.018942339345812798,
0.0242836382240057,
-0.04012398421764374,
0.017987878993153572,
0.06398545950651169,
-0.03792138770222664,
-0.07070337980985641,
-0.01641852967441082,
0.03507636487483978,
-0.010113594122231007,
-0.01463809609413147,
-0.016280867159366608,
0.057414375245571136,
0.03403013199567795,
0.025495067238807678,
0.04361142963171005,
-0.010159481316804886,
-0.025696970522403717,
0.04181264340877533,
-0.015234633348882198,
-0.013674459420144558,
0.023916538804769516,
-0.03994043543934822,
0.013793767429888248,
0.007305281702429056,
0.04107844457030296,
0.04893437400460243,
-0.011692121624946594,
-0.04533679783344269,
0.02885402739048004,
-0.013564329594373703,
0.006456363946199417,
0.03691186383366585,
0.015234633348882198,
0.012004156596958637,
-0.014775758609175682,
-0.02340259961783886,
-0.02718372456729412,
-0.018244849517941475,
-0.007328225765377283,
0.10528416186571121,
-0.03894926607608795,
-0.03994043543934822,
0.0015704978723078966,
0.010590823367238045,
0.014996018260717392,
-0.06101195141673088,
0.07481489330530167,
-0.03740744665265083,
-0.0018056711414828897,
0.0042032902128994465,
-0.08046822994947433,
0.0419594831764698,
0.03968346491456032,
0.0209797415882349,
-0.007557662669569254,
-0.015051082707941532,
-0.0647563710808754,
-0.06486649811267853,
-0.06688554584980011,
-0.024100087583065033,
-0.05260537192225456,
0.040417663753032684,
-0.05825870484113693,
-0.0012928788783028722,
0.011866494081914425,
-0.005093507003039122,
-0.027422338724136353,
-0.01380294468253851,
0.03994043543934822,
0.08178979158401489,
0.04893437400460243,
-0.01862112618982792,
-0.02419186197221279,
0.023108918219804764,
0.02707359381020069,
-0.03516814112663269,
-0.0236045029014349,
-0.028083117678761482,
0.02540329098701477,
0.011012987233698368,
-0.06879446655511856,
0.05598268657922745,
0.054183900356292725,
0.013775411993265152,
0.003248831257224083,
-0.01298614777624607,
0.03028571605682373,
-0.08413922786712646,
0.09331671893596649,
0.00040610390715301037,
0.014940952882170677,
-0.014004848897457123,
0.039426494389772415,
0.055945977568626404,
-0.04739255830645561,
-0.0006389827467501163,
-0.04328104108572006,
-0.012490563094615936,
0.018042944371700287,
0.03318580240011215,
0.04713558778166771,
0.036563120782375336,
0.05025593191385269,
0.015831170603632927,
-0.007736623752862215,
-0.043207623064517975,
0.039206236600875854,
0.03604917973279953,
0.02650459110736847,
-0.00698865856975317,
-0.03670996055006981,
0.004315714351832867,
-0.00038201300776563585,
0.004887013230472803,
-0.024558963254094124,
-0.0283951535820961,
-0.03957333415746689,
0.002422857331112027,
-0.0300471018999815,
-0.0077412123791873455,
0.010223723948001862,
-0.015133680775761604,
0.000788690522313118,
-0.03261679783463478,
0.0009819914121180773,
0.015546667389571667,
0.021328486502170563,
0.030579395592212677,
-0.002691298956051469,
-0.021677231416106224,
0.01585870236158371,
0.006947359535843134,
-0.06134233996272087,
-0.023806408047676086,
-0.01962147280573845,
-0.06677541881799698,
0.04181264340877533,
0.020227188244462013,
0.019327793270349503,
0.017171083018183708,
0.01507861539721489,
-0.05165091156959534,
-0.01403238158673048,
-0.012876017950475216,
0.030909786000847816,
-0.0038545457646250725,
-0.0026224676985293627,
0.03503965586423874,
0.012407965958118439,
0.001017554197460413,
-0.03314909338951111,
0.009379394352436066,
0.04247342422604561,
0.0009349567699246109,
0.015124502591788769,
-0.028028054162859917,
0.009884156286716461,
-0.00047378792078234255,
0.007305281702429056,
0.02031896263360977,
0.034764330834150314,
-0.02406337857246399,
-0.039646755903959274,
-0.05110026150941849,
0.022870304062962532,
0.030671169981360435,
-0.016280867159366608,
0.05447757989168167,
0.07767827063798904,
-0.011325022205710411,
-0.006805108394473791,
0.02584381029009819,
-0.02461402676999569,
-0.017372988164424896,
0.09060017764568329,
-0.015041905455291271,
-0.003221298800781369,
0.007594372611492872,
-0.017015065997838974,
-0.004173463676124811,
0.003964675590395927,
-0.005460606422275305,
-0.053743381053209305,
0.059837233275175095,
0.028083117678761482,
-0.00993004348129034,
0.06549056619405746,
0.0024412123020738363,
-0.01842840015888214,
-0.05256866291165352,
0.04291394352912903,
-0.007970649749040604,
-0.028101474046707153,
0.05447757989168167,
0.011673767119646072,
0.036361213773489,
-0.026027360931038857,
-0.0197499580681324,
-0.0570472776889801,
-0.02162216603755951,
-0.10293472558259964,
-0.015096970833837986,
-0.022319655865430832,
-0.022209525108337402,
-0.008943463675677776,
-0.045740608125925064,
0.03142372518777847,
-0.01795116998255253,
0.042767103761434555,
-0.018143897876143456,
-0.031276885420084,
-0.027091950178146362,
0.016354287043213844,
-0.047869786620140076,
-0.01642770692706108,
0.02650459110736847,
-0.05168762058019638,
-0.015353940427303314,
0.0033107793424278498,
0.03252502530813217,
-0.005717576015740633,
-0.028028054162859917,
-0.013408312574028969,
-0.003122640773653984,
0.041775934398174286,
-0.02382476255297661,
0.03639792278409004,
0.013738702051341534,
-0.040527794510126114,
0.03481939435005188,
0.03674666956067085,
0.01997021771967411,
0.010866147466003895,
-0.027147013694047928,
0.05723082646727562,
-0.038104936480522156,
-0.004850303288549185,
0.003150173230096698,
0.06567411869764328,
-0.06596779823303223,
-0.0017815801547840238,
0.040087275207042694,
0.01940121315419674,
-0.01115064974874258,
0.019236018881201744,
0.02075948193669319,
0.015390650369226933,
0.05969039350748062,
-0.044308919459581375,
0.07797195017337799,
0.022136105224490166,
-0.014564676210284233,
-0.006708744913339615,
-0.043538011610507965,
0.010251255705952644,
0.010719307698309422,
-0.016602078452706337,
-0.0016393291298300028,
0.031992729753255844,
-0.08362528681755066,
0.010682597756385803,
-0.038985975086688995,
0.03606753423810005,
-0.043427880853414536,
-0.01236207876354456,
0.023494374006986618,
-0.0010393507545813918,
0.012545628473162651,
-0.01253645122051239,
-0.0059240697883069515,
0.02338424324989319,
0.04423550143837929,
-0.016547013074159622,
0.015675151720643044,
-0.03961004689335823,
-0.061489179730415344,
0.014289351180195808,
0.03138701617717743,
0.017437230795621872,
-0.010443983599543571,
0.009553766809403896,
-0.0043638963252305984,
-0.0721350684762001,
-0.00718597462400794,
0.004845714662224054,
-0.04361142963171005,
0.0008271212573163211,
0.049962252378463745,
0.0521281398832798,
-0.027899568900465965,
0.011132295243442059,
-0.003393376711755991,
0.0042377058416605,
0.044198788702487946,
-0.051871173083782196,
0.06427913904190063,
0.012894373387098312,
0.05631307512521744,
0.03858216851949692,
0.010856970213353634,
-0.032341472804546356,
0.018336623907089233,
-0.0018056711414828897,
0.03751757740974426,
0.0026201733853667974,
-0.05249524116516113,
0.09625351428985596,
0.00031662339461036026,
0.019015759229660034,
-0.03784796595573425,
-0.021383551880717278,
-0.05234840139746666,
-0.010563290677964687,
-0.023549439385533333,
-0.04651151970028877,
0.005185281857848167,
0.030781300738453865,
0.04548363760113716,
0.07657697051763535,
0.0691615641117096,
-0.04383169114589691,
-0.019364504143595695,
0.0004961580270901322,
-0.07554909586906433,
0.012453853152692318,
-0.029019221663475037,
0.02927619218826294,
-0.02841350808739662,
-0.0248342864215374,
0.024999482557177544,
-0.010627533309161663,
0.004923723172396421,
0.015014372766017914,
-0.006263636518269777,
0.007810043636709452,
-0.0036641128826886415,
0.028670478612184525,
0.05154078081250191,
0.009283030405640602,
-0.021438615396618843,
-0.033442772924900055,
0.08663550019264221,
-0.009012294933199883,
-0.03241489455103874,
-0.029312903061509132,
0.012940260581672192,
-0.0035287446808069944,
-0.05392692983150482,
-0.050402771681547165,
-0.03682008758187294,
0.0005182413733564317,
0.0289458017796278,
0.004233117215335369,
-0.03916952759027481,
-0.05645991489291191,
-0.04489627853035927,
0.02030060812830925,
0.008640606887638569,
0.022815238684415817,
0.045630477368831635,
0.025880521163344383,
0.005088917911052704,
0.05121039226651192,
-0.0006125974468886852,
0.050182513892650604,
0.004056450445204973,
-0.05117368325591087,
-0.03061610646545887,
0.004574978724122047,
-0.025311516597867012,
-0.032121215015649796,
0.012921905145049095,
-0.018722079694271088,
0.05888277292251587,
-0.06798684597015381,
0.050512902438640594,
-0.03549852967262268,
0.036893509328365326,
0.05590926855802536,
-0.019896797835826874,
-0.0022232469636946917,
-0.0005592532688751817,
-0.004909956827759743,
0.011123117990791798,
0.0521281398832798,
-0.013178875669836998,
0.024889351800084114,
-0.04717229679226875,
0.04383169114589691,
-0.05697385594248772,
0.02815653756260872,
0.011224069632589817,
0.016565369442105293,
-0.020722771063447,
0.049631863832473755,
0.023567793890833855,
-0.008787446655333042,
0.004446493927389383,
-0.008112900890409946,
-0.04889766499400139,
-0.012398788705468178,
0.05216485261917114,
0.0419594831764698,
-0.03781125694513321,
-0.007777922321110964,
0.07474147528409958,
-0.023310823366045952,
0.01596883125603199,
0.003317662514746189,
-0.03916952759027481,
-0.09023308008909225,
-0.016455238685011864,
-0.04162909463047981,
0.03006545640528202,
0.016840694472193718,
-0.03858216851949692,
-0.0012756710639223456,
-0.011738009750843048,
-0.005538614932447672,
-0.04401523992419243,
0.0006871645455248654,
-0.021475326269865036,
0.006896883714944124,
0.0015487014316022396,
-0.0023838528431952,
-0.03880242630839348,
0.025715326890349388,
-0.04533679783344269,
0.004664459265768528,
-0.046621646732091904,
0.04067463427782059,
0.001684069400653243,
0.019713247194886208,
-0.016152381896972656,
-0.045410219579935074,
-0.025807101279497147,
-0.049741994589567184,
-0.023696279153227806,
-0.018584417179226875,
0.0510268434882164,
-0.01315134298056364,
-0.018042944371700287,
0.013949784450232983,
0.001713896170258522,
0.05524848774075508,
0.03259844332933426,
-0.033663030713796616,
0.00970978382974863,
0.0034002598840743303,
-0.05767134577035904,
-0.03160727396607399,
-0.02718372456729412,
-0.06211325153708458,
0.0023907360155135393,
-0.05987394228577614,
0.028578702360391617,
-0.03617766499519348,
-0.028652122244238853,
0.03175411373376846,
-0.020906321704387665,
0.020374028012156487,
-0.01402320433408022,
0.0022152166347950697,
0.00718597462400794,
-0.020025283098220825,
0.016170736402273178,
0.06405887752771378,
0.012160173617303371,
-0.05623965710401535,
0.015711862593889236,
0.0020580519922077656,
-0.019162598997354507,
-0.05587255582213402,
0.04005056619644165,
0.06108537316322327,
0.014344416558742523,
0.014307706616818905,
0.014179221354424953,
0.005836883559823036,
-0.06097524240612984,
0.024907706305384636,
-0.007943117059767246,
-0.0034071430563926697,
0.033571258187294006,
0.032341472804546356,
0.06703238189220428,
-0.04317091032862663,
0.036214374005794525
] |
729,631 | tinytuya.core | termcolor | null | def termcolor(color=True):
if color is False:
# Disable Terminal Color Formatting
bold = subbold = normal = dim = alert = alertdim = cyan = red = yellow = ""
else:
# Terminal Color Formatting
bold = "\033[0m\033[97m\033[1m"
subbold = "\033[0m\033[32m"
normal = "\033[97m\033[0m"
dim = "\033[0m\033[97m\033[2m"
alert = "\033[0m\033[91m\033[1m"
alertdim = "\033[0m\033[91m\033[2m"
cyan = "\033[0m\033[36m"
red = "\033[0m\033[31m"
yellow = "\033[0m\033[33m"
return bold,subbold,normal,dim,alert,alertdim,cyan,red,yellow
| (color=True) | [
0.004861247260123491,
0.01817113533616066,
0.008312826044857502,
-0.0008886528667062521,
0.06290584802627563,
-0.01685045100748539,
-0.05608699098229408,
-0.03298904001712799,
0.037784721702337265,
0.025964118540287018,
0.009249483235180378,
-0.010668517090380192,
0.0014354260638356209,
-0.014508808963000774,
-0.010040957480669022,
-0.037447527050971985,
0.02156183309853077,
0.0010888631222769618,
0.03641720488667488,
0.008931019343435764,
0.04383552446961403,
0.003381329821422696,
0.05301475524902344,
-0.058971893042325974,
0.0007873768336139619,
0.012860293500125408,
0.031715188175439835,
-0.06163199618458748,
-0.018761228770017624,
0.008097395300865173,
-0.005886885803192854,
-0.0049595958553254604,
-0.03900237753987312,
0.03491855412721634,
0.02993554063141346,
-0.00031934131402522326,
-0.007966263219714165,
0.08549800515174866,
-0.011202411726117134,
0.007099856156855822,
-0.055112868547439575,
-0.03308270871639252,
0.002756111789494753,
0.024802664294838905,
-0.03705412894487381,
-0.05271502584218979,
0.047994278371334076,
0.03900237753987312,
-0.0049174465239048,
-0.0574357770383358,
0.0470576211810112,
-0.03162152320146561,
-0.010574852116405964,
-0.032726775854825974,
0.023135414347052574,
-0.042261939495801926,
-0.03688553348183632,
0.0004656938835978508,
-0.06095760315656662,
0.016588186845183372,
0.00047154800267890096,
0.032220982015132904,
0.022723285481333733,
0.019950782880187035,
-0.0001517676137154922,
0.03413176164031029,
0.0705864354968071,
0.04421018436551094,
0.04784441366791725,
0.01677551679313183,
-0.05552499741315842,
-0.0011532582575455308,
-0.013525319285690784,
-0.01915462501347065,
0.010471819899976254,
-0.016934748739004135,
-0.06620287895202637,
-0.011015079915523529,
-0.0075775510631501675,
0.029148750007152557,
-0.017674708738923073,
0.03424416109919548,
0.04893093556165695,
0.06013334542512894,
0.02705063857138157,
-0.008537624031305313,
-0.021374501287937164,
0.03169645369052887,
-0.00973186083137989,
-0.021955227479338646,
-0.025982851162552834,
-0.03398189693689346,
-0.0486312061548233,
0.049380529671907425,
-0.06268104910850525,
-0.035780277103185654,
0.027275437489151955,
0.030628666281700134,
-0.004179829731583595,
-0.04095062240958214,
-0.027069373056292534,
0.023304013535380363,
0.030947130173444748,
-0.06968723982572556,
-0.04776947945356369,
-0.030965862795710564,
-0.08287536352872849,
0.053089689463377,
0.0950893685221672,
0.029879340901970863,
-0.027912363409996033,
0.0442851185798645,
0.12498743832111359,
-0.03754119202494621,
0.007095173001289368,
0.029617078602313995,
0.011249244213104248,
-0.04934306442737579,
-0.009994124993681908,
-0.013787583447992802,
-0.00791943073272705,
-0.06092013791203499,
0.07051149755716324,
-0.00898253545165062,
-0.030834730714559555,
0.0935157835483551,
-0.037484992295503616,
0.03746625781059265,
-0.02817462757229805,
0.033813297748565674,
0.0033391802571713924,
0.06136973202228546,
0.08991902321577072,
-0.020362911745905876,
0.05642418563365936,
-0.01069661695510149,
-0.10483059287071228,
0.021842829883098602,
0.007947530597448349,
0.06107000261545181,
0.013937448151409626,
0.014536908827722073,
-0.04128781706094742,
-0.04660802707076073,
-0.05061691626906395,
0.007624383550137281,
0.033307503908872604,
-0.056124456226825714,
0.008888870477676392,
0.05170343816280365,
-0.013740750961005688,
0.039414506405591965,
-0.014096680097281933,
-0.0034117712639272213,
0.004072113893926144,
0.05953388661146164,
0.04050102457404137,
-0.06050800904631615,
0.04289886727929115,
-0.005146927200257778,
0.031509123742580414,
-0.01902349293231964,
0.05458834022283554,
-0.06968723982572556,
0.023266546428203583,
0.03632353991270065,
-0.013525319285690784,
0.006711143534630537,
0.03428162634372711,
-0.025926651433110237,
-0.032501980662345886,
-0.02281695231795311,
0.0051890769973397255,
0.04499697685241699,
-0.028230827301740646,
-0.009994124993681908,
-0.0552627332508564,
0.01881742849946022,
-0.02152436599135399,
-0.02508366107940674,
-0.04851880669593811,
0.014246544800698757,
-0.04600856825709343,
0.028062228113412857,
0.05020478740334511,
-0.03285790979862213,
-0.0014248887309804559,
-0.001285561011172831,
-0.02227369137108326,
-0.016428954899311066,
0.008668756112456322,
-0.00396674033254385,
0.0014237178256735206,
0.023210348561406136,
-0.005952451843768358,
0.012345132417976856,
0.017646608874201775,
-0.0295608788728714,
-0.002068839967250824,
-0.035855211317539215,
0.010499918833374977,
0.01699094846844673,
-0.05020478740334511,
0.060433074831962585,
0.029523411765694618,
0.049080800265073776,
-0.012654229067265987,
-0.043685659766197205,
-0.022517221048474312,
-0.022554688155651093,
-0.02030671201646328,
-0.02210509218275547,
0.06200665980577469,
0.11217398196458817,
0.03060993365943432,
0.013637718744575977,
0.03791585564613342,
0.03244578093290329,
-0.07740528881549835,
0.010031591169536114,
0.030403869226574898,
-0.06575328856706619,
0.055112868547439575,
0.02566438727080822,
-0.03851531445980072,
0.03506841883063316,
-0.027743764221668243,
-0.016663119196891785,
0.016625652089715004,
-0.009160500019788742,
-0.014377676881849766,
0.0028404106851667166,
-0.02562692202627659,
0.06451690196990967,
-0.06522876024246216,
-0.006617478094995022,
0.05488806962966919,
-0.034431491047143936,
-0.03047880157828331,
0.001626269775442779,
-0.056499119848012924,
0.09276645630598068,
0.07088616490364075,
0.01327242236584425,
0.057210978120565414,
0.00006018749627401121,
0.06200665980577469,
0.012223366647958755,
-0.05458834022283554,
-0.034019362181425095,
-0.1089518815279007,
-0.015492298640310764,
0.04454738274216652,
0.021824095398187637,
-0.01293522585183382,
0.020587708801031113,
-0.01425591204315424,
0.054700739681720734,
-0.006055484060198069,
0.034262895584106445,
0.01905159279704094,
0.04821907728910446,
0.03441276028752327,
0.03911477327346802,
0.047956813126802444,
-0.009797426871955395,
-0.0005286255036480725,
0.06983710825443268,
0.006027384661138058,
-0.014892837963998318,
0.12124081701040268,
0.017815206199884415,
-0.024933796375989914,
-0.0012715111952275038,
-0.027725031599402428,
-0.02600158378481865,
-0.051478639245033264,
0.007376169785857201,
-0.06740180402994156,
0.002168359700590372,
-0.021205902099609375,
-0.010528018698096275,
-0.02750023454427719,
0.0027420618571341038,
0.0012879027053713799,
-0.014265278354287148,
0.012813461013138294,
-0.07238481193780899,
0.0062334490939974785,
-0.019576121121644974,
0.017047148197889328,
-0.011043179780244827,
0.027312902733683586,
0.009619462303817272,
0.012223366647958755,
-0.0015255792532116175,
0.006172566208988428,
0.007853864692151546,
-0.015941893681883812,
-0.0005016966024413705,
0.02135576866567135,
-0.07032416760921478,
-0.016653751954436302,
-0.06481663137674332,
-0.036492135375738144,
-0.009694394655525684,
0.05350181832909584,
-0.007558817975223064,
0.027200505137443542,
-0.010312587954103947,
-0.04563390463590622,
0.03458135575056076,
-0.024090804159641266,
0.02180536277592182,
-0.07785488665103912,
0.00573702109977603,
-0.03165898844599724,
-0.049717724323272705,
0.021861562505364418,
0.03844038024544716,
-0.03223971650004387,
-0.047582149505615234,
0.016157323494553566,
-0.019370056688785553,
0.045034442096948624,
-0.006397363729774952,
-0.04881853610277176,
0.018808061257004738,
0.04383552446961403,
0.03634227067232132,
-0.012869659811258316,
0.0008347950642928481,
0.010659150779247284,
0.0087483711540699,
-0.006636211182922125,
-0.0941152423620224,
-0.022386090829968452,
-0.00211450201459229,
-0.05413874611258507,
-0.031921252608299255,
-0.03682933375239372,
-0.013647085055708885,
-0.024727731943130493,
-0.010228288359940052,
0.03819685056805611,
0.021711697801947594,
0.01423717848956585,
0.03699793294072151,
0.013684551231563091,
0.012045402079820633,
0.03827178478240967,
0.04398538917303085,
-0.00964756216853857,
0.029073817655444145,
0.0038496581837534904,
0.026282580569386482,
-0.02223622426390648,
-0.007408952806144953,
0.012672962620854378,
-0.022629620507359505,
-0.05698617920279503,
0.035105884075164795,
0.05132877454161644,
0.00027631365810520947,
-0.03085346519947052,
0.02457786537706852,
-0.04465978220105171,
0.01356278546154499,
0.016428954899311066,
-0.017047148197889328,
0.026095248758792877,
0.04346086084842682,
0.005601205863058567,
-0.018227335065603256,
-0.010837115347385406,
-0.003435187740251422,
-0.07204761356115341,
-0.01498650386929512,
0.03791585564613342,
-0.03240831568837166,
-0.018789328634738922,
-0.03986410051584244,
0.022966817021369934,
-0.060433074831962585,
0.012064135633409023,
0.017215745523571968,
-0.06432956457138062,
0.03400063142180443,
-0.028080960735678673,
0.004093188792467117,
-0.09051848202943802,
-0.003962056711316109,
0.006720510311424732,
0.000009174476872431114,
0.00791474711149931,
0.015623429790139198,
0.027874896302819252,
-0.0014284010976552963,
-0.027069373056292534,
-0.04717002063989639,
-0.002795919543132186,
0.06305571645498276,
0.019651053473353386,
-0.05713604390621185,
-0.02922368235886097,
-0.008832670748233795,
-0.01498650386929512,
0.006149149965494871,
-0.012363865971565247,
-0.0004317401035223156,
0.04559643939137459,
-0.0023311038967221975,
-0.009694394655525684,
0.03130305930972099,
-0.02193649485707283,
-0.07605650275945663,
0.039789166301488876,
-0.05601205676794052,
0.0580352358520031,
0.008453324437141418,
-0.06725193560123444,
-0.08557293564081192,
0.005381091497838497,
0.03193998709321022,
0.02302301675081253,
0.06833845376968384,
0.010125256143510342,
0.027818698436021805,
0.022011427208781242,
-0.04136275127530098,
0.01349722035229206,
-0.02708810567855835,
0.01035942044109106,
-0.025233525782823563,
0.015464198775589466,
-0.032801710069179535,
0.006917207967489958,
0.009567946195602417,
0.0012281908420845866,
-0.02817462757229805,
0.008945069275796413,
-0.021280834451317787,
-0.01963231898844242,
0.025570722296833992,
0.045446570962667465,
-0.008715588599443436,
0.010340687818825245,
0.05679884925484657,
0.0030113505199551582,
-0.012504364363849163,
0.022517221048474312,
0.00566208828240633,
-0.022423556074500084,
-0.03461882472038269,
0.07556944340467453,
0.02620764821767807,
0.027312902733683586,
0.023959672078490257,
-0.039414506405591965,
0.025477055460214615,
0.023847274482250214,
0.03847784921526909,
-0.053951412439346313,
0.05316462367773056,
-0.031040795147418976,
-0.022030159831047058,
0.01929512433707714,
-0.004723090212792158,
-0.02888648584485054,
-0.0464581623673439,
-0.05312715470790863,
0.002082889899611473,
-0.0025968800764530897,
-0.017103347927331924,
-0.05282742530107498,
0.020400378853082657,
0.0015021627768874168,
-0.04143768176436424,
-0.06459183245897293,
-0.010855848900973797,
-0.07875407487154007,
-0.06331797689199448,
-0.003418796230107546,
-0.037784721702337265,
0.02017557993531227,
0.0470576211810112,
-0.0073152873665094376,
-0.019444989040493965,
0.06807619333267212,
-0.0045544919557869434,
-0.017824573442339897,
-0.024727731943130493,
-0.0068048094399273396,
-0.01454627513885498,
0.03323257341980934,
0.004196221008896828,
-0.010087789967656136,
0.00025889769312925637,
-0.00981615949422121,
0.024390535429120064,
0.05927162244915962,
-0.03448769077658653,
-0.006697094067931175,
0.02189902774989605,
0.0018557506846264005,
-0.056124456226825714,
-0.0028544606175273657,
-0.021486898884177208,
0.029036350548267365,
-0.022966817021369934,
0.007488568779081106,
0.019182724878191948,
0.03177138790488243,
-0.08849530667066574,
0.025926651433110237,
-0.021411966532468796,
-0.006926574744284153,
-0.01743117719888687,
0.06163199618458748,
-0.024933796375989914,
-0.04986759275197983,
0.028736621141433716,
-0.04986759275197983,
-0.036941733211278915,
-0.03666073456406593,
0.07219748198986053,
-0.014742973260581493,
0.05447594076395035,
-0.027725031599402428,
0.029617078602313995,
-0.007516668178141117,
0.02264835312962532,
-0.047619614750146866,
-0.04342339560389519,
-0.05102904513478279,
0.0030628666281700134,
0.011071279644966125,
0.0097131272777915,
-0.0334199033677578,
-0.021711697801947594,
0.004156413022428751,
-0.020156847313046455,
0.08602253347635269,
0.015623429790139198,
-0.04327353090047836,
0.030628666281700134,
-0.004617716651409864,
-0.03199618682265282,
-0.05027972161769867,
-0.01955738663673401,
0.0246153324842453,
0.02143070101737976,
-0.04218700900673866,
0.003271272871643305,
-0.07448292523622513,
-0.0008546990575268865,
-0.01902349293231964,
-0.013862515799701214,
0.005666771903634071,
-0.011024447157979012,
0.028792820870876312,
0.08032765984535217,
0.012560563161969185,
-0.0254583228379488,
0.03478742018342018,
-0.008088028989732265,
-0.06459183245897293,
-0.05162850394845009,
-0.049043335020542145,
-0.06241878867149353,
0.002423598663881421,
0.0018768254667520523,
-0.022667087614536285,
-0.020213047042489052,
0.00461069168522954,
0.0328204445540905,
0.006692410446703434,
0.0010607634903863072,
0.010912047699093819,
0.03855277970433235,
-0.003957373555749655,
0.017918238416314125,
-0.04087568819522858,
-0.053951412439346313,
0.015398632735013962,
-0.028324492275714874,
-0.02888648584485054,
-0.006462929770350456,
0.014452609233558178,
-0.016194790601730347,
0.022498488426208496,
-0.01050928607583046,
0.0158669613301754,
-0.04312366619706154,
-0.03162152320146561,
0.024353068321943283,
0.06208159029483795,
0.062193989753723145,
-0.03115319460630417,
0.03152785822749138,
-0.022873152047395706,
-0.01593252643942833,
-0.019042225554585457,
-0.005690188147127628,
-0.0073668030090630054,
-0.02495252899825573,
0.08220097422599792,
-0.021917762234807014,
0.020700108259916306,
-0.00007412757986458018,
-0.03877757862210274,
-0.030965862795710564,
-0.040163829922676086,
0.026563577353954315,
0.01884552836418152,
0.027144305408000946,
-0.0003761261177714914,
0.02189902774989605,
0.02746276743710041,
0.0042688120156526566,
-0.017890138551592827,
0.04417271912097931,
-0.03031020425260067,
0.011314810253679752,
0.028399424627423286,
0.0006152662099339068,
-0.057285912334918976,
0.00664557795971632,
-0.023304013535380363,
-0.09276645630598068,
-0.007928797043859959,
0.0464581623673439,
0.005755754187703133,
-0.0442851185798645,
-0.014087313786149025,
0.006617478094995022,
-0.014115413650870323,
0.003051158506423235,
0.0036810599267482758,
0.03733512759208679,
-0.0037981420755386353,
0.03244578093290329,
-0.007277820724993944,
-0.015820128843188286,
0.008490790612995625,
0.008795204572379589,
-0.0265448447316885,
0.00865938887000084,
0.060470543801784515,
0.03519954904913902,
-0.01868629641830921,
0.02474646456539631,
0.02424066886305809,
0.02311668172478676,
-0.06605301797389984,
-0.03355103358626366,
-0.003856683149933815,
-0.049792658537626266,
0.04623336344957352,
-0.03718526288866997,
-0.029954275116324425,
0.016428954899311066,
0.03220225125551224,
0.0063645807094872,
0.03630480542778969,
-0.0349934846162796,
0.018246067687869072,
-0.01678488403558731,
-0.004790998063981533,
-0.038852509111166,
0.0226858202368021,
0.011108745820820332,
0.022573420777916908,
-0.019875850528478622,
-0.002240950707346201,
0.05290235951542854,
0.04237433895468712,
-0.030385136604309082,
0.14132273197174072,
-0.03823431581258774,
0.049455463886260986,
0.01157707441598177,
0.017374977469444275,
0.027163038030266762,
0.047207485884428024,
0.06852579116821289,
0.03915224224328995,
0.0399390310049057,
-0.03533068299293518,
-0.041175417602062225,
-0.08662199229001999,
-0.016428954899311066,
-0.04061342403292656,
-0.021411966532468796,
-0.04166248068213463,
0.0857977345585823,
-0.0541762113571167,
-0.030366403982043266,
-0.002157822484150529,
-0.0073808529414236546,
0.027650099247694016,
0.027874896302819252,
-0.011858071200549603,
0.02482139691710472,
0.006345847621560097,
0.0158388614654541,
0.05923415720462799,
-0.010378153994679451,
0.019613586366176605,
-0.017609141767024994,
0.025196058675646782,
0.01745927706360817,
0.05035465210676193,
-0.018255434930324554,
-0.05398888140916824,
-0.02126210182905197,
0.018255434930324554,
-0.006954674609005451,
0.005713604390621185,
0.00856104027479887,
0.010921414941549301,
-0.03862771391868591,
0.021861562505364418,
0.06462929397821426,
0.05234036594629288,
-0.006036750972270966,
-0.04844387248158455,
0.016325922682881355,
0.027031905949115753,
-0.03516208380460739,
-0.03918970748782158,
0.01446197647601366,
-0.037110328674316406,
0.06099506840109825,
-0.06283091753721237,
0.004819097463041544,
0.018161769956350327,
0.017787106335163116,
0.008088028989732265,
-0.023247813805937767,
-0.02223622426390648,
0.015567230992019176,
-0.019913317635655403,
0.03549928218126297,
0.04746975004673004,
0.0117644052952528,
0.012616762891411781,
0.016503887251019478,
0.011642640456557274,
0.022966817021369934,
0.04525924101471901,
-0.010200189426541328,
-0.03549928218126297,
-0.002648396184667945,
0.03216478228569031,
0.004556833766400814,
0.006865691859275103,
-0.008369025774300098,
0.002182409632951021,
0.011848704889416695,
0.0421120747923851,
-0.028661688789725304,
-0.03122812695801258,
0.03353230282664299,
0.0303476694971323,
0.015642162412405014,
-0.018255434930324554,
-0.04338592663407326
] |
729,633 | tinytuya.core | unpack_message | Unpack bytes into a TuyaMessage. | def unpack_message(data, hmac_key=None, header=None, no_retcode=False):
"""Unpack bytes into a TuyaMessage."""
if header is None:
header = parse_header(data)
if header.prefix == PREFIX_55AA_VALUE:
# 4-word header plus return code
header_len = struct.calcsize(MESSAGE_HEADER_FMT_55AA)
end_fmt = MESSAGE_END_FMT_HMAC if hmac_key else MESSAGE_END_FMT_55AA
retcode_len = 0 if no_retcode else struct.calcsize(MESSAGE_RETCODE_FMT)
msg_len = header_len + header.length
elif header.prefix == PREFIX_6699_VALUE:
if not hmac_key:
raise TypeError( 'key must be provided to unpack 6699-format messages' )
header_len = struct.calcsize(MESSAGE_HEADER_FMT_6699)
end_fmt = MESSAGE_END_FMT_6699
retcode_len = 0
msg_len = header_len + header.length + 4
else:
raise ValueError( 'unpack_message() cannot handle message format %08X' % header.prefix )
if len(data) < msg_len:
log.debug('unpack_message(): not enough data to unpack payload! need %d but only have %d', header_len+header.length, len(data))
raise DecodeError('Not enough data to unpack payload')
end_len = struct.calcsize(end_fmt)
# the retcode is technically part of the payload, but strip it as we do not want it here
retcode = 0 if not retcode_len else struct.unpack(MESSAGE_RETCODE_FMT, data[header_len:header_len+retcode_len])[0]
payload = data[header_len+retcode_len:msg_len]
crc, suffix = struct.unpack(end_fmt, payload[-end_len:])
payload = payload[:-end_len]
if header.prefix == PREFIX_55AA_VALUE:
if hmac_key:
have_crc = hmac.new(hmac_key, data[:(header_len+header.length)-end_len], sha256).digest()
else:
have_crc = binascii.crc32(data[:(header_len+header.length)-end_len]) & 0xFFFFFFFF
if suffix != SUFFIX_VALUE:
log.debug('Suffix prefix wrong! %08X != %08X', suffix, SUFFIX_VALUE)
if crc != have_crc:
if hmac_key:
log.debug('HMAC checksum wrong! %r != %r', binascii.hexlify(have_crc), binascii.hexlify(crc))
else:
log.debug('CRC wrong! %08X != %08X', have_crc, crc)
crc_good = crc == have_crc
iv = None
elif header.prefix == PREFIX_6699_VALUE:
iv = payload[:12]
payload = payload[12:]
try:
cipher = AESCipher( hmac_key )
payload = cipher.decrypt( payload, use_base64=False, decode_text=False, verify_padding=False, iv=iv, header=data[4:header_len], tag=crc)
crc_good = True
except:
crc_good = False
retcode_len = struct.calcsize(MESSAGE_RETCODE_FMT)
if no_retcode is False:
pass
elif no_retcode is None and payload[0:1] != b'{' and payload[retcode_len:retcode_len+1] == b'{':
retcode_len = struct.calcsize(MESSAGE_RETCODE_FMT)
else:
retcode_len = 0
if retcode_len:
retcode = struct.unpack(MESSAGE_RETCODE_FMT, payload[:retcode_len])[0]
payload = payload[retcode_len:]
return TuyaMessage(header.seqno, header.cmd, retcode, payload, crc, crc_good, header.prefix, iv)
| (data, hmac_key=None, header=None, no_retcode=False) | [
0.01750248111784458,
0.026754364371299744,
-0.01108423713594675,
-0.007134163286536932,
-0.025552822276949883,
-0.0421341210603714,
0.010333272628486156,
0.05230718478560448,
-0.008380765095353127,
-0.0434558168053627,
0.03294231370091438,
0.06924894452095032,
-0.012045471929013729,
-0.0023880673106759787,
-0.021988242864608765,
0.06027742475271225,
0.04309535399079323,
0.040572114288806915,
0.02673433907330036,
-0.026894545182585716,
0.03162061423063278,
0.048822712153196335,
-0.07073085010051727,
0.08474885672330856,
0.000021023097360739484,
0.007034034933894873,
0.01802315004169941,
-0.0049939146265387535,
0.05807459354400635,
-0.020336121320724487,
0.043495867401361465,
-0.01535972859710455,
-0.005421964451670647,
0.01728219725191593,
-0.08811317384243011,
-0.02118721418082714,
0.026754364371299744,
-0.06632519513368607,
-0.01878412812948227,
0.00140430370811373,
0.02791585586965084,
-0.04982399567961693,
0.07025023549795151,
-0.016911722719669342,
0.00904661975800991,
-0.003421895205974579,
-0.07397501915693283,
0.04938343167304993,
-0.06872827559709549,
0.054349809885025024,
0.012896564789116383,
-0.050224512815475464,
0.0081755006685853,
0.011014146730303764,
0.006748668383806944,
0.045218080282211304,
-0.04669998213648796,
0.006142890080809593,
-0.030379019677639008,
0.07013007998466492,
-0.021327393129467964,
0.018353573977947235,
-0.03736799582839012,
0.004415671806782484,
-0.01687167026102543,
-0.013267041184008121,
0.036987509578466415,
-0.035665810108184814,
-0.05459011718630791,
0.0053969318978488445,
0.012826475314795971,
0.07729928940534592,
-0.02108708582818508,
0.004693528637290001,
0.038289181888103485,
-0.03378339484333992,
-0.05014440789818764,
0.016190797090530396,
-0.022108396515250206,
0.006938912905752659,
0.04509792476892471,
-0.0010838921880349517,
0.03414385765790939,
0.02236873097717762,
0.04095260053873062,
0.035665810108184814,
0.07613779604434967,
0.014308378100395203,
-0.01520953606814146,
0.004773631691932678,
-0.023189786821603775,
-0.06256035715341568,
-0.006318115163594484,
0.020065773278474808,
-0.005602195858955383,
-0.07513651251792908,
0.010994121432304382,
0.05158625915646553,
-0.019314808771014214,
-0.004535825923085213,
-0.03971100598573685,
0.019144590944051743,
-0.033623188734054565,
-0.004523309879004955,
0.04525813087821007,
0.0407523438334465,
-0.06223994493484497,
-0.0024456412065774202,
0.02965809404850006,
-0.013397208414971828,
0.011274481192231178,
-0.10485468059778214,
-0.057073306292295456,
-0.02583318203687668,
0.0028862073086202145,
-0.047420911490917206,
0.002913742559030652,
0.004736083094030619,
-0.07085100561380386,
0.00326919904910028,
0.023309940472245216,
-0.0015081871533766389,
0.01880415342748165,
-0.094200998544693,
0.02074664831161499,
0.023730481043457985,
0.031880948692560196,
-0.022328680381178856,
0.05683299899101257,
-0.016461143270134926,
-0.017292210832238197,
0.06756678968667984,
0.03384346887469292,
-0.0030489161144942045,
-0.09211832284927368,
-0.020115837454795837,
0.060317475348711014,
-0.003159057581797242,
0.020115837454795837,
-0.048822712153196335,
0.03884990140795708,
0.04874260723590851,
0.029557965695858,
-0.013317105360329151,
-0.027675548568367958,
-0.006558423861861229,
0.03592614457011223,
-0.04009149596095085,
-0.015129433013498783,
0.03474462777376175,
-0.038389310240745544,
-0.019094526767730713,
0.022528937086462975,
0.01873406395316124,
0.06852801889181137,
-0.06528385728597641,
-0.005987690761685371,
-0.056752897799015045,
-0.06916884332895279,
0.002946284366771579,
0.03574591502547264,
-0.004721064120531082,
0.009687443263828754,
-0.0493033267557621,
0.024711741134524345,
-0.020686570554971695,
0.05126584693789482,
0.009221845306456089,
0.0063631730154156685,
0.029678119346499443,
-0.061519019305706024,
0.05635238066315651,
-0.07177218794822693,
0.015850359573960304,
-0.005031462758779526,
0.018113264814019203,
-0.05455006659030914,
-0.06456293165683746,
-0.010613632388412952,
-0.032181333750486374,
-0.06548411399126053,
0.04237442836165428,
0.005557138007134199,
-0.0038073903415352106,
-0.016831619665026665,
0.032862208783626556,
0.027675548568367958,
0.03009865991771221,
0.06336138397455215,
-0.055991917848587036,
-0.06732647866010666,
-0.03374334052205086,
0.007679864298552275,
0.08038324862718582,
0.004318046383559704,
0.03704758733510971,
0.022448834031820297,
0.017762815579771996,
0.019034449011087418,
-0.035685837268829346,
-0.011164340190589428,
-0.0416935533285141,
0.027855779975652695,
0.0049288310110569,
-0.05907588079571724,
-0.031139997765421867,
0.0006696101045235991,
0.059916961938142776,
-0.05394929647445679,
-0.03520521894097328,
-0.00321913487277925,
-0.009216838516294956,
0.02052636444568634,
0.05254749581217766,
0.009176786988973618,
-0.012836487963795662,
0.01379772275686264,
-0.016631362959742546,
0.015660114586353302,
-0.02347014658153057,
0.03560573235154152,
0.023830609396100044,
-0.029918428510427475,
-0.0001418227911926806,
0.03140033408999443,
0.043055303394794464,
-0.02202829346060753,
0.05242734029889107,
0.015419806353747845,
-0.015059342607855797,
0.03202113136649132,
0.023970790207386017,
-0.0040552085265517235,
0.030679406598210335,
-0.03083961270749569,
0.018724050372838974,
-0.01515947189182043,
-0.0033793405164033175,
0.02042623609304428,
-0.019565129652619362,
0.029497887939214706,
-0.060758039355278015,
0.03702756017446518,
0.04041190817952156,
0.01939491182565689,
-0.044256847351789474,
-0.0048111798241734505,
0.04613926261663437,
-0.021227264776825905,
0.02345012128353119,
-0.08070366084575653,
0.00030977287678979337,
0.042935147881507874,
0.001013176399283111,
0.005013940390199423,
-0.010924031026661396,
0.04874260723590851,
-0.05442991107702255,
0.0293376836925745,
0.0005701072514057159,
0.05755392462015152,
-0.05547124892473221,
-0.011414662003517151,
0.01755254529416561,
-0.022849349305033684,
-0.02300955541431904,
0.0060928259044885635,
0.0026734338607639074,
0.00002151200533262454,
0.03604630008339882,
0.04137314110994339,
-0.0416935533285141,
-0.03164064139127731,
0.018764100968837738,
0.0025470214895904064,
0.014748943969607353,
0.01942495070397854,
-0.038048870861530304,
0.0703703910112381,
0.005797446705400944,
-0.02737516164779663,
-0.025713026523590088,
0.053068164736032486,
-0.029477862641215324,
0.017081940546631813,
0.0434558168053627,
-0.027174904942512512,
-0.06448282301425934,
0.009522231295704842,
-0.0018911791266873479,
0.01755254529416561,
-0.06304097175598145,
-0.04453720524907112,
0.008325694128870964,
0.008085384964942932,
0.044897668063640594,
-0.03506503999233246,
0.016561271622776985,
0.04385633021593094,
-0.05711336061358452,
-0.04373617842793465,
0.07217270135879517,
0.042534634470939636,
-0.03440419211983681,
-0.0015857868129387498,
0.02431122586131096,
0.01763264834880829,
0.01146472617983818,
-0.002485692733898759,
-0.028316371142864227,
0.046219367533922195,
0.003421895205974579,
0.046860188245773315,
-0.045338235795497894,
0.021047033369541168,
-0.0210670605301857,
0.10629653185606003,
0.01123442966490984,
0.04782142490148544,
0.022128423675894737,
0.03041907213628292,
-0.0708109512925148,
-0.015099394135177135,
0.05058497563004494,
0.029137425124645233,
-0.013807735405862331,
-0.05026456341147423,
-0.02965809404850006,
-0.004938843660056591,
-0.035906121134757996,
-0.020496327430009842,
0.015800295397639275,
-0.01736230030655861,
-0.030499175190925598,
-0.005094042979180813,
0.004280498251318932,
-0.020386185497045517,
-0.004858740605413914,
-0.018643947318196297,
0.0019650240428745747,
-0.0009931506356224418,
-0.03997134044766426,
0.011855227872729301,
0.033943597227334976,
0.022669117897748947,
-0.04007146880030632,
-0.02705475129187107,
-0.0010538536589592695,
0.01809323951601982,
0.000303827750030905,
-0.026674261316657066,
0.0038174032233655453,
0.04690024256706238,
0.08362741768360138,
0.07245305925607681,
-0.015529947355389595,
-0.019675271585583687,
-0.03570586070418358,
0.057073306292295456,
0.06268051266670227,
0.010503491386771202,
0.010293221101164818,
-0.027715599164366722,
-0.0040351832285523415,
-0.08875399827957153,
-0.02715487964451313,
-0.05791438743472099,
0.028256293386220932,
0.03989123925566673,
0.006878835614770651,
0.0322614386677742,
-0.019334834069013596,
0.0025282474234700203,
-0.006583455950021744,
0.00711413798853755,
0.026013413444161415,
-0.04429689794778824,
0.026113541796803474,
-0.06167922541499138,
-0.0009950280655175447,
0.04758111387491226,
-0.0210670605301857,
-0.08122432976961136,
-0.0018448696937412024,
0.05463017150759697,
0.03668712452054024,
-0.0170118510723114,
-0.01016305387020111,
-0.055230941623449326,
0.025652950629591942,
-0.021988242864608765,
0.035906121134757996,
0.04557854309678078,
-0.03398365154862404,
-0.016260886564850807,
0.049263276159763336,
-0.045218080282211304,
0.07149183005094528,
-0.02377053163945675,
-0.0851493701338768,
0.04918317496776581,
-0.03907018527388573,
0.005512080155313015,
0.059676650911569595,
-0.011644957587122917,
0.011174352839589119,
0.04377622902393341,
0.00043524656211957335,
-0.0199356060475111,
-0.006443276070058346,
0.03548558056354523,
0.005597189534455538,
-0.02367040328681469,
0.006713623180985451,
-0.002534505445510149,
0.017592597752809525,
0.018153317272663116,
0.007584742270410061,
0.03126015141606331,
0.001479400205425918,
0.0006520875613205135,
-0.035805992782115936,
-0.015079368837177753,
0.019675271585583687,
-0.02064651995897293,
0.05046482011675835,
-0.06968951225280762,
-0.021747933700680733,
-0.04453720524907112,
-0.019685285165905952,
0.028616756200790405,
-0.04269484058022499,
-0.02270916849374771,
-0.0016120705986395478,
-0.02551276981830597,
-0.0014556196983903646,
-0.06272055953741074,
-0.027755651623010635,
0.012676281854510307,
0.008185514248907566,
-0.03019878827035427,
0.020015709102153778,
0.0038774805143475533,
0.0002709730470087379,
0.008405797183513641,
-0.01015304122120142,
-0.01432840432971716,
0.015239574946463108,
-0.01996564492583275,
-0.016200808808207512,
0.02401084080338478,
-0.010453427210450172,
-0.025132281705737114,
0.02357027493417263,
0.032321516424417496,
-0.06460297852754593,
-0.01969529688358307,
0.050224512815475464,
-0.012305806390941143,
-0.03063935413956642,
-0.007860096171498299,
0.021587727591395378,
0.010964082553982735,
0.0049438499845564365,
0.011304520070552826,
0.034384164959192276,
0.004678509198129177,
-0.055551353842020035,
-0.01983547769486904,
-0.025332538411021233,
-0.04011152312159538,
-0.028376448899507523,
0.013527375645935535,
0.07786000519990921,
0.08290649205446243,
-0.0043580979108810425,
0.07265332341194153,
-0.013667555525898933,
-0.06956935673952103,
-0.05983685702085495,
0.051426053047180176,
0.00213649426586926,
-0.012886552140116692,
0.005542118567973375,
0.017732776701450348,
-0.0013492329744622111,
0.01880415342748165,
-0.05322837084531784,
0.00962736550718546,
-0.04083244875073433,
-0.05214697867631912,
0.003496991703286767,
-0.0034919853787869215,
0.041853759437799454,
0.0036471846979111433,
-0.05551130324602127,
0.007810031529515982,
-0.01194534357637167,
-0.02162778005003929,
-0.06720632314682007,
-0.005807459354400635,
-0.028196217492222786,
-0.0024919507559388876,
-0.031240126118063927,
0.0197153240442276,
-0.0026484017726033926,
0.017402352765202522,
0.012285780161619186,
0.03884990140795708,
-0.018063200637698174,
-0.09716480225324631,
0.06468307971954346,
0.014068069867789745,
-0.015499908477067947,
-0.016461143270134926,
0.04409664124250412,
-0.0161307193338871,
-0.012315819039940834,
0.012886552140116692,
0.0177027378231287,
0.011875253170728683,
0.009026594460010529,
0.036987509578466415,
0.02563292346894741,
0.0036371718160808086,
0.0538291409611702,
-0.0430152527987957,
-0.01942495070397854,
0.010082950815558434,
-0.04193386062979698,
-0.05386919155716896,
-0.012716333381831646,
0.008045333437621593,
-0.00012961961328983307,
-0.003895002882927656,
-0.08378762006759644,
-0.030759509652853012,
-0.00047873990843072534,
-0.03160059079527855,
-0.045218080282211304,
0.0010219375835731626,
0.045778799802064896,
-0.057393718510866165,
-0.05230718478560448,
-0.07073085010051727,
0.05010435730218887,
-0.008841356262564659,
0.05499063432216644,
-0.008210546337068081,
-0.008450854569673538,
-0.06135881319642067,
0.009892706759274006,
0.062079738825559616,
0.05627227947115898,
-0.03051920048892498,
-0.016851644963026047,
-0.00014737679157406092,
-0.005877549294382334,
0.008961510844528675,
-0.005236726254224777,
-0.010403363034129143,
0.01569015346467495,
-0.06223994493484497,
-0.052627597004175186,
-0.017322249710559845,
0.06632519513368607,
-0.032641928642988205,
0.003549559274688363,
-0.03945067152380943,
0.0335831344127655,
-0.06304097175598145,
0.013056770898401737,
-0.0038149000611156225,
-0.00760476803407073,
-0.007399504538625479,
-0.012696308083832264,
-0.045218080282211304,
-0.01679156720638275,
0.03152048587799072,
-0.02226860262453556,
0.07109131664037704,
-0.013527375645935535,
0.055230941623449326,
-0.024691715836524963,
-0.025492744520306587,
0.004040189553052187,
0.0009918990544974804,
0.016701452434062958,
0.04541833698749542,
0.004375620279461145,
-0.015630075708031654,
0.002311719348654151,
0.03332279995083809,
-0.010413375683128834,
0.02941778488457203,
0.07954216748476028,
0.00909668393433094,
0.02268914319574833,
0.006738655269145966,
0.014088095165789127,
0.051866620779037476,
0.042094066739082336,
0.034684550017118454,
-0.018283484503626823,
0.0636417418718338,
0.03884990140795708,
-0.05442991107702255,
0.038269154727458954,
-0.0018348568119108677,
-0.023069631308317184,
0.035805992782115936,
-0.019575143232941628,
0.011554841883480549,
-0.005426970776170492,
-0.007014009170234203,
-0.014859085902571678,
0.01108423713594675,
-0.02781572751700878,
0.011324546299874783,
-0.003522023791447282,
-0.0008961510611698031,
0.026333823800086975,
-0.06264045834541321,
0.016421092674136162,
-0.03520521894097328,
0.007795012556016445,
-0.025793129578232765,
-0.0033593149855732918,
-0.0403117798268795,
-0.016090666875243187,
0.008430829271674156,
0.04109278321266174,
0.061398863792419434,
0.0036546941846609116,
0.015529947355389595,
-0.007679864298552275,
0.01809323951601982,
0.005462015513330698,
-0.003935054410248995,
-0.0028937167953699827,
0.015770256519317627,
-0.053708985447883606,
-0.03888995200395584,
-0.02627374790608883,
-0.056953154504299164,
0.026313798502087593,
0.017192082479596138,
-0.025332538411021233,
-0.005361887160688639,
-0.010633658617734909,
0.051546208560466766,
0.006618501152843237,
-0.014758957549929619,
0.014939188957214355,
-0.004853734280914068,
-0.016541246324777603,
0.05799449235200882,
0.044136691838502884,
-0.0017409862484782934,
0.017132004722952843,
0.019475014880299568,
-0.0694892555475235,
0.010403363034129143,
0.03624655678868294,
0.022128423675894737,
0.01053353026509285,
0.021147161722183228,
-0.004841218236833811,
0.07641815394163132,
-0.059916961938142776,
0.027715599164366722,
0.067166268825531,
-0.017222121357917786,
0.02064651995897293,
0.05246739089488983,
-0.03376336768269539,
-0.0035470561124384403,
-0.03310251981019974,
0.07605769485235214,
0.00561721483245492,
0.05607202276587486,
0.059876907616853714,
-0.04313540458679199,
-0.016541246324777603,
0.015630075708031654,
0.008380765095353127,
0.05507073551416397,
0.02108708582818508,
-0.02389068715274334,
-0.12720339000225067,
0.03073948435485363,
-0.06732647866010666,
-0.033823445439338684,
0.0061629158444702625,
-0.06932905316352844,
0.04649972543120384,
-0.04878265783190727,
-0.0043681105598807335,
-0.02941778488457203,
0.010143028572201729,
-0.026013413444161415,
-0.055431198328733444,
-0.01559002511203289,
0.00934199895709753,
-0.016200808808207512,
0.057393718510866165,
-0.04093257710337639,
-0.0367872528731823,
-0.04601911082863808,
-0.013547400943934917,
-0.03250174596905708,
0.005416957661509514,
-0.02683446742594242,
-0.023189786821603775,
0.038088925182819366,
-0.01672147773206234,
-0.07982252538204193,
0.058475106954574585,
0.012466011568903923,
0.01986551657319069,
-0.010238150134682655,
0.05571155995130539,
0.024411356076598167,
0.028957193717360497,
-0.0070490543730556965,
-0.036326661705970764,
0.01988554187119007,
-0.0018298503709957004,
0.004242949653416872,
0.04782142490148544,
0.045658648014068604,
0.015499908477067947,
0.00015347838052548468,
0.012626217678189278,
-0.008566002361476421,
-0.01966525986790657,
-0.003304244251921773,
0.02401084080338478,
0.08482895791530609,
0.047501012682914734,
-0.01736230030655861,
0.010353297926485538,
-0.006738655269145966,
0.03824912756681442,
-0.01969529688358307,
0.033503033220767975,
0.011755098588764668,
-0.012115562334656715,
0.016681427136063576,
0.011785137467086315,
-0.05158625915646553,
-0.022869374603033066,
-0.08851369470357895,
0.013877825811505318,
0.007294369395822287,
0.007094112224876881,
-0.05475032329559326,
0.015529947355389595,
-0.00740951718762517,
-0.03009865991771221,
0.0036997522693127394,
0.0376083068549633,
0.045137979090213776,
-0.012175639159977436,
-0.022849349305033684,
0.0327020026743412,
-0.01875408925116062,
0.048822712153196335
] |
729,634 | tinytuya.core | unpad | null | def unpad(s):
return s[: -ord(s[len(s) - 1 :])]
| (s) | [
-0.044903554022312164,
0.10505086183547974,
0.024538308382034302,
0.025090118870139122,
-0.03945442661643028,
-0.0202445350587368,
-0.0035156344529241323,
0.018813278526067734,
0.03890261799097061,
-0.031660109758377075,
-0.011820808984339237,
0.025090118870139122,
-0.007863295264542103,
0.05690542235970497,
0.018485641106963158,
0.010311952792108059,
0.014079781249165535,
0.04855929687619209,
0.031660109758377075,
-0.014778166078031063,
0.04097190499305725,
-0.035971127450466156,
0.03621254116296768,
0.009191088378429413,
-0.048110950738191605,
0.017882097512483597,
0.012088092043995857,
-0.03341900184750557,
-0.0372471883893013,
-0.025297047570347786,
0.06232006102800369,
0.0055051688104867935,
0.02236555516719818,
0.010320574976503849,
0.02822853997349739,
-0.016312887892127037,
0.04604166001081467,
-0.07794318348169327,
-0.004767984617501497,
-0.0049706026911735535,
-0.012915806844830513,
-0.04079946503043175,
0.038971591740846634,
-0.050249215215444565,
0.03300514444708824,
0.016200801357626915,
0.052973777055740356,
-0.01853737235069275,
-0.025331536307930946,
0.002098387572914362,
0.04400686174631119,
0.045834731310606,
0.03398805856704712,
0.016243912279605865,
0.08553057909011841,
-0.009803252294659615,
-0.0039057813119143248,
-0.020313512533903122,
0.009811874479055405,
-0.0064320373348891735,
-0.03033231571316719,
-0.0008260986069217324,
0.00881171878427267,
-0.03552278131246567,
0.03300514444708824,
0.018416663631796837,
0.03559175506234169,
-0.009501481428742409,
0.015657613053917885,
-0.03238435834646225,
-0.0280905868858099,
0.029349403455853462,
-0.0069622923620045185,
-0.03990277275443077,
0.014295332133769989,
-0.0148557648062706,
0.041178833693265915,
0.025176338851451874,
-0.033746641129255295,
-0.03183254972100258,
0.039592381566762924,
0.015321354381740093,
-0.018382176756858826,
0.06304430961608887,
-0.0160369835793972,
0.0077037871815264225,
-0.010199866257607937,
0.025883346796035767,
0.004175220150500536,
0.004431725479662418,
0.036936793476343155,
-0.061457857489585876,
0.0025693660136312246,
-0.0006477303104475141,
-0.05359456315636635,
0.013346908614039421,
0.010536125861108303,
0.038523249328136444,
-0.021658549085259438,
-0.046007171273231506,
-0.004265751224011183,
0.04093741625547409,
-0.0668724924325943,
0.009665300138294697,
-0.06594131886959076,
-0.010725810192525387,
-0.01602836139500141,
-0.015183402225375175,
-0.015597259625792503,
-0.013036515563726425,
0.03288443759083748,
-0.024831457063555717,
0.004270062316209078,
-0.05680195987224579,
0.0061345770955085754,
0.0057896957732737064,
0.025693660601973534,
-0.02765948511660099,
0.04197205975651741,
-0.008315951563417912,
0.009742897935211658,
-0.03938545286655426,
-0.023227758705615997,
-0.033177588135004044,
0.013165845535695553,
0.046490006148815155,
-0.017649304121732712,
0.06390651315450668,
0.019865166395902634,
-0.005358594004064798,
0.00006133095303084701,
0.03176357224583626,
-0.03224640712141991,
-0.0164767075330019,
-0.0009166299714706838,
-0.03134971484541893,
0.031229006126523018,
0.04638654366135597,
-0.03714372217655182,
0.008492703549563885,
0.007100244984030724,
0.05200810730457306,
0.06311328709125519,
0.0735287070274353,
0.01694229617714882,
0.017390642315149307,
-0.0005631265812553465,
0.030953101813793182,
0.035833172500133514,
0.04852480813860893,
-0.015795566141605377,
0.05373251438140869,
0.026176495477557182,
0.038971591740846634,
0.03412600979208946,
-0.03552278131246567,
-0.009363529272377491,
-0.047593627125024796,
0.053422123193740845,
-0.018226979300379753,
0.028073342517018318,
-0.02343468740582466,
-0.038523249328136444,
-0.09056584537029266,
-0.04924905672669411,
-0.052284013479948044,
0.03034956008195877,
-0.003979068715125322,
0.0030521999578922987,
0.04749016463756561,
-0.011105179786682129,
-0.030953101813793182,
0.025141850113868713,
-0.03600561246275902,
0.02555570937693119,
-0.03604010120034218,
-0.019313355907797813,
0.029849480837583542,
0.003970446530729532,
-0.0607336089015007,
0.03455711156129837,
0.018468396738171577,
-0.03921300917863846,
0.01064821146428585,
0.010001559741795063,
-0.0068846940994262695,
-0.0087858522310853,
0.057698652148246765,
-0.02764224074780941,
-0.10649936646223068,
-0.024038231000304222,
0.026142006739974022,
-0.0014776011230424047,
-0.04617961496114731,
0.0101222675293684,
0.00934628490358591,
0.03355695679783821,
0.03302238881587982,
-0.02714216336607933,
-0.06907973438501358,
-0.04504150524735451,
0.026348935440182686,
-0.024176184087991714,
-0.023124294355511665,
0.023658860474824905,
-0.04000623896718025,
-0.006419104058295488,
-0.025228071957826614,
-0.08035735785961151,
-0.04090292751789093,
0.06842446327209473,
0.0030845326837152243,
0.048731736838817596,
-0.07325279712677002,
-0.04997330904006958,
-0.04635205492377281,
0.012803720310330391,
0.038488760590553284,
0.07049375027418137,
0.012484705075621605,
-0.05938857048749924,
0.016131825745105743,
0.026176495477557182,
-0.03986828401684761,
-0.007001091726124287,
0.019520284608006477,
-0.0744943767786026,
0.026435155421495438,
0.03352246806025505,
0.002715940587222576,
0.05907817557454109,
-0.022503508254885674,
0.04717976972460747,
0.008410793729126453,
0.09366977959871292,
-0.043248120695352554,
-0.046490006148815155,
-0.10146409273147583,
0.009216954000294209,
-0.040178678929805756,
-0.0022697504609823227,
0.00675967475399375,
0.03297065943479538,
0.06342367827892303,
0.04459315910935402,
0.05807802081108093,
-0.012777854688465595,
0.03397081419825554,
-0.00533703900873661,
-0.008350440301001072,
-0.03355695679783821,
0.01960650458931923,
0.006125954911112785,
0.0383852943778038,
0.04786953330039978,
0.04921456798911095,
0.015088559128344059,
0.04079946503043175,
-0.000719939824193716,
0.049180082976818085,
0.0068243397399783134,
0.006341505795717239,
-0.045386385172605515,
-0.02555570937693119,
0.023727837949991226,
0.022451777011156082,
-0.012501949444413185,
-0.009932583197951317,
0.012760610319674015,
-0.025245314463973045,
0.08587545901536942,
-0.04797299578785896,
-0.001537955249659717,
-0.013545215129852295,
0.03145318105816841,
0.039040569216012955,
0.008005558513104916,
-0.0012491171946749091,
0.08877246081829071,
-0.05900920182466507,
0.03714372217655182,
0.0044920798391103745,
-0.014691946096718311,
0.038971591740846634,
-0.011863918974995613,
0.03714372217655182,
0.041247811168432236,
-0.10339543223381042,
0.022589728236198425,
-0.007139043882489204,
0.06649312376976013,
-0.02229657955467701,
-0.003060822142288089,
-0.008540124632418156,
-0.03631600737571716,
-0.020296268165111542,
-0.015019583515822887,
0.01591627486050129,
-0.009984315373003483,
-0.041109856218099594,
-0.0678381621837616,
0.0048369611613452435,
-0.027038699015975,
0.013838364742696285,
0.03704025596380234,
-0.02821129560470581,
-0.04683488979935646,
0.05645707994699478,
0.014398796483874321,
-0.016864698380231857,
-0.0699419379234314,
-0.004086844157427549,
-0.024590041488409042,
-0.015752455219626427,
-0.03253955766558647,
0.05087000131607056,
-0.025848858058452606,
0.004931803327053785,
0.03090137057006359,
0.032711997628211975,
0.04135127365589142,
-0.020037606358528137,
-0.08435797691345215,
-0.024365868419408798,
-0.04669693484902382,
0.012027737684547901,
-0.043799933046102524,
0.028918301686644554,
-0.00905313529074192,
0.013208956457674503,
-0.012027737684547901,
-0.02174476906657219,
0.005246507469564676,
-0.048593781888484955,
0.012958916835486889,
-0.008574612438678741,
-0.0064277262426912785,
-0.009406639263033867,
-0.06335470825433731,
0.018951229751110077,
0.05173220485448837,
0.011863918974995613,
0.026383424177765846,
0.00755290174856782,
0.028469955548644066,
0.04455867037177086,
-0.051214881241321564,
0.020865323022007942,
0.01245021726936102,
-0.028366491198539734,
0.03129798173904419,
0.012881319038569927,
0.011432817205786705,
-0.0521460622549057,
0.0553879477083683,
0.007100244984030724,
0.023038074374198914,
0.028400979936122894,
-0.008333195932209492,
-0.01067407801747322,
-0.0031211762689054012,
-0.029883969575166702,
-0.0055310348980128765,
-0.035971127450466156,
-0.00622510863468051,
0.0011531970230862498,
-0.03931647539138794,
-0.06901075690984726,
-0.025762638077139854,
0.05280133709311485,
-0.0239692535251379,
-0.061906203627586365,
0.013010649010539055,
-0.05469818413257599,
-0.034867506474256516,
0.046007171273231506,
-0.034281205385923386,
0.002001389628276229,
-0.014467773027718067,
-0.0291424747556448,
-0.03081514872610569,
-0.04135127365589142,
-0.05245645344257355,
0.019020207226276398,
0.026193739846348763,
0.012329508550465107,
-0.05814699828624725,
0.0016263311263173819,
0.026176495477557182,
0.01910642720758915,
-0.03731616213917732,
-0.02712491899728775,
0.06042321398854256,
0.05900920182466507,
0.031056566163897514,
0.0065053245052695274,
-0.04773157835006714,
0.008255597203969955,
0.02555570937693119,
0.0009705176926217973,
0.030090898275375366,
0.018416663631796837,
0.07890885323286057,
0.05169771611690521,
0.00009787355520529673,
0.042351432144641876,
-0.025624684989452362,
-0.057181328535079956,
-0.014735056087374687,
-0.0035371894482523203,
0.039592381566762924,
0.036936793476343155,
0.0029530466999858618,
-0.07187327742576599,
0.09642882645130157,
-0.06690698117017746,
0.026142006739974022,
0.0007447281968779862,
0.028538933023810387,
-0.018244223669171333,
0.0016748300986364484,
-0.06638966500759125,
-0.0060052466578781605,
-0.007406326942145824,
0.01642497442662716,
0.03414325416088104,
-0.03138420358300209,
0.03600561246275902,
-0.0659068301320076,
0.044489696621894836,
-0.0047076307237148285,
-0.0055827670730650425,
0.04514497146010399,
-0.03824734315276146,
0.0027806060388684273,
0.06287187337875366,
0.08663419634103775,
0.057112351059913635,
-0.010001559741795063,
0.053456611931324005,
0.02555570937693119,
-0.010036047548055649,
-0.0025650551542639732,
0.01599387265741825,
0.11091384291648865,
0.032177429646253586,
-0.02759050950407982,
0.05466369539499283,
-0.0062509747222065926,
0.02133091166615486,
0.039592381566762924,
-0.02919420786201954,
-0.05680195987224579,
0.023727837949991226,
-0.02184823341667652,
-0.035384826362133026,
0.0403166301548481,
-0.017347531393170357,
-0.047662604600191116,
0.04321363568305969,
-0.05673298239707947,
0.005944892298430204,
-0.03979931026697159,
0.004561055917292833,
-0.01763205975294113,
0.05266338214278221,
-0.02398649789392948,
-0.03835080564022064,
-0.00006742699770256877,
0.03672986477613449,
-0.003142731264233589,
-0.038557734340429306,
0.02448657713830471,
0.014950606971979141,
0.0018957697320729494,
-0.026331691071391106,
0.0017103960271924734,
0.015459306538105011,
0.0060052466578781605,
0.01585591956973076,
-0.03310861065983772,
-0.020382488146424294,
-0.04742118716239929,
-0.014666079543530941,
0.0023171715438365936,
-0.0052077085711061954,
-0.024210670962929726,
-0.012363996356725693,
0.022779414430260658,
0.010355062782764435,
0.026693817228078842,
0.02340020053088665,
-0.027883658185601234,
0.03841978311538696,
0.031125541776418686,
-0.011829430237412453,
0.007824495434761047,
-0.002416325034573674,
0.003616943256929517,
-0.002267594914883375,
-0.01602836139500141,
0.019434064626693726,
-0.0061130221001803875,
-0.06214762106537819,
-0.017382020130753517,
0.013002026826143265,
-0.038523249328136444,
-0.005384460091590881,
0.02386578917503357,
-0.002237417735159397,
0.011950138956308365,
0.01658017188310623,
-0.017304422333836555,
-0.0060914671048521996,
0.0037419628351926804,
0.013131357729434967,
-0.010173999704420567,
-0.07918476313352585,
0.016071470454335213,
-0.02864239737391472,
-0.00246805720962584,
0.03231538459658623,
0.0009845284512266517,
-0.013769388198852539,
-0.00009780619438970461,
-0.023503664880990982,
-0.003806628054007888,
-0.007238197606056929,
-0.010812030173838139,
0.01067407801747322,
-0.04214450344443321,
0.06949359178543091,
-0.0320739671587944,
0.013691789470613003,
-0.01862359419465065,
0.06131990626454353,
-0.04393788427114487,
-0.04300670698285103,
0.008578923530876637,
0.0009392627980560064,
0.0026836080942302942,
-0.02183098904788494,
0.03388459235429764,
-0.0330396331846714,
-0.018226979300379753,
0.05362905189394951,
-0.03138420358300209,
-0.011510415002703667,
-0.02126193605363369,
0.04345504939556122,
-0.14498811960220337,
-0.001975523540750146,
0.020434221252799034,
0.0059535144828259945,
0.025883346796035767,
-0.07366665452718735,
-0.02279665693640709,
0.004201086238026619,
-0.03607458993792534,
0.04152371361851692,
-0.004763673525303602,
-0.010173999704420567,
0.05849187821149826,
-0.03033231571316719,
-0.05531897023320198,
0.0064018601551651955,
-0.040178678929805756,
-0.05318070575594902,
-0.04731772094964981,
-0.000529716198798269,
0.014105647802352905,
-0.04724874719977379,
0.005229263566434383,
0.006289773620665073,
-0.046972841024398804,
-0.002222329145297408,
-0.032643020153045654,
-0.01865808106958866,
0.06842446327209473,
0.03386734798550606,
0.04683488979935646,
-0.0070959338918328285,
0.0017502729315310717,
-0.04417930170893669,
-0.021020518615841866,
-0.030021922662854195,
0.029332159087061882,
0.008294397033751011,
-0.02452106401324272,
-0.062458012253046036,
0.06259596347808838,
0.0019841454923152924,
0.055525898933410645,
0.01251919288188219,
-0.05835392698645592,
-0.0015724434051662683,
-0.005643121432512999,
0.008057290688157082,
0.022469021379947662,
0.01914091594517231,
0.04824890196323395,
0.042765289545059204,
0.011139667592942715,
0.024296890944242477,
0.10532676428556442,
0.012570925056934357,
-0.017295800149440765,
0.07304587215185165,
-0.05483613535761833,
-0.03357420116662979,
0.03310861065983772,
0.01865808106958866,
-0.02505563013255596,
-0.04459315910935402,
0.0047291857190430164,
-0.008104711771011353,
-0.004119176883250475,
-0.1062234565615654,
-0.007108867168426514,
-0.03516065329313278,
-0.013002026826143265,
0.07952964305877686,
-0.03388459235429764,
0.009553213603794575,
0.01644221879541874,
0.038074903190135956,
-0.018916742876172066,
0.08077121526002884,
0.03128073737025261,
-0.050766535103321075,
-0.026314446702599525,
0.013088247738778591,
0.026659328490495682,
0.018847765401005745,
-0.0498698428273201,
0.026262715458869934,
-0.05152527615427971,
-0.0026577420067042112,
-0.018209734931588173,
0.0552155040204525,
0.06942461431026459,
-0.04569678008556366,
0.008708254434168339,
-0.002278372412547469,
-0.02765948511660099,
-0.022969098761677742,
0.010872384533286095,
0.010493014939129353,
-0.11319006234407425,
-0.045558828860521317,
-0.041178833693265915,
-0.0056603653356432915,
0.023020830005407333,
-0.05780211463570595,
0.024538308382034302,
-0.015140291303396225,
0.05473267287015915,
-0.0062207975424826145,
-0.010001559741795063,
-0.06501013785600662,
0.009251442737877369,
-0.03398805856704712,
0.003914403263479471,
0.04945598542690277,
0.0330396331846714,
-0.0023926144931465387,
-0.026814525946974754,
0.017416508868336678,
0.01412289123982191,
-0.041730646044015884,
0.014381553046405315,
-0.020830834284424782,
-0.029487356543540955,
-0.019847922027111053,
0.01905469410121441,
-0.06983847171068192,
0.0800124779343605,
0.0006757518858648837,
0.057181328535079956,
0.0020283334888517857,
-0.003024178324267268,
-0.01512304786592722,
0.02496941015124321,
-0.08084019273519516,
0.0062509747222065926,
0.018865009769797325,
0.002838804619386792,
-0.009432504884898663,
0.0037376517429947853,
-0.009173844009637833,
0.014114269986748695,
-0.04693835228681564,
0.00371394120156765,
0.0016468084650114179,
-0.0011531970230862498,
0.02279665693640709,
-0.0009403405711054802,
0.006125954911112785,
0.029452867805957794,
0.010536125861108303,
0.031625621020793915,
-0.012855452485382557,
-0.02172752469778061,
0.029504600912332535,
0.020485952496528625,
0.033677663654088974,
0.024693505838513374,
-0.017882097512483597,
-0.04352402687072754,
-0.013191712088882923,
0.017330288887023926,
0.04345504939556122,
-0.031591132283210754,
-0.05062858387827873,
0.09904992580413818,
0.013079625554382801,
-0.056077707558870316,
-0.04717976972460747,
-0.032108455896377563,
0.07290791720151901,
-0.02174476906657219,
-0.022555241361260414,
-0.025400511920452118,
-0.004216174595057964,
-0.0416271798312664,
-0.03928198665380478,
-0.05649156495928764,
0.04617961496114731,
-0.029487356543540955,
0.038523249328136444,
-0.0160369835793972,
-0.009898095391690731,
0.01245883945375681,
0.027762949466705322,
-0.007445126306265593,
0.057664163410663605,
0.021020518615841866,
0.010605101473629475,
-0.0012113957200199366,
0.008121956139802933,
-0.016304265707731247,
0.025331536307930946,
-0.0021436531096696854,
0.06352714449167252,
-0.0012771388282999396,
0.019572017714381218,
-0.0014086248120293021,
0.02393476665019989,
-0.03607458993792534,
-0.0015077781863510609,
0.02122744731605053,
0.047041818499565125,
-0.05735376849770546,
-0.015019583515822887,
-0.03083239309489727,
-0.009958448819816113,
-0.026400668546557426,
0.004179530777037144,
-0.0071519771590828896,
-0.022917365655303,
-0.05373251438140869,
-0.06507911533117294,
-0.02769397385418415,
0.02662484161555767,
0.012467460706830025,
0.012346752919256687,
0.03500545769929886,
0.007725342642515898
] |
729,635 | avltree._avl_tree | AvlTree | Lightweight, pure-python AVL tree.
This class implements the MutableMapping interface and can be used in almost every
way that a built-in dictionary can.
# Sorting
The AVL tree data structure makes it possible to easily iterate on keys in
sort-order, and any method which returns an iterable of keys, values, or items will
return them in sort-order by key.
# Keys
Anything used as a key in an AvlTree must implement `__eq__`, `__hash__`, and
`__lt__`. That is to say they must be immutable and have a less-than comparison.
It's recommended to only insert keys which are all the same type, ensuring that they
have a well-ordering. However, keys of different types can be inserted as long as
their `__eq__` and `__lt__` methods behave.
This class provides no protections against poorly behaved keys and can fail in an
undefined manner if keys are not implemented properly.
# Values
Values can be any Python object.
# Recursion
This class does not use recursive techniques. This ensures that this package can be
used on platforms with low recursion limits, even in scenarios with very large and
very deep trees.
# Time Complexities
Time complexities for specific methods can be found in their docstrings.
| class AvlTree(MutableMapping[_K, _V]):
"""Lightweight, pure-python AVL tree.
This class implements the MutableMapping interface and can be used in almost every
way that a built-in dictionary can.
# Sorting
The AVL tree data structure makes it possible to easily iterate on keys in
sort-order, and any method which returns an iterable of keys, values, or items will
return them in sort-order by key.
# Keys
Anything used as a key in an AvlTree must implement `__eq__`, `__hash__`, and
`__lt__`. That is to say they must be immutable and have a less-than comparison.
It's recommended to only insert keys which are all the same type, ensuring that they
have a well-ordering. However, keys of different types can be inserted as long as
their `__eq__` and `__lt__` methods behave.
This class provides no protections against poorly behaved keys and can fail in an
undefined manner if keys are not implemented properly.
# Values
Values can be any Python object.
# Recursion
This class does not use recursive techniques. This ensures that this package can be
used on platforms with low recursion limits, even in scenarios with very large and
very deep trees.
# Time Complexities
Time complexities for specific methods can be found in their docstrings.
"""
def __init__(self, mapping: Mapping[_K, _V] | None = None) -> None:
"""Constructor.
Inserting the elements of a passed-in mapping has an amortized and worst-case
time complexity of O[n*log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree
AvlTree({0: 'a', 1: 'b'})
```
Args:
mapping (dict[_K, _V] | None): An optional initial mapping of items to add
to this tree. Defaults to None.
"""
self.__nodes: Final[dict[_K, AvlTreeNode[_K, _V]]] = {}
self.__root_key: _K | None = None
if mapping is not None:
for key, value in mapping.items():
self[key] = value
def __setitem__(self, __k: _K, __v: _V) -> None:
"""Maps the given key to the given value in this tree.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree[0] = 'foo'
>>> avl_tree[2] = 'c'
>>> avl_tree
AvlTree({0: 'foo', 1: 'b', 2: 'c'})
```
Args:
__k (_K): The key to map.
__v (_V): The value to associate with the key.
"""
if __k in self.__nodes:
self.__nodes[__k].value = __v
return
if self.__root_key is None:
self.__root_key = __k
self.__nodes[self.__root_key] = AvlTreeNode[_K, _V](value=__v)
return
stack: Final[list[_K]] = [self.__root_key]
current_node: AvlTreeNode[_K, _V] = self.__nodes[stack[-1]]
while True:
if __k < stack[-1] and current_node.lesser_child_key is None:
current_node.lesser_child_key = __k
self.__nodes[__k] = AvlTreeNode[_K, _V](value=__v)
break
if stack[-1] < __k and current_node.greater_child_key is None:
current_node.greater_child_key = __k
self.__nodes[__k] = AvlTreeNode[_K, _V](value=__v)
break
if __k < stack[-1] and current_node.lesser_child_key is not None:
stack.append(current_node.lesser_child_key)
current_node = self.__nodes[stack[-1]]
elif current_node.greater_child_key is not None:
stack.append(current_node.greater_child_key)
current_node = self.__nodes[stack[-1]]
self.__enforce_avl(stack=stack)
def __delitem__(self, __k: _K) -> None: # noqa: C901, PLR0912
"""Deletes the given key from this tree.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> del avl_tree[0]
>>> avl_tree
AvlTree({1: 'b'})
```
Args:
__k (_K): The key to delete from this tree.
Raises:
KeyError: If the given key is not present in this tree.
"""
if self.__root_key is None:
message: str = f"Key not present in AvlTree: {__k!r}"
raise KeyError(message)
# Find the node to discard and its parent node
parent: AvlTreeNode[_K, _V] | None = None
node_key: _K = self.__root_key
stack: Final[list[_K]] = [node_key]
node: AvlTreeNode[_K, _V] = self.__nodes[node_key]
while node_key != __k:
parent = node
node_key = self.__get_closer_key(key=__k, current_key=node_key)
stack.append(node_key)
node = self.__nodes[node_key]
# Find the key of the node with which to replace the existing node
replacement_key: _K | None = None
if node.lesser_child_key is not None and node.greater_child_key is None:
replacement_key = node.lesser_child_key
elif node.lesser_child_key is None and node.greater_child_key is not None:
replacement_key = node.greater_child_key
elif node.lesser_child_key is not None and node.greater_child_key is not None:
# Find the next highest node than the one to remove
successor_parent: AvlTreeNode[_K, _V] | None = None
replacement_key = node.greater_child_key
successor: AvlTreeNode[_K, _V] = self.__nodes[replacement_key]
while successor.lesser_child_key is not None:
successor_parent = successor
stack.append(replacement_key)
replacement_key = successor.lesser_child_key
successor = self.__nodes[successor.lesser_child_key]
# Swap the successor node with the node to replace
if successor_parent is not None and successor.greater_child_key is None:
successor_parent.lesser_child_key = None
successor.greater_child_key = node.greater_child_key
elif successor_parent is not None:
successor_parent.lesser_child_key = successor.greater_child_key
successor.greater_child_key = node.greater_child_key
successor.lesser_child_key = node.lesser_child_key
# Swap the node to its replacement
if parent is None:
self.__root_key = replacement_key
elif parent.lesser_child_key == node_key:
parent.lesser_child_key = replacement_key
else:
parent.greater_child_key = replacement_key
del self.__nodes[node_key]
if replacement_key is None:
stack.remove(node_key)
else:
stack[stack.index(node_key)] = replacement_key
self.__enforce_avl(stack=stack)
def __getitem__(self, __k: _K) -> _V:
"""Gets the value associated with the given key.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree[0]
'a'
>>> avl_tree[2]
KeyError: 'Key not present in AvlTree: 2'
```
Args:
__k (_K): The key.
Returns:
_V: The value associated with the given key.
Raises:
KeyError: If the given key is not present in this tree.
"""
if self.__root_key is None:
message: str = f"Key not present in AvlTree: {__k!r}"
raise KeyError(message)
current_key: _K = self.__root_key
current_node: AvlTreeNode[_K, _V] = self.__nodes[current_key]
while current_key != __k:
curre | (mapping: 'Mapping[_K, _V] | None' = None) -> 'None' | [
0.053404469043016434,
-0.03112207166850567,
-0.0495571494102478,
0.02448086440563202,
0.023656439036130905,
0.01165073923766613,
-0.05367927625775337,
-0.0006501656025648117,
0.031442683190107346,
-0.06577085703611374,
-0.0508853904902935,
0.007608762942254543,
0.048137303441762924,
0.04593883454799652,
-0.02651902846992016,
0.01511447224766016,
0.018664082512259483,
0.05491591617465019,
0.013477071188390255,
0.024847276508808136,
-0.025396892800927162,
-0.03650373965501785,
0.002174136694520712,
0.023232776671648026,
-0.019534310325980186,
-0.021183161064982414,
0.0077118161134421825,
0.027503758668899536,
-0.0028096316382288933,
-0.0020510454196482897,
0.01390073448419571,
-0.01949995942413807,
-0.02239689975976944,
-0.03758007287979126,
-0.02287781424820423,
-0.04046556353569031,
-0.01746179535984993,
0.004717547446489334,
-0.005078233778476715,
-0.025946510955691338,
0.03583962097764015,
-0.004537204280495644,
-0.047999899834394455,
-0.06435100734233856,
0.024847276508808136,
0.050564780831336975,
0.01888163946568966,
0.02277476154267788,
0.04433578625321388,
-0.047862496227025986,
0.005521934945136309,
-0.015125922858715057,
0.0026865401305258274,
0.026587730273604393,
-0.034900691360235214,
0.05028996989130974,
-0.005204187706112862,
-0.01874423585832119,
0.04431288316845894,
-0.04992356151342392,
0.03611442819237709,
0.020381636917591095,
-0.03492359071969986,
-0.00847326498478651,
-0.027641164138913155,
-0.00830723438411951,
-0.048045702278614044,
-0.01323661394417286,
-0.04124419018626213,
-0.006927466485649347,
-0.04497700557112694,
-0.029221313074231148,
0.04497700557112694,
0.00839883740991354,
0.004173655528575182,
0.0378548838198185,
-0.014702259562909603,
0.019419806078076363,
-0.0023358729667961597,
-0.004920791368931532,
0.03487778827548027,
-0.06467162072658539,
0.02548849582672119,
-0.024618269875645638,
0.000007642890523129608,
0.022087739780545235,
0.023908346891403198,
-0.0006193927838467062,
0.054412100464105606,
-0.008267158642411232,
-0.0332060381770134,
0.0006222553784027696,
-0.0043110596016049385,
0.025351092219352722,
-0.00941791944205761,
0.03549610823392868,
0.06352658569812775,
-0.12632034718990326,
0.0027767117135226727,
-0.012022875249385834,
0.06810672581195831,
0.05702278017997742,
-0.024183155968785286,
-0.02354193478822708,
-0.02672513574361801,
-0.005627851001918316,
-0.03155718743801117,
0.046099141240119934,
0.011061045341193676,
0.030641157180070877,
-0.10067154467105865,
0.003363542491570115,
0.0053931185975670815,
0.03501519560813904,
-0.06984718143939972,
0.036984656006097794,
-0.06719069927930832,
-0.026312923058867455,
-0.03416786715388298,
0.019660264253616333,
0.019282402470707893,
-0.015583937056362629,
-0.02215644158422947,
0.0003961108159273863,
0.011604937724769115,
-0.04419838264584541,
0.053221262991428375,
0.0015944623155519366,
-0.04550372064113617,
0.0070419698022305965,
0.03297702968120575,
0.005063920747488737,
-0.034373972564935684,
0.04593883454799652,
0.056060951203107834,
-0.028076278045773506,
-0.00476907379925251,
-0.01034539844840765,
-0.03643503785133362,
0.02638162486255169,
0.02805337682366371,
-0.0641678050160408,
0.061190713196992874,
-0.01666027121245861,
-0.0013468483230099082,
-0.08372501283884048,
0.009125934913754463,
-0.01584729552268982,
-0.010070589371025562,
-0.015103021636605263,
-0.013854932971298695,
-0.013980886898934841,
0.016786225140094757,
0.05775560438632965,
0.01288165245205164,
0.02429765835404396,
-0.0028153567109256983,
-0.08372501283884048,
-0.010133566334843636,
-0.027893071994185448,
-0.028351085260510445,
-0.016694622114300728,
0.030778560787439346,
-0.057526595890522,
-0.015343479812145233,
-0.0222480446100235,
0.025740403681993484,
-0.0063377730548381805,
-0.04641975089907646,
0.00671563483774662,
-0.0053387293592095375,
-0.04554952308535576,
-0.10671733319759369,
0.03810679167509079,
-0.013969436287879944,
-0.014370199292898178,
-0.03899991884827614,
0.02220224402844906,
0.05656476691365242,
-0.0015515234554186463,
-0.021045757457613945,
0.04589303582906723,
-0.032725121825933456,
-0.016866376623511314,
0.0003032555687241256,
0.0029999937396496534,
-0.00727097736671567,
0.021893084049224854,
0.036320533603429794,
0.01822897046804428,
-0.06027468293905258,
-0.07905326783657074,
0.038312897086143494,
0.008341585285961628,
0.019625913351774216,
0.026839638128876686,
-0.0096812779083848,
0.018354924395680428,
-0.0011450357269495726,
0.08995401114225388,
-0.006812962703406811,
-0.024091552942991257,
0.05033577233552933,
0.005773842800408602,
-0.011690814979374409,
0.00009571783448336646,
0.0035181224811822176,
-0.003970411606132984,
0.03345794603228569,
0.018148817121982574,
-0.047862496227025986,
-0.022786211222410202,
0.0147137101739645,
0.009217537939548492,
-0.019912172108888626,
-0.08024410903453827,
-0.06522123515605927,
0.037694577127695084,
0.020908353850245476,
-0.015446532517671585,
0.023095371201634407,
0.020175529643893242,
-0.013728979043662548,
-0.03975564241409302,
0.06215254217386246,
-0.03758007287979126,
0.016740422695875168,
0.009423644281923771,
0.033664051443338394,
0.018629731610417366,
0.049373943358659744,
-0.03987014666199684,
0.02416025474667549,
-0.06618306785821915,
0.034900691360235214,
-0.053083859384059906,
0.004013350233435631,
-0.043442659080028534,
-0.017954161390662193,
-0.007608762942254543,
-0.01593889854848385,
-0.006624031811952591,
0.015961797907948494,
0.011049595661461353,
-0.050839588046073914,
-0.007534335367381573,
-0.0000643635357846506,
0.06577085703611374,
-0.0209198035299778,
-0.0013024782529100776,
-0.025557199493050575,
-0.06980138272047043,
0.003392168553546071,
0.05148080736398697,
0.01892744190990925,
-0.020805299282073975,
-0.0252365879714489,
0.04493120312690735,
-0.0009052939130924642,
-0.0025119222700595856,
0.0017490421887487173,
-0.01984347030520439,
-0.025259489193558693,
0.05926705151796341,
-0.002032438525930047,
0.020725147798657417,
0.0730532854795456,
0.00022149285359773785,
0.020576292648911476,
0.0028096316382288933,
0.07841204851865768,
0.00007746882329229265,
0.0018392137717455626,
0.021457970142364502,
-0.01153623592108488,
0.06348078697919846,
-0.007122122682631016,
0.00820990651845932,
0.0005285055958665907,
-0.009257614612579346,
-0.03297702968120575,
-0.043442659080028534,
-0.05523652583360672,
0.025396892800927162,
-0.016339659690856934,
-0.009211813099682331,
-0.06380139291286469,
-0.08477845042943954,
0.007986624725162983,
0.001454911078326404,
0.04836631193757057,
-0.029541922733187675,
-0.03996174782514572,
0.04974035546183586,
0.04527471587061882,
0.03009154088795185,
-0.06224414333701134,
0.013774780556559563,
0.009475170634686947,
0.019797667860984802,
0.03529000282287598,
-0.037282366305589676,
0.061282314360141754,
-0.01509157195687294,
0.059954073280096054,
0.03531290218234062,
-0.0236793402582407,
0.04147319495677948,
-0.007259526755660772,
0.09499216824769974,
-0.05890063941478729,
0.01053432933986187,
0.039984650909900665,
0.03261061757802963,
0.007957998663187027,
-0.06467162072658539,
0.016591567546129227,
-0.039320528507232666,
0.06389299780130386,
0.029587725177407265,
-0.03703045845031738,
0.016454163938760757,
-0.08743493258953094,
-0.010946542024612427,
-0.0021827244199812412,
-0.049190737307071686,
0.0849616527557373,
0.011353029869496822,
0.04722127690911293,
0.0037614426109939814,
-0.0162709578871727,
-0.0019479921320453286,
-0.02438926137983799,
0.004562967456877232,
-0.04905333369970322,
0.012824400328099728,
-0.002254289109259844,
0.028557192534208298,
0.007316778413951397,
0.007225175853818655,
0.027503758668899536,
0.04110678285360336,
-0.03455717861652374,
-0.010431275703012943,
0.04053426533937454,
-0.01679767481982708,
0.04554952308535576,
-0.024686971679329872,
-0.02619841881096363,
0.019133547320961952,
0.004167930223047733,
-0.004142167046666145,
-0.04419838264584541,
-0.0177022535353899,
0.0009689865401014686,
-0.0358625203371048,
0.05496171861886978,
-0.05496171861886978,
-0.019614463672041893,
0.004142167046666145,
0.0495571494102478,
-0.0236793402582407,
-0.03508389741182327,
-0.003812969196587801,
0.0034780462738126516,
-0.036664046347141266,
-0.0579846128821373,
-0.052076227962970734,
0.02780146896839142,
-0.05734339356422424,
0.05560293793678284,
-0.075709767639637,
0.025832006707787514,
0.02908390946686268,
-0.00458014290779829,
0.03948083519935608,
0.004520028829574585,
0.0504731759428978,
-0.004895027726888657,
-0.008845400996506214,
0.04561822488903999,
0.025419794023036957,
0.027160247787833214,
0.029862532392144203,
-0.016351111233234406,
-0.01146180834621191,
0.06343498080968857,
0.0130534078925848,
0.03364115208387375,
0.03730526566505432,
-0.039457932114601135,
0.009910284541547298,
0.02519078738987446,
-0.029633525758981705,
-0.04417547956109047,
0.027732767164707184,
0.00447422731667757,
-0.02153812348842621,
-0.015080121345818043,
-0.03545030951499939,
0.047725092619657516,
0.0032662146259099245,
-0.0318777970969677,
-0.019854919984936714,
0.06806092709302902,
0.0053788055665791035,
0.0391831248998642,
0.024320559576153755,
-0.01679767481982708,
0.043534260243177414,
0.0038559080567210913,
0.01761065050959587,
-0.0040047625079751015,
-0.0005768117844127119,
0.04048846662044525,
-0.09609140455722809,
0.058396823704242706,
0.02177857980132103,
0.016866376623511314,
-0.018183168023824692,
0.0015271914890035987,
0.0028110628481954336,
-0.03288542851805687,
0.005702278111129999,
0.017862558364868164,
-0.0029799556359648705,
0.0006122363265603781,
0.004525754135102034,
-0.07396931201219559,
0.00906295794993639,
0.04438158497214317,
-0.052167829126119614,
0.03581671789288521,
-0.006835863459855318,
-0.03416786715388298,
0.048137303441762924,
0.0009145973017439246,
-0.031488485634326935,
0.024091552942991257,
0.040831975638866425,
-0.008101128041744232,
0.04014495387673378,
0.04978615418076515,
0.0166030190885067,
0.014003787189722061,
0.0420457124710083,
-0.0063377730548381805,
0.03758007287979126,
0.01174806710332632,
-0.011639288626611233,
0.015870196744799614,
0.012561042793095112,
-0.047862496227025986,
0.03776327893137932,
-0.06650368124246597,
-0.04428998380899429,
-0.09709903597831726,
0.009784330613911152,
-0.017450345680117607,
0.03916022181510925,
0.030480852350592613,
0.018435075879096985,
0.03980144485831261,
0.003280527424067259,
-0.02372514083981514,
0.06833573430776596,
0.06764871627092361,
-0.004167930223047733,
-0.03824419528245926,
-0.0663662701845169,
-0.006486627738922834,
-0.04699226841330528,
-0.04170220345258713,
-0.02116026170551777,
-0.02316407300531864,
-0.004348273389041424,
0.02263735793530941,
-0.06833573430776596,
-0.058534227311611176,
-0.01741599477827549,
0.017530497163534164,
-0.035427406430244446,
0.03815259039402008,
-0.017713703215122223,
0.003669839585199952,
-0.012492340058088303,
0.03192359581589699,
0.03306863456964493,
0.022190792486071587,
-0.0003365331795066595,
-0.09545018523931503,
-0.07007618993520737,
-0.002576330443844199,
0.058625832200050354,
-0.005665064323693514,
-0.02097705565392971,
-0.02899230644106865,
-0.007580136880278587,
0.004837776068598032,
-0.0462365448474884,
-0.023095371201634407,
-0.02215644158422947,
-0.02979383058845997,
0.009984712116420269,
0.045572422444820404,
0.029152611270546913,
-0.008444638922810555,
0.02828238345682621,
-0.0025734680239111185,
-0.017450345680117607,
0.016866376623511314,
-0.01931675337255001,
0.05551133304834366,
-0.021457970142364502,
0.02933581732213497,
0.03991594538092613,
-0.004414112772792578,
-0.014312947168946266,
-0.001800568774342537,
-0.050610579550266266,
-0.041541896760463715,
-0.055831942707300186,
0.05106859654188156,
-0.028648795560002327,
0.00006244023097679019,
0.03070985898375511,
0.005736629478633404,
0.014232794754207134,
0.0030601080507040024,
-0.02325567603111267,
-0.06746550649404526,
-0.033435042947530746,
0.014919816516339779,
0.018103016540408134,
-0.014507602900266647,
0.053221262991428375,
0.057068582624197006,
0.002338735619559884,
-0.044152580201625824,
0.025923609733581543,
0.015732791274785995,
0.023473232984542847,
-0.009240439161658287,
-0.010975168086588383,
0.011988524347543716,
0.009005706757307053,
-0.01694652996957302,
-0.008627844974398613,
-0.026679333299398422,
0.016866376623511314,
-0.029267113655805588,
0.016122104600071907,
0.09682422876358032,
0.02272896096110344,
0.004242357332259417,
-0.023862546309828758,
-0.01089501567184925,
-0.033664051443338394,
0.06201513856649399,
0.002224232070147991,
0.01845797710120678,
0.05248843878507614,
-0.00048950279597193,
-0.06027468293905258,
0.04451899230480194,
0.005796743556857109,
-0.04323654994368553,
0.01212592888623476,
0.09920589625835419,
0.06957237422466278,
0.012870201840996742,
-0.018858740106225014,
0.01931675337255001,
-0.07282427698373795,
-0.10461046546697617,
0.01343126967549324,
-0.07767922431230545,
0.03593122214078903,
-0.01390073448419571,
-0.04767929017543793,
-0.014083939604461193,
0.05413729324936867,
0.023748042061924934,
0.024984680116176605,
0.03190069645643234,
0.018767137080430984,
0.015160273760557175,
0.11129748076200485,
-0.018148817121982574,
0.008730897679924965,
-0.038793813437223434,
-0.004774799104779959,
0.004920791368931532,
-0.023335829377174377,
0.0147137101739645,
-0.0031345353927463293,
0.008083952590823174,
0.018343472853302956,
0.01746179535984993,
-0.06691589206457138,
0.025465596467256546,
-0.06883955001831055,
-0.012744247913360596,
0.02150377258658409,
-0.016293859109282494,
0.04385486990213394,
0.03238161280751228,
-0.03164878860116005,
0.00709349662065506,
-0.004597318824380636,
0.012893103063106537,
0.033961761742830276,
0.049282338470220566,
-0.02296941727399826,
0.006681283935904503,
-0.027824370190501213,
-0.011158373206853867,
0.012629744596779346,
-0.02434346079826355,
0.009148836135864258,
-0.04518311098217964,
-0.02912971004843712,
-0.024022851139307022,
-0.0020095377694815397,
-0.036183129996061325,
-0.02121751382946968,
0.05541973188519478,
-0.02296941727399826,
-0.0006827276083640754,
0.029015205800533295,
0.022477053105831146,
-0.010929366573691368,
-0.01879003643989563,
0.02805337682366371,
-0.033480845391750336,
-0.021698428317904472,
0.049190737307071686,
0.007660289295017719,
0.004167930223047733,
0.08775553852319717,
-0.031534284353256226,
-0.06146552041172981,
-0.03588541969656944,
0.036228932440280914,
0.051893021911382675,
-0.01670607179403305,
-0.00736830523237586,
0.026793837547302246,
-0.025992311537265778,
0.020633544772863388,
0.0006991874543018639,
-0.023885445669293404,
-0.03638923540711403,
-0.0276640634983778,
-0.030915966257452965,
0.05097699165344238,
0.03004573844373226,
-0.002358773723244667,
-0.019671713933348656,
0.043351054191589355,
-0.0320839025080204,
-0.028877802193164825,
-0.05523652583360672,
0.010528603568673134,
0.06535863876342773,
0.004874989856034517,
0.015503784641623497,
0.03462588042020798,
0.04076327383518219,
0.04522891342639923,
0.022706059738993645,
-0.08473264425992966,
-0.0008945591980591416,
-0.012641195207834244,
-0.015641188248991966,
-0.05436629801988602,
0.024755673483014107,
0.08120593428611755,
0.030618255957961082,
-0.03778618201613426,
0.028580093756318092,
0.08812195062637329,
-0.005521934945136309,
-0.021183161064982414,
-0.027160247787833214,
0.019854919984936714,
-0.022099191322922707,
0.020061027258634567,
0.034373972564935684,
-0.08271738141775131,
-0.0028296697419136763,
-0.04896172881126404,
0.01954576000571251,
-0.01921370066702366,
-0.06709909439086914,
-0.024320559576153755,
-0.01015646755695343,
-0.00024170990218408406,
0.021103009581565857,
-0.029862532392144203,
0.05024417117238045,
0.00832440983504057,
-0.021961785852909088,
-0.03160298615694046,
-0.02263735793530941,
0.021572474390268326,
-0.04243502765893936,
0.0409235805273056,
-0.007740441709756851,
0.0012022876180708408,
-0.004454188980162144,
0.05028996989130974,
-0.03132817894220352,
-0.05367927625775337,
0.019683165475726128,
0.042022813111543655,
0.0005539110861718655,
-0.041312891989946365,
-0.043923571705818176,
0.017381643876433372,
-0.018435075879096985,
-0.006887390278279781,
0.07149603217840195,
0.02690833993256092,
-0.011931273154914379,
0.01888163946568966,
0.04854951798915863,
-0.05491591617465019,
-0.05102279409766197,
0.018389275297522545,
0.04632814601063728,
0.07419832050800323,
-0.008192731067538261,
-0.04909913241863251,
0.004895027726888657,
-0.02496178075671196,
-0.05358767509460449,
-0.009641201235353947,
0.046625856310129166,
0.0699387863278389,
0.02153812348842621,
-0.006646932568401098,
-0.06664108484983444,
-0.003744266927242279,
0.05500751733779907,
-0.004975180607289076,
0.0033692677970975637,
0.07387770712375641,
-0.006549604702740908,
0.032244209200143814,
0.0365266427397728,
-0.0038988469168543816,
-0.008788149803876877,
0.04740448296070099,
0.047999899834394455,
0.018767137080430984,
0.012606844305992126,
0.004499990493059158,
-0.003792931092903018,
-0.051938824355602264,
0.001943698269315064,
-0.039366330951452255,
-0.04896172881126404,
0.0006004281458444893,
-0.01750759780406952,
-0.005321553908288479,
-0.012515241280198097,
0.04412967711687088
] |
729,636 | avltree._avl_tree | __calculate_balance | Calculates the balance factor of the given node.
Args:
node (AvlTreeNode[_K, _V]): The node.
Returns:
int: The balance factor of the given node.
| def __calculate_balance(self, node: AvlTreeNode[_K, _V]) -> int:
"""Calculates the balance factor of the given node.
Args:
node (AvlTreeNode[_K, _V]): The node.
Returns:
int: The balance factor of the given node.
"""
return (
-1
if node.greater_child_key is None
else self.__nodes[node.greater_child_key].height
) - (
-1
if node.lesser_child_key is None
else self.__nodes[node.lesser_child_key].height
)
| (self, node: avltree._avl_tree_node.AvlTreeNode[~_K, ~_V]) -> int | [
0.030179355293512344,
-0.04302047938108444,
0.045946307480335236,
0.06978636980056763,
0.006592139136046171,
-0.034568093717098236,
0.004619012586772442,
0.03404433652758598,
-0.0150806475430727,
-0.0481497086584568,
-0.010032693855464458,
0.024995947256684303,
0.053278934210538864,
-0.01285918615758419,
-0.02071557193994522,
0.033032938838005066,
0.0207697544246912,
0.045946307480335236,
0.020155690610408783,
0.04905274137854576,
-0.008118264377117157,
-0.018620535731315613,
-0.025501646101474762,
-0.008623963221907616,
-0.03635609894990921,
0.025104310363531113,
0.016967985779047012,
0.03288845345377922,
0.01616428606212139,
0.00038322454201988876,
-0.06953351944684982,
-0.00345635786652565,
-0.03561561182141304,
-0.021076785400509834,
-0.02719934657216072,
0.005151801742613316,
0.0447181835770607,
0.020047327503561974,
-0.07968360930681229,
-0.022539697587490082,
0.036554764956235886,
-0.03453197330236435,
-0.012949489988386631,
0.0034382971934974194,
-0.015658587217330933,
-0.01340100634843111,
0.022449394688010216,
-0.02212430350482464,
-0.05096716806292534,
-0.02748831734061241,
0.01655258983373642,
-0.030125172808766365,
0.033990152180194855,
0.04414024204015732,
0.027379954233765602,
0.012190942652523518,
0.027217406779527664,
-0.030865659937262535,
-0.04493490979075432,
0.061875805258750916,
0.026314374059438705,
0.01672416739165783,
-0.023912306874990463,
-0.03247305750846863,
-0.007093322463333607,
0.020336298272013664,
-0.02412903495132923,
-0.01979447901248932,
-0.009761784225702286,
0.006817897316068411,
0.01427694782614708,
0.011757486499845982,
0.03727719187736511,
0.061875805258750916,
0.011053120717406273,
-0.038541439920663834,
0.04666873440146446,
0.030341900885105133,
0.014466584660112858,
0.016083013266324997,
0.016940895467996597,
-0.0420813262462616,
0.05013637989759445,
-0.033827606588602066,
0.029312442988157272,
-0.01678737998008728,
-0.009346389211714268,
-0.02019181288778782,
-0.012227063998579979,
0.07144795358181,
-0.05042535066604614,
-0.02593510039150715,
-0.013446157798171043,
0.022377151995897293,
0.018638595938682556,
-0.003524085273966193,
0.009770814329385757,
-0.030179355293512344,
-0.012507003732025623,
0.03579621762037277,
0.01666095480322838,
0.10547422617673874,
-0.013075914233922958,
-0.011622032150626183,
-0.014647191390395164,
-0.06328453868627548,
-0.03821634501218796,
0.011477546766400337,
0.0012123214546591043,
-0.012949489988386631,
-0.05797470360994339,
-0.00566201563924551,
-0.010475180111825466,
0.009526995941996574,
-0.03846919536590576,
0.035127975046634674,
-0.020209873095154762,
-0.011929063126444817,
-0.044754303991794586,
0.03821634501218796,
0.06993085891008377,
-0.013924765400588512,
-0.005964531563222408,
-0.011793607845902443,
-0.02151023969054222,
-0.018981749191880226,
0.051978565752506256,
0.032003480941057205,
-0.05718003585934639,
0.0830790176987648,
0.048836011439561844,
-0.017311139032244682,
-0.041503384709358215,
0.004050102084875107,
-0.004740922246128321,
0.011631062254309654,
0.04666873440146446,
0.0455128513276577,
0.02627825364470482,
0.007897021248936653,
0.0767216607928276,
-0.052375901490449905,
0.05093104764819145,
-0.050894927233457565,
0.04114217311143875,
-0.0150806475430727,
-0.0521230511367321,
0.010953787714242935,
-0.019017869606614113,
0.013103005476295948,
-0.004386481828987598,
0.018765021115541458,
0.010285543277859688,
-0.03482094407081604,
0.03940834850072861,
0.04731891676783562,
-0.003571494482457638,
-0.023695580661296844,
-0.02918601967394352,
-0.05909446254372597,
-0.020733632147312164,
0.025519706308841705,
0.05273711308836937,
-0.03879428654909134,
0.03966119885444641,
0.008064082823693752,
-0.03720495104789734,
-0.01009590644389391,
-0.04728279635310173,
-0.043092723935842514,
0.005603318102657795,
-0.0783110037446022,
-0.11385437101125717,
0.03875816613435745,
-0.0020668162032961845,
-0.019198477268218994,
-0.00635735085234046,
-0.021130966022610664,
0.025682251900434494,
0.0023185366299003363,
0.033827606588602066,
0.019613871350884438,
0.0510755330324173,
-0.011116333305835724,
0.00226774113252759,
-0.054579298943281174,
0.015496042557060719,
0.029059594497084618,
-0.0018038079142570496,
0.012606337666511536,
-0.05631312355399132,
-0.019957024604082108,
0.003300584852695465,
-0.023803943768143654,
0.028987351804971695,
-0.010574514046311378,
0.014863919466733932,
0.04598242789506912,
0.017681380733847618,
-0.020498843863606453,
0.030576689168810844,
-0.03357475996017456,
0.011829729191958904,
0.0163358636200428,
0.004255542065948248,
0.0150806475430727,
-0.050208620727062225,
0.005824561230838299,
-0.030125172808766365,
-0.03738555684685707,
-0.041395023465156555,
0.023298244923353195,
-0.0011660410091280937,
0.007924112491309643,
-0.03375536575913429,
-0.06769133359193802,
-0.004406800027936697,
0.0022620970848947763,
-0.00635735085234046,
0.052086930721998215,
0.0318770557641983,
0.0031132055446505547,
0.010457118973135948,
-0.03886653110384941,
0.07787754386663437,
-0.044971030205488205,
-0.010457118973135948,
0.00870523601770401,
0.008149870671331882,
0.0008646538481116295,
-0.020173752680420876,
0.02810237929224968,
-0.019433265551924706,
-0.0008403848623856902,
0.031840935349464417,
-0.004002692643553019,
-0.017049258574843407,
-0.04027526080608368,
-0.0584804005920887,
-0.014701373875141144,
-0.03397209197282791,
-0.02093230001628399,
0.02452637068927288,
0.029167957603931427,
-0.017031198367476463,
-0.026531102135777473,
0.026422739028930664,
0.03702434152364731,
-0.03966119885444641,
0.051003292202949524,
-0.0717008039355278,
-0.08120070397853851,
-0.001713504665531218,
0.00298678083345294,
-0.010574514046311378,
-0.04439309239387512,
-0.005246620159596205,
0.07556578516960144,
-0.032003480941057205,
0.04858316108584404,
0.05255650728940964,
-0.042984358966350555,
-0.026043465360999107,
-0.03628385812044144,
-0.003081599250435829,
0.05284547805786133,
0.0489443764090538,
0.00022505270317196846,
-0.0033254181034862995,
0.008940024301409721,
0.08372920006513596,
-0.06686054915189743,
0.026928437873721123,
-0.003871752880513668,
-0.021817272529006004,
-0.04999189451336861,
0.01837671734392643,
-0.0043661636300385,
-0.009581177495419979,
-0.001424534129910171,
-0.03238275647163391,
-0.04164787009358406,
-0.05808306857943535,
0.05335117504000664,
-0.07498784363269806,
-0.04746340215206146,
-0.019072052091360092,
-0.07607147842645645,
-0.02969171665608883,
0.046740975230932236,
-0.021474119275808334,
-0.011504637077450752,
-0.022557757794857025,
0.0724954679608345,
0.023695580661296844,
-0.003427009331062436,
0.02405679225921631,
-0.040022410452365875,
0.005874228198081255,
0.05038922652602196,
-0.029547231271862984,
-0.009987542405724525,
0.003650509985163808,
-0.047138310968875885,
0.001492261653766036,
0.01718471385538578,
0.01860247552394867,
0.03209378570318222,
0.030125172808766365,
0.05002801492810249,
-0.04204520583152771,
0.0007771725649945438,
0.08907515555620193,
0.030630871653556824,
0.00007908591942396015,
-0.053387295454740524,
0.014845858328044415,
-0.008271779865026474,
0.039805684238672256,
0.014872949570417404,
-0.024941764771938324,
0.04749952256679535,
-0.028662260621786118,
0.08011706918478012,
-0.04320108890533447,
0.0016931864665821195,
0.018638595938682556,
0.029511110857129097,
0.06162295490503311,
0.033141303807497025,
-0.05866101011633873,
0.015803072601556778,
0.004619012586772442,
0.0024427035823464394,
-0.10793047398328781,
0.02855389565229416,
0.01860247552394867,
0.020805874839425087,
-0.037638407200574875,
0.03328578919172287,
0.03698822110891342,
0.014719434082508087,
0.01774459332227707,
0.024038732051849365,
0.05223141610622406,
-0.001050904393196106,
0.007531293202191591,
0.01200130581855774,
0.007337141316384077,
0.07231486588716507,
-0.04414024204015732,
-0.027434134855866432,
-0.036952100694179535,
0.0030048415064811707,
-0.026314374059438705,
-0.04305660352110863,
0.037638407200574875,
-0.08351247012615204,
0.008691689930856228,
0.013292642310261726,
-0.019884781911969185,
-0.008691689930856228,
-0.01055645290762186,
0.05905834212899208,
-0.0058968039229512215,
-0.009364449419081211,
-0.0300348699092865,
-0.00494861975312233,
0.058227553963661194,
-0.03185899555683136,
0.023189881816506386,
-0.04302047938108444,
0.005106650292873383,
-0.005589772947132587,
-0.007174595259130001,
0.03247305750846863,
-0.00702559482306242,
0.0358504019677639,
0.060503195971250534,
0.03529052063822746,
-0.001701087923720479,
-0.017193743959069252,
-0.011486576870083809,
0.017609138041734695,
-0.04374290630221367,
-0.0035173126962035894,
0.005056983325630426,
-0.0389026515185833,
0.027632802724838257,
-0.01701313816010952,
-0.031028205528855324,
0.05439869314432144,
-0.02616988867521286,
-0.03449585288763046,
-0.08279004693031311,
0.019541628658771515,
0.10995326936244965,
-0.06779970228672028,
0.026296313852071762,
-0.04009465500712395,
0.003289296757429838,
0.0016604515258222818,
-0.03037802129983902,
-0.0268561951816082,
0.006542472168803215,
0.012136760167777538,
-0.009834026917815208,
0.053567904978990555,
0.009039358235895634,
-0.022774485871195793,
-0.01308494433760643,
-0.027235468849539757,
0.011739426292479038,
0.04262314736843109,
-0.00796474888920784,
-0.0727844387292862,
0.04768012836575508,
0.04818582907319069,
0.01599271036684513,
-0.0817786455154419,
0.023514972999691963,
-0.043381694704294205,
-0.0033841151744127274,
-0.042406417429447174,
0.04320108890533447,
-0.03727719187736511,
0.03742167726159096,
-0.003772419411689043,
-0.050208620727062225,
0.016353923827409744,
0.0332135446369648,
-0.029944567009806633,
-0.01075511984527111,
-0.06592138856649399,
0.03552531078457832,
0.03886653110384941,
0.004034298937767744,
-0.010881545022130013,
0.03727719187736511,
0.04659648984670639,
0.03659088909626007,
0.033249665051698685,
0.038541439920663834,
-0.019722236320376396,
-0.00048622669419273734,
-0.011188575997948647,
0.01107118185609579,
-0.06743848323822021,
0.019595811143517494,
-0.07657717913389206,
-0.018457990139722824,
-0.003316387766972184,
-0.0214379969984293,
0.011576879769563675,
-0.08748581260442734,
-0.019812539219856262,
-0.0738319605588913,
-0.02145605906844139,
0.03222021088004112,
0.02976395934820175,
-0.0017507547745481133,
0.030648931860923767,
0.005133741069585085,
0.007987325079739094,
-0.01707634888589382,
-0.04294823855161667,
0.05656597390770912,
-0.024905644357204437,
0.03738555684685707,
-0.016651924699544907,
-0.006786291021853685,
-0.03077535703778267,
-0.04341781511902809,
-0.04276763275265694,
0.028481652960181236,
0.020498843863606453,
0.015902407467365265,
-0.074626624584198,
-0.029312442988157272,
0.005467863287776709,
-0.016751257702708244,
0.027109043672680855,
-0.0029642051085829735,
-0.020787814632058144,
-0.029113776981830597,
-0.011170514859259129,
-0.10641337931156158,
0.05537397041916847,
0.02889704890549183,
-0.05779409781098366,
-0.04547673091292381,
-0.02111290581524372,
-0.007305535022169352,
0.05808306857943535,
-0.04330945014953613,
-0.018927566707134247,
0.02781340852379799,
-0.010430028662085533,
0.01819610968232155,
-0.021492179483175278,
-0.015514102764427662,
0.04222581163048744,
-0.003388630459085107,
-0.010944756679236889,
-0.06628260761499405,
0.0038378892932087183,
-0.04005853459239006,
0.005752318538725376,
0.027235468849539757,
0.021203208714723587,
0.02775922790169716,
0.027849530801177025,
0.011269848793745041,
0.03687985986471176,
-0.031100448220968246,
0.02895122952759266,
-0.03727719187736511,
0.028319107368588448,
0.04450145363807678,
-0.024652794003486633,
-0.006109016481786966,
-0.032798148691654205,
0.0603225901722908,
-0.014385311864316463,
0.016263620927929878,
0.051400624215602875,
-0.0439235121011734,
-0.02532103843986988,
-0.016263620927929878,
0.011585910804569721,
-0.05335117504000664,
-0.02458055131137371,
0.0355975516140461,
0.013816401362419128,
-0.07607147842645645,
0.019306840375065804,
0.021419936791062355,
0.00752226309850812,
-0.10178985446691513,
0.04096156731247902,
0.031154630705714226,
-0.07137571275234222,
0.05678270012140274,
0.01638101413846016,
-0.012786944396793842,
0.05114777758717537,
-0.020516904070973396,
-0.004641588311642408,
-0.01986672170460224,
0.0163358636200428,
0.03659088909626007,
0.014891010709106922,
0.021636664867401123,
-0.010700938291847706,
0.07520456612110138,
0.013924765400588512,
-0.04692158102989197,
-0.015414769761264324,
0.05400136113166809,
-0.010457118973135948,
-0.03276202827692032,
-0.050605956465005875,
-0.00944572314620018,
-0.022955093532800674,
0.016760287806391716,
-0.05244814231991768,
0.009996572509407997,
0.01331070251762867,
0.08972533792257309,
0.018584413453936577,
0.030468326061964035,
0.02201593853533268,
0.054073601961135864,
-0.01436725165694952,
-0.05602415278553963,
-0.02929438278079033,
-0.04955843836069107,
-0.0383608303964138,
-0.03453197330236435,
-0.02635049633681774,
-0.04135889932513237,
-0.033935971558094025,
-0.008380143903195858,
0.0407448373734951,
-0.010141057893633842,
0.03868592530488968,
-0.007499686907976866,
0.020950360223650932,
0.010854453779757023,
0.03583234176039696,
-0.08120070397853851,
-0.06808867305517197,
0.010673847049474716,
-0.0011558819096535444,
-0.017166653648018837,
-0.01499034371227026,
-0.006054834462702274,
0.021817272529006004,
0.0016491635469719768,
-0.01769944280385971,
0.04370678588747978,
0.0032689785584807396,
0.04255090281367302,
0.045440610498189926,
0.008646538481116295,
0.04106992855668068,
-0.023514972999691963,
-0.017509805038571358,
-0.028933169320225716,
0.004138147458434105,
0.0061135319992899895,
0.00935541931539774,
0.0568910650908947,
0.015920467674732208,
0.021492179483175278,
-0.0068901400081813335,
-0.021149028092622757,
-0.020101509988307953,
-0.021600544452667236,
0.08502956479787827,
-0.05114777758717537,
0.030793417245149612,
0.027036800980567932,
0.029456928372383118,
-0.025176553055644035,
-0.010457118973135948,
0.026422739028930664,
-0.08806375414133072,
-0.013364885002374649,
-0.028824806213378906,
-0.01854829303920269,
-0.0012078062864020467,
-0.002458506729453802,
-0.014638161286711693,
-0.0381079837679863,
0.028698381036520004,
0.059708528220653534,
0.005458833184093237,
0.019035929813981056,
0.000008867182259564288,
0.017708472907543182,
0.032798148691654205,
-0.013969916850328445,
-0.005522045306861401,
0.04106992855668068,
-0.025628069415688515,
-0.03904713690280914,
0.03332190960645676,
-0.007224262226372957,
0.01734725944697857,
-0.026242131367325783,
0.011865850538015366,
-0.027289649471640587,
0.013103005476295948,
0.022684182971715927,
-0.011278878897428513,
0.020733632147312164,
0.03702434152364731,
-0.012479912489652634,
-0.010863483883440495,
-0.042587026953697205,
-0.027452196925878525,
-0.0355975516140461,
0.028915109112858772,
0.031244933605194092,
-0.0028784170281141996,
-0.006109016481786966,
-0.0014583979500457644,
-0.013753188773989677,
-0.0415395088493824,
0.04984740912914276,
0.00964439008384943,
-0.018638595938682556,
-0.014132462441921234,
-0.02281060814857483,
-0.04811358451843262,
0.010168149136006832,
0.030305780470371246,
0.032527241855859756,
0.0007715286337770522,
0.009788875468075275,
0.05696330592036247,
-0.04186460003256798,
-0.02344273030757904,
0.09369868040084839,
0.04323720932006836,
-0.05190632492303848,
0.04796909913420677,
0.00185234600212425,
-0.0046280426904559135,
-0.006867564283311367,
-0.0680164247751236,
0.02781340852379799,
0.03326772525906563,
0.015468951314687729,
-0.0030296749901026487,
-0.03568785637617111,
0.07896118611097336,
0.0214379969984293,
-0.016028830781579018,
0.001438079634681344,
-0.02924020029604435,
-0.004481300245970488,
0.046452004462480545,
-0.021094845607876778,
-0.047644007951021194,
-0.02775922790169716,
-0.008312416262924671,
-0.002781340852379799,
-0.01764526031911373,
-0.008402720093727112,
0.005937440320849419,
-0.023641398176550865,
-0.02252163738012314,
-0.02048078365623951,
0.10836393386125565,
-0.030540568754076958,
-0.017166653648018837,
-0.048510920256376266,
-0.020914237946271896,
-0.09427662193775177,
-0.032400816679000854,
0.11392661184072495,
0.038649801164865494,
0.0011649122461676598,
-0.021257391199469566,
0.07520456612110138,
-0.0793946385383606,
-0.04132277891039848,
0.002168407430872321,
0.023478852584958076,
-0.02230490930378437,
0.02900541201233864,
-0.03548918664455414,
0.061586834490299225,
0.03659088909626007,
-0.00004024845111416653,
-0.005598803050816059,
0.021979818120598793,
0.05331505462527275,
0.037746768444776535,
0.017663320526480675,
-0.03966119885444641,
0.003706949530169368,
0.029836202040314674,
0.029962627217173576,
-0.04410412162542343,
0.09369868040084839,
0.019812539219856262,
-0.04435696825385094,
0.02315375953912735,
0.009734692983329296,
0.04262314736843109,
0.056927185505628586,
0.029782021418213844,
0.007752536330372095,
0.03014323301613331,
-0.041683994233608246,
0.000166073368745856,
-0.019668053835630417,
0.025790615007281303,
0.021997878327965736,
-0.025050129741430283,
0.008064082823693752,
0.037530042231082916,
-0.0013850264949724078,
0.021636664867401123,
0.0350557304918766
] |
729,637 | avltree._avl_tree | __enforce_avl | Enforces the AVL property on this tree.
Args:
stack (list[_K]): The stack to traverse in reverse order.
| def __enforce_avl(self, stack: list[_K]) -> None:
"""Enforces the AVL property on this tree.
Args:
stack (list[_K]): The stack to traverse in reverse order.
"""
while len(stack) > 0:
key: _K = stack.pop(-1)
node: AvlTreeNode[_K, _V] = self.__nodes[key]
balance: int = self.__calculate_balance(node=node)
if -1 <= balance <= 1:
self.__update_height(node=node)
continue
if balance == -2: # noqa: PLR2004
lesser_child_key: _K = cast(_K, node.lesser_child_key)
if self.__calculate_balance(node=self.__nodes[lesser_child_key]) == 1:
node.lesser_child_key = self.__rotate(
key=lesser_child_key,
direction="left",
)
replacement_key: _K = self.__rotate(key=key, direction="right")
else:
greater_child_key: _K = cast(_K, node.greater_child_key)
if self.__calculate_balance(node=self.__nodes[greater_child_key]) == -1:
node.greater_child_key = self.__rotate(
key=greater_child_key,
direction="right",
)
replacement_key = self.__rotate(key=key, direction="left")
parent_node: AvlTreeNode[_K, _V] | None = (
None if len(stack) == 0 else self.__nodes[stack[-1]]
)
if parent_node is None:
self.__root_key = replacement_key
elif parent_node.lesser_child_key == key:
parent_node.lesser_child_key = replacement_key
else:
parent_node.greater_child_key = replacement_key
| (self, stack: list[~_K]) -> NoneType | [
0.02208845131099224,
0.02593611739575863,
-0.06145577132701874,
0.06220392882823944,
0.03744348883628845,
-0.024404175579547882,
-0.0262389425188303,
-0.03658844903111458,
0.008750767447054386,
-0.02536609210073948,
-0.007521652150899172,
0.005143580958247185,
0.04481818154454231,
-0.024778254330158234,
-0.043785009533166885,
0.026684274896979332,
0.01601412706077099,
0.01916707493364811,
0.0593181774020195,
0.0161566324532032,
0.0010153562761843204,
-0.03193918615579605,
-0.00944993831217289,
0.01313728466629982,
-0.021269040182232857,
-0.0042996774427592754,
-0.0017935733776539564,
0.021910319104790688,
0.01142721064388752,
0.02174999937415123,
-0.03377395495772362,
0.007347972597926855,
-0.016343671828508377,
-0.013261977583169937,
-0.012442567385733128,
-0.04581572115421295,
0.00733906589448452,
-0.022711915895342827,
-0.08308107405900955,
-0.034397419542074203,
0.021126534789800644,
-0.00863052811473608,
-0.0012135287979617715,
-0.031618550419807434,
0.027200859040021896,
0.018882062286138535,
0.026719899848103523,
0.00387883884832263,
0.020093364641070366,
-0.0351812019944191,
0.03655282407999039,
0.03569778800010681,
0.035947173833847046,
0.006319256499409676,
-0.03608967736363411,
0.05215724557638168,
0.007655251305550337,
0.009298525750637054,
0.03961670398712158,
-0.0726425051689148,
0.026898033916950226,
-0.01702948287129402,
0.001671107136644423,
-0.00531280692666769,
-0.01511455699801445,
0.0032331079710274935,
-0.0638783723115921,
-0.014544532634317875,
-0.01829422451555729,
-0.027058351784944534,
-0.07189434766769409,
-0.0033466676250100136,
0.010198095813393593,
0.035875920206308365,
-0.00824308954179287,
-0.009325245395302773,
-0.028697174042463303,
0.02677334100008011,
-0.017982492223381996,
0.005833845119923353,
0.02590049058198929,
-0.05418795719742775,
0.08607370406389236,
0.004123771097511053,
0.02137592062354088,
0.016129912808537483,
0.01847235858440399,
0.0097883902490139,
0.07745208591222763,
0.003466907190158963,
0.0007492705481126904,
0.027129605412483215,
-0.0011233491823077202,
0.02688021957874298,
0.03398771211504936,
0.03623218461871147,
0.010474201291799545,
-0.08977886289358139,
-0.0285190399736166,
-0.009423218667507172,
0.004350890405476093,
0.045459456741809845,
0.0018247464904561639,
-0.017483722418546677,
-0.03348894044756889,
-0.026826780289411545,
-0.03826289623975754,
0.011632063426077366,
0.00985073670744896,
0.022141890600323677,
-0.029819408431649208,
-0.05529237911105156,
0.03144041448831558,
0.01897113025188446,
-0.0604582279920578,
0.03201043978333473,
-0.03582248091697693,
-0.010117935948073864,
-0.004439956974238157,
0.007860103622078896,
0.06505405157804489,
-0.029195943847298622,
0.0021854653023183346,
-0.013814188539981842,
-0.022605035454034805,
-0.027842136099934578,
0.047775182873010635,
0.005847204942256212,
-0.07331940531730652,
0.022836608812212944,
0.030033167451620102,
0.02634582109749317,
-0.05201473832130432,
0.032687343657016754,
0.015007677488029003,
-0.05155159533023834,
0.051159702241420746,
0.015328316017985344,
-0.024208229035139084,
-0.027236485853791237,
0.026737714186310768,
-0.027735257521271706,
0.0790909081697464,
-0.03883292153477669,
0.022711915895342827,
-0.00048401986714452505,
-0.010848280042409897,
-0.0101713752374053,
0.010438574478030205,
0.023745084181427956,
0.020752456039190292,
-0.03694471716880798,
-0.003262054407969117,
-0.0007821137551218271,
0.05497174337506294,
0.015346129424870014,
-0.03836977854371071,
-0.06637223064899445,
-0.01682463102042675,
-0.04346437007188797,
-0.09405405074357986,
0.018988942727446556,
-0.022711915895342827,
-0.06679975241422653,
0.010438574478030205,
-0.05016215890645981,
0.007677518296986818,
0.01106203906238079,
-0.05262039229273796,
0.03901105374097824,
0.012825552374124527,
-0.08286731690168381,
-0.10132186114788055,
0.019024569541215897,
-0.016984950751066208,
-0.03295454382896423,
-0.025455158203840256,
0.04007985070347786,
0.014286240562796593,
0.016815723851323128,
-0.004097051452845335,
0.019826166331768036,
0.03046068735420704,
-0.05151596665382385,
0.013386670500040054,
0.013110564090311527,
-0.008692874573171139,
0.026684274896979332,
-0.013627149164676666,
0.02148279920220375,
-0.07303439825773239,
-0.07014864683151245,
0.031226657330989838,
-0.03555528074502945,
0.03152948245406151,
0.016806816682219505,
0.011596436612308025,
0.06861670315265656,
-0.0020240324083715677,
-0.0009207232506014407,
0.02878624014556408,
-0.003898878814652562,
0.042644962668418884,
-0.031814493238925934,
0.0043553439900279045,
0.014072480611503124,
-0.055007368326187134,
-0.029409704729914665,
0.014998771250247955,
-0.001520807622000575,
-0.05497174337506294,
0.014847357757389545,
-0.005620085634291172,
-0.017341215163469315,
-0.006875921040773392,
-0.02627456933259964,
-0.06277395039796829,
0.015942873433232307,
0.03509213775396347,
0.008060503751039505,
0.03596498444676399,
-0.012406940571963787,
-0.07160933315753937,
-0.03265171870589256,
0.0650184229016304,
-0.015363942831754684,
0.009360872209072113,
0.0188286229968071,
0.02137592062354088,
0.06818918883800507,
0.029231570661067963,
-0.026933658868074417,
0.008848740719258785,
-0.0711105614900589,
0.02182125300168991,
0.006706695072352886,
0.016797911375761032,
-0.02117997407913208,
-0.015265969559550285,
0.0046937959268689156,
0.011160011403262615,
-0.007673064712435007,
-0.03201043978333473,
0.040934886783361435,
-0.04396314173936844,
-0.028999999165534973,
-0.011703316122293472,
0.030621005222201347,
0.00021473337255883962,
0.031244469806551933,
-0.0840073674917221,
-0.06765478849411011,
-0.019594592973589897,
0.02403009682893753,
-0.00041415845043957233,
-0.04396314173936844,
-0.00651965569704771,
0.01467813178896904,
0.025348279625177383,
0.006007524207234383,
0.028162775561213493,
-0.05026904121041298,
-0.015221436507999897,
0.012754298746585846,
-0.027859950438141823,
0.05365356057882309,
0.07631203532218933,
-0.03053193911910057,
0.013110564090311527,
0.01473157200962305,
0.008425675332546234,
-0.03550184145569801,
0.027966829016804695,
0.031244469806551933,
0.021500613540410995,
0.05575552582740784,
0.02369164489209652,
0.015346129424870014,
-0.006871467921882868,
0.009877456352114677,
0.005210380535572767,
-0.04161179065704346,
-0.03265171870589256,
0.05547051504254341,
-0.03623218461871147,
-0.02449324168264866,
-0.07046928256750107,
-0.1373046636581421,
-0.017670761793851852,
0.0007180973188951612,
0.0790909081697464,
0.0019438727758824825,
0.012032861821353436,
0.011364864185452461,
0.05418795719742775,
-0.0059852576814591885,
0.02228439785540104,
-0.006060963962227106,
0.0380135104060173,
0.034397419542074203,
0.021767811849713326,
-0.015346129424870014,
0.09148894250392914,
-0.04303685203194618,
0.0669422596693039,
0.01060780044645071,
-0.03193918615579605,
0.05215724557638168,
0.006871467921882868,
0.04567321762442589,
-0.07916215807199478,
0.05653930827975273,
0.033595822751522064,
0.03619655966758728,
0.014891890808939934,
-0.02201719768345356,
0.036374691873788834,
-0.03461117669939995,
0.028127148747444153,
0.008839833550155163,
-0.035608720034360886,
0.007125306874513626,
-0.03826289623975754,
-0.00016059773042798042,
0.00011682997865136713,
-0.019078008830547333,
0.03669533133506775,
-0.007904637604951859,
0.0384054034948349,
-0.003689572913572192,
-0.00866170134395361,
0.0009207232506014407,
-0.023976657539606094,
0.016984950751066208,
-0.0566461905837059,
0.04513881728053093,
0.014419839717447758,
0.059531938284635544,
0.0011923755519092083,
0.009984335862100124,
0.016263512894511223,
0.04403439536690712,
0.022409090772271156,
-0.004907554946839809,
0.07192996889352798,
-0.004019118379801512,
0.0195767804980278,
0.012540539726614952,
-0.03958107903599739,
0.07214373350143433,
-0.029285011813044548,
-0.022747542709112167,
-0.02372727170586586,
0.03095945715904236,
-0.008256449364125729,
-0.04503193870186806,
0.04453316703438759,
-0.03826289623975754,
0.01591615378856659,
0.008314342238008976,
0.011186731979250908,
-0.016112100332975388,
-0.049378376454114914,
0.030585380271077156,
0.024582307785749435,
-0.009717137552797794,
-0.04349999874830246,
-0.036374691873788834,
0.023264126852154732,
-0.019523341208696365,
0.010296068154275417,
-0.08493365347385406,
0.014927517622709274,
0.01913144811987877,
-0.010251535102725029,
0.0669422596693039,
-0.006639895495027304,
0.04353562369942665,
0.04724078252911568,
0.002389204455539584,
0.023584766313433647,
0.0570380799472332,
0.031582921743392944,
0.027770882472395897,
0.002972588874399662,
0.0052415537647902966,
0.003010442014783621,
-0.012923525646328926,
0.04057862237095833,
0.028732798993587494,
0.012406940571963787,
-0.0040903715416789055,
0.001623234013095498,
-0.06152702495455742,
-0.04738328978419304,
0.05440171808004379,
-0.000632927636615932,
0.0036650795955210924,
0.016129912808537483,
-0.012496006675064564,
-0.00006018935891916044,
-0.00015781441470608115,
-0.05030466616153717,
-0.04164741933345795,
0.013288697227835655,
0.014197173528373241,
0.03056756593286991,
0.06170515716075897,
-0.022765355184674263,
0.06138451769948006,
0.02365601807832718,
-0.003950092010200024,
-0.007619624957442284,
-0.006283630151301622,
0.01511455699801445,
-0.07994594424962997,
0.09875675290822983,
0.021874692291021347,
0.02144717425107956,
-0.018507983535528183,
0.04196805879473686,
-0.003925598692148924,
-0.02882186509668827,
-0.0008110603084787726,
0.011302517727017403,
-0.012549446895718575,
-0.01970147341489792,
0.021322481334209442,
-0.07235749065876007,
-0.03315049037337303,
0.06345085799694061,
0.02577579766511917,
0.03258046507835388,
-0.028340907767415047,
-0.026826780289411545,
0.04125552624464035,
-0.012941338121891022,
-0.00023894828336779028,
-0.006368243135511875,
0.01819625310599804,
0.027966829016804695,
0.02125122770667076,
0.02403009682893753,
0.016575245186686516,
0.032224200665950775,
0.0005636229179799557,
-0.012255528010427952,
0.018650490790605545,
-0.0142595199868083,
-0.0380135104060173,
-0.026987100020051003,
0.0229969285428524,
-0.03072788566350937,
0.05148034170269966,
-0.07702456414699554,
-0.016699938103556633,
-0.054437343031167984,
0.003620546543970704,
-0.0268089659512043,
0.025562038645148277,
-0.0044154636561870575,
-0.0046804361045360565,
0.00698725413531065,
0.01946990005671978,
0.004631449468433857,
0.03708722069859505,
0.0336492620408535,
-0.014117013663053513,
-0.0395454540848732,
-0.07054053992033005,
0.026328008621931076,
-0.08194103091955185,
-0.024813881143927574,
0.009271805174648762,
0.0012669686693698168,
-0.012816645205020905,
0.05978132411837578,
-0.06491154432296753,
-0.05201473832130432,
-0.004417690448462963,
0.02490294724702835,
0.017946867272257805,
-0.016103193163871765,
0.034700244665145874,
-0.0017000536900013685,
-0.030104421079158783,
-0.037051595747470856,
0.033595822751522064,
0.0050233411602675915,
-0.02362039126455784,
-0.098115473985672,
-0.04389188811182976,
-0.004938728176057339,
0.11044225841760635,
0.0008516968227922916,
-0.037514738738536835,
-0.019594592973589897,
-0.02110872231423855,
0.004742782562971115,
-0.0277530699968338,
0.003996851854026318,
-0.024012284353375435,
-0.019149262458086014,
-0.01661977730691433,
0.011952701956033707,
0.08129975199699402,
0.003437960520386696,
0.014633598737418652,
0.026060810312628746,
-0.010144655592739582,
0.015105650760233402,
0.009476657956838608,
0.030407246202230453,
0.01843673177063465,
0.007036240305751562,
0.06277395039796829,
0.016976043581962585,
0.000002535433168304735,
0.05265601724386215,
-0.021001841872930527,
-0.029748156666755676,
-0.05479360744357109,
0.01916707493364811,
-0.023264126852154732,
0.013502456247806549,
0.01112438552081585,
0.006056510843336582,
-0.009708230383694172,
0.014072480611503124,
-0.029374077916145325,
-0.02969471551477909,
0.004992167931050062,
0.030888205394148827,
-0.007931357249617577,
-0.05041154474020004,
0.062417685985565186,
-0.00651965569704771,
0.011070945300161839,
-0.07980343699455261,
-0.022106263786554337,
0.0179646797478199,
-0.01661977730691433,
0.0026764434296637774,
0.03347112983465195,
-0.00634152302518487,
0.04645700007677078,
-0.04916461557149887,
-0.03940294682979584,
-0.05304791033267975,
-0.00045618662261404097,
-0.03783537819981575,
0.043785009533166885,
0.06498280167579651,
-0.023139433935284615,
0.04275184124708176,
-0.031618550419807434,
-0.02490294724702835,
-0.027574937790632248,
0.06637223064899445,
0.01266523264348507,
-0.007347972597926855,
0.0034201473463326693,
-0.023584766313433647,
-0.06886608898639679,
0.005642352160066366,
-0.04503193870186806,
-0.027592750266194344,
0.0277530699968338,
0.08856756240129471,
0.07723832875490189,
0.018650490790605545,
-0.04556633532047272,
0.013288697227835655,
-0.0638783723115921,
-0.05411670356988907,
0.011355957947671413,
-0.07310564815998077,
0.03046068735420704,
-0.03288329020142555,
-0.031957000494003296,
0.01553316880017519,
-0.012674139812588692,
0.022106263786554337,
0.0005505412700586021,
-0.0195767804980278,
0.018543610349297523,
0.022480342537164688,
0.09562161564826965,
-0.07089680433273315,
0.04798894003033638,
-0.08151350915431976,
-0.020788082852959633,
0.011694409884512424,
-0.02862592041492462,
0.003217521356418729,
-0.032990168780088425,
0.043713755905628204,
0.012994778342545033,
-0.003319947747513652,
-0.044925060123205185,
0.06590908765792847,
-0.0010142428800463676,
0.0022567182313650846,
0.023317566141486168,
-0.021874692291021347,
0.024136977270245552,
0.023638205602765083,
-0.030852578580379486,
-0.012620699591934681,
0.001623234013095498,
0.006163390353322029,
0.0783071219921112,
0.01984397880733013,
-0.014508905820548534,
0.04749016836285591,
0.009173832833766937,
-0.06149139627814293,
0.03833414986729622,
0.0004534033068921417,
0.05593365803360939,
-0.0028412160463631153,
-0.0051124077290296555,
-0.004121544770896435,
-0.01632585935294628,
-0.04118427261710167,
-0.020200245082378387,
0.04396314173936844,
-0.057893116027116776,
-0.004983261227607727,
0.014544532634317875,
0.07303439825773239,
-0.02235564962029457,
-0.005072327796369791,
-0.018882062286138535,
-0.021536240354180336,
-0.044996313750743866,
0.05044717341661453,
-0.0015308276051655412,
0.02346007339656353,
0.026096435263752937,
-0.047703929245471954,
-0.06950736790895462,
-0.030086608603596687,
0.0342370979487896,
0.06487591564655304,
0.013235257007181644,
-0.03421928733587265,
0.02319287322461605,
-0.021126534789800644,
0.017403561621904373,
-0.0026875766925513744,
-0.023531325161457062,
-0.03514557704329491,
-0.002203278476372361,
-0.05187223479151726,
0.06751228123903275,
0.07064741849899292,
0.003727426053956151,
-0.044960685074329376,
-0.012113021686673164,
-0.053938571363687515,
-0.02707616612315178,
-0.05946068465709686,
0.06551719456911087,
0.09911301732063293,
0.017973586916923523,
0.019363021478056908,
0.034842751920223236,
0.024885134771466255,
0.021126534789800644,
0.02832309529185295,
-0.030745698139071465,
0.014499999582767487,
0.030068794265389442,
-0.0010426327353343368,
-0.04389188811182976,
-0.019683660939335823,
0.03220638632774353,
0.03432616591453552,
-0.028376534581184387,
-0.007646345067769289,
0.06291645765304565,
-0.017385749146342278,
-0.060778867453336716,
0.02607862278819084,
0.02369164489209652,
0.010483107529580593,
0.03193918615579605,
0.04389188811182976,
-0.05351105332374573,
-0.009939802810549736,
-0.07011301815509796,
0.03708722069859505,
-0.008804207667708397,
-0.04164741933345795,
-0.05479360744357109,
-0.029106877744197845,
0.04578009620308876,
0.022409090772271156,
-0.04503193870186806,
0.04054299741983414,
-0.018276412039995193,
-0.06950736790895462,
0.005058967974036932,
-0.013493550010025501,
0.019665846601128578,
-0.02664864808320999,
0.037514738738536835,
-0.03019348718225956,
-0.02212407812476158,
-0.03600061312317848,
0.01755497418344021,
-0.01642383262515068,
-0.044889431446790695,
0.005156940780580044,
0.028661547228693962,
0.021910319104790688,
-0.03510994836688042,
-0.05187223479151726,
-0.006911547388881445,
-0.05418795719742775,
0.03380957990884781,
0.015052210539579391,
-0.037585992366075516,
-0.010349508374929428,
0.0005271613481454551,
0.06298771500587463,
-0.040899261832237244,
-0.036517199128866196,
-0.015159090049564838,
0.046563878655433655,
0.027325551956892014,
0.07011301815509796,
0.013377763330936432,
0.00935196503996849,
0.025508597493171692,
-0.07221498340368271,
0.00007848970562918112,
0.03950982540845871,
0.07467321306467056,
0.058498769998550415,
-0.0012035088147968054,
-0.03794226050376892,
-0.030407246202230453,
0.033631447702646255,
-0.006145576946437359,
-0.049057736992836,
0.06829606741666794,
-0.00040358182741329074,
-0.006363789550960064,
0.036980342119932175,
0.02574017085134983,
0.032990168780088425,
0.014535625465214252,
0.01813390664756298,
0.04556633532047272,
0.029231570661067963,
-0.04749016836285591,
-0.02014680579304695,
-0.04421252757310867,
0.01682463102042675,
-0.053974200040102005,
-0.056183043867349625,
0.022195329889655113,
0.007561731617897749,
-0.0012970285024493933,
-0.010011056438088417,
0.04164741933345795
] |
729,638 | avltree._avl_tree | __get_closer_key | Gets the next closest key to the given key.
Args:
key (_K): The key to search for.
current_key (_K): The current key.
Returns:
_K: The next closest key to the given key.
Raises:
KeyError: If the given key is not present in this tree.
| def __get_closer_key(self, key: _K, current_key: _K) -> _K:
"""Gets the next closest key to the given key.
Args:
key (_K): The key to search for.
current_key (_K): The current key.
Returns:
_K: The next closest key to the given key.
Raises:
KeyError: If the given key is not present in this tree.
"""
current_node: Final[AvlTreeNode[_K, _V]] = self.__nodes[current_key]
if key < current_key and current_node.lesser_child_key is not None:
return current_node.lesser_child_key
if current_key < key and current_node.greater_child_key is not None:
return current_node.greater_child_key
message: Final[str] = f"Key not present in AvlTree: {key!r}"
raise KeyError(message)
| (self, key: ~_K, current_key: ~_K) -> ~_K | [
0.06842037290334702,
-0.03576922044157982,
-0.06508971005678177,
0.06785345077514648,
-0.010505769401788712,
0.011329577304422855,
0.03421018645167351,
-0.0014361280482262373,
0.04623955860733986,
-0.02997598983347416,
-0.04868440702557564,
-0.05956222116947174,
0.05304262042045593,
-0.003532188478857279,
-0.0330054797232151,
0.0054389056749641895,
0.06537316739559174,
0.004739111755043268,
-0.020728077739477158,
-0.015271455980837345,
-0.011347293853759766,
0.0319247841835022,
0.026857919991016388,
-0.04620412737131119,
0.00026892797905020416,
0.06604638695716858,
0.014491938054561615,
0.05081036686897278,
0.03933019936084747,
-0.05711736902594566,
-0.06243226304650307,
-0.022783169522881508,
0.024625664576888084,
-0.021259566769003868,
-0.018371809273958206,
0.01835409365594387,
0.014748824760317802,
-0.0079501923173666,
0.011400442570447922,
-0.04368840903043747,
0.04025144875049591,
0.016352150589227676,
-0.015528341755270958,
-0.053644973784685135,
-0.00927448645234108,
0.02627328224480152,
-0.015076576732099056,
-0.0055850655771791935,
0.025387465953826904,
0.01934620551764965,
0.04829464852809906,
-0.04071206972002983,
-0.010576634667813778,
-0.00418104836717248,
-0.03631842881441116,
0.028913011774420738,
-0.020692644640803337,
-0.01645844802260399,
-0.03137557953596115,
-0.03309405967593193,
0.010054003447294235,
0.016786199063062668,
-0.018566688522696495,
0.04287346079945564,
0.01498799491673708,
-0.04634585604071617,
-0.016803916543722153,
-0.004557519685477018,
-0.03897587209939957,
0.028204359114170074,
-0.03431648388504982,
0.010860095731914043,
-0.020745793357491493,
0.005664788652211428,
-0.03043661266565323,
-0.03165903687477112,
-0.03243855759501457,
-0.03266886621713638,
-0.0023894866462796926,
0.012436846271157265,
0.0027349547017365694,
-0.030932670459151268,
0.0165647454559803,
-0.06866840273141861,
0.004805548116564751,
0.002356268698349595,
0.03126927837729454,
0.011054974980652332,
0.020356034860014915,
0.022269396111369133,
-0.05385756865143776,
0.015430902130901814,
-0.043440382927656174,
0.030064571648836136,
0.05548746883869171,
0.01310120802372694,
0.02232254482805729,
-0.03752313554286957,
0.02398787811398506,
-0.01984226331114769,
0.021011538803577423,
0.08510913699865341,
-0.010762656107544899,
0.006599323824048042,
0.010479195043444633,
0.001096196472644806,
-0.05024344474077225,
0.04538917541503906,
-0.022676872089505196,
0.001069621997885406,
-0.09736881405115128,
-0.04822378605604172,
-0.022145383059978485,
0.03394444286823273,
-0.0401451475918293,
0.035592056810855865,
0.010904386639595032,
0.05070406571030617,
0.052581995725631714,
-0.019169043749570847,
0.048046622425317764,
-0.044007305055856705,
-0.044255331158638,
-0.036885347217321396,
-0.04790489003062248,
-0.0451057143509388,
0.05531030520796776,
0.015076576732099056,
-0.07214079797267914,
0.03382042795419693,
0.03610583022236824,
0.042483702301979065,
-0.028275223448872566,
0.049676522612571716,
0.0060235438868403435,
0.04815291985869408,
-0.018797000870108604,
0.057329967617988586,
-0.05796775221824646,
0.035786937922239304,
0.06849123537540436,
-0.04163331910967827,
0.0392947681248188,
-0.009673102758824825,
-0.0016675472725182772,
-0.03670818731188774,
-0.06547946482896805,
0.0039418782107532024,
0.02166704274713993,
-0.010576634667813778,
0.0008858153014443815,
0.008335522376000881,
0.03008228726685047,
0.033838145434856415,
0.05913702771067619,
-0.026042969897389412,
0.008649986237287521,
-0.02590123936533928,
-0.010470337234437466,
-0.026716189458966255,
0.01218881830573082,
-0.06632985174655914,
0.03876327723264694,
-0.10736081004142761,
-0.006997940596193075,
-0.04021601378917694,
-0.0401451475918293,
0.014952561818063259,
0.016307858750224113,
0.034759391099214554,
0.00244706473313272,
0.026060685515403748,
-0.09283344447612762,
0.02832837402820587,
-0.07171560823917389,
-0.054176464676856995,
-0.05123555660247803,
-0.002039589686319232,
0.0545307882130146,
-0.043050624430179596,
0.011524456553161144,
0.04563720524311066,
0.020621780306100845,
-0.04007428511977196,
0.005797660909593105,
0.01573207974433899,
0.018424957990646362,
-0.020444616675376892,
-0.009894557297229767,
0.030560627579689026,
-0.05290088802576065,
0.008432962000370026,
0.020816659554839134,
0.00020858182688243687,
-0.010443761944770813,
-0.021011538803577423,
0.03805462643504143,
0.036158978939056396,
-0.02315521240234375,
0.09049489349126816,
0.002424919279292226,
0.007210536394268274,
-0.008543688803911209,
0.029639380052685738,
0.023332374170422554,
0.025564629584550858,
-0.0033107346389442682,
-0.012312832288444042,
0.0048011187463998795,
0.019169043749570847,
-0.026946501806378365,
-0.014580519869923592,
-0.022003652527928352,
-0.001833637710660696,
-0.018035199493169785,
0.009371926076710224,
-0.05938505753874779,
0.01908046193420887,
0.008937876671552658,
-0.005244026426225901,
0.06718023121356964,
-0.010691790841519833,
0.08333750069141388,
-0.015758654102683067,
0.034830257296562195,
-0.032385408878326416,
0.021525312215089798,
0.023296942934393883,
0.005009285639971495,
-0.026096118614077568,
0.021383581683039665,
-0.053078051656484604,
0.027832316234707832,
-0.023704417049884796,
-0.012773456983268261,
-0.08021943271160126,
-0.026308713480830193,
-0.02258829027414322,
-0.019753681495785713,
-0.0011050546308979392,
-0.051589883863925934,
0.025228019803762436,
0.01205594651401043,
0.004311705939471722,
-0.005810948554426432,
-0.05077493190765381,
-0.003769144183024764,
-0.013650413602590561,
0.004752398934215307,
0.03541489690542221,
0.030985819175839424,
-0.05945592373609543,
0.006714479997754097,
0.0007407630328088999,
0.011285286396741867,
-0.06997940689325333,
-0.07632184773683548,
-0.02315521240234375,
-0.0033018765971064568,
0.026556743308901787,
-0.009433932602405548,
0.030684642493724823,
-0.06399129331111908,
0.011577606201171875,
-0.029851974919438362,
0.032385408878326416,
0.012295116670429707,
0.018035199493169785,
-0.0009085143101401627,
0.0032686584163457155,
0.0638495683670044,
-0.026025254279375076,
-0.0325271375477314,
-0.00729468883946538,
0.01799090951681137,
-0.02179105579853058,
-0.02391701377928257,
0.018761567771434784,
-0.011267570778727531,
-0.05605439096689224,
-0.02444850280880928,
-0.012268541380763054,
-0.05800318717956543,
0.03162360563874245,
-0.03123384714126587,
0.009115039370954037,
-0.006222852505743504,
-0.12486452609300613,
0.040995530784130096,
-0.00775088369846344,
-0.005647072568535805,
-0.011878782883286476,
-0.007064376957714558,
0.04358211159706116,
0.04234196990728378,
-0.009039744734764099,
-0.0076667312532663345,
-0.026025254279375076,
0.049534790217876434,
0.013216364197432995,
0.05651501566171646,
-0.04163331910967827,
-0.006484168116003275,
-0.018176930025219917,
0.005120012443512678,
0.026060685515403748,
0.012321691028773785,
0.022464275360107422,
-0.05963308736681938,
0.022446559742093086,
-0.07880213111639023,
0.01388072595000267,
0.04517658054828644,
-0.016653327271342278,
-0.03481253981590271,
-0.08347923308610916,
-0.006701192818582058,
0.03667275235056877,
0.02944450080394745,
0.06586922705173492,
-0.02951536513864994,
0.03660188615322113,
-0.06140471622347832,
-0.01865527033805847,
-0.0023119780234992504,
0.013871867209672928,
0.0033793854527175426,
-0.04712537303566933,
0.04078293591737747,
0.038940440863370895,
0.040499474853277206,
0.004654959309846163,
-0.021755622699856758,
-0.00834880955517292,
-0.06615268439054489,
0.04163331910967827,
0.01273802388459444,
0.010443761944770813,
0.02304891310632229,
0.006165274418890476,
0.023562686517834663,
-0.04287346079945564,
0.025281168520450592,
-0.04737340286374092,
0.034865688532590866,
0.010922102257609367,
0.07589665800333023,
-0.03141101077198982,
0.015484051778912544,
-0.03553890809416771,
-0.02613155171275139,
-0.030418897047638893,
-0.008884727023541927,
0.002978553995490074,
0.010868953540921211,
0.01904502883553505,
0.006776486989110708,
-0.03197793290019035,
0.00478783156722784,
0.04641672223806381,
0.04588523134589195,
-0.02242884412407875,
-0.05963308736681938,
-0.015227165073156357,
-0.09169960021972656,
-0.020444616675376892,
-0.016042115166783333,
-0.029727961868047714,
0.03148187696933746,
0.02832837402820587,
-0.006510742474347353,
-0.024590233340859413,
0.02381071448326111,
0.05045603960752487,
-0.020887523889541626,
0.059774816036224365,
0.04889700561761856,
0.041952211409807205,
0.05088122934103012,
0.004978281911462545,
0.0028124635573476553,
0.016511596739292145,
0.03256256878376007,
0.07540059834718704,
-0.025121722370386124,
0.015032285824418068,
0.05024344474077225,
-0.04875527322292328,
0.03346610069274902,
0.001515851472504437,
-0.01858440414071083,
-0.03405074030160904,
0.03421018645167351,
0.03975538909435272,
-0.024129608646035194,
0.00046726755681447685,
0.07426675409078598,
-0.05148358643054962,
0.005757799372076988,
-0.04177504777908325,
0.08262885361909866,
0.05049147084355354,
-0.07766828685998917,
-0.013225222006440163,
0.0905657559633255,
0.04613326117396355,
0.015856094658374786,
0.02056863158941269,
-0.06087322533130646,
-0.017441703006625175,
-0.06140471622347832,
-0.023013481870293617,
-0.008800574578344822,
0.016910213977098465,
-0.011834491975605488,
-0.032048799097537994,
-0.0027925327885895967,
0.06473538279533386,
0.002026302507147193,
-0.01217110175639391,
-0.018974164500832558,
-0.06090866029262543,
-0.06016457453370094,
-0.02613155171275139,
0.011772485449910164,
0.014305916614830494,
0.0017284470377489924,
-0.028044912964105606,
-0.04234196990728378,
0.0053813280537724495,
0.011559889651834965,
-0.0017406271072104573,
0.01927534118294716,
0.008246940560638905,
-0.02490912564098835,
0.0347062423825264,
-0.014899413101375103,
0.03444049879908562,
-0.0007346730562858284,
-0.012870896607637405,
0.003835580311715603,
-0.028806712478399277,
-0.013065775856375694,
0.05375127121806145,
-0.011967364698648453,
-0.039011307060718536,
0.060306306928396225,
0.020001709461212158,
0.01659131981432438,
-0.049676522612571716,
0.0017638796707615256,
-0.007020086050033569,
-0.02117098495364189,
0.01659131981432438,
-0.02304891310632229,
-0.04326321929693222,
-0.03054291196167469,
0.01792004331946373,
0.024235906079411507,
0.0020739149767905474,
0.03461766242980957,
0.037948329001665115,
0.08106981217861176,
0.020356034860014915,
-0.017796028405427933,
0.013207506388425827,
0.010408329777419567,
-0.0030272738076746464,
-0.012011655606329441,
-0.05201507359743118,
0.010178017430007458,
-0.020232021808624268,
-0.023172928020358086,
-0.010806947015225887,
-0.001147130853496492,
0.003315163776278496,
0.03451136499643326,
-0.02855868451297283,
0.010266599245369434,
-0.020249737426638603,
-0.03454679623246193,
-0.09885698556900024,
0.0028124635573476553,
-0.012268541380763054,
0.007507284637540579,
-0.025298884138464928,
-0.10736081004142761,
0.0076800184324383736,
-0.07270772010087967,
-0.015882669016718864,
-0.003873227396979928,
0.0319247841835022,
0.0014073390047997236,
0.06250312924385071,
0.019062744453549385,
0.00940735824406147,
0.04563720524311066,
-0.006014686077833176,
0.015847235918045044,
0.008884727023541927,
0.008937876671552658,
-0.012649442069232464,
-0.011790201999247074,
0.011648471467196941,
0.026078402996063232,
0.020462334156036377,
0.010877811349928379,
0.017645440995693207,
0.021117836236953735,
0.008800574578344822,
0.07369983196258545,
0.007383270654827356,
0.04439706355333328,
0.013978165574371815,
-0.008760713040828705,
-0.00905746128410101,
-0.00764458579942584,
-0.0025688642635941505,
0.04478682205080986,
0.01908046193420887,
-0.026840202510356903,
0.01563463918864727,
0.03847981616854668,
-0.014819690026342869,
-0.00691378815099597,
0.0448576882481575,
-0.030950386077165604,
0.03236769139766693,
-0.04078293591737747,
0.03622984513640404,
-0.054105598479509354,
-0.0032199386041611433,
0.027070514857769012,
0.03702707961201668,
-0.012029372155666351,
0.027938613668084145,
-0.01349982526153326,
0.08227452635765076,
-0.02335009165108204,
-0.035786937922239304,
0.01349982526153326,
-0.04992454871535301,
-0.001772737829014659,
0.007688876707106829,
0.051164690405130386,
0.005252884700894356,
-0.036885347217321396,
0.014367924071848392,
-0.06165274605154991,
0.00003671289232443087,
-0.007843894883990288,
0.04995998367667198,
0.05626698583364487,
-0.012808889150619507,
0.030932670459151268,
0.0026685185730457306,
0.0006344651919789612,
0.020515482872724533,
0.02308434620499611,
0.011382726952433586,
0.0006023544119670987,
0.04815291985869408,
0.054211895912885666,
-0.015315746888518333,
0.0020993822254240513,
-0.045070283114910126,
-0.013172073289752007,
-0.008397528901696205,
0.0996365025639534,
0.04879070818424225,
0.011515598744153976,
0.01851353980600834,
0.0225528571754694,
-0.054601654410362244,
-0.0553811714053154,
-0.00776860024780035,
-0.046452153474092484,
0.0331294909119606,
-0.06058976799249649,
-0.06462908536195755,
0.02007257379591465,
-0.024926843121647835,
0.10693562030792236,
0.0632472112774849,
-0.05141272023320198,
0.001580073032528162,
0.0014361280482262373,
0.05938505753874779,
-0.05098752677440643,
-0.0013519756030291319,
-0.024891410022974014,
-0.055168576538562775,
-0.011214422062039375,
-0.006971366237848997,
0.04329865053296089,
-0.026574458926916122,
0.014128753915429115,
0.03369641304016113,
0.042944326996803284,
-0.002100489567965269,
0.03915303573012352,
-0.02292490005493164,
0.06090866029262543,
0.06852667033672333,
0.03481253981590271,
0.04372384399175644,
0.02056863158941269,
-0.06331807374954224,
-0.02597210370004177,
0.0014006954152137041,
0.007928047329187393,
0.019930843263864517,
0.025121722370386124,
0.014961420558393002,
-0.025387465953826904,
0.023208361119031906,
0.0033948870841413736,
-0.014810831286013126,
-0.0196473840624094,
0.04181048274040222,
0.005080150905996561,
-0.016715334728360176,
0.015723221004009247,
0.003671704325824976,
-0.05027887597680092,
0.008091922849416733,
0.023172928020358086,
-0.04329865053296089,
0.014828547835350037,
0.019098177552223206,
-0.008556975983083248,
-0.026822486892342567,
0.022800885140895844,
-0.006546175107359886,
-0.061227552592754364,
0.0360349677503109,
0.05070406571030617,
-0.012560861185193062,
-0.017406269907951355,
0.04514114558696747,
-0.03908216953277588,
0.0551331453025341,
-0.04850724712014198,
0.03465309366583824,
0.005461051128804684,
-0.01788461022078991,
-0.013384669087827206,
-0.0022610435262322426,
-0.035290881991386414,
-0.0045973812229931355,
-0.033873576670885086,
0.023668983951210976,
-0.0372396744787693,
-0.03371413052082062,
0.013978165574371815,
-0.07476281374692917,
0.010488052852451801,
0.0025467190425843,
-0.03819635510444641,
-0.004280702210962772,
-0.006329150404781103,
-0.00443793460726738,
0.022039083763957024,
-0.0034856831189244986,
-0.018672985956072807,
-0.010674074292182922,
-0.021489879116415977,
-0.001835852162912488,
-0.016972221434116364,
-0.037842027842998505,
0.04567263647913933,
-0.08227452635765076,
-0.02411189302802086,
-0.045530907809734344,
-0.013614981435239315,
0.017964333295822144,
0.014057888649404049,
0.013198647648096085,
0.030861804261803627,
-0.0574362650513649,
0.05906616523861885,
0.08532173186540604,
-0.010815804824233055,
0.021277284249663353,
0.02159617654979229,
0.03139329329133034,
0.02163160964846611,
0.05375127121806145,
0.0012379268882796168,
-0.056231554597616196,
0.04234196990728378,
-0.042483702301979065,
-0.011834491975605488,
-0.005890671629458666,
-0.058818135410547256,
-0.04131442680954933,
-0.028895294293761253,
0.03780659660696983,
-0.024625664576888084,
-0.027708303183317184,
0.031251564621925354,
-0.0006029080250300467,
0.0076800184324383736,
-0.01761886663734913,
-0.03165903687477112,
0.005704650655388832,
0.057719726115465164,
0.05438905954360962,
-0.04064120724797249,
-0.01639644056558609,
0.018672985956072807,
-0.04276716336607933,
-0.035361748188734055,
-0.0749754086136818,
-0.01977139711380005,
0.06399129331111908,
-0.03872784599661827,
-0.032385408878326416,
0.00028110796120017767,
0.02643272839486599,
-0.02574179321527481,
-0.07277858257293701,
0.0773848220705986,
-0.004404716659337282,
-0.009309918619692326,
0.02315521240234375,
0.05786145478487015,
-0.022145383059978485,
-0.08121154457330704,
0.04620412737131119,
0.03084408864378929,
-0.00005425618655863218,
-0.031357862055301666,
0.0037890749517828226,
0.0539284348487854,
-0.005580636207014322,
-0.0545307882130146,
-0.018672985956072807,
0.06381413340568542,
0.07160931080579758,
-0.027088232338428497,
0.05027887597680092,
-0.05499141290783882,
-0.02776145190000534,
0.0033173782285302877,
0.0010895527666434646,
-0.03396215662360191,
0.021383581683039665,
0.0031778623815625906,
-0.021489879116415977,
0.003580908291041851,
0.018389524891972542,
0.06058976799249649,
0.018176930025219917,
-0.020692644640803337,
0.009247912093997002,
-0.012197677046060562,
0.09368382394313812,
0.03463537618517876,
0.008614554069936275,
0.02219853177666664,
-0.03584008663892746,
-0.03713337704539299,
0.06037716940045357,
-0.05633785203099251,
-0.015298030339181423,
-0.02510400488972664,
0.05190877616405487
] |
729,639 | avltree._avl_tree | __rotate | Performs a rotation at the given key.
Args:
key (_K): The key to perform a right rotation on.
direction (Literal["left", "right"]): The direction of the rotation.
Returns:
_K: The new root key of this subtree.
Raises:
ValueError: If the shape of the tree is incompatible with the requested
rotation direction.
| def __rotate(self, key: _K, direction: Literal["left", "right"]) -> _K:
"""Performs a rotation at the given key.
Args:
key (_K): The key to perform a right rotation on.
direction (Literal["left", "right"]): The direction of the rotation.
Returns:
_K: The new root key of this subtree.
Raises:
ValueError: If the shape of the tree is incompatible with the requested
rotation direction.
"""
node: Final[AvlTreeNode[_K, _V]] = self.__nodes[key]
replacement_key: Final[_K] = cast(
_K,
node.greater_child_key if direction == "left" else node.lesser_child_key,
)
replacement_node: Final[AvlTreeNode[_K, _V]] = self.__nodes[replacement_key]
if direction == "left":
node.greater_child_key = replacement_node.lesser_child_key
replacement_node.lesser_child_key = key
else:
node.lesser_child_key = replacement_node.greater_child_key
replacement_node.greater_child_key = key
self.__update_height(node=node)
self.__update_height(node=replacement_node)
return replacement_key
| (self, key: ~_K, direction: Literal['left', 'right']) -> ~_K | [
0.050574298948049545,
0.007131932303309441,
0.02840377204120159,
0.0688844621181488,
0.030705824494361877,
-0.006999121513217688,
-0.03472556173801422,
0.043809808790683746,
0.044943127781152725,
-0.04005569592118263,
0.01885911263525486,
0.02208198606967926,
0.06548450887203217,
0.04352647811174393,
-0.03704531863331795,
0.020027847960591316,
0.014361259527504444,
0.02967875450849533,
-0.032689131796360016,
0.0006839748821221292,
0.00244371616281569,
-0.028191275894641876,
0.034105777740478516,
-0.010306106880307198,
-0.015308641828596592,
-0.010137880221009254,
0.016158631071448326,
0.01646852120757103,
0.04097651690244675,
-0.014007097110152245,
-0.043101485818624496,
-0.024100707843899727,
-0.002707123989239335,
-0.013626373372972012,
-0.05794086307287216,
-0.03231726214289665,
-0.021869488060474396,
0.010146734304726124,
0.005232739727944136,
-0.0028399345465004444,
0.048165999352931976,
0.0335037037730217,
-0.011829002760350704,
-0.06736156344413757,
0.0038160928525030613,
0.027660032734274864,
0.01778777502477169,
-0.03700990229845047,
0.01912473514676094,
-0.023817379027605057,
0.024561118334531784,
-0.041436925530433655,
0.028598561882972717,
-0.007446250878274441,
-0.012041499838232994,
0.019337231293320656,
-0.0038736441638320684,
0.02546423114836216,
0.04912223666906357,
-0.0034043798223137856,
0.040161944925785065,
0.00626423629000783,
-0.054788824170827866,
0.05570964515209198,
0.012643574737012386,
-0.001365736243315041,
-0.03532763570547104,
0.015574263408780098,
0.0281558595597744,
0.014733129180967808,
-0.05092846229672432,
0.015600825659930706,
0.03272454813122749,
0.021037207916378975,
0.006866311188787222,
0.0023529622703790665,
-0.07309898734092712,
0.000022999762222752906,
-0.010394647717475891,
0.022825725376605988,
-0.00862826593220234,
-0.015512284822762012,
0.03895779326558113,
0.014618026092648506,
-0.002862069755792618,
0.021550742909312248,
0.03417661041021347,
-0.025818392634391785,
0.027482952922582626,
-0.0723552480340004,
-0.06520117819309235,
-0.02785482257604599,
-0.015007604844868183,
-0.007552499417215586,
-0.003419874468818307,
0.008876179344952106,
-0.01315710972994566,
-0.06598033756017685,
-0.025570478290319443,
-0.009022270329296589,
0.04437646642327309,
0.06403244286775589,
0.021143456920981407,
0.004161400720477104,
0.05910959839820862,
0.015645096078515053,
-0.05089304596185684,
-0.0008643760229460895,
-0.010359231382608414,
-0.0072248997166752815,
-0.02459653466939926,
-0.008663682267069817,
0.04416397213935852,
0.03293704241514206,
-0.02829752489924431,
0.030741240829229355,
-0.004940556362271309,
-0.009323308244347572,
-0.021763239055871964,
0.007127505261451006,
0.11446508020162582,
-0.06835322082042694,
-0.010554020293056965,
-0.012670136988162994,
-0.045084793120622635,
-0.010863912291824818,
0.035805754363536835,
0.04281815513968468,
-0.017407050356268883,
0.004878578241914511,
0.0005766195827163756,
0.032140180468559265,
-0.007472813129425049,
0.0226486437022686,
0.011102970689535141,
0.0009341016411781311,
0.013582102954387665,
0.030209997668862343,
0.0011786945397034287,
0.039453618228435516,
0.02266635186970234,
-0.013768038712441921,
0.07678227126598358,
0.028952723369002342,
0.0363369956612587,
-0.004847588948905468,
-0.048165999352931976,
0.0692032054066658,
0.018823698163032532,
-0.03493805602192879,
0.014157616533339024,
0.03332662209868431,
0.11319009959697723,
0.007897807285189629,
0.07536562532186508,
0.009022270329296589,
-0.013590957038104534,
0.020311176776885986,
-0.04784725233912468,
0.014042513445019722,
0.0281558595597744,
-0.0402681902050972,
-0.03274225443601608,
-0.04611185938119888,
0.03718698397278786,
-0.026934001594781876,
0.03093602880835533,
-0.0028399345465004444,
-0.03630157932639122,
0.037222400307655334,
0.008097022771835327,
-0.049547228962183,
-0.08287385106086731,
0.0002466681180521846,
-0.013626373372972012,
0.003001520875841379,
-0.022028861567378044,
0.053797170519828796,
0.02195802889764309,
0.010049340315163136,
0.00471920520067215,
0.025782976299524307,
0.03316724672913551,
-0.05262843891978264,
-0.0019301815191283822,
0.014467507600784302,
0.00281337252818048,
0.012493056245148182,
0.038886960595846176,
-0.02799648605287075,
-0.03546930104494095,
-0.02629651129245758,
-0.001046990742906928,
-0.010447772219777107,
-0.008234260603785515,
-0.01645081304013729,
-0.0034818528220057487,
0.002098408294841647,
-0.006644960027188063,
0.08740711957216263,
-0.006038458086550236,
0.010571728460490704,
0.049157653003931046,
0.021054916083812714,
-0.008787638507783413,
0.02153303474187851,
-0.023852793499827385,
0.014688858762383461,
0.028935015201568604,
-0.009341016411781311,
0.07090318202972412,
-0.013821162283420563,
-0.0319276824593544,
0.0106956847012043,
-0.0413660928606987,
-0.018735157325863838,
-0.10036943852901459,
0.022400731220841408,
-0.0039909603074193,
-0.02489757165312767,
0.003313625929877162,
0.08400716632604599,
-0.019886182621121407,
-0.08591964095830917,
0.01590186357498169,
-0.036655742675065994,
-0.0011150561040267348,
-0.05836585909128189,
-0.07143442332744598,
-0.013732622377574444,
0.042286913841962814,
-0.053832586854696274,
-0.01884140633046627,
-0.050007641315460205,
-0.040020279586315155,
-0.13436897099018097,
0.002505694516003132,
-0.03132560849189758,
0.0385328009724617,
0.02293197438120842,
-0.03477868437767029,
-0.0016922291833907366,
-0.004464651457965374,
-0.0031409719958901405,
0.002479132264852524,
0.000626423629000783,
0.002769102342426777,
0.03295475244522095,
-0.015264371410012245,
0.027358995750546455,
-0.05471799150109291,
-0.052274275571107864,
-0.010562874376773834,
0.034814100712537766,
0.04504937678575516,
-0.009951945394277573,
-0.043951474130153656,
0.010872766375541687,
0.024720489978790283,
0.02362258918583393,
0.03856821358203888,
-0.03662032634019852,
-0.06010124832391739,
-0.015397182665765285,
0.007247034925967455,
-0.008575141429901123,
0.03771822527050972,
0.012997736223042011,
0.013750330545008183,
-0.027270454913377762,
0.054647158831357956,
-0.0018593491986393929,
-0.07168234139680862,
-0.010359231382608414,
0.037364065647125244,
0.05517840012907982,
0.019797641783952713,
-0.003289277432486415,
0.008504308760166168,
0.0002924601431004703,
0.010607144795358181,
-0.02544652298092842,
-0.018380995839834213,
0.0506451316177845,
-0.08939042687416077,
0.023569464683532715,
-0.045793116092681885,
-0.03867446258664131,
0.020930958911776543,
0.0113243218511343,
0.037505730986595154,
0.016158631071448326,
-0.02309134602546692,
0.05737420544028282,
0.055213816463947296,
-0.024295495823025703,
-0.08740711957216263,
-0.04582853242754936,
0.039170291274785995,
0.0016247170278802514,
0.0010226421291008592,
0.0012882633600383997,
0.016539353877305984,
-0.022737184539437294,
0.024826738983392715,
0.027394412085413933,
-0.02070075459778309,
-0.008181137032806873,
-0.026509007439017296,
0.0438806414604187,
-0.07065527141094208,
-0.011235781945288181,
0.022028861567378044,
-0.015893008559942245,
0.018203914165496826,
-0.06775114685297012,
0.03226413577795029,
-0.02744753658771515,
0.051424287259578705,
0.04752850905060768,
-0.014981042593717575,
0.008362644352018833,
-0.0784822478890419,
-0.006892872974276543,
-0.014848231337964535,
-0.03785989060997963,
0.030440203845500946,
-0.001571592758409679,
0.04558061808347702,
0.019177859649062157,
-0.0011654135305434465,
0.029023556038737297,
0.0005547612090595067,
-0.025428814813494682,
-0.11241094022989273,
0.003526123007759452,
0.047634758055210114,
-0.008672536350786686,
0.006839748937636614,
0.029076680541038513,
0.01954972930252552,
-0.015246663242578506,
-0.011917542666196823,
-0.023002805188298225,
0.04373897612094879,
0.04366814345121384,
0.04898057132959366,
-0.02266635186970234,
0.04788266867399216,
-0.01924869231879711,
-0.014352405443787575,
0.001848281710408628,
-0.013422730378806591,
-0.010252983309328556,
-0.029448550194501877,
-0.05121178925037384,
0.018345579504966736,
-0.02309134602546692,
-0.023711130023002625,
0.017575277015566826,
0.03235267475247383,
-0.005356696434319019,
-0.05046804994344711,
0.020930958911776543,
-0.03251205012202263,
-0.021054916083812714,
-0.06335953623056412,
-0.021603867411613464,
0.027606908231973648,
0.021780947223305702,
0.0585075207054615,
-0.06144706532359123,
-0.014750837348401546,
0.09590700268745422,
-0.03320266306400299,
0.042145248502492905,
-0.02574755996465683,
0.030050624161958694,
0.03970153257250786,
-0.02615484595298767,
0.01428157277405262,
0.01602581888437271,
0.05556797981262207,
0.06647615879774094,
-0.027677740901708603,
0.016282586380839348,
0.04894515499472618,
0.003758541541174054,
0.015707073733210564,
-0.03803697228431702,
-0.09930695593357086,
0.018186205998063087,
0.02882876619696617,
-0.007548072375357151,
-0.06123456731438637,
0.03718698397278786,
-0.008553006686270237,
-0.021586159244179726,
-0.008526444435119629,
-0.043703559786081314,
0.04147234186530113,
0.010589436627924442,
-0.06250955164432526,
-0.012200872413814068,
0.03578804433345795,
0.02337467670440674,
0.032565172761678696,
-0.00008757202886044979,
-0.015645096078515053,
-0.04618269205093384,
-0.02799648605287075,
0.012413369491696358,
0.025411106646060944,
0.017628401517868042,
0.03938278555870056,
-0.045934781432151794,
0.05277010053396225,
0.024153832346200943,
-0.013281065970659256,
0.007419688627123833,
-0.04558061808347702,
0.012431077659130096,
-0.02165699191391468,
0.006250955164432526,
0.0012318188091740012,
0.015140415169298649,
0.015175831504166126,
-0.04079943522810936,
-0.07699476927518845,
0.03516826406121254,
0.001835000584833324,
0.023038221523165703,
0.00650329515337944,
0.040586937218904495,
0.0037386200856417418,
0.029147513210773468,
0.013537833467125893,
0.03167976811528206,
-0.03800155594944954,
0.027057958766818047,
-0.014609172008931637,
-0.0016678805695846677,
0.005387685727328062,
0.003884711768478155,
-0.03842655196785927,
-0.019036194309592247,
0.010793079622089863,
0.029731879010796547,
0.006746781524270773,
-0.02590693160891533,
0.056913793087005615,
0.048874322324991226,
-0.01323679555207491,
0.04713892936706543,
-0.01970910094678402,
-0.022294482216238976,
-0.040445271879434586,
-0.000883190892636776,
-0.0014022592222318053,
-0.02619026228785515,
0.03828488662838936,
0.00004050033385283314,
0.008685817010700703,
0.04572228342294693,
-0.015512284822762012,
0.024561118334531784,
-0.003512841882184148,
-0.020612213760614395,
-0.007685310207307339,
-0.015831030905246735,
0.0014830523869022727,
-0.027341287583112717,
0.01954972930252552,
-0.0038160928525030613,
-0.0068441759794950485,
0.008429049514234066,
0.0013768038479611278,
-0.052522189915180206,
-0.08662796765565872,
-0.04628894105553627,
-0.06683032214641571,
-0.046501439064741135,
-0.025552770122885704,
-0.013139401562511921,
0.004460224416106939,
-0.016707580536603928,
-0.04926390200853348,
0.01884140633046627,
0.01912473514676094,
-0.01302429847419262,
-0.05925126373767853,
0.03051103465259075,
-0.002977172378450632,
0.0820946916937828,
0.01272326149046421,
-0.002893058815971017,
-0.04363272711634636,
-0.021019499748945236,
-0.046076443046331406,
0.004172468092292547,
0.00583924213424325,
-0.012360244989395142,
0.008353790268301964,
0.010146734304726124,
0.04504937678575516,
-0.00037380665889941156,
-0.021780947223305702,
-0.020576797425746918,
0.019213275983929634,
0.000963430677074939,
0.028811058029532433,
0.012962319888174534,
0.01967368647456169,
-0.0022267920430749655,
-0.024614242836833,
0.018203914165496826,
-0.05319509655237198,
0.05177845060825348,
0.008491028100252151,
0.0014387820847332478,
-0.05730337277054787,
-0.027252746745944023,
0.028456896543502808,
0.006932716351002455,
0.006498868111521006,
0.057338789105415344,
0.008553006686270237,
-0.030174581333994865,
0.023445507511496544,
-0.015096144750714302,
-0.08577797561883926,
0.01699976436793804,
0.023144470527768135,
0.03669115900993347,
-0.053088847547769547,
0.049228485673666,
0.0022821298334747553,
0.05181386321783066,
-0.029891252517700195,
-0.0355401337146759,
-0.010562874376773834,
-0.0020353232976049185,
-0.034105777740478516,
-0.013059714809060097,
0.0072248997166752815,
0.03785989060997963,
0.022046569734811783,
-0.06442202627658844,
0.011944104917347431,
0.0015350698959082365,
-0.05645338445901871,
0.0361776240170002,
0.012466493993997574,
0.01651279255747795,
0.019744517281651497,
0.006361630745232105,
-0.025800684466958046,
-0.0075834887102246284,
0.04848474636673927,
-0.008097022771835327,
0.007862390950322151,
0.03970153257250786,
0.004172468092292547,
-0.051565952599048615,
0.0699823647737503,
0.02153303474187851,
-0.0005705324583686888,
-0.035965126007795334,
0.04111817851662636,
0.04600561037659645,
-0.0030590721871703863,
-0.01898306980729103,
0.051565952599048615,
-0.06757406145334244,
-0.0726739913225174,
-0.016114359721541405,
-0.011926396749913692,
0.030209997668862343,
-0.06973444670438766,
-0.08769045025110245,
0.016158631071448326,
-0.007127505261451006,
0.04713892936706543,
0.03141414746642113,
-0.038886960595846176,
0.008973573334515095,
0.03849738463759422,
0.11942334473133087,
-0.01815078966319561,
0.025234024971723557,
-0.037364065647125244,
-0.010677976533770561,
0.01251961849629879,
-0.046926431357860565,
0.05702004209160805,
-0.021869488060474396,
0.027536077424883842,
0.0037607550621032715,
0.038178637623786926,
-0.02027576044201851,
0.055780477821826935,
-0.06003041937947273,
0.02025805227458477,
0.07600311189889908,
-0.07954473048448563,
0.038072388619184494,
0.015158123336732388,
-0.002988239750266075,
-0.015450306236743927,
-0.008088168688118458,
-0.02672150544822216,
-0.0034884933847934008,
0.08074887841939926,
-0.0041569736786186695,
0.012537325732409954,
0.004453584086149931,
0.003614663379266858,
-0.04699726402759552,
0.005666587967425585,
-0.005228313151746988,
-0.06502410024404526,
-0.02224135771393776,
-0.04990139231085777,
-0.016256025061011314,
-0.013891994953155518,
-0.00818556360900402,
0.02912980504333973,
-0.006884019356220961,
0.010925889946520329,
-0.02574755996465683,
-0.01082849595695734,
-0.04968889430165291,
0.03683282434940338,
-0.04469521343708038,
-0.023852793499827385,
0.01217431016266346,
-0.00006592112185899168,
-0.0027602482587099075,
0.029643338173627853,
0.015875300392508507,
-0.018823698163032532,
-0.007734007202088833,
-0.026402758434414864,
0.04012652859091759,
-0.03265371546149254,
-0.05953459069132805,
0.046713937073946,
0.029661046341061592,
-0.09038207679986954,
-0.0330255851149559,
-0.046713937073946,
0.0806780457496643,
-0.03141414746642113,
-0.023817379027605057,
-0.008309519849717617,
-0.019762225449085236,
0.02967875450849533,
-0.017814336344599724,
-0.04504937678575516,
-0.02615484595298767,
0.005511642433702946,
0.00997850764542818,
-0.031201651319861412,
0.02757149189710617,
0.007680883165448904,
-0.014981042593717575,
0.012838363647460938,
0.026544423773884773,
0.00965090747922659,
-0.008566287346184254,
0.04869724065065384,
-0.09229455143213272,
0.004427021834999323,
-0.04416397213935852,
0.005555912386626005,
-0.00629965215921402,
0.08627380430698395,
-0.04274732246994972,
0.0740906372666359,
0.008867325261235237,
-0.043136902153491974,
0.08740711957216263,
-0.028173567727208138,
0.00956236757338047,
-0.025234024971723557,
0.04774100333452225,
0.010182150639593601,
0.07150525599718094,
-0.03252975642681122,
-0.09498618543148041,
0.024437161162495613,
-0.01019985880702734,
0.019762225449085236,
-0.023587172850966454,
-0.024649659171700478,
0.0023640296421945095,
-0.017327364534139633,
0.0399494469165802,
0.023551756516098976,
-0.030422495678067207,
0.038214053958654404,
-0.04221608117222786,
-0.012121186591684818,
-0.015795614570379257,
-0.00636605778709054,
-0.0770656019449234,
0.050715964287519455,
0.02842148020863533,
0.0030657127499580383,
-0.009588929824531078,
0.03111311048269272,
0.020452842116355896,
-0.0014077930245548487,
-0.04164942353963852,
-0.01602581888437271,
0.003570393193513155,
-0.036655742675065994,
-0.0065918355248868465,
-0.007047818973660469,
-0.039736948907375336,
-0.028935015201568604,
-0.012634720653295517,
0.07727809250354767,
-0.007809266913682222,
0.015104998834431171,
-0.012714407406747341,
0.0692032054066658,
-0.025269441306591034,
-0.07635727524757385,
-0.004621810745447874,
0.04660768806934357,
0.06265121698379517,
0.0523805245757103,
0.0037186983972787857,
0.018053395673632622,
-0.0009767117444425821,
-0.06948653608560562,
-0.013334190472960472,
0.021603867411613464,
0.12431077659130096,
0.007508229464292526,
0.06258038431406021,
-0.037080734968185425,
-0.04331398382782936,
0.04352647811174393,
0.0021980165038257837,
-0.05641796812415123,
0.057763781398534775,
0.007065527141094208,
0.00377846322953701,
0.003758541541174054,
-0.004176895134150982,
-0.01314825564622879,
0.02321530319750309,
-0.001965597737580538,
0.015352912247180939,
0.004081714432686567,
0.045226454734802246,
0.039595283567905426,
-0.02489757165312767,
-0.021426785737276077,
-0.08287385106086731,
-0.06077415868639946,
0.015574263408780098,
-0.016645602881908417,
0.002735899528488517,
0.03658491000533104,
0.02418924868106842
] |
729,640 | avltree._avl_tree | __update_height | Updates the height of the given node.
Args:
node (AvlTreeNode[_K, _V]): The node.
| def __update_height(self, node: AvlTreeNode[_K, _V]) -> None:
"""Updates the height of the given node.
Args:
node (AvlTreeNode[_K, _V]): The node.
"""
node.height = 1 + max(
(
-1
if node.greater_child_key is None
else self.__nodes[node.greater_child_key].height
),
(
-1
if node.lesser_child_key is None
else self.__nodes[node.lesser_child_key].height
),
)
| (self, node: avltree._avl_tree_node.AvlTreeNode[~_K, ~_V]) -> NoneType | [
0.05324268341064453,
-0.023579925298690796,
0.02232757769525051,
0.05653456971049309,
-0.03957419842481613,
-0.010394489392638206,
-0.028177831321954727,
0.03118346631526947,
-0.023293673992156982,
-0.020431164652109146,
-0.024420786648988724,
-0.03567402809858322,
0.04991501569747925,
0.001751050935126841,
-0.0015397171955555677,
0.02894713170826435,
0.021755075082182884,
0.04633687809109688,
0.024528130888938904,
0.04222201928496361,
0.008614365942776203,
-0.02637087181210518,
-0.005470077507197857,
0.0048081218264997005,
-0.04415421560406685,
-0.028177831321954727,
0.04544234275817871,
0.033831287175416946,
0.04401108995079994,
-0.033509254455566406,
-0.03696215897798538,
-0.02846408262848854,
-0.022238124161958694,
-0.002444315003231168,
-0.014088915660977364,
0.004349673166871071,
0.012156721204519272,
0.04057607799768448,
-0.06483584642410278,
0.016289470717310905,
0.007514088414609432,
-0.02803470566868782,
0.008091063238680363,
-0.006534573156386614,
0.06007692590355873,
0.019948115572333336,
0.02900080382823944,
0.019840771332383156,
-0.035047855228185654,
-0.052670180797576904,
0.012756059877574444,
-0.06819929927587509,
0.06497897207736969,
0.05660613253712654,
-0.007402271497994661,
0.0489131361246109,
0.030736200511455536,
0.006606135983020067,
0.019787099212408066,
0.0478396974503994,
0.025279540568590164,
-0.014214150607585907,
-0.05317112058401108,
-0.0684855505824089,
-0.022363359108567238,
0.021164681762456894,
-0.02034171111881733,
-0.00014033007028046995,
-0.013596922159194946,
0.007268091663718224,
-0.0021737185306847095,
0.028338847681879997,
0.035369887948036194,
0.03630020469427109,
0.004700778052210808,
0.016620447859168053,
-0.037248410284519196,
0.05131049081683159,
0.022935859858989716,
0.01603900082409382,
0.012264065444469452,
0.0003675977059174329,
0.07428213208913803,
-0.017523927614092827,
-0.006753734312951565,
-0.01570802368223667,
0.046909380704164505,
-0.0042803469114005566,
-0.024635475128889084,
0.037999819964170456,
-0.03696215897798538,
-0.02642454393208027,
-0.0017141514690592885,
0.008068699389696121,
0.05131049081683159,
0.0050809551030397415,
0.023472581058740616,
-0.05148939788341522,
0.00948206428438425,
0.02728329785168171,
0.029805883765220642,
0.04297342896461487,
0.0218445286154747,
-0.0027976562269032,
0.008533857762813568,
-0.04250827059149742,
-0.01054655946791172,
0.02162984013557434,
-0.020592181012034416,
0.003432775614783168,
-0.02889345958828926,
-0.01783701404929161,
-0.01500134076923132,
0.019339831545948982,
0.008216298185288906,
0.036926377564668655,
0.008444404229521751,
-0.017184004187583923,
0.016316305845975876,
0.024581803008913994,
0.02771267294883728,
-0.015806421637535095,
-0.01907147280871868,
-0.03333034738898277,
-0.014071024954319,
-0.021755075082182884,
-0.0006541282054968178,
0.05173986405134201,
-0.0352446511387825,
-0.0009364656289108098,
0.005666874814778566,
0.0019534393213689327,
-0.04308077320456505,
0.0582878552377224,
-0.011968869715929031,
-0.036049734801054,
-0.012478753924369812,
0.04175686091184616,
0.045299217104911804,
-0.013829500414431095,
0.016781464219093323,
-0.020091241225600243,
0.06870023906230927,
-0.0746399462223053,
0.02824939414858818,
-0.05685660243034363,
-0.05281330645084381,
0.02935861609876156,
-0.03447535261511803,
0.012595043517649174,
-0.015752749517560005,
-0.00006174383452162147,
0.04297342896461487,
-0.04218623787164688,
0.06147240102291107,
0.013972626067698002,
-0.043867964297533035,
-0.048984698951244354,
-0.012541371397674084,
-0.029555413872003555,
0.018821002915501595,
-0.013865281827747822,
0.04780391603708267,
-0.019876552745699883,
-0.028392519801855087,
-0.01770283468067646,
-0.028392519801855087,
-0.005496913567185402,
-0.05696394667029381,
0.020466946065425873,
0.005241970997303724,
-0.07914839684963226,
-0.09303157031536102,
0.022417031228542328,
0.013757937587797642,
0.027945252135396004,
-0.0047097234055399895,
-0.017980139702558517,
0.05860988795757294,
0.01540388073772192,
-0.012747114524245262,
0.02173718437552452,
0.07170587033033371,
0.01433938555419445,
0.002884873189032078,
-0.007415689527988434,
-0.03978888690471649,
0.033938631415367126,
-0.05338580906391144,
0.005760801024734974,
-0.06547991186380386,
-0.03764200583100319,
-0.01561856921762228,
-0.02263171784579754,
0.023848285898566246,
0.021289916709065437,
-0.015895875170826912,
0.020305929705500603,
0.013274889439344406,
0.021272026002407074,
-0.0026992573402822018,
-0.026299308985471725,
0.035745590925216675,
0.024116646498441696,
0.02787368930876255,
-0.0016012164996936917,
0.017336076125502586,
0.021611949428915977,
-0.025190087035298347,
-0.03721262887120247,
-0.03667590767145157,
0.05810895189642906,
-0.00987565889954567,
0.002067492576315999,
-0.04758922755718231,
-0.0798640251159668,
-0.07900527119636536,
0.03842919319868088,
-0.01412469707429409,
0.00842204038053751,
0.018498970195651054,
0.018042758107185364,
0.012120939791202545,
-0.021611949428915977,
0.078790582716465,
-0.036604344844818115,
0.011816798709332943,
0.0036273368168622255,
0.004296001046895981,
0.017318185418844223,
-0.01921459659934044,
0.04719563201069832,
-0.012586098164319992,
-0.023937739431858063,
0.02162984013557434,
-0.019572410732507706,
-0.03608551621437073,
-0.017720725387334824,
-0.0715627446770668,
-0.0028669824823737144,
-0.034725822508335114,
-0.045513905584812164,
-0.010161910206079483,
0.014410948380827904,
-0.042472489178180695,
-0.02674657665193081,
0.027086500078439713,
0.04351015016436577,
-0.04458359256386757,
0.032435815781354904,
-0.06157974526286125,
-0.07081133872270584,
0.0005154754035174847,
0.02701493725180626,
0.010805974714457989,
-0.018409516662359238,
-0.00045201939065009356,
0.03875122591853142,
-0.017157169058918953,
0.019787099212408066,
0.04179264232516289,
-0.025404775515198708,
-0.030843542888760567,
0.046157971024513245,
0.008927452377974987,
0.024367114529013634,
0.0778602659702301,
-0.000025665447537903674,
-0.04486984387040138,
-0.009249485097825527,
0.044977184385061264,
-0.04748188331723213,
-0.0028312010690569878,
-0.03502996265888214,
0.03370605409145355,
0.03005635365843773,
0.016718845814466476,
-0.04970032721757889,
-0.01540388073772192,
-0.01593165658414364,
0.008592002093791962,
-0.027515875175595284,
0.003598264418542385,
0.059504423290491104,
-0.06748367100954056,
-0.03064674697816372,
-0.051560960710048676,
0.02424187958240509,
-0.07871901988983154,
0.03749888017773628,
-0.0213078074157238,
-0.0012389300391077995,
-0.025762589648365974,
0.10111816227436066,
0.041935767978429794,
-0.0011718400055542588,
-0.008873780257999897,
0.04873422905802727,
0.03502996265888214,
-0.010152964852750301,
-0.036013953387737274,
-0.03771356865763664,
0.0068163517862558365,
-0.04275874048471451,
0.03225690871477127,
-0.003459611441940069,
-0.014357276260852814,
0.01679040864109993,
0.02381250448524952,
0.03091510571539402,
-0.0025538955815136433,
0.041828423738479614,
0.009526791051030159,
0.0228464063256979,
0.014661417342722416,
-0.05968333035707474,
0.0029944537673145533,
-0.029287053272128105,
0.01361481286585331,
0.018355844542384148,
-0.05725019797682762,
-0.014312549494206905,
-0.03188120201230049,
0.030235260725021362,
-0.059933800250291824,
-0.02978799305856228,
0.07514088600873947,
0.006382502615451813,
0.014088915660977364,
-0.010027729906141758,
0.010385544039309025,
-0.01617318019270897,
0.043438587337732315,
-0.027748454362154007,
-0.08744967728853226,
0.0017790051642805338,
0.019035691395401955,
0.021504605188965797,
-0.01813221164047718,
0.038464974611997604,
-0.0003139256441500038,
0.041470613330602646,
0.004264692310243845,
0.013418015092611313,
0.0582878552377224,
-0.010841756127774715,
0.017523927614092827,
-0.022202342748641968,
-0.013936844654381275,
0.049521420150995255,
-0.03753466159105301,
-0.028607208281755447,
-0.01818588376045227,
-0.026513997465372086,
0.010779138654470444,
-0.0703461766242981,
0.0598980188369751,
-0.07456838339567184,
-0.007590123917907476,
-0.011271132156252861,
-0.06916539371013641,
0.0006753734196536243,
-0.03774935007095337,
0.04526343569159508,
-0.010215582326054573,
0.014867160469293594,
-0.029215490445494652,
0.019178815186023712,
0.08709186315536499,
-0.030575184151530266,
0.026818139478564262,
-0.06909383088350296,
0.05410143733024597,
0.028124159201979637,
0.00346408411860466,
0.01751498132944107,
-0.0578942634165287,
0.048340633511543274,
0.027676891535520554,
0.005765273701399565,
0.020753197371959686,
-0.013650594279170036,
0.016369977965950966,
-0.024062974378466606,
-0.015350209549069405,
-0.018042758107185364,
0.01864209584891796,
-0.03828607127070427,
-0.0037659895606338978,
-0.0020194111857563257,
-0.0194292850792408,
0.09052687138319016,
-0.013927899301052094,
0.006024688947945833,
-0.09589408338069916,
0.03699794039130211,
0.061794430017471313,
-0.0447624996304512,
0.021289916709065437,
-0.041041236370801926,
0.028660880401730537,
0.002435369649901986,
-0.024742819368839264,
0.018946237862110138,
0.026138292625546455,
-0.008256551809608936,
0.024062974378466606,
0.06279630959033966,
0.008466767147183418,
-0.03570980951189995,
-0.002145764185115695,
-0.01813221164047718,
0.0011584219755604863,
0.027587438002228737,
0.024546021595597267,
-0.06394131481647491,
0.1010465994477272,
0.04977189004421234,
0.048877354711294174,
-0.035745590925216675,
0.014410948380827904,
0.0008805572288110852,
-0.011566328816115856,
0.017425529658794403,
0.017523927614092827,
-0.09560783207416534,
-0.021486714482307434,
-0.021808747202157974,
-0.06644601374864578,
0.0055908397771418095,
0.035638246685266495,
-0.0012993111740797758,
0.031380265951156616,
-0.01652204990386963,
0.01818588376045227,
-0.003660881659016013,
0.04229358211159706,
-0.051560960710048676,
0.0373915359377861,
0.03667590767145157,
0.04737453907728195,
0.013605867512524128,
-0.00002872293771361001,
-0.011092226020991802,
0.0035937917418777943,
-0.0019623846746981144,
0.0393952913582325,
-0.0494498573243618,
0.023562034592032433,
-0.08551748096942902,
-0.02141515165567398,
0.007657214067876339,
-0.02946596033871174,
0.008301278576254845,
-0.05703550949692726,
-0.06630288809537888,
-0.06709007173776627,
-0.005483495537191629,
0.03277573734521866,
0.035477232187986374,
-0.0317559689283371,
0.05442347005009651,
0.023311564698815346,
0.005505858920514584,
-0.024438677355647087,
-0.05925395339727402,
0.03300831839442253,
-0.07406744360923767,
0.036335986107587814,
-0.02349047176539898,
0.010501832701265812,
-0.05542534589767456,
-0.046050626784563065,
-0.018767330795526505,
0.012371409684419632,
-0.03728419169783592,
0.01916092447936535,
-0.04751766473054886,
-0.06891492754220963,
0.0040924944914877415,
0.018659986555576324,
0.033455584198236465,
0.015976382419466972,
-0.01874944008886814,
0.011101171374320984,
0.019661864265799522,
-0.05631988123059273,
0.003549064975231886,
0.024045083671808243,
-0.00733965402469039,
-0.04916360601782799,
-0.06193755567073822,
-0.008954288437962532,
0.053528934717178345,
-0.02669290453195572,
-0.03696215897798538,
0.026943374425172806,
-0.03438590094447136,
0.05241971090435982,
-0.05782270058989525,
-0.03667590767145157,
0.016727792099118233,
0.05195455253124237,
-0.04458359256386757,
-0.014249932020902634,
0.03597817197442055,
-0.00626174034550786,
0.03300831839442253,
-0.013587976805865765,
0.051560960710048676,
0.020842649042606354,
-0.01638786867260933,
0.008873780257999897,
0.03295464441180229,
0.007183110807090998,
0.012586098164319992,
-0.036819033324718475,
0.06547991186380386,
0.08179622143507004,
0.003669827012345195,
-0.0063064671121537685,
-0.009553627111017704,
0.11679039895534515,
-0.07757401466369629,
0.015788530930876732,
0.050594862550497055,
-0.007174165453761816,
-0.01916092447936535,
0.022971641272306442,
0.01318543590605259,
-0.045299217104911804,
-0.017389748245477676,
0.0126308249309659,
0.03982466831803322,
-0.0393952913582325,
0.05860988795757294,
0.021397260949015617,
0.05141783505678177,
-0.09539314359426498,
-0.013176490552723408,
0.018355844542384148,
-0.018999909982085228,
0.03519098088145256,
0.01730029471218586,
-0.06279630959033966,
0.05084533244371414,
0.0009308747830800712,
-0.0015050540678203106,
0.022864297032356262,
-0.005143572576344013,
-0.05578316003084183,
0.04801860451698303,
0.02332945540547371,
0.01756865344941616,
0.0019433757988736033,
0.0030369439627975225,
-0.03982466831803322,
-0.04054029658436775,
0.06254584342241287,
0.001758878119289875,
-0.03016369789838791,
0.007956882938742638,
0.019089363515377045,
-0.0316307358443737,
0.04512031003832817,
0.005863672588020563,
-0.035638246685266495,
0.03143393620848656,
0.0737096294760704,
0.049843452870845795,
0.07456838339567184,
0.04275874048471451,
0.01821271888911724,
-0.05674925819039345,
-0.05846676230430603,
-0.04533499851822853,
-0.0625816211104393,
-0.011324804276227951,
-0.01257715281099081,
-0.024206098169088364,
-0.040182482451200485,
0.004441362805664539,
0.001739869243465364,
0.041041236370801926,
-0.01334645226597786,
0.004421235993504524,
-0.004982556216418743,
0.10190535336732864,
-0.008918507024645805,
0.05098845809698105,
-0.0850881040096283,
-0.05206189677119255,
0.004193129483610392,
-0.008873780257999897,
0.004790231119841337,
-0.017336076125502586,
-0.021289916709065437,
-0.014437784440815449,
-0.007612487301230431,
-0.015475443564355373,
0.022452812641859055,
-0.018203774467110634,
-0.015538061037659645,
0.02252437360584736,
-0.0031062704510986805,
-0.0020182931330055,
0.015555951744318008,
0.002542713889852166,
-0.06519366055727005,
-0.039323728531599045,
0.003560246666893363,
0.026997046545147896,
0.05578316003084183,
0.035530902445316315,
-0.053528934717178345,
0.01297074742615223,
-0.021325698122382164,
-0.029269162565469742,
0.020949993282556534,
0.023562034592032433,
-0.030628856271505356,
0.04254405200481415,
0.035960279405117035,
-0.003327667713165283,
-0.035369887948036194,
-0.03710528463125229,
0.02574469894170761,
-0.03674747049808502,
-0.050916895270347595,
-0.011557383462786674,
-0.022667499259114265,
-0.03667590767145157,
0.01417836919426918,
-0.04075498506426811,
-0.008927452377974987,
-0.004528580233454704,
0.010823865421116352,
-0.01163789164274931,
0.0426156148314476,
-0.0031979603227227926,
0.028052596375346184,
-0.022864297032356262,
-0.007232310250401497,
-0.014473565854132175,
0.03560246527194977,
0.05063064396381378,
0.003757044207304716,
0.06426334381103516,
-0.06612397730350494,
-0.01385633647441864,
0.027032827958464622,
0.015385990962386131,
-0.027265407145023346,
-0.01329278014600277,
0.057751137763261795,
-0.031272921711206436,
0.019035691395401955,
-0.008430985733866692,
-0.02862509898841381,
-0.010412379167973995,
0.003189014969393611,
-0.007692995481193066,
-0.04014670103788376,
0.0003371276252437383,
0.0687360167503357,
-0.013194381259381771,
0.004515162203460932,
0.012595043517649174,
0.021969763562083244,
-0.05131049081683159,
0.018785221502184868,
-0.031165575608611107,
-0.037141066044569016,
-0.0039605507627129555,
0.0037659895606338978,
-0.10791662335395813,
-0.01279184129089117,
0.02349047176539898,
-0.0126308249309659,
0.01206726860255003,
-0.007836121134459972,
0.04715985059738159,
-0.06719741970300674,
-0.03331245854496956,
0.04862688481807709,
0.0820109099149704,
-0.034958403557538986,
0.06483584642410278,
0.026710795238614082,
-0.01853475160896778,
0.020323820412158966,
-0.08344215899705887,
-0.00012621319910977036,
-0.006051524542272091,
0.0017801233334466815,
-0.03240003436803818,
-0.031952764838933945,
0.058967702090740204,
0.0426156148314476,
-0.032489486038684845,
0.042150456458330154,
-0.015725914388895035,
-0.029555413872003555,
0.017908576875925064,
0.023937739431858063,
-0.029179709032177925,
-0.0519903339445591,
0.016056891530752182,
-0.04243670776486397,
0.01505501288920641,
-0.021987654268741608,
-0.00910635944455862,
-0.031362373381853104,
-0.05463815852999687,
0.016835136339068413,
0.08515966683626175,
-0.06147240102291107,
-0.03191698342561722,
-0.022077107802033424,
0.008122371509671211,
-0.05954020470380783,
0.021540386602282524,
0.059289734810590744,
-0.0008419804507866502,
-0.019178815186023712,
0.006583772599697113,
0.03522676229476929,
-0.06669647991657257,
-0.01142320316284895,
-0.01646837778389454,
-0.011593164876103401,
-0.004009750206023455,
0.029340725392103195,
-0.06147240102291107,
0.023347346112132072,
0.034851059317588806,
0.01916092447936535,
0.010474996641278267,
0.016620447859168053,
0.026549778878688812,
0.042901866137981415,
0.025852041319012642,
-0.01268449705094099,
-0.008927452377974987,
0.06497897207736969,
-0.02018069475889206,
-0.02685392089188099,
0.0903121829032898,
-0.01570802368223667,
-0.016772517934441566,
0.0339028500020504,
0.025225868448615074,
0.041470613330602646,
0.052884869277477264,
0.09274531900882721,
-0.010018784552812576,
0.04129170626401901,
0.014706144109368324,
0.0325610488653183,
-0.019626082852482796,
0.002998926443979144,
-0.008600947447121143,
0.0049467748031020164,
-0.013489577919244766,
0.023257892578840256,
0.03053940273821354,
0.01214777585119009,
0.032328471541404724
] |
729,642 | avltree._avl_tree | __delitem__ | Deletes the given key from this tree.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> del avl_tree[0]
>>> avl_tree
AvlTree({1: 'b'})
```
Args:
__k (_K): The key to delete from this tree.
Raises:
KeyError: If the given key is not present in this tree.
| def __delitem__(self, __k: _K) -> None: # noqa: C901, PLR0912
"""Deletes the given key from this tree.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> del avl_tree[0]
>>> avl_tree
AvlTree({1: 'b'})
```
Args:
__k (_K): The key to delete from this tree.
Raises:
KeyError: If the given key is not present in this tree.
"""
if self.__root_key is None:
message: str = f"Key not present in AvlTree: {__k!r}"
raise KeyError(message)
# Find the node to discard and its parent node
parent: AvlTreeNode[_K, _V] | None = None
node_key: _K = self.__root_key
stack: Final[list[_K]] = [node_key]
node: AvlTreeNode[_K, _V] = self.__nodes[node_key]
while node_key != __k:
parent = node
node_key = self.__get_closer_key(key=__k, current_key=node_key)
stack.append(node_key)
node = self.__nodes[node_key]
# Find the key of the node with which to replace the existing node
replacement_key: _K | None = None
if node.lesser_child_key is not None and node.greater_child_key is None:
replacement_key = node.lesser_child_key
elif node.lesser_child_key is None and node.greater_child_key is not None:
replacement_key = node.greater_child_key
elif node.lesser_child_key is not None and node.greater_child_key is not None:
# Find the next highest node than the one to remove
successor_parent: AvlTreeNode[_K, _V] | None = None
replacement_key = node.greater_child_key
successor: AvlTreeNode[_K, _V] = self.__nodes[replacement_key]
while successor.lesser_child_key is not None:
successor_parent = successor
stack.append(replacement_key)
replacement_key = successor.lesser_child_key
successor = self.__nodes[successor.lesser_child_key]
# Swap the successor node with the node to replace
if successor_parent is not None and successor.greater_child_key is None:
successor_parent.lesser_child_key = None
successor.greater_child_key = node.greater_child_key
elif successor_parent is not None:
successor_parent.lesser_child_key = successor.greater_child_key
successor.greater_child_key = node.greater_child_key
successor.lesser_child_key = node.lesser_child_key
# Swap the node to its replacement
if parent is None:
self.__root_key = replacement_key
elif parent.lesser_child_key == node_key:
parent.lesser_child_key = replacement_key
else:
parent.greater_child_key = replacement_key
del self.__nodes[node_key]
if replacement_key is None:
stack.remove(node_key)
else:
stack[stack.index(node_key)] = replacement_key
self.__enforce_avl(stack=stack)
| (self, _AvlTree__k: ~_K) -> NoneType | [
0.05854947865009308,
-0.01511321309953928,
-0.04928086698055267,
0.008989309892058372,
-0.00970824807882309,
-0.010592697188258171,
-0.042991455644369125,
0.04007432609796524,
0.0547427274286747,
-0.04870158061385155,
-0.02768169716000557,
-0.009940997697412968,
0.03597792983055115,
0.013602926395833492,
-0.03322631120681763,
0.009258265607059002,
0.015495956875383854,
0.03986743465065956,
0.003336078952997923,
-0.022985324263572693,
-0.016033867374062538,
0.011420251801609993,
0.012692616321146488,
0.0002817241183947772,
-0.03742615133523941,
-0.006418719422072172,
0.050977353006601334,
0.0354607068002224,
0.023502547293901443,
-0.006072180811315775,
0.013313282281160355,
-0.021578483283519745,
-0.02470250055193901,
-0.01814413070678711,
-0.042370788753032684,
-0.013706371188163757,
-0.017026932910084724,
0.028033407405018806,
0.0036308951675891876,
-0.02652312070131302,
0.004176564048975706,
0.0003274658811278641,
-0.023150835186243057,
-0.07547296583652496,
0.049156736582517624,
0.0634734258055687,
0.04148116707801819,
0.03721926361322403,
0.017999310046434402,
-0.008994482457637787,
0.009785831905901432,
-0.008099689148366451,
-0.004742921330034733,
0.02575763314962387,
-0.03641239553689957,
0.031550515443086624,
0.0031809124629944563,
-0.002242155373096466,
0.04042603448033333,
-0.0285299401730299,
0.06268724799156189,
0.022240526974201202,
-0.06165280565619469,
-0.006889390759170055,
-0.03699168562889099,
-0.023585302755236626,
-0.01751312054693699,
-0.015578712336719036,
-0.019881995394825935,
-0.00631010252982378,
-0.06094938516616821,
-0.010059959255158901,
0.031240180134773254,
0.04402589797973633,
0.007261790335178375,
-0.007204895839095116,
0.006222174968570471,
0.008937587961554527,
-0.0022499137558043003,
-0.01395463664084673,
0.04952913522720337,
-0.05639783665537834,
0.02195088192820549,
-0.025633499026298523,
-0.0075721233151853085,
0.034198686480522156,
0.07083866000175476,
-0.002963679376989603,
0.026688631623983383,
-0.008461744524538517,
-0.06012183055281639,
-0.009372054599225521,
-0.025095589458942413,
0.0012626671232283115,
0.02048197202384472,
0.035667598247528076,
0.039495036005973816,
-0.09144476801156998,
0.028985094279050827,
-0.03246082365512848,
0.10286501795053482,
0.05358415096998215,
-0.014606336131691933,
0.00837381649762392,
-0.002930060029029846,
0.011265085078775883,
-0.0033386650029569864,
0.04770851507782936,
0.007075590547174215,
0.015661468729376793,
-0.09276885539293289,
0.01705796644091606,
0.03544002026319504,
0.03926745802164078,
-0.03719857335090637,
0.011792651377618313,
-0.0717075914144516,
-0.034302134066820145,
-0.003038676455616951,
-0.004238630644977093,
0.012289184145629406,
-0.021806059405207634,
-0.04547411575913429,
-0.012816749513149261,
0.0345710888504982,
-0.025426611304283142,
0.05341864004731178,
0.03500555455684662,
-0.03746752813458443,
0.006920424290001392,
0.011192673817276955,
0.014771847054362297,
-0.02683345414698124,
0.03297804668545723,
0.026254165917634964,
-0.009785831905901432,
0.019126852974295616,
-0.014585647732019424,
-0.010882341302931309,
-0.0012962864711880684,
0.019457874819636345,
-0.03773648291826248,
0.0650457814335823,
0.021123327314853668,
0.04390176385641098,
-0.08912761509418488,
-0.025736942887306213,
-0.036846861243247986,
-0.03163326904177666,
-0.006434235721826553,
-0.056687481701374054,
0.02557143196463585,
0.06947319954633713,
0.0027179992757737637,
0.016095934435725212,
0.03401248902082443,
-0.03252289071679115,
-0.05685299262404442,
-0.049156736582517624,
-0.027536874637007713,
0.019282018765807152,
-0.0004774601256940514,
0.06645262241363525,
-0.02161986008286476,
-0.012289184145629406,
-0.03932952508330345,
0.0067342245019972324,
-0.005239454098045826,
-0.06616298109292984,
0.045556873083114624,
0.0033231484703719616,
-0.005035151727497578,
-0.0778728723526001,
0.019147541373968124,
-0.05374966189265251,
-0.0024309412110596895,
-0.03198498114943504,
0.005446342751383781,
0.021868126466870308,
-0.02819891832768917,
-0.002257671905681491,
0.03995019197463989,
0.023357724770903587,
-0.025261100381612778,
-0.0021012125071138144,
0.04572238400578499,
-0.03541933000087738,
0.02151641622185707,
0.018278609961271286,
0.0074221291579306126,
-0.08110033720731735,
-0.05267384275794029,
0.026378298178315163,
0.006646296940743923,
0.01474081352353096,
0.013923604041337967,
-0.013602926395833492,
0.010158230550587177,
0.0059066698886454105,
0.06620435416698456,
-0.007991072721779346,
-0.022199148312211037,
0.041853565722703934,
0.013065015897154808,
-0.023171525448560715,
-0.01363395992666483,
0.006925596389919519,
-0.012754683382809162,
0.02143366076052189,
0.06161142885684967,
-0.0034084899816662073,
0.0059014977887272835,
0.030185049399733543,
-0.011151296086609364,
0.00262360624037683,
-0.08345887064933777,
-0.1115543395280838,
0.03262633457779884,
0.009170337580144405,
-0.025633499026298523,
0.007603156380355358,
0.038874369114637375,
0.005606681574136019,
-0.04737749323248863,
0.037901993840932846,
-0.019892340525984764,
-0.006444580387324095,
0.004740335512906313,
0.04700509458780289,
-0.020595761016011238,
0.035046931356191635,
-0.013292593881487846,
0.04439829662442207,
-0.061983827501535416,
0.011958162300288677,
-0.07212137430906296,
-0.041957009583711624,
-0.03012298233807087,
-0.010789241641759872,
-0.009609975852072239,
-0.031860847026109695,
-0.025819698348641396,
0.022095704451203346,
0.022116392850875854,
-0.02164054848253727,
0.020099228248000145,
0.004683441016823053,
0.04096394404768944,
-0.0014973563374951482,
-0.00047261116560548544,
-0.001260727527551353,
-0.09698938578367233,
0.010685796849429607,
0.05643921345472336,
0.02596452087163925,
-0.026067964732646942,
-0.030929848551750183,
0.0033800427336245775,
0.0020042334217578173,
0.013313282281160355,
-0.013985670171678066,
-0.03815026208758354,
-0.033681467175483704,
0.06140454113483429,
-0.004657580051571131,
0.03295735642313957,
0.06856288760900497,
0.008772077038884163,
0.0421639010310173,
-0.0181234423071146,
0.032502200454473495,
-0.002999885007739067,
0.01442013680934906,
-0.0179268978536129,
-0.00046485287020914257,
0.07410750538110733,
-0.04439829662442207,
-0.02164054848253727,
0.01155472919344902,
-0.00402656989172101,
0.011285774409770966,
-0.0676112025976181,
-0.01844412088394165,
0.03775717318058014,
-0.05507374927401543,
0.0154235465452075,
-0.06136316433548927,
-0.0753074586391449,
0.00815658364444971,
0.04040534794330597,
0.011037508025765419,
-0.014430481009185314,
-0.04663269221782684,
0.07191447913646698,
0.043943140655756,
0.02652312070131302,
-0.0966583639383316,
0.03231600299477577,
0.025302477180957794,
0.03221255913376808,
0.04365349933505058,
-0.021495727822184563,
-0.004065361339598894,
-0.04357074201107025,
0.09442396461963654,
0.01981993019580841,
0.006423891521990299,
0.02493007853627205,
-0.05536339432001114,
0.10493390262126923,
-0.04824642464518547,
0.004435174632817507,
0.04232941195368767,
0.007701428607106209,
0.04580513760447502,
-0.08854832500219345,
0.03755028545856476,
-0.025364544242620468,
0.043943140655756,
0.02472318895161152,
-0.034405577927827835,
-0.03775717318058014,
-0.11933335661888123,
0.0021102637983858585,
-0.011544384993612766,
-0.05374966189265251,
0.048494692891836166,
-0.0010228055762127042,
0.025054210796952248,
0.031095359474420547,
0.015951111912727356,
0.002646881155669689,
-0.0011611623922362924,
-0.022012948989868164,
-0.07307305932044983,
-0.003661928465589881,
0.030267804861068726,
0.03287459909915924,
0.026440365239977837,
0.026440365239977837,
0.016913143917918205,
0.04381901025772095,
0.00030580724705941975,
-0.002697310410439968,
-0.007468678988516331,
-0.015495956875383854,
0.03775717318058014,
-0.041605301201343536,
-0.001856825314462185,
0.0328952893614769,
0.031860847026109695,
0.019550973549485207,
-0.019602695479989052,
-0.011523695662617683,
0.04456380754709244,
-0.0085444999858737,
0.030164361000061035,
-0.001507700770162046,
-0.008844488300383091,
-0.036846861243247986,
0.022757748141884804,
-0.008399677462875843,
-0.045970648527145386,
-0.005102390423417091,
0.0020869888830929995,
-0.043943140655756,
-0.07063177227973938,
-0.05383241921663284,
0.011213363148272038,
-0.04493620619177818,
0.019219951704144478,
-0.06289413571357727,
0.013220182619988918,
0.04365349933505058,
0.01367533765733242,
0.03390904515981674,
-0.005751503631472588,
0.06566644459962845,
-0.02026473917067051,
-0.01198919489979744,
0.021888814866542816,
0.01589938998222351,
0.03868817165493965,
0.001883979421108961,
-0.04206045717000961,
0.022075016051530838,
0.00724110146984458,
0.0017895865021273494,
0.04235009849071503,
0.010354775004088879,
-0.02745411917567253,
-0.004590341355651617,
0.02047162875533104,
-0.008844488300383091,
-0.06488026678562164,
0.014161525294184685,
0.004445519298315048,
-0.046384427696466446,
-0.02981264889240265,
-0.054659973829984665,
0.0799417644739151,
0.01673728972673416,
-0.027102408930659294,
-0.03815026208758354,
0.05374966189265251,
0.007727289572358131,
0.01984061859548092,
0.021350905299186707,
-0.029874715954065323,
0.005213593132793903,
0.023937013000249863,
0.023254280909895897,
0.0037343394942581654,
0.006387685891240835,
0.047667138278484344,
-0.06744568794965744,
0.052963484078645706,
0.06181831657886505,
0.030267804861068726,
-0.020326806232333183,
-0.03403317555785179,
-0.004879985004663467,
-0.03533657640218735,
-0.02830236218869686,
-0.010297880508005619,
-0.0038739892188459635,
0.007354890462011099,
-0.006170453038066626,
-0.06289413571357727,
0.01782345399260521,
0.018526876345276833,
-0.03256426751613617,
0.040777746587991714,
0.040343280881643295,
-0.0335366427898407,
0.04125358909368515,
-0.001205126172862947,
-0.01706831157207489,
0.024681812152266502,
0.06645262241363525,
-0.03827439248561859,
0.003475728677585721,
0.045970648527145386,
0.003475728677585721,
-0.0019111335277557373,
0.04402589797973633,
0.01907513104379177,
0.027412742376327515,
0.017202788963913918,
-0.013561548665165901,
0.05163939669728279,
0.008653116412460804,
-0.04423278570175171,
0.009734109044075012,
-0.07675567269325256,
-0.09285160899162292,
-0.06881115585565567,
0.016799354925751686,
-0.024992145597934723,
-0.026233475655317307,
0.016520055010914803,
0.05536339432001114,
0.055942680686712265,
-0.022840503603219986,
-0.010473736561834812,
0.048080913722515106,
0.07435576617717743,
-0.02575763314962387,
0.004339488688856363,
-0.05726676806807518,
-0.030391937121748924,
-0.07046626508235931,
-0.0534600168466568,
-0.013468449003994465,
-0.03922608122229576,
-0.0028498906176537275,
0.022199148312211037,
-0.038336459547281265,
-0.04845331236720085,
-0.01442013680934906,
0.02819891832768917,
-0.05821845680475235,
0.026130031794309616,
-0.01404773723334074,
0.01463736966252327,
-0.03190222382545471,
-0.015609745867550373,
0.011906439438462257,
0.0218474380671978,
0.004052430856972933,
-0.06620435416698456,
-0.08747250586748123,
-0.011223707348108292,
0.047460246831178665,
0.05387379601597786,
-0.030371248722076416,
-0.0154235465452075,
-0.031053980812430382,
-0.0005162517190910876,
-0.04952913522720337,
-0.02089574933052063,
0.0024386995937675238,
-0.004440346732735634,
-0.0133029380813241,
0.043529365211725235,
0.0033153900876641273,
0.033371131867170334,
0.04106739163398743,
-0.030619515106081963,
-0.036722730845212936,
0.0014081356348469853,
0.003553312039002776,
0.0670732855796814,
-0.025633499026298523,
0.030805714428424835,
0.03275046870112419,
-0.04282594472169876,
0.028033407405018806,
0.013468449003994465,
-0.011699550785124302,
-0.006139419507235289,
-0.024412857368588448,
0.05941841006278992,
-0.01994406245648861,
0.01076855231076479,
0.002032680669799447,
0.0039722612127661705,
0.011451284401118755,
0.03405386582016945,
-0.007432473357766867,
-0.06078387424349785,
-0.026130031794309616,
0.007882456295192242,
0.0063566528260707855,
-0.0008753974689170718,
0.037901993840932846,
-0.004142944701015949,
0.03459177538752556,
-0.02068886160850525,
0.015940768644213676,
0.020109573379158974,
0.02513696625828743,
0.008787593804299831,
-0.012899504974484444,
-0.013178804889321327,
0.026274854317307472,
0.004582582972943783,
-0.003974847495555878,
-0.049984291195869446,
0.05230144038796425,
-0.04774989187717438,
0.005498065147548914,
0.08370713144540787,
-0.0027257574256509542,
0.03306080028414726,
0.017761386930942535,
-0.011409906670451164,
-0.012423661537468433,
0.06053560972213745,
-0.015454579144716263,
-0.007882456295192242,
0.03775717318058014,
0.026874830946326256,
-0.0668250247836113,
0.09003792703151703,
0.01825791969895363,
-0.04282594472169876,
-0.020306117832660675,
0.10476839542388916,
0.06533542275428772,
0.01804068684577942,
-0.023068079724907875,
0.04696371406316757,
-0.05482548475265503,
-0.11287842690944672,
-0.0005831673042848706,
-0.0449775867164135,
0.009532392956316471,
-0.05230144038796425,
-0.08490708470344543,
-0.00965135358273983,
0.04812229052186012,
0.050108421593904495,
0.023812878876924515,
-0.016613155603408813,
0.013385693542659283,
0.020978504791855812,
0.0794038474559784,
-0.03459177538752556,
0.022343970835208893,
-0.008772077038884163,
0.0014042564434930682,
0.03364009037613869,
-0.03651583939790726,
0.026440365239977837,
0.0002561862929724157,
0.026812763884663582,
0.012206428684294224,
0.004409313667565584,
-0.031116047874093056,
0.06814911216497421,
-0.08271406590938568,
0.04621891677379608,
0.01950959675014019,
-0.02089574933052063,
0.05585992708802223,
0.01293053850531578,
-0.041853565722703934,
0.019871652126312256,
-0.015123557299375534,
0.020637139678001404,
0.03310217708349228,
0.03926745802164078,
-0.008249683305621147,
-0.018578598275780678,
0.003656756365671754,
0.026378298178315163,
-0.02321290224790573,
-0.03852266073226929,
-0.0242887232452631,
-0.05412206053733826,
-0.025157656520605087,
-0.01102716289460659,
0.0061652809381484985,
-0.029005784541368484,
-0.009935826063156128,
0.03256426751613617,
-0.01023581437766552,
-0.020926782861351967,
0.02619209885597229,
0.003744683926925063,
-0.04621891677379608,
0.002600331325083971,
0.036308951675891876,
-0.049363624304533005,
-0.0032533234916627407,
0.02406114526093006,
0.005236868280917406,
-0.0018490670481696725,
0.0521773099899292,
0.03541933000087738,
-0.03341251239180565,
-0.04158461093902588,
0.042577676475048065,
-0.011740928515791893,
-0.0470464713871479,
0.015351135283708572,
0.021868126466870308,
-0.020326806232333183,
0.012527105398476124,
-0.02195088192820549,
0.012547794729471207,
-0.043322477489709854,
-0.060163211077451706,
-0.011430596001446247,
0.03424006700515747,
0.03498486429452896,
-0.016251100227236748,
-0.05312899500131607,
0.023833569139242172,
0.012206428684294224,
-0.03332975506782532,
-0.027640318498015404,
0.025923144072294235,
0.04907397925853729,
-0.021495727822184563,
0.034302134066820145,
0.008208305574953556,
0.010985785163939,
0.013189149089157581,
0.008104861713945866,
-0.08068656176328659,
-0.04274318739771843,
-0.01727519929409027,
-0.028819583356380463,
-0.056563347578048706,
0.02745411917567253,
0.06099076196551323,
-0.0013564134715124965,
-0.01929236389696598,
0.025323165580630302,
0.06384582817554474,
-0.0021736235357820988,
-0.021185394376516342,
-0.01951994001865387,
0.035481397062540054,
-0.013178804889321327,
0.04315696656703949,
0.003796406090259552,
-0.089955173432827,
0.0073859235271811485,
-0.06190107390284538,
-0.007018696051090956,
-0.043943140655756,
-0.0498601570725441,
-0.018423430621623993,
0.000551164208445698,
0.0111823296174407,
0.02896440587937832,
-0.010168575681746006,
0.03285391256213188,
0.0054877204820513725,
-0.0031059153843671083,
-0.03827439248561859,
-0.009522048756480217,
0.023192213848233223,
-0.01538216881453991,
0.022343970835208893,
-0.022406037896871567,
0.0024180107284337282,
0.004608443938195705,
0.02395770139992237,
-0.0008501828997395933,
-0.05598405748605728,
0.01161679532378912,
0.0390605702996254,
-0.024868011474609375,
-0.0773763433098793,
-0.03477797657251358,
-0.011471973732113838,
-0.012278839014470577,
-0.016302822157740593,
0.08047967404127121,
0.02130952663719654,
0.017326921224594116,
0.007815217599272728,
0.05619094893336296,
-0.052549708634614944,
-0.03359870985150337,
0.03469521924853325,
0.04899122565984726,
0.060080453753471375,
-0.010789241641759872,
-0.06111489608883858,
0.045970648527145386,
-0.021175049245357513,
-0.01929236389696598,
-0.005839431192725897,
0.06641124188899994,
0.06686639785766602,
0.00937722623348236,
0.04634305089712143,
-0.053625527769327164,
-0.0048773991875350475,
0.048949845135211945,
0.008601394481956959,
-0.029543694108724594,
0.08176238089799881,
0.003814508905634284,
0.006729052402079105,
0.026067964732646942,
-0.008818627335131168,
-0.006951457355171442,
0.03926745802164078,
0.03564690798521042,
0.024143900722265244,
0.005549787078052759,
0.036205507814884186,
-0.00021593998826574534,
-0.02341979183256626,
0.017844142392277718,
-0.03862610459327698,
-0.030454004183411598,
0.0059377034194767475,
-0.026564497500658035,
-0.010509941726922989,
-0.004052430856972933,
0.029729893431067467
] |
729,644 | avltree._avl_tree | __getitem__ | Gets the value associated with the given key.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree[0]
'a'
>>> avl_tree[2]
KeyError: 'Key not present in AvlTree: 2'
```
Args:
__k (_K): The key.
Returns:
_V: The value associated with the given key.
Raises:
KeyError: If the given key is not present in this tree.
| def __getitem__(self, __k: _K) -> _V:
"""Gets the value associated with the given key.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree[0]
'a'
>>> avl_tree[2]
KeyError: 'Key not present in AvlTree: 2'
```
Args:
__k (_K): The key.
Returns:
_V: The value associated with the given key.
Raises:
KeyError: If the given key is not present in this tree.
"""
if self.__root_key is None:
message: str = f"Key not present in AvlTree: {__k!r}"
raise KeyError(message)
current_key: _K = self.__root_key
current_node: AvlTreeNode[_K, _V] = self.__nodes[current_key]
while current_key != __k:
current_key = self.__get_closer_key(key=__k, current_key=current_key)
current_node = self.__nodes[current_key]
return current_node.value
| (self, _AvlTree__k: ~_K) -> ~_V | [
0.07337706536054611,
-0.05779154598712921,
-0.06947120279073715,
0.04979022219777107,
0.059990961104631424,
0.021577028557658195,
0.0063090999610722065,
-0.04497426003217697,
0.08410869538784027,
-0.062076617032289505,
-0.059422146528959274,
-0.010039574466645718,
0.050852011889219284,
-0.0032043212559074163,
-0.026032740250229836,
0.04345742240548134,
0.009110511280596256,
0.04944893345236778,
0.0000930248643271625,
0.0519137978553772,
-0.031284794211387634,
-0.03841393440961838,
0.03257410600781441,
-0.01305429171770811,
-0.0166567824780941,
-0.022051040083169937,
0.07132933288812637,
0.008973048068583012,
0.04190266504883766,
-0.0416751392185688,
-0.050055671483278275,
-0.019415533170104027,
-0.012172629125416279,
0.027189329266548157,
-0.04656694084405899,
-0.012428595684468746,
0.0009172132704406977,
-0.03340836614370346,
0.0039200796745717525,
-0.004339579958468676,
0.031531281769275665,
-0.0034128865227103233,
0.0189984031021595,
-0.07694163173437119,
-0.001343824085779488,
0.015196825377643108,
0.015443312004208565,
0.0136799868196249,
0.0121915889903903,
-0.04322989657521248,
-0.024402139708399773,
0.03742799162864685,
-0.022392328828573227,
-0.036461006850004196,
-0.04269900545477867,
0.026753239333629608,
0.004915504716336727,
-0.014827095903456211,
-0.019624097272753716,
0.022240644320845604,
0.006337540689855814,
-0.013661026954650879,
-0.02644987218081951,
0.04277484491467476,
-0.02781502529978752,
-0.03985493257641792,
-0.023605799302458763,
0.014741773717105389,
-0.03299123793840408,
-0.01988954469561577,
-0.004306399263441563,
-0.009674585424363613,
-0.014637491665780544,
-0.0000813226870377548,
0.017917655408382416,
-0.011433170177042484,
-0.03382549807429314,
0.011812379583716393,
0.01286468654870987,
0.004382241051644087,
-0.004766190890222788,
-0.038262251764535904,
-0.015462272800505161,
-0.04922140762209892,
-0.023055944591760635,
0.011821860447525978,
-0.0029436147306114435,
-0.01608796790242195,
0.05847412347793579,
0.05236884951591492,
0.007645814213901758,
0.016827426850795746,
-0.037484873086214066,
0.0414096899330616,
-0.021577028557658195,
-0.01945345290005207,
0.06306256353855133,
-0.08774910867214203,
-0.0043703909032046795,
0.006536625791341066,
0.04558099806308746,
0.04258524253964424,
0.012589759193360806,
-0.00677837198600173,
-0.032308660447597504,
-0.0238143652677536,
-0.03993077203631401,
0.05911878123879433,
0.024515902623534203,
0.023264510557055473,
-0.04520178586244583,
0.017595326527953148,
-0.04235771670937538,
0.0353233776986599,
-0.09487824887037277,
0.034830402582883835,
-0.03137959539890289,
0.010172298178076744,
-0.04838714748620987,
0.004958165809512138,
0.03560778498649597,
-0.004581326153129339,
-0.021121976897120476,
0.014381525106728077,
0.003934300038963556,
-0.036688532680273056,
0.01761428639292717,
0.008390013128519058,
-0.036119718104600906,
0.008375792764127254,
0.053278952836990356,
0.03697293996810913,
-0.016097448766231537,
0.025691451504826546,
0.042509399354457855,
0.0009101030882447958,
0.04023414105176926,
-0.003294383641332388,
-0.03100038692355156,
0.035057928413152695,
0.05032111704349518,
-0.03543714061379433,
0.017737530171871185,
-0.024876151233911514,
0.018619192764163017,
-0.04641525819897652,
0.005730805452913046,
-0.029256023466587067,
-0.004410681780427694,
-0.01966201886534691,
-0.002231411635875702,
0.02313178777694702,
0.02883889153599739,
0.03342732787132263,
0.032668910920619965,
-0.006370721850544214,
0.01691274903714657,
-0.0680302083492279,
0.007252383977174759,
-0.04884219914674759,
-0.037484873086214066,
-0.023605799302458763,
0.01717819646000862,
-0.05502331629395485,
-0.021254699677228928,
0.023662680760025978,
-0.02950250916182995,
0.017832333222031593,
-0.03122791275382042,
0.03124687261879444,
-0.02402292937040329,
-0.037143584340810776,
-0.1259734332561493,
0.01458061020821333,
-0.00820514839142561,
-0.025672491639852524,
-0.05710896849632263,
0.06336592882871628,
0.06279711425304413,
-0.03477352112531662,
-0.042736925184726715,
0.021368462592363358,
-0.04087879881262779,
-0.05267221853137016,
-0.0032019512727856636,
0.04759080708026886,
0.008081905543804169,
0.008973048068583012,
0.016827426850795746,
0.05032111704349518,
-0.03594907373189926,
-0.05456826463341713,
0.022013118490576744,
-0.02004122920334339,
-0.007314005866646767,
-0.014760734513401985,
0.003280163276940584,
0.054302819073200226,
-0.0331808440387249,
0.11527972668409348,
0.04118216410279274,
-0.01754792593419552,
-0.011129802092909813,
0.0439503937959671,
-0.04448128864169121,
0.0005711845005862415,
0.018600232899188995,
-0.0020477320067584515,
0.009148431941866875,
0.019368130713701248,
-0.0658307895064354,
-0.012134707532823086,
0.008565397001802921,
0.0402720607817173,
0.006967976689338684,
-0.03784511983394623,
-0.10064223408699036,
-0.01829686388373375,
0.008333131670951843,
0.035190653055906296,
0.07307369261980057,
-0.03864146023988724,
0.028440721333026886,
0.0007785647758282721,
0.0428127683699131,
-0.05301350727677345,
-0.0025644050911068916,
0.0022752578370273113,
-0.009612963534891605,
-0.00018679036293178797,
0.054302819073200226,
-0.012921568006277084,
0.0462256520986557,
-0.027511658146977425,
0.009831009432673454,
-0.0035290196537971497,
0.0005821460508741438,
0.008574877865612507,
0.0002968500484712422,
0.007806978188455105,
-0.013926473446190357,
0.007261864375323057,
0.006091054528951645,
0.0267911609262228,
-0.05824659764766693,
-0.0023356943856924772,
0.0003481025923974812,
0.09283051639795303,
-0.013537783175706863,
0.03356005251407623,
-0.018732955679297447,
-0.02644987218081951,
0.02290426194667816,
0.04561891779303551,
0.021463265642523766,
-0.05202756077051163,
-0.03921027481555939,
0.02115989662706852,
0.018666593357920647,
-0.006768891587853432,
-0.06598247587680817,
0.016827426850795746,
0.0006274734041653574,
0.06192493066191673,
-0.06018056720495224,
0.02320762909948826,
0.07587984949350357,
0.01515890471637249,
0.012817285023629665,
0.03547506034374237,
0.022695695981383324,
0.02654467336833477,
-0.00483492249622941,
-0.0014220360899344087,
0.014277242124080658,
0.0344511941075325,
0.0017467343714088202,
0.04986606538295746,
-0.023510996252298355,
0.010949677787721157,
-0.02608962170779705,
0.004235297441482544,
-0.0777379721403122,
0.028194235637784004,
-0.06795436143875122,
-0.032555148005485535,
-0.0229801032692194,
-0.09548498690128326,
0.01629653386771679,
-0.01852438971400261,
0.04038582369685173,
-0.022828418761491776,
-0.02299906313419342,
0.032422423362731934,
0.04683239012956619,
0.0330481193959713,
-0.07515934854745865,
0.015462272800505161,
0.026620516553521156,
0.016106929630041122,
0.02220272272825241,
-0.024876151233911514,
-0.03179672732949257,
-0.027549579739570618,
0.04459505155682564,
0.05088993161916733,
0.0011903627309948206,
0.04781833291053772,
-0.015898363664746284,
0.059763435274362564,
-0.07186022400856018,
-0.010608389042317867,
0.06389681994915009,
0.05597133934497833,
-0.009290635585784912,
-0.06814397126436234,
-0.04713575541973114,
-0.015737200155854225,
0.05449242144823074,
0.03356005251407623,
-0.037996806204319,
0.03503897041082382,
-0.03168296441435814,
-0.021084055304527283,
0.017149755731225014,
-0.02402292937040329,
0.02516055852174759,
-0.010617869906127453,
0.018533870577812195,
0.03898274898529053,
-0.009195833466947079,
-0.0381295271217823,
-0.025463925674557686,
0.012267431244254112,
-0.06966080516576767,
0.020894451066851616,
0.005015047267079353,
0.07076051831245422,
0.004083613865077496,
0.008446894586086273,
0.028554484248161316,
-0.018391666933894157,
-0.016922229900956154,
-0.009428099729120731,
0.06867486238479614,
0.0014398115454241633,
0.05915670096874237,
-0.036555808037519455,
0.007532051298767328,
-0.007792757824063301,
-0.018533870577812195,
-0.036650609225034714,
-0.02324555069208145,
0.0018996031722053885,
-0.01539591047912836,
-0.015850963070988655,
0.053923606872558594,
-0.055212922394275665,
-0.0054748388938605785,
0.013471421785652637,
0.05195171758532524,
-0.004462823271751404,
-0.02415565401315689,
-0.02415565401315689,
-0.02607066184282303,
-0.031398557126522064,
-0.024970954284071922,
-0.017130794003605843,
0.02620338462293148,
-0.01675158552825451,
-0.005621782504022121,
-0.02607066184282303,
-0.023055944591760635,
0.029767954722046852,
-0.0028985836543142796,
-0.0028369619976729155,
0.010570468381047249,
0.02011707052588463,
0.0011097806273028255,
-0.005877749063074589,
0.042054347693920135,
0.03378757834434509,
0.030469493940472603,
0.051307063549757004,
0.0012774624628946185,
-0.010162818245589733,
0.021482225507497787,
-0.010390344075858593,
0.028175275772809982,
0.03993077203631401,
-0.043191976845264435,
0.003837127471342683,
0.0001423517387593165,
-0.00812456663697958,
-0.040347903966903687,
-0.010873835533857346,
0.08145422488451004,
-0.06704425811767578,
-0.01652405969798565,
-0.017756490036845207,
0.03695397824048996,
0.02574833296239376,
-0.04967645928263664,
0.009252714924514294,
0.04702199250459671,
0.013291297480463982,
0.01729195937514305,
0.003180620726197958,
-0.060711462050676346,
-0.015064102597534657,
0.006963236723095179,
0.006688309833407402,
0.00006121421029092744,
-0.015177865512669086,
0.018277904018759727,
-0.04797001928091049,
0.018875159323215485,
0.055326685309410095,
-0.016969630494713783,
0.002498043468222022,
-0.025881057605147362,
-0.04736328125,
-0.03342732787132263,
-0.0028322217985987663,
-0.0016862978227436543,
-0.0023712452966719866,
0.024553822353482246,
0.03079182095825672,
-0.04440544545650482,
-0.01539591047912836,
0.011366808786988258,
-0.023397233337163925,
0.02813735418021679,
0.02095133252441883,
-0.02883889153599739,
0.023169707506895065,
-0.030734939500689507,
-0.02986275777220726,
0.009342777542769909,
0.02015499211847782,
0.006508185062557459,
0.0331808440387249,
0.026980765163898468,
0.030052362009882927,
-0.004695089068263769,
-0.01883723773062229,
0.006930056028068066,
0.04084087535738945,
0.028421761468052864,
-0.08372948318719864,
-0.0267911609262228,
0.024326296523213387,
-0.0013224935391917825,
0.043874554336071014,
-0.020079148933291435,
-0.02572937309741974,
-0.11444546282291412,
0.0030644878279417753,
0.02950250916182995,
0.015092543326318264,
-0.010589429177343845,
0.04118216410279274,
0.04133385047316551,
-0.050852011889219284,
-0.005986772011965513,
0.03285851329565048,
0.026829080656170845,
0.016050048172473907,
-0.024212535470724106,
-0.05282390117645264,
-0.03602491319179535,
-0.024459021165966988,
-0.04186474159359932,
-0.036783333867788315,
0.006617208011448383,
-0.014684893190860748,
0.0032730530947446823,
-0.026942843571305275,
-0.043078213930130005,
-0.03879314288496971,
-0.0266584362834692,
-0.05324103310704231,
0.03490624576807022,
0.015376950614154339,
-0.014561649411916733,
0.01378426980227232,
0.0045102243311703205,
0.078268863260746,
-0.00810086540877819,
-0.030412612482905388,
-0.016960149630904198,
0.002687648171558976,
-0.009707766585052013,
0.056236788630485535,
0.021994158625602722,
-0.009821529500186443,
-0.0032019512727856636,
0.016287053003907204,
-0.005427437834441662,
0.011442650109529495,
-0.009214794263243675,
0.003621452022343874,
0.015670837834477425,
0.009973213076591492,
0.008352091535925865,
-0.016988590359687805,
0.01344298105686903,
0.03031780943274498,
0.028459683060646057,
-0.05832244083285332,
0.030697019770741463,
0.007209722883999348,
0.028876813128590584,
-0.021785592660307884,
0.04095463827252388,
0.059194620698690414,
-0.02599482052028179,
-0.0074941301718354225,
-0.009371218271553516,
0.017898693680763245,
-0.002277627820149064,
-0.04213019087910652,
0.0289336945861578,
-0.023169707506895065,
-0.015936285257339478,
0.060370173305273056,
-0.03943780064582825,
0.02150118537247181,
-0.0368591770529747,
0.063820980489254,
-0.08418453484773636,
-0.046984072774648666,
-0.007982362993061543,
0.03194840997457504,
-0.037579674273729324,
0.017709089443087578,
0.013575704768300056,
0.047894176095724106,
-0.05043487995862961,
0.03443223237991333,
0.00821462832391262,
-0.005299454554915428,
0.018922559916973114,
-0.019017362967133522,
0.05229300633072853,
-0.01657146029174328,
-0.05638847127556801,
-0.00580664724111557,
0.01195458322763443,
0.002720829099416733,
0.01668522320687771,
0.034034062176942825,
0.08236432820558548,
0.017263518646359444,
0.03132271394133568,
0.03352212905883789,
-0.04808378219604492,
-0.025937939062714577,
0.02072380669414997,
-0.0047543407417833805,
0.04774249345064163,
0.033010199666023254,
0.020913410931825638,
0.00866020005196333,
-0.016988590359687805,
-0.021766632795333862,
-0.05434073880314827,
-0.02004122920334339,
0.09002436697483063,
0.0003673593164421618,
-0.011281486600637436,
-0.040461666882038116,
0.0033678554464131594,
-0.018552830442786217,
-0.06787852197885513,
0.032213859260082245,
-0.06488277018070221,
0.011708097532391548,
-0.03739006817340851,
-0.04539139196276665,
-0.01663782261312008,
0.020761726424098015,
0.08949346840381622,
0.04819754511117935,
0.004574215970933437,
0.032896436750888824,
0.028687208890914917,
0.04201642796397209,
-0.03295331820845604,
-0.008380532264709473,
-0.020875489339232445,
-0.07170853763818741,
-0.01636289618909359,
0.014324643649160862,
0.05043487995862961,
-0.02309386618435383,
-0.02574833296239376,
0.03704877942800522,
0.03847081586718559,
-0.0839570090174675,
0.007930221036076546,
-0.036916058510541916,
0.007242904044687748,
0.029142260551452637,
-0.017415201291441917,
0.04895596206188202,
0.041371770203113556,
0.002865402726456523,
0.04550515487790108,
-0.018988922238349915,
-0.00946602039039135,
-0.009684065356850624,
0.030697019770741463,
0.018619192764163017,
0.020079148933291435,
0.00909155048429966,
0.0023048834409564734,
0.047780413180589676,
-0.02152014710009098,
0.037939924746751785,
-0.029009535908699036,
0.014343604445457458,
-0.015585515648126602,
0.01852438971400261,
-0.018619192764163017,
-0.048007939010858536,
0.06245582550764084,
-0.06006680428981781,
0.02290426194667816,
0.003344154916703701,
0.008612798526883125,
0.022032078355550766,
0.007290305104106665,
0.021652869880199432,
-0.0400066152215004,
-0.028459683060646057,
0.05809491500258446,
-0.00022248939785640687,
-0.00855591706931591,
0.08206096291542053,
-0.05066240578889847,
0.011859781108796597,
-0.05490955337882042,
0.030488453805446625,
0.06825773417949677,
0.006228518206626177,
-0.034944165498018265,
0.018126219511032104,
0.049714382737874985,
0.030507413670420647,
0.0006742821424268186,
-0.018988922238349915,
-0.03928611800074577,
-0.004934465046972036,
-0.021558066830039024,
-0.002281182911247015,
0.05570589378476143,
-0.014836576767265797,
-0.04842507094144821,
0.043988317251205444,
-0.06310047954320908,
-0.04156137630343437,
-0.0833502784371376,
-0.029843797907233238,
0.04505010321736336,
-0.029673153534531593,
-0.054416581988334656,
0.009508681483566761,
0.018666593357920647,
0.03009028360247612,
0.06264542788267136,
-0.06533782184123993,
-0.016922229900956154,
0.009006228297948837,
-0.004410681780427694,
-0.04322989657521248,
0.05627470836043358,
0.02529328130185604,
0.03822433203458786,
-0.025008874014019966,
0.053809843957424164,
0.06492068618535995,
0.0033654854632914066,
0.03467871993780136,
-0.04671862721443176,
-0.007849639281630516,
-0.003161660162732005,
0.013319738209247589,
0.049486856907606125,
-0.09715350717306137,
-0.005124070215970278,
-0.04383663088083267,
0.005654963664710522,
-0.005304194521158934,
-0.07970986515283585,
-0.0104187848046422,
-0.014315163716673851,
0.01504514180123806,
-0.006650388706475496,
-0.0038963789120316505,
0.018695034086704254,
0.010892796330153942,
-0.026165464892983437,
-0.000986537546850741,
-0.028687208890914917,
0.01413503848016262,
-0.010257620364427567,
0.03420470654964447,
-0.040347903966903687,
-0.030393650755286217,
-0.006517665460705757,
0.01160381454974413,
-0.02186143398284912,
-0.07948233932256699,
0.04842507094144821,
0.0296352319419384,
-0.03733318671584129,
-0.018969962373375893,
-0.04099256172776222,
0.05619886517524719,
-0.02129262126982212,
-0.04258524253964424,
0.06097690761089325,
0.0329153947532177,
0.016618860885500908,
0.03240346163511276,
0.06234206259250641,
-0.026867002248764038,
-0.04853883013129234,
0.09624340385198593,
0.06370721757411957,
0.017965056002140045,
0.032308660447597504,
-0.06897822767496109,
-0.0002632247924339026,
-0.041371770203113556,
-0.05665391683578491,
-0.012855206616222858,
0.06719594448804855,
0.09563666582107544,
0.004915504716336727,
0.022676736116409302,
-0.059915121644735336,
-0.02115989662706852,
0.019605137407779694,
-0.025482887402176857,
-0.014637491665780544,
0.0751214250922203,
-0.003749435069039464,
0.012618199922144413,
0.02172871120274067,
0.04637733846902847,
0.027265172451734543,
0.04671862721443176,
0.053278952836990356,
-0.012656121514737606,
0.009736207313835621,
-0.013272336684167385,
0.03663165122270584,
-0.006712010130286217,
-0.02770126238465309,
-0.05236884951591492,
-0.0618111677467823,
0.03822433203458786,
-0.09328556805849075,
-0.023681640625,
-0.026165464892983437,
0.046756546944379807
] |
729,645 | avltree._avl_tree | __init__ | Constructor.
Inserting the elements of a passed-in mapping has an amortized and worst-case
time complexity of O[n*log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree
AvlTree({0: 'a', 1: 'b'})
```
Args:
mapping (dict[_K, _V] | None): An optional initial mapping of items to add
to this tree. Defaults to None.
| def __init__(self, mapping: Mapping[_K, _V] | None = None) -> None:
"""Constructor.
Inserting the elements of a passed-in mapping has an amortized and worst-case
time complexity of O[n*log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree
AvlTree({0: 'a', 1: 'b'})
```
Args:
mapping (dict[_K, _V] | None): An optional initial mapping of items to add
to this tree. Defaults to None.
"""
self.__nodes: Final[dict[_K, AvlTreeNode[_K, _V]]] = {}
self.__root_key: _K | None = None
if mapping is not None:
for key, value in mapping.items():
self[key] = value
| (self, mapping: Optional[Mapping[~_K, ~_V]] = None) -> NoneType | [
0.006278782617300749,
-0.0005788328126072884,
-0.00121075299102813,
0.0007329670479521155,
0.010723640210926533,
0.03928462043404579,
-0.016708029434084892,
-0.0023672122042626143,
0.005067426711320877,
-0.048338424414396286,
-0.03826148435473442,
0.04335786774754524,
0.014111576601862907,
0.04416865482926369,
-0.01522158458828926,
-0.017016900703310966,
-0.0009061041055247188,
0.04667823761701584,
-0.027180710807442665,
0.0334932766854763,
-0.009217889979481697,
0.009608806110918522,
0.015182974748313427,
0.07061579823493958,
0.0017193054081872106,
-0.000014987366739660501,
-0.01734507642686367,
0.0023672122042626143,
0.020057357847690582,
-0.02698766626417637,
0.010945641435682774,
0.012354868464171886,
-0.044863615185022354,
-0.0018013494554907084,
-0.024613214656710625,
-0.038608964532613754,
0.0010008167009800673,
-0.0036051119677722454,
-0.014710015617311,
-0.000889815972186625,
0.05829953774809837,
-0.004155289847403765,
-0.10123270750045776,
-0.01935274340212345,
0.01706516183912754,
0.04262429475784302,
0.015926197171211243,
-0.02528887242078781,
0.023937558755278587,
-0.026736708357930183,
-0.05810648947954178,
0.025520525872707367,
0.016350897029042244,
0.006080911960452795,
-0.06536497920751572,
0.06856951862573624,
-0.008846279233694077,
-0.03928462043404579,
-0.02424643002450466,
0.030230818316340446,
-0.026176877319812775,
0.03586772829294205,
-0.008136839605867863,
-0.014130881056189537,
0.02424643002450466,
0.011746777221560478,
-0.08980444818735123,
-0.03355119004845619,
0.024767650291323662,
0.020366229116916656,
0.019999442622065544,
-0.019198307767510414,
0.017837341874837875,
0.012856785207986832,
0.05077078938484192,
0.06436114013195038,
-0.018754305317997932,
0.04073245823383331,
0.04772067815065384,
0.037083908915519714,
-0.006563523784279823,
-0.04231542348861694,
-0.007369486149400473,
-0.005858910270035267,
0.0007263311417773366,
0.013098090887069702,
-0.02996055595576763,
-0.030752040445804596,
0.03470945730805397,
0.0008958486141636968,
-0.03167865425348282,
-0.014063315466046333,
-0.036543384194374084,
0.012827828526496887,
-0.047875117510557175,
0.030211513862013817,
0.0711563229560852,
-0.05656213313341141,
-0.02526956796646118,
0.03884061798453331,
0.025713570415973663,
0.004273529630154371,
-0.017557427287101746,
-0.01083946693688631,
-0.05320315435528755,
-0.045828841626644135,
-0.02698766626417637,
-0.00857118982821703,
-0.015829674899578094,
0.04857007786631584,
-0.015491846948862076,
0.05864701792597771,
0.022914420813322067,
0.07266207039356232,
-0.08185100555419922,
0.05895588919520378,
-0.03409171476960182,
-0.05995972082018852,
-0.04760485142469406,
0.028725069016218185,
0.03872479125857353,
-0.01806899532675743,
-0.0519290566444397,
0.0020583404693752527,
-0.0018206540262326598,
-0.04540414363145828,
0.044245872646570206,
-0.03310718759894371,
-0.047411806881427765,
0.0165825504809618,
0.08872339874505997,
-0.0005272536654956639,
-0.013638616539537907,
0.018001429736614227,
0.00970532838255167,
-0.05111826956272125,
-0.005274949595332146,
-0.0017156858230009675,
-0.04262429475784302,
0.023937558755278587,
0.023416336625814438,
-0.08076995611190796,
0.02121562510728836,
-0.029767511412501335,
-0.00622086925432086,
-0.029130464419722557,
-0.02801080420613289,
-0.02644713968038559,
0.021427975967526436,
-0.010308593511581421,
0.00910206325352192,
-0.031292565166950226,
-0.00028489192482084036,
0.0779901072382927,
-0.029844729229807854,
-0.009903199039399624,
0.04413004592061043,
-0.08486250042915344,
0.05107966065406799,
-0.022972334176301956,
0.013069134205579758,
-0.02177545614540577,
0.012740958482027054,
-0.03789469972252846,
-0.02694905735552311,
0.0013742378214374185,
0.003761960892006755,
-0.0694575235247612,
0.005656213033944368,
-0.04181350767612457,
-0.0037136997561901808,
-0.08501693606376648,
-0.06046163663268089,
0.06281678378582001,
0.036562688648700714,
-0.01907282881438732,
-0.013001568615436554,
0.04772067815065384,
0.04930364713072777,
0.001572108711116016,
-0.02694905735552311,
0.06308704614639282,
-0.01240312959998846,
0.02165962941944599,
-0.041118547320365906,
0.000019049979528062977,
0.0022815484553575516,
0.05907171592116356,
0.01862882450222969,
0.01840682327747345,
0.0038271136581897736,
-0.04312621429562569,
-0.014410795643925667,
-0.001382683520205319,
0.006790351588279009,
0.04490222409367561,
-0.009584675543010235,
0.01967126689851284,
-0.05080939829349518,
0.08910948783159256,
0.008344362489879131,
-0.013127047568559647,
0.010617464780807495,
0.01680455170571804,
-0.011283469386398792,
0.006307739764451981,
-0.020810231566429138,
0.032836925238370895,
0.04663962870836258,
-0.016389505937695503,
0.014671406708657742,
-0.03405310586094856,
-0.023474249988794327,
0.04362813010811806,
-0.052006274461746216,
-0.024574605748057365,
-0.053512025624513626,
0.009893546812236309,
0.005820301361382008,
-0.0004331443051341921,
0.07007527351379395,
0.01244173850864172,
-0.02221945859491825,
-0.03165934979915619,
0.040693849325180054,
-0.018078647553920746,
0.03009568713605404,
-0.03499902784824371,
-0.012885741889476776,
0.020906753838062286,
-0.015588369220495224,
-0.03972862288355827,
-0.018937697634100914,
-0.03735417127609253,
0.04884034022688866,
-0.04826120659708977,
0.0387054868042469,
-0.05162018537521362,
-0.028088022023439407,
-0.06772012263536453,
0.026080355048179626,
-0.014970625750720501,
-0.025481916964054108,
0.01704585738480091,
-0.03266318514943123,
0.01686246506869793,
-0.06644602864980698,
0.07351146638393402,
-0.018899088725447655,
-0.007987229153513908,
-0.03478667512536049,
-0.0402691513299942,
-0.010183114558458328,
0.024690432474017143,
0.019101785495877266,
0.012924350798130035,
-0.006964092142879963,
0.028918113559484482,
-0.030829258263111115,
0.00047899247147142887,
-0.015154018066823483,
-0.024613214656710625,
-0.006544219329953194,
0.06563524156808853,
0.015154018066823483,
-0.024690432474017143,
0.01611924171447754,
-0.0021608953829854727,
0.012557565234601498,
-0.0003176190657541156,
0.06837647408246994,
0.024014776572585106,
0.039149489253759384,
0.029265595600008965,
-0.0027195189613848925,
0.0056224302388727665,
-0.02588731050491333,
0.0024468430783599615,
-0.021987805142998695,
0.011447558179497719,
-0.015733152627944946,
-0.01611924171447754,
-0.05239236354827881,
0.014796885661780834,
-0.0355781614780426,
-0.023146074265241623,
-0.04416865482926369,
-0.013223569840192795,
-0.029670989140868187,
-0.07119493186473846,
-0.017933864146471024,
0.04335786774754524,
-0.04331925883889198,
0.04285595193505287,
0.03885992243885994,
0.003728178096935153,
-0.06150408089160919,
0.05301010608673096,
-0.00957502331584692,
-0.03104160726070404,
0.013435919769108295,
-0.056948222219944,
0.03482528403401375,
0.012026692740619183,
0.007543226238340139,
0.04559718817472458,
-0.04930364713072777,
0.031176738440990448,
0.04799094423651695,
0.06660046428442001,
-0.021003276109695435,
0.05760457366704941,
0.041118547320365906,
0.06158129870891571,
-0.02009596675634384,
0.009792198427021503,
-0.01965196244418621,
-0.06343452632427216,
0.043705347925424576,
0.009222716093063354,
-0.031215347349643707,
0.023165378719568253,
-0.03830009326338768,
-0.03573259711265564,
-0.009135846048593521,
-0.025230959057807922,
0.0942830890417099,
-0.046909891068935394,
0.0475662425160408,
-0.012325911782681942,
-0.013542094267904758,
0.0347287617623806,
-0.0019738832488656044,
0.007089571096003056,
-0.09412865340709686,
0.011524775996804237,
0.0007625270518474281,
0.021466584876179695,
-0.031273260712623596,
0.004828533623367548,
0.014285316690802574,
0.029670989140868187,
-0.0486086867749691,
0.009280629456043243,
0.048956166952848434,
-0.019719528034329414,
0.008547059260308743,
-0.06428392231464386,
-0.04401421919465065,
-0.0005169981741346419,
0.0010472681606188416,
-0.05077078938484192,
-0.0415046364068985,
-0.010530594736337662,
0.03758582845330238,
-0.009048976004123688,
0.05320315435528755,
-0.04621493071317673,
-0.020926058292388916,
0.02997986041009426,
0.049535300582647324,
-0.04772067815065384,
-0.020617187023162842,
-0.03061690926551819,
0.025501221418380737,
-0.014044011011719704,
0.00974393729120493,
-0.030250122770667076,
-0.009714980609714985,
-0.01552080363035202,
0.06497889012098312,
-0.07273928821086884,
-0.025559134781360626,
0.03216126561164856,
0.002644713968038559,
0.009893546812236309,
-0.028107326477766037,
0.02268276736140251,
-0.06312565505504608,
-0.010752596892416477,
0.01840682327747345,
0.02324259653687477,
0.06057746335864067,
0.04413004592061043,
-0.013387658633291721,
-0.02438156120479107,
0.07034553587436676,
0.05023026093840599,
0.051002442836761475,
0.05162018537521362,
-0.04385978356003761,
0.009338542819023132,
0.02893741801381111,
-0.005545212421566248,
-0.0025747353211045265,
0.02380242571234703,
0.014883755706250668,
-0.012132867239415646,
0.0076590534299612045,
-0.014854799024760723,
0.02335842326283455,
-0.03980584070086479,
-0.005931301973760128,
0.005863736383616924,
0.03847383335232735,
-0.0014478361699730158,
-0.0023792774882167578,
0.009980416856706142,
0.020926058292388916,
-0.0005531940842047334,
0.023995472118258476,
0.003059760434553027,
0.02220015414059162,
-0.028821591287851334,
-0.0014442165847867727,
-0.060384418815374374,
0.047411806881427765,
0.007412921171635389,
-0.03760513290762901,
-0.05370507016777992,
0.02235458977520466,
0.011244860477745533,
-0.013204265385866165,
0.018271692097187042,
0.04563579708337784,
-0.00010511893924558535,
0.05316454544663429,
-0.01704585738480091,
-0.009295107796788216,
-0.0201345756649971,
-0.017711862921714783,
0.02075231820344925,
0.017837341874837875,
-0.02432364784181118,
0.030385253950953484,
0.0316014364361763,
-0.010308593511581421,
-0.07084745168685913,
0.01862882450222969,
0.011254512704908848,
-0.013136699795722961,
0.014681058935821056,
0.0725848525762558,
0.020366229116916656,
0.007963098585605621,
0.032914143055677414,
-0.023705903440713882,
0.024149907752871513,
0.03824217990040779,
-0.012055649422109127,
0.03530789911746979,
0.022547634318470955,
0.003704047529026866,
0.047450415790081024,
-0.0008747343672439456,
-0.01758638396859169,
-0.11551801860332489,
-0.03416893258690834,
-0.040616631507873535,
0.06887838989496231,
-0.014237055554986,
0.007967924699187279,
0.038107048720121384,
-0.000327572925016284,
-0.03635033965110779,
0.0805383026599884,
0.053627852350473404,
0.041620463132858276,
-0.027624713256955147,
-0.04656241089105606,
0.00453172717243433,
0.029748206958174706,
-0.017460905015468597,
-0.036466166377067566,
-0.005863736383616924,
-0.02384103462100029,
0.037045300006866455,
-0.07385894656181335,
-0.05397533252835274,
-0.009845285676419735,
0.014372186735272408,
0.014613493345677853,
0.04884034022688866,
0.025211652740836143,
-0.041736289858818054,
0.023937558755278587,
0.04347369447350502,
0.013870269991457462,
0.009603979997336864,
0.01648602820932865,
-0.06779734045267105,
0.009734285064041615,
-0.014874103479087353,
0.038628268986940384,
0.0018254801398143172,
0.01846473664045334,
0.0032431529834866524,
0.018696390092372894,
-0.01883152313530445,
-0.039651405066251755,
-0.029284900054335594,
-0.005588647443801165,
-0.03523068130016327,
0.013358701951801777,
0.029806120321154594,
-0.009184107184410095,
-0.06204460561275482,
-0.010945641435682774,
-0.004022571258246899,
0.005439037922769785,
0.025520525872707367,
-0.035365812480449677,
0.0018846000311896205,
-0.001562456483952701,
0.030153600499033928,
0.06308704614639282,
-0.030945084989070892,
-0.06660046428442001,
-0.011727472767233849,
-0.022663462907075882,
-0.02789497748017311,
-0.007451530080288649,
0.04644658416509628,
-0.08578912168741226,
-0.01557871699333191,
0.016659768298268318,
0.028319675475358963,
-0.0013235635124146938,
0.008479493670165539,
0.0035399594344198704,
-0.07717932015657425,
-0.1017732322216034,
-0.021022580564022064,
0.03206474334001541,
-0.056639350950717926,
0.0800749883055687,
0.08524858951568604,
0.010250680148601532,
-0.010704335756599903,
0.020501360297203064,
-0.017634645104408264,
0.00814166571944952,
0.023590076714754105,
-0.012615479528903961,
0.04930364713072777,
0.036485470831394196,
-0.06505610793828964,
0.008889714255928993,
-0.012364520691335201,
0.009116541594266891,
0.014024706557393074,
0.005723779089748859,
0.012943655252456665,
0.02384103462100029,
0.007104049436748028,
-0.019555440172553062,
-0.008136839605867863,
-0.07679323107004166,
0.03669781982898712,
0.0011268991511315107,
0.0444389171898365,
0.0477592870593071,
-0.026254095137119293,
-0.028782982379198074,
0.01948787458240986,
-0.023647990077733994,
-0.027354450896382332,
-0.00466203223913908,
0.04540414363145828,
0.05243097245693207,
0.03351258113980293,
-0.0069592660292983055,
-0.019806398078799248,
-0.0201345756649971,
-0.0909627228975296,
-0.026582272723317146,
-0.055249426513910294,
0.04212237894535065,
-0.00532321073114872,
-0.0488017313182354,
-0.04096411168575287,
0.08548025041818619,
0.0010364094050601125,
0.027354450896382332,
0.02741236425936222,
-0.003204544074833393,
-0.03901435807347298,
0.03490250185132027,
0.021408671513199806,
-0.05328037217259407,
-0.016128893941640854,
-0.019845006987452507,
-0.012837480753660202,
0.027122797444462776,
-0.02123492956161499,
-0.04038497805595398,
-0.00425663823261857,
-0.0015479781432077289,
0.025790788233280182,
-0.06397505104541779,
-0.03470945730805397,
0.012538260780274868,
-0.07266207039356232,
0.05042330548167229,
0.018541954457759857,
0.029226986691355705,
-0.00684343883767724,
0.01674663834273815,
-0.03416893258690834,
0.024593910202383995,
0.015993762761354446,
-0.01820412650704384,
0.07297094166278839,
-0.022605547681450844,
0.00804031640291214,
-0.051002442836761475,
-0.0177890807390213,
0.027335146442055702,
0.027219319716095924,
0.01267339289188385,
-0.04667823761701584,
-0.010038331151008606,
-0.015771761536598206,
0.01113868597894907,
-0.0168431606143713,
-0.04304899647831917,
0.05436142161488533,
-0.05636908859014511,
0.029130464419722557,
-0.004828533623367548,
0.025095826014876366,
-0.008107882924377918,
-0.019179003313183784,
-0.010907032527029514,
0.0008433645707555115,
0.012518956325948238,
0.03746999800205231,
0.04053941369056702,
0.060307200998067856,
0.08540303260087967,
-0.05606021732091904,
-0.03885992243885994,
-0.015163670293986797,
0.0025337133556604385,
0.0980667695403099,
-0.04853146895766258,
-0.0012801284901797771,
0.05455446615815163,
0.02235458977520466,
0.02741236425936222,
0.015192626975476742,
0.010241027921438217,
-0.008156144060194492,
0.03050108253955841,
-0.027315841987729073,
0.044361699372529984,
-0.029632380232214928,
-0.003093543229624629,
0.03716112673282623,
0.03198752552270889,
-0.08687017112970352,
-0.00445692241191864,
-0.05370507016777992,
-0.029265595600008965,
0.02389894798398018,
0.0007287441985681653,
0.02337772771716118,
-0.024690432474017143,
-0.02592591941356659,
0.09961112588644028,
0.0007661466370336711,
-0.031833089888095856,
0.012190780602395535,
-0.009579849429428577,
0.014825842343270779,
-0.037122517824172974,
0.04795233532786369,
0.05687100440263748,
0.04822259768843651,
-0.010781553573906422,
0.001286161132156849,
0.02285650745034218,
0.011283469386398792,
-0.05625326186418533,
-0.06011415645480156,
0.03304927423596382,
-0.0366206020116806,
-0.0007848478271625936,
0.07107910513877869,
-0.008469841443002224,
0.003151456592604518,
-0.03816496208310127,
0.006491132080554962,
0.02069440484046936,
-0.03940044716000557,
0.018455084413290024,
-0.015829674899578094,
-0.049535300582647324,
0.03422684594988823,
-0.020810231566429138,
0.06799038499593735,
0.006746916566044092,
-0.04725737124681473,
-0.0012198019539937377,
-0.032798316329717636,
-0.03005707822740078,
-0.04385978356003761,
0.026331312954425812,
0.03689086437225342,
-0.003670264733955264,
0.009710154496133327,
0.05328037217259407,
0.015096104703843594,
-0.040655240416526794,
0.013648268766701221,
0.044207263737916946,
0.04760485142469406,
0.003332436317577958,
-0.061890169978141785,
-0.028782982379198074,
0.03833870217204094,
-0.06416809558868408,
0.06385922431945801,
0.05644630640745163,
0.03847383335232735,
0.007412921171635389,
0.023454945534467697,
-0.05748874694108963,
-0.005511429626494646,
-0.008334710262715816,
0.03148560971021652,
0.07196711003780365,
-0.0454813614487648,
-0.08478528261184692,
-0.045828841626644135,
-0.028589937835931778,
-0.03936183825135231,
0.0058782147243618965,
0.02787567302584648,
0.07007527351379395,
0.0014044010313227773,
-0.03229639679193497,
0.015424281358718872,
0.020424142479896545,
0.011254512704908848,
-0.028589937835931778,
0.06154268980026245,
0.029883338138461113,
-0.004454509355127811,
0.059264760464429855,
-0.00017102564743254334,
0.004273529630154371,
-0.009222716093063354,
0.0402691513299942,
0.01742229424417019,
-0.0069592660292983055,
0.06343452632427216,
-0.018484041094779968,
-0.0253467857837677,
-0.056214652955532074,
-0.030790649354457855,
-0.06165851652622223,
-0.01950717903673649,
-0.01652463711798191,
0.016428114846348763,
0.022065022960305214,
0.055094990879297256,
0.038551051169633865
] |
729,646 | avltree._avl_tree | __iter__ | Iterates over all keys contained in this tree in sort order.
Getting the first key has an amortized and worst-case time complexity of
O[log(n)]. Iterating over all keys has an amortized and worst-case time
complexity of O[n].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> for key in avl_tree:
... print(key)
...
0
1
```
Returns:
Iterator[_K]: The iterator object.
| def __iter__(self) -> Iterator[_K]:
"""Iterates over all keys contained in this tree in sort order.
Getting the first key has an amortized and worst-case time complexity of
O[log(n)]. Iterating over all keys has an amortized and worst-case time
complexity of O[n].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> for key in avl_tree:
... print(key)
...
0
1
```
Returns:
Iterator[_K]: The iterator object.
"""
return self.between()
| (self) -> Iterator[~_K] | [
0.01625014655292034,
-0.007285820320248604,
-0.07769082486629486,
-0.0032601740676909685,
0.039361875504255295,
0.016277814283967018,
-0.008291078731417656,
-0.02209724672138691,
0.0733746662735939,
-0.046592358499765396,
-0.028239469975233078,
-0.011537418700754642,
0.012902357615530491,
0.045301198959350586,
-0.03469526022672653,
-0.0108180595561862,
-0.010329264216125011,
0.05367528274655342,
-0.08425728231668472,
0.028589926660060883,
-0.019496485590934753,
0.01790098287165165,
0.000825995288323611,
0.006312840152531862,
-0.019662491977214813,
0.011574309319257736,
0.022908832877874374,
-0.015337112359702587,
0.03648443520069122,
-0.006234448868781328,
-0.032260503619909286,
-0.0011107417521998286,
0.00026947158039547503,
-0.015733681619167328,
-0.04485851898789406,
-0.052531685680150986,
-0.015503118745982647,
-0.010781168937683105,
0.015899688005447388,
0.017790311947464943,
0.04887955263257027,
-0.004493691027164459,
-0.012653348036110401,
-0.020842978730797768,
-0.02525136061012745,
0.0034653758630156517,
0.06739845126867294,
-0.01625014655292034,
0.057474974542856216,
-0.027132762596011162,
0.005505866836756468,
0.0055473679676651955,
0.019994504749774933,
-0.04426827281713486,
-0.052568577229976654,
0.016508378088474274,
0.0031656427308917046,
-0.0638938769698143,
-0.0051738545298576355,
0.03701934590935707,
-0.019348924979567528,
-0.02488246001303196,
0.03261096030473709,
0.02351752109825611,
-0.023794198408722878,
-0.05924570560455322,
-0.06492680311203003,
0.013179033994674683,
-0.02571249008178711,
0.01761508360505104,
-0.025196027010679245,
-0.0011435970664024353,
0.04209174960851669,
0.04773595556616783,
-0.04515364021062851,
0.02737255021929741,
-0.08056826144456863,
0.05954083055257797,
0.017172401770949364,
-0.030065536499023438,
-0.021451668813824654,
-0.0006939974264241755,
-0.03733291104435921,
-0.025491148233413696,
-0.027889013290405273,
-0.00413170550018549,
0.013428043574094772,
-0.035377729684114456,
0.03202071785926819,
0.05035516247153282,
-0.02514069154858589,
0.022835051640868187,
-0.009775910526514053,
0.020326515659689903,
-0.008659981191158295,
0.03294297307729721,
-0.009333227761089802,
-0.024365996941924095,
-0.02372041717171669,
-0.012432007119059563,
0.02633962407708168,
0.05175698921084404,
0.06005729362368584,
0.011850985698401928,
-0.011067068204283714,
-0.014322631061077118,
-0.05098229646682739,
0.0007043728255666792,
0.0011101652635261416,
0.03617087006568909,
-0.09111886471509933,
0.014092067256569862,
0.015189551748335361,
0.0031840878073126078,
-0.035285502672195435,
0.0002850346500054002,
0.013713942840695381,
-0.005072406493127346,
0.018020877614617348,
-0.027575446292757988,
0.025066910311579704,
0.011565086431801319,
0.0010098699713125825,
0.01608414016664028,
-0.05640516057610512,
-0.036244649440050125,
0.05544601380825043,
0.004007201176136732,
-0.07636277377605438,
-0.015586121939122677,
0.08506886661052704,
0.047293271869421005,
0.014626976102590561,
0.019957613199949265,
0.03220516815781593,
-0.02846081182360649,
0.05278991535305977,
-0.008918212726712227,
-0.023001058027148247,
0.06370942294597626,
0.04544876143336296,
-0.04618656635284424,
0.028479255735874176,
0.008770652115345001,
-0.02222636342048645,
-0.061127107590436935,
-0.03320120647549629,
0.018085435032844543,
0.06275027990341187,
-0.007188983261585236,
0.003831972600892186,
0.011961656622588634,
0.10661276429891586,
0.04637101665139198,
0.005044738762080669,
-0.018168438225984573,
-0.022447703406214714,
-0.06750911474227905,
-0.025896940380334854,
-0.028940385207533836,
-0.02292727679014206,
0.015235664322972298,
-0.008623090572655201,
-0.03914053365588188,
-0.01607491634786129,
0.006391231901943684,
-0.05112985521554947,
-0.007110591512173414,
-0.009171833284199238,
-0.0019828497897833586,
0.028055019676685333,
-0.053859733045101166,
-0.08056826144456863,
0.011832540854811668,
-0.04205486178398132,
0.0031425864435732365,
-0.009204111993312836,
0.10683409869670868,
0.04013656824827194,
0.018011653795838356,
-0.019551821053028107,
0.03209449723362923,
-0.04983869940042496,
-0.034141905605793,
-0.001177028869278729,
-0.0021062016021460295,
0.013142144307494164,
0.02746477536857128,
0.019588710740208626,
-0.01221066527068615,
-0.042977117002010345,
-0.04426827281713486,
0.00008919942047214136,
0.008733761496841908,
-0.022189471870660782,
0.025325141847133636,
-0.020916759967803955,
0.06190180405974388,
-0.004567471332848072,
0.0943652018904686,
-0.022613709792494774,
0.007299654185771942,
-0.02558337338268757,
0.010854950174689293,
0.010864172130823135,
0.03513794392347336,
-0.03480593115091324,
-0.01865723356604576,
0.03510105237364769,
0.004505219403654337,
-0.02525136061012745,
-0.06411521881818771,
-0.019422706216573715,
0.03384678438305855,
-0.016646714881062508,
-0.01036615390330553,
-0.05046583339571953,
-0.038697849959135056,
0.012570345774292946,
-0.021285662427544594,
0.05131430923938751,
0.04198107868432999,
0.013031473383307457,
-0.09134020656347275,
0.057770099490880966,
-0.04972802847623825,
0.024292215704917908,
-0.014894429594278336,
-0.07245241105556488,
-0.010135590098798275,
0.05242101475596428,
-0.023646635934710503,
0.029272396117448807,
-0.020787643268704414,
0.028903493657708168,
-0.03821827843785286,
-0.013741610571742058,
-0.026653191074728966,
-0.05703229457139969,
-0.022779716178774834,
-0.02525136061012745,
0.03884541243314743,
0.005893214140087366,
-0.0006916917627677321,
-0.09141398966312408,
-0.013944506645202637,
-0.03399434685707092,
0.04544876143336296,
0.016480710357427597,
0.04899022355675697,
-0.042718883603811264,
-0.0871347188949585,
-0.004611278418451548,
0.004652780015021563,
0.01210921723395586,
-0.029936419799923897,
-0.008858266286551952,
-0.006441956385970116,
0.03294297307729721,
0.03910364210605621,
0.02829480543732643,
-0.0069123064167797565,
-0.044010043144226074,
0.0943652018904686,
0.013677052222192287,
0.04618656635284424,
0.05902436748147011,
-0.012570345774292946,
0.02176523581147194,
0.03231583908200264,
-0.016185587272047997,
-0.0038342780899256468,
-0.016259368509054184,
0.004099426791071892,
0.0013268954353407025,
0.017642751336097717,
-0.0225214846432209,
0.01894313283264637,
-0.059171926230192184,
-0.00849858671426773,
-0.002727571176365018,
-0.016425374895334244,
-0.07477649301290512,
0.009600682184100151,
-0.07761704176664352,
-0.015355558134615421,
-0.03683489188551903,
-0.08042069524526596,
0.0030180818866938353,
-0.030581999570131302,
0.07090301811695099,
0.013326595537364483,
-0.03766492381691933,
0.0012346698204055429,
0.05183077231049538,
-0.043014004826545715,
-0.02541736699640751,
-0.03716690465807915,
0.031227579340338707,
0.011860208585858345,
0.03976766765117645,
-0.06086887791752815,
-0.00559809198603034,
-0.0170709528028965,
0.015429338440299034,
0.10476824641227722,
-0.01551234070211649,
0.07046033442020416,
-0.04507986083626747,
0.03008398227393627,
-0.07319021224975586,
0.004055619705468416,
0.01898002251982689,
-0.010403044521808624,
-0.039693884551525116,
-0.10380910336971283,
-0.0029719690792262554,
0.0034999605268239975,
0.01886012963950634,
0.06193869560956955,
-0.06123777851462364,
0.07525606453418732,
-0.05271613597869873,
-0.03954632580280304,
-0.02617361769080162,
0.0005729513359256089,
0.04242376238107681,
0.02521447092294693,
0.020289625972509384,
0.025066910311579704,
0.029678188264369965,
-0.024808678776025772,
0.016969505697488785,
0.055482905358076096,
-0.06518503278493881,
0.06570149958133698,
0.03742513805627823,
0.03950943425297737,
-0.014516305178403854,
-0.04345668852329254,
0.034787487238645554,
-0.05039205402135849,
0.017024841159582138,
-0.018786348402500153,
0.004359963815659285,
0.010273928754031658,
0.016102584078907967,
-0.045965224504470825,
0.0483630895614624,
0.033256541937589645,
-0.00559809198603034,
0.023978648707270622,
0.023480631411075592,
0.009563791565597057,
0.01557689905166626,
0.0005181924207136035,
0.030065536499023438,
-0.027058983221650124,
-0.022466149181127548,
0.05264235660433769,
0.08241277188062668,
-0.00023142853751778603,
-0.04426827281713486,
-0.023130172863602638,
0.0035806577652692795,
-0.0627133920788765,
-0.01774420030415058,
-0.013031473383307457,
0.0358019657433033,
0.018767904490232468,
-0.010541383177042007,
-0.020123619586229324,
-0.02853459119796753,
0.016259368509054184,
-0.02169145457446575,
-0.02621050737798214,
-0.0030180818866938353,
0.04456339776515961,
-0.01061516348272562,
0.05692162364721298,
0.05636826902627945,
0.02335151471197605,
0.07901886850595474,
0.057179853320121765,
-0.04710882157087326,
-0.059135034680366516,
0.037037789821624756,
-0.009204111993312836,
0.03954632580280304,
0.012708683498203754,
-0.055482905358076096,
-0.023296179249882698,
-0.024495111778378487,
0.006031552329659462,
-0.034252576529979706,
-0.00503551634028554,
0.05197833105921745,
-0.06533259153366089,
-0.02729876898229122,
-0.04046858102083206,
0.05197833105921745,
-0.01219222042709589,
-0.02172834426164627,
0.006179113406687975,
0.05009692907333374,
-0.04478473588824272,
0.02600761130452156,
-0.019164474681019783,
-0.01468231063336134,
0.0194411501288414,
-0.008922823704779148,
-0.009356284514069557,
-0.008005179464817047,
0.006017718464136124,
0.04851065203547478,
-0.07599387317895889,
0.03360699862241745,
0.059098146855831146,
0.01036615390330553,
0.023111728951334953,
0.022466149181127548,
-0.03716690465807915,
-0.0007654722430743277,
0.020252736285328865,
0.026118282228708267,
-0.010052586905658245,
0.04522741958498955,
-0.015973469242453575,
-0.04972802847623825,
-0.005662649869918823,
-0.017329184338450432,
-0.006257505156099796,
0.0019655574578791857,
0.03452925384044647,
0.007520995568484068,
0.026468738913536072,
-0.050244491547346115,
-0.024642672389745712,
0.030674224719405174,
0.023609746247529984,
0.0021177297458052635,
0.031799376010894775,
0.05876613408327103,
-0.028977274894714355,
0.04899022355675697,
0.011399080976843834,
0.025933830067515373,
0.06193869560956955,
0.06821003556251526,
-0.008484752848744392,
0.02514069154858589,
-0.005625759717077017,
0.0018721790984272957,
-0.02292727679014206,
-0.017218513414263725,
0.016047248616814613,
-0.05754875764250755,
0.0011966268066316843,
-0.022281698882579803,
0.04744083434343338,
0.02670852467417717,
0.016803499311208725,
0.059872839599847794,
-0.03065578080713749,
-0.0011464791605249047,
0.002277971711009741,
-0.01682194508612156,
0.05496644228696823,
-0.014626976102590561,
-0.046998150646686554,
0.010624385438859463,
0.0069953096099197865,
-0.04814174771308899,
-0.013345040380954742,
-0.002370197093114257,
0.02929084189236164,
0.005335249472409487,
-0.03569129481911659,
-0.035949528217315674,
-0.03899297118186951,
-0.005178465973585844,
-0.04057925194501877,
0.0467030294239521,
0.0005960077396593988,
-0.014092067256569862,
-0.026819195598363876,
-0.02392331324517727,
0.030674224719405174,
-0.03336721286177635,
-0.04740394279360771,
-0.02242925949394703,
-0.01686805672943592,
-0.00385272316634655,
0.04581766575574875,
0.05371217429637909,
-0.0025385089684277773,
0.016277814283967018,
0.0065802945755422115,
-0.04755150526762009,
0.002084297826513648,
0.004542109556496143,
0.03032376803457737,
0.04441583529114723,
0.004929456859827042,
0.008217298425734043,
0.08152740448713303,
-0.015032768249511719,
-0.02753855660557747,
0.012754797004163265,
-0.02259526588022709,
0.055187780410051346,
-0.03733291104435921,
0.00403947988525033,
-0.007742336951196194,
0.02475334331393242,
-0.006179113406687975,
-0.019699381664395332,
-0.014792981557548046,
-0.03152269870042801,
0.005390584468841553,
-0.02235547825694084,
-0.04345668852329254,
0.011491306126117706,
-0.008540088310837746,
-0.010403044521808624,
0.054892659187316895,
-0.008609256707131863,
0.0047104209661483765,
0.010569050908088684,
-0.0016773525858297944,
-0.00978513341397047,
-0.01640692912042141,
0.06374631822109222,
0.016277814283967018,
-0.0795353353023529,
-0.015752127394080162,
0.02076919935643673,
0.05802832916378975,
-0.008341803215444088,
0.07857618480920792,
0.054523758590221405,
-0.017541304230690002,
0.050613392144441605,
-0.007474882528185844,
0.04142772778868675,
0.03777559474110603,
-0.06404143571853638,
-0.01940426044166088,
-0.04415760189294815,
0.0013464933726936579,
-0.009342450648546219,
0.003133363788947463,
0.04673992097377777,
0.009416230954229832,
-0.005459753796458244,
0.009310171008110046,
0.000415879680076614,
-0.010246261022984982,
0.026099836453795433,
0.0093655064702034,
0.02014206536114216,
0.06411521881818771,
-0.06190180405974388,
-0.011251519434154034,
0.001963251968845725,
-0.004293100442737341,
0.005256857722997665,
-0.01071661151945591,
0.04607589542865753,
0.08787252753973007,
0.03334876522421837,
-0.003901141695678234,
0.002893577329814434,
-0.015650680288672447,
-0.04282955452799797,
0.045338090509176254,
-0.0904548391699791,
-0.0002935366937890649,
-0.06315606832504272,
-0.07518228888511658,
-0.004410687834024429,
-0.009545346722006798,
0.10299751907587051,
0.006690965034067631,
-0.0241815447807312,
0.004980180878192186,
-0.005980828311294317,
0.05743808671832085,
-0.05662650242447853,
0.0034446250647306442,
-0.005021682474762201,
-0.09849691390991211,
-0.04142772778868675,
-0.022281698882579803,
0.008277244865894318,
-0.05231034383177757,
0.002752933418378234,
-0.039398763328790665,
-0.03137513995170593,
-0.04935912415385246,
0.024292215704917908,
0.03984144702553749,
-0.01501432340592146,
0.08602800965309143,
0.02073230780661106,
0.018537340685725212,
0.020363405346870422,
0.0020474076736718416,
0.035082608461380005,
0.010403044521808624,
-0.012099995277822018,
0.0010456073796376586,
0.05703229457139969,
-0.005072406493127346,
0.023462185636162758,
0.022447703406214714,
0.052236564457416534,
0.01608414016664028,
0.013824612833559513,
0.024273769930005074,
-0.028589926660060883,
0.0011505139991641045,
-0.003776637138798833,
0.05245790630578995,
-0.021045874804258347,
-0.07746948301792145,
0.06846826523542404,
-0.06363564729690552,
0.07968289405107498,
-0.023646635934710503,
0.01007103268057108,
-0.011878653429448605,
-0.003845806233584881,
-0.03543306514620781,
-0.036244649440050125,
-0.025786269456148148,
0.02156233787536621,
-0.009268670342862606,
-0.0687633827328682,
0.02965974435210228,
-0.06651308387517929,
0.04773595556616783,
-0.03220516815781593,
0.012717906385660172,
0.029419956728816032,
-0.0044591063633561134,
-0.013372708112001419,
0.047625284641981125,
0.05492955073714256,
-0.013243592344224453,
-0.01146363839507103,
0.01065205316990614,
-0.01069816667586565,
0.009748242795467377,
-0.06418899446725845,
-0.0048418426886200905,
0.038697849959135056,
-0.01910913921892643,
-0.006322063039988279,
0.012321336194872856,
-0.00420548627153039,
-0.03131980448961258,
-0.040689922869205475,
-0.018085435032844543,
0.01491287536919117,
-0.0120907723903656,
-0.02870059758424759,
0.013474156148731709,
-0.02663474529981613,
0.018223773688077927,
0.00843402836471796,
0.022373924031853676,
0.03519327938556671,
-0.05135119706392288,
-0.023001058027148247,
0.0013845363864675164,
0.02541736699640751,
0.011666534468531609,
0.06153289973735809,
-0.05341704934835434,
-0.039693884551525116,
0.05146186798810959,
-0.0020474076736718416,
-0.0019540293142199516,
-0.032002273947000504,
-0.024605782702565193,
-0.017264626920223236,
-0.006188335828483105,
0.012791686691343784,
-0.05976216867566109,
0.011223851703107357,
-0.06016796454787254,
0.028516147285699844,
-0.012468897737562656,
-0.01836211048066616,
0.04083748161792755,
0.004099426791071892,
0.031227579340338707,
0.02641340345144272,
-0.03065578080713749,
0.0335516631603241,
0.01711706630885601,
0.03170715272426605,
0.019846942275762558,
-0.020344961434602737,
0.014986655674874783,
-0.001992072444409132,
0.03617087006568909,
0.02700364775955677,
0.01316981203854084,
-0.019920723512768745,
0.019533375278115273,
-0.038439616560935974,
-0.052162785083055496,
0.03772025927901268,
0.03244495764374733,
0.021507002413272858,
0.005907048005610704,
0.008572367019951344,
0.026819195598363876,
-0.008074348792433739,
-0.05459753796458244,
0.018841683864593506,
0.05574113503098488,
0.017513636499643326,
0.04426827281713486,
0.03484282270073891,
0.01620403304696083,
-0.11140848696231842,
0.027317214757204056,
0.02829480543732643,
-0.014756091870367527,
-0.013760055415332317,
-0.03925120458006859,
0.002600761130452156,
-0.031264469027519226,
-0.03962010517716408,
0.01476531382650137,
0.05566735565662384,
0.06551704555749893,
-0.01786409318447113,
0.05592558532953262,
-0.03480593115091324,
0.014839094132184982,
0.05872924253344536,
-0.0577332079410553,
0.00649268040433526,
0.025362031534314156,
-0.0056119258515536785,
0.0068892501294612885,
0.014626976102590561,
0.0034469307865947485,
0.051240526139736176,
0.012653348036110401,
0.001060594106093049,
0.046592358499765396,
-0.0003092438564635813,
-0.030766449868679047,
-0.005538145545870066,
0.003274007700383663,
-0.018638787791132927,
-0.07628899067640305,
-0.0019886139780282974,
-0.0022618321236222982,
-0.03681644797325134,
-0.013335817493498325,
0.06750911474227905,
0.029438402503728867
] |
729,647 | avltree._avl_tree | __len__ | Returns the number of items contained in this tree.
This method has an amortized and worst-case time complexity of O[1].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> len(avl_tree)
2
```
Returns:
int: The number of items contained in this tree.
| def __len__(self) -> int:
"""Returns the number of items contained in this tree.
This method has an amortized and worst-case time complexity of O[1].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> len(avl_tree)
2
```
Returns:
int: The number of items contained in this tree.
"""
return len(self.__nodes)
| (self) -> int | [
-0.043786048889160156,
-0.026344604790210724,
0.008355837315320969,
0.01251551229506731,
0.03050428070127964,
0.06068016588687897,
-0.026964908465743065,
-0.036087002605199814,
0.0323469415307045,
-0.029920466244220734,
-0.012086773291230202,
-0.02601620927453041,
0.022330883890390396,
0.001751441857777536,
-0.01921112835407257,
0.016392402350902557,
-0.014048024080693722,
0.0031151948496699333,
0.014631837606430054,
0.05349195376038551,
-0.0382763035595417,
0.05261623486876488,
0.07159018516540527,
-0.012789174914360046,
-0.03276655822992325,
-0.01647450029850006,
0.04214407131075859,
-0.019466547295451164,
0.04725244268774986,
0.008000075817108154,
-0.06600746512413025,
0.00038227273034863174,
-0.017021825537085533,
0.015617024153470993,
-0.002729786327108741,
-0.019119907170534134,
0.0008660287130624056,
-0.002928192028775811,
-0.005272570066154003,
0.0015678597846999764,
-0.02623514086008072,
-0.048711977899074554,
-0.008478986099362373,
-0.022312641143798828,
0.02707437239587307,
-0.013728750869631767,
0.04093995317816734,
-0.016775529831647873,
-0.0482376292347908,
-0.054732561111450195,
-0.003320442046970129,
0.04539153724908829,
0.005359229631721973,
0.009505221620202065,
-0.03351457044482231,
0.054951488971710205,
0.010700215585529804,
0.0024264769162982702,
-0.0069054244086146355,
0.0324564091861248,
-0.001809595269151032,
0.01378348283469677,
0.0241188146173954,
-0.054659582674503326,
-0.018572581931948662,
0.008702477440237999,
-0.05980444326996803,
0.055243395268917084,
-0.0007930519641377032,
-0.0018700291402637959,
0.0034527122043073177,
0.018609071150422096,
0.025012779980897903,
0.05520690977573395,
0.019813187420368195,
0.02981100045144558,
-0.026618268340826035,
0.03163541853427887,
0.03820332512259483,
-0.006873497273772955,
0.0232248492538929,
-0.014011534862220287,
0.04648618772625923,
0.030686721205711365,
0.03723638504743576,
-0.016510989516973495,
-0.027895361185073853,
0.0043535190634429455,
0.006663689389824867,
0.018408384174108505,
-0.015315994620323181,
0.062103211879730225,
0.018426628783345222,
-0.00817339587956667,
-0.03223747760057449,
-0.0110103664919734,
0.01943005807697773,
-0.06753998249769211,
0.009897471405565739,
-0.03449975699186325,
0.006120924837887287,
0.08385027945041656,
0.006485808175057173,
0.008460741490125656,
-0.025231709703803062,
-0.021765314042568207,
-0.028242001309990883,
-0.015671756118535995,
-0.007211014628410339,
0.03641539812088013,
-0.008520035073161125,
0.033988919109106064,
0.02692841924726963,
0.03787492960691452,
0.000324689521221444,
0.010234988294541836,
0.0037993518635630608,
-0.03148946538567543,
-0.031234048306941986,
-0.013327378779649734,
0.05830841884016991,
0.04192513972520828,
0.005254325922578573,
-0.029573826119303703,
0.050755325704813004,
0.00985186081379652,
-0.020579442381858826,
-0.04196162894368172,
-0.040429119020700455,
-0.015644390136003494,
0.0873531624674797,
0.04006423428654671,
0.001606628648005426,
0.03200030326843262,
0.08027441799640656,
-0.04243597760796547,
0.05356493219733238,
0.0069008637219667435,
-0.03391594439744949,
0.025560105219483376,
0.0143399303779006,
-0.03696272149682045,
0.04298330470919609,
-0.024428965523838997,
-0.03543021157383919,
0.0049168081022799015,
-0.014814279973506927,
-0.031234048306941986,
0.006741227116435766,
-0.005094689317047596,
-0.0019726527389138937,
-0.0456104651093483,
0.0514850951731205,
0.02362622134387493,
0.0016921482747420669,
0.005277130752801895,
0.000044719636207446456,
-0.08852079510688782,
-0.004104942083358765,
-0.08888567984104156,
-0.059658490121364594,
0.03050428070127964,
-0.05513393133878708,
-0.03813035041093826,
-0.04542802646756172,
0.0008369520655833185,
0.01163979060947895,
-0.03448151424527168,
-0.07772023230791092,
0.023097140714526176,
0.027968337759375572,
-0.06290595233440399,
-0.05834490805864334,
0.04327521100640297,
0.01045391894876957,
0.022987674921751022,
-0.019813187420368195,
0.054878514260053635,
0.011001244187355042,
-0.011886087246239185,
-0.03141649067401886,
0.005103811156004667,
-0.00888947956264019,
-0.03331388533115387,
0.020634174346923828,
0.001494883093982935,
-0.0027138227596879005,
0.06688319146633148,
-0.0012143786298111081,
0.03218274563550949,
-0.035448454320430756,
-0.07925274968147278,
-0.008269177749752998,
-0.020579442381858826,
0.0026727733202278614,
-0.018554337322711945,
0.006668250076472759,
0.02377217449247837,
-0.025304686278104782,
0.025432396680116653,
0.002581552369520068,
-0.009496099315583706,
0.0041414303705096245,
-0.004613498691469431,
0.009441366419196129,
-0.0017981926212087274,
-0.037765465676784515,
0.022002488374710083,
0.005081005860120058,
-0.03183610737323761,
-0.04396849125623703,
-0.015835953876376152,
0.007908854633569717,
0.0565204918384552,
0.012670587748289108,
-0.06987523287534714,
-0.07589581608772278,
-0.010536017827689648,
-0.017003582790493965,
-0.04130483791232109,
0.08348539471626282,
0.06885355710983276,
-0.01673904061317444,
-0.025979721918702126,
0.006791398394852877,
-0.06458441913127899,
0.0013705944875255227,
0.017715105786919594,
0.014750424772500992,
0.00037714155041612685,
0.037126921117305756,
0.0005156833212822676,
0.03688974678516388,
0.009003506042063236,
0.028041314333677292,
-0.0063261715695261955,
0.018882732838392258,
0.0019395850831642747,
-0.040210187435150146,
-0.04944174736738205,
-0.05717727914452553,
-0.05341897904872894,
-0.02273225598037243,
0.012269215658307076,
-0.0514850951731205,
0.0013158619403839111,
-0.045683443546295166,
0.05542583763599396,
0.011384372599422932,
-0.012743564322590828,
-0.0928993970155716,
-0.08319348841905594,
-0.029482604935765266,
-0.0009914574911817908,
0.034335557371377945,
-0.046522676944732666,
-0.023261338472366333,
0.02132745459675789,
-0.023024164140224457,
-0.0010587329743430018,
0.05177700147032738,
-0.0498066283762455,
-0.001326124300248921,
0.09056413918733597,
-0.024246523156762123,
0.033405106514692307,
0.07509307563304901,
-0.00862037856131792,
-0.0365431047976017,
0.022914698347449303,
0.009053677320480347,
-0.005085567012429237,
0.030139395967125893,
-0.044844210147857666,
-0.026344604790210724,
-0.029902221634984016,
-0.015179162845015526,
0.04181567579507828,
0.00037514607538469136,
0.006567907053977251,
-0.04364009574055672,
-0.0220207329839468,
-0.05721376836299896,
-0.012141506187617779,
-0.06859814375638962,
0.002140271244570613,
-0.026143919676542282,
-0.04181567579507828,
-0.07388895750045776,
-0.0005652847466990352,
0.03626944124698639,
-0.014212220907211304,
-0.03170839697122574,
0.060059864073991776,
0.07713641971349716,
-0.017569150775671005,
-0.05257974565029144,
0.04112239554524422,
0.027019640430808067,
0.030942140147089958,
-0.03106985054910183,
-0.0472889319062233,
-0.035320743918418884,
-0.06597097963094711,
0.02160111628472805,
0.04998907074332237,
0.01385645940899849,
0.03637890890240669,
0.053820349276065826,
0.06148291006684303,
-0.05717727914452553,
0.05082830414175987,
0.029646802693605423,
0.050609372556209564,
0.05615560710430145,
-0.002435598988085985,
-0.03820332512259483,
-0.03962637484073639,
-0.010116401128470898,
0.021710582077503204,
-0.009377512149512768,
0.04966067522764206,
-0.016921482980251312,
0.00008737255120649934,
-0.006700177676975727,
-0.0011756097665056586,
0.08297456055879593,
0.028844058513641357,
0.045282069593667984,
-0.019594255834817886,
-0.013163181021809578,
-0.024793850257992744,
0.04269139841198921,
-0.022312641143798828,
-0.08706125617027283,
0.008533718064427376,
0.08012846857309341,
0.061336956918239594,
-0.0631248876452446,
0.02349851280450821,
0.042034607380628586,
-0.0017799484776332974,
-0.006759471260011196,
0.033405106514692307,
0.031179314479231834,
-0.02313362807035446,
0.02490331418812275,
-0.05177700147032738,
0.05225135013461113,
0.04783625900745392,
-0.005222398322075605,
-0.0014549738261848688,
0.004579290747642517,
-0.00981537252664566,
0.002649968024343252,
-0.030631989240646362,
0.07567688822746277,
0.044150929898023605,
0.005856384057551622,
0.06166535243391991,
-0.018773268908262253,
-0.007721852045506239,
-0.014458517543971539,
-0.01731373369693756,
-0.00440140999853611,
-0.010216744616627693,
0.00946873240172863,
-0.025560105219483376,
-0.01027147751301527,
-0.01430344209074974,
0.010645482689142227,
-0.05714079365134239,
-0.023863395676016808,
-0.03765600174665451,
0.036087002605199814,
0.017523542046546936,
-0.0277858953922987,
-0.006285122130066156,
-0.025341175496578217,
-0.02362622134387493,
-0.018919222056865692,
0.013445965945720673,
0.0390060693025589,
-0.030048174783587456,
-0.003863206598907709,
-0.008109540678560734,
-0.05801651254296303,
-0.01427607610821724,
-0.005176787730306387,
0.040429119020700455,
-0.05582721158862114,
0.029902221634984016,
-0.06100856140255928,
-0.030066419392824173,
-0.09092902392148972,
0.036087002605199814,
0.006330732721835375,
-0.048420071601867676,
0.025487128645181656,
-0.014923744834959507,
0.045829396694898605,
-0.023863395676016808,
0.020999059081077576,
0.033569302409887314,
-0.0041437107138335705,
0.036652572453022,
0.03254763036966324,
0.005245203617960215,
-0.04181567579507828,
-0.004793660249561071,
0.0315624438226223,
0.028424441814422607,
-0.015471070073544979,
0.016255570575594902,
0.0038358401507139206,
-0.11515730619430542,
0.08618553727865219,
0.03345983847975731,
0.05531637370586395,
-0.02497629076242447,
-0.023042406886816025,
0.028041314333677292,
0.025924989953637123,
0.07093339413404465,
0.003101511625573039,
0.028169024735689163,
0.011940820142626762,
0.0014652361860498786,
-0.018089111894369125,
-0.006677372381091118,
-0.009117532521486282,
0.00932277925312519,
0.0324564091861248,
-0.02236737310886383,
-0.02048822119832039,
-0.003416223917156458,
-0.023535000160336494,
-0.08107716590166092,
0.000571556156501174,
0.036141734570264816,
0.03437204658985138,
0.03238343074917793,
0.035667385905981064,
0.05498797819018364,
0.03526601195335388,
-0.05210539698600769,
0.0007839298923499882,
-0.020251046866178513,
0.031179314479231834,
-0.041195373982191086,
-0.03893309459090233,
-0.0006408270564861596,
0.015452826395630836,
0.007220136933028698,
-0.05896520987153053,
0.0035712996032088995,
-0.0705685168504715,
0.00501715112477541,
-0.053820349276065826,
-0.026636512950062752,
-0.005117494147270918,
0.06918195635080338,
0.015845075249671936,
-0.013573674485087395,
-0.03345983847975731,
-0.022330883890390396,
0.010827925056219101,
0.013701383955776691,
-0.021236233413219452,
-0.03366052359342575,
0.05152158439159393,
-0.008524595759809017,
-0.06330733001232147,
-0.041341327130794525,
0.06308839470148087,
0.0323469415307045,
-0.020287536084651947,
-0.06279648840427399,
-0.060351770371198654,
-0.04075751453638077,
-0.0007098129135556519,
0.023243093863129616,
0.04900388419628143,
0.014659203588962555,
-0.007594142574816942,
-0.010472163558006287,
-0.04834709316492081,
0.02670948952436447,
0.030978629365563393,
-0.019940895959734917,
-0.027256814762949944,
-0.044771235436201096,
-0.03535723313689232,
0.013071959838271141,
0.04977014288306236,
-0.008579328656196594,
0.031124582514166832,
-0.008328471332788467,
-0.05615560710430145,
0.006891741417348385,
-0.02749398909509182,
0.018700290471315384,
0.04287383705377579,
0.016912361606955528,
-0.030978629365563393,
0.0195577684789896,
0.0034618345089256763,
0.009550831280648708,
0.04396849125623703,
-0.006741227116435766,
0.007055939175188541,
0.00009043700265465304,
0.0448806993663311,
0.016656942665576935,
0.04305627942085266,
0.07852298021316528,
0.01266146544367075,
0.025633081793785095,
0.011284029111266136,
0.038823630660772324,
-0.043092768639326096,
-0.027676431462168694,
0.014640959911048412,
-0.04845656082034111,
-0.0324016772210598,
0.04546451196074486,
-0.009970447979867458,
-0.008862113580107689,
0.029920466244220734,
0.07691749185323715,
0.01423958782106638,
-0.03183610737323761,
-0.008985262364149094,
0.014704814180731773,
-0.03499234840273857,
0.028734594583511353,
-0.016209959983825684,
-0.006093558389693499,
0.023790419101715088,
0.05082830414175987,
0.015835953876376152,
-0.0648033544421196,
0.02895352430641651,
0.016702553257346153,
-0.03512005880475044,
0.051229674369096756,
0.010736703872680664,
-0.02216668613255024,
0.02433774434030056,
0.012989860959351063,
-0.030613744631409645,
0.000445842306362465,
0.02937314100563526,
-0.019904406741261482,
0.07341460883617401,
0.03008466400206089,
-0.009386634454131126,
-0.06053421273827553,
0.0498066283762455,
0.011147198267281055,
0.01963074505329132,
-0.025122245773673058,
-0.016957972198724747,
0.019813187420368195,
0.011001244187355042,
-0.013363867066800594,
-0.032292209565639496,
0.014248710125684738,
0.05013502389192581,
0.07283079624176025,
0.007657997310161591,
-0.0011995552340522408,
-0.03674379363656044,
-0.045756418257951736,
-0.023662710562348366,
-0.01090090163052082,
-0.09508869796991348,
0.04455230385065079,
0.005309058353304863,
-0.07947167754173279,
-0.03977232798933983,
0.026253383606672287,
-0.008013758808374405,
0.04783625900745392,
-0.021363941952586174,
0.02714734897017479,
-0.051448605954647064,
0.03189083933830261,
-0.05433118715882301,
0.03373350203037262,
-0.056082628667354584,
-0.0374370701611042,
0.011019488796591759,
0.005304497200995684,
0.008483546786010265,
0.001749161398038268,
-0.019867919385433197,
-0.00985186081379652,
0.007972709834575653,
-0.04276437312364578,
0.036305930465459824,
-0.0009082184405997396,
-0.047580838203430176,
0.0712982788681984,
-0.004374043550342321,
-0.004533680155873299,
0.026162164285779,
0.05743269994854927,
-0.0011927137384191155,
-0.016903238371014595,
0.0199226513504982,
-0.007671680301427841,
0.06921844184398651,
-0.07458223402500153,
-0.022841721773147583,
-0.009103849530220032,
-0.00769904674962163,
0.042545441538095474,
0.029756268486380577,
0.03747355937957764,
-0.032091524451971054,
-0.008848430588841438,
0.013582796789705753,
-0.0033865771256387234,
-0.046668630093336105,
-0.01913815177977085,
0.0063991486094892025,
-0.008629499934613705,
-0.009450488723814487,
-0.02833322249352932,
0.015343360602855682,
-0.06297893077135086,
0.005240642465651035,
-0.0432022325694561,
-0.02006860449910164,
-0.0640735849738121,
-0.013756116852164268,
-0.0018882732838392258,
0.0006322750705294311,
0.05349195376038551,
-0.032146256417036057,
0.03515654802322388,
-0.06622640043497086,
0.021090280264616013,
0.049405258148908615,
-0.023042406886816025,
-0.018609071150422096,
0.05057288706302643,
0.013829093426465988,
-0.01824418641626835,
0.015151796862483025,
-0.03143473342061043,
0.03849523514509201,
0.006549662910401821,
-0.018682047724723816,
0.01928410492837429,
0.06162886321544647,
-0.004285103175789118,
-0.033003732562065125,
-0.006239512003958225,
-0.023316070437431335,
-0.042253535240888596,
-0.010362697765231133,
0.0037947907112538815,
0.0657520517706871,
-0.03128878027200699,
0.03758302330970764,
0.004579290747642517,
0.011658035218715668,
-0.0010119822109118104,
0.01789754629135132,
0.06593448668718338,
0.0391155369579792,
0.013993291184306145,
-0.009733273647725582,
-0.008401447907090187,
-0.005956727080047131,
0.0011778903426602483,
0.06662777066230774,
-0.004862075671553612,
-0.022896453738212585,
0.04553749039769173,
-0.04196162894368172,
-0.047507863491773605,
0.026070943102240562,
0.015544046647846699,
-0.056338049471378326,
0.014659203588962555,
0.10355400294065475,
-0.02364446595311165,
-0.046595651656389236,
-0.06327083706855774,
0.04265490919351578,
0.03470044210553169,
-0.008410570211708546,
-0.0001604918361408636,
0.006362659856677055,
0.038531720638275146,
0.04283735156059265,
-0.024994535371661186,
0.036506615579128265,
0.018381018191576004,
-0.028661618009209633,
-0.015297750011086464,
-0.021911267191171646,
-0.00718820933252573,
-0.04261841997504234,
0.021290965378284454,
-0.03139824420213699,
-0.000218930232222192,
-0.0406845360994339,
0.06987523287534714,
0.017715105786919594,
-0.07976358383893967,
-0.027457501739263535,
0.03595929220318794,
0.0432022325694561,
0.03181786090135574,
-0.028041314333677292,
0.006686494220048189,
0.000956109375692904,
-0.012935128062963486,
0.03747355937957764,
0.05794353783130646,
-0.025359420105814934,
0.018682047724723816,
0.04517260566353798,
0.0027503110468387604,
-0.033970676362514496,
-0.014777790755033493,
0.0253229308873415,
0.0008255494176410139,
0.018773268908262253,
-0.07837702333927155,
-0.024921558797359467,
0.024100570008158684,
-0.01258848886936903,
-0.006143729668110609,
0.03838576748967171,
0.052287839353084564,
0.09640228003263474,
0.03999125584959984,
0.012916884385049343,
-0.004720683209598064,
0.07221049070358276,
-0.06527770310640335,
0.007429944816976786,
0.10048898309469223,
-0.016282936558127403,
0.0003281102981418371,
0.032565873116254807,
0.03238343074917793,
0.016921482980251312,
-0.05345546826720238,
0.027056129649281502,
0.05440416559576988,
0.01220536045730114,
-0.06261404603719711,
-0.023297825828194618,
-0.024629652500152588,
0.002022824250161648,
-0.0806393027305603,
-0.03765600174665451,
0.035667385905981064,
-0.021436918526887894,
0.027548721060156822,
-0.0035621775314211845,
0.0399547703564167
] |
729,648 | avltree._avl_tree | __repr__ | Builds a developer-friendly string representation of this AvlTree.
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> repr(avl_tree)
"AvlTree({0: 'a', 1: 'b'})"
```
Returns:
str: A string representation of this AvlTree.
| def __repr__(self) -> str:
"""Builds a developer-friendly string representation of this AvlTree.
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> repr(avl_tree)
"AvlTree({0: 'a', 1: 'b'})"
```
Returns:
str: A string representation of this AvlTree.
"""
return f"AvlTree({{{', '.join(f'{k!r}: {v!r}' for k, v in self.items())}}})"
| (self) -> str | [
0.034442782402038574,
-0.030415276065468788,
0.06478206813335419,
-0.022664224728941917,
0.035829611122608185,
-0.042706768959760666,
-0.01884569227695465,
-0.05927274376153946,
0.029009448364377022,
-0.046962250024080276,
-0.039211198687553406,
-0.0017074159113690257,
-0.008221243508160114,
0.07211516797542572,
-0.028591498732566833,
0.017753325402736664,
-0.013906297273933887,
-0.04616434872150421,
0.023557115346193314,
0.06387017667293549,
0.021562360227108,
0.04354266822338104,
0.014029782265424728,
0.017183395102620125,
0.002854400547221303,
0.013535842299461365,
-0.014751694165170193,
-0.015654083341360092,
-0.03533567488193512,
-0.015141146257519722,
-0.03229604661464691,
-0.04004709795117378,
0.0001093850441975519,
-0.027033690363168716,
-0.06398416310548782,
-0.012671448290348053,
-0.02234126441180706,
0.004830158781260252,
-0.05665106326341629,
-0.06352822482585907,
0.03339790925383568,
-0.0046354322694242,
-0.057904910296201706,
-0.04004709795117378,
-0.010743184946477413,
-0.013811308890581131,
0.04289674758911133,
-0.04141492769122124,
-0.025133922696113586,
-0.05372542142868042,
0.004333844408392906,
0.052471574395895004,
-0.004065501969307661,
0.00693415105342865,
-0.06565596163272858,
0.017135901376605034,
0.00045060107368044555,
-0.03193508833646774,
0.030377279967069626,
0.012187007814645767,
-0.043884627521038055,
0.04339068755507469,
0.05239558592438698,
-0.02963637188076973,
-0.013839805498719215,
-0.030681243166327477,
-0.10805876553058624,
0.018275761976838112,
-0.014229257591068745,
0.0051103741861879826,
-0.021068420261144638,
-0.009812298230826855,
0.007390094920992851,
0.030035322532057762,
0.01880769617855549,
0.01766783744096756,
-0.0606025792658329,
0.001984069589525461,
0.0018119030864909291,
-0.01571107655763626,
-0.01379231084138155,
-0.05463730916380882,
0.030434273183345795,
-0.01622401364147663,
0.009617572650313377,
-0.059766680002212524,
-0.04844406992197037,
-0.023690098896622658,
0.005224360153079033,
0.006991143804043531,
0.020422499626874924,
0.01715490035712719,
-0.046620290726423264,
0.015958046540617943,
-0.06975945830345154,
0.009973778389394283,
0.058322858065366745,
-0.05589115619659424,
0.023804085329174995,
-0.00612674979493022,
0.03590560331940651,
0.00010070251300930977,
-0.053649429231882095,
-0.016138523817062378,
-0.08001819998025894,
-0.02209429442882538,
-0.02008054032921791,
0.018009794875979424,
0.02034650929272175,
0.04266877472400665,
-0.05866481736302376,
0.023025181144475937,
0.012348487973213196,
0.025665856897830963,
0.011484093964099884,
0.00670142937451601,
-0.011322613805532455,
-0.021353384479880333,
0.019453618675470352,
-0.02659674361348152,
0.04939395189285278,
0.016499480232596397,
-0.01026824302971363,
0.0029398901388049126,
-0.03672250360250473,
0.02080245316028595,
-0.001178449485450983,
-0.020555483177304268,
-0.05106574669480324,
-0.0416049063205719,
0.050305839627981186,
0.029142431914806366,
-0.051635678857564926,
0.021486369892954826,
0.09810398519039154,
0.0008252114639617503,
0.037976350635290146,
0.008743679150938988,
0.04175688698887825,
0.09582426398992538,
0.027565624564886093,
-0.06098253279924393,
0.016822440549731255,
-0.0022559738717973232,
-0.01456171739846468,
-0.04502448812127113,
-0.0015946172643452883,
0.024127045646309853,
0.019453618675470352,
-0.02131539024412632,
0.03436679020524025,
-0.014476227574050426,
0.04141492769122124,
0.021961310878396034,
0.05258556082844734,
0.01391579583287239,
-0.0005521199200302362,
-0.0822979211807251,
0.06466808170080185,
-0.03552564978599548,
-0.021068420261144638,
0.0021799830719828606,
0.0028330280911177397,
-0.022303268313407898,
0.01664196141064167,
-0.017800820991396904,
0.019168652594089508,
-0.03955315798521042,
-0.030833223834633827,
-0.011873546056449413,
0.004763666540384293,
-0.13070400059223175,
-0.10722286999225616,
0.0642121359705925,
0.0035525651182979345,
0.007789046037942171,
-0.012357986532151699,
0.12682847678661346,
-0.0019543857779353857,
-0.03537366911768913,
-0.0193681288510561,
0.0019401374738663435,
-0.033473901450634,
-0.0022037301678210497,
0.03981912508606911,
-0.07245712727308273,
0.022626228630542755,
0.014362241141498089,
0.02963637188076973,
-0.011550585739314556,
-0.020878443494439125,
-0.041528914123773575,
-0.01849423535168171,
-0.01209201943129301,
-0.012652451172471046,
-0.036798495799303055,
0.00023049522133078426,
-0.025076929479837418,
0.03214406594634056,
0.02912343479692936,
-0.0021776084322482347,
0.02342413179576397,
0.01540711335837841,
0.0033459654077887535,
0.028838468715548515,
-0.010971156880259514,
-0.011446098797023296,
-0.04145292565226555,
0.09141680598258972,
-0.010382228530943394,
0.02465897984802723,
0.028781475499272346,
-0.0034219559747725725,
0.029522385448217392,
-0.014941670000553131,
-0.028116557747125626,
-0.05931073799729347,
0.022056300193071365,
-0.052623555064201355,
0.018912184983491898,
0.054675307124853134,
0.00309424614533782,
-0.01186404749751091,
-0.033473901450634,
-0.006050758995115757,
-0.016774946823716164,
0.01581556349992752,
-0.002614554949104786,
-0.00029639340937137604,
0.03174511343240738,
0.04711423069238663,
-0.061704445630311966,
-0.007342600729316473,
-0.009232869371771812,
-0.014856181107461452,
0.02065047062933445,
-0.022360261529684067,
-0.04567040875554085,
-0.028572501614689827,
-0.01663246378302574,
0.0023141540586948395,
-0.010752683505415916,
-0.011132637038826942,
-0.01700291782617569,
0.050153858959674835,
-0.07040537893772125,
-0.00767980981618166,
0.06208439916372299,
-0.02731865458190441,
-0.01858922466635704,
-0.009156879037618637,
-0.054371342062950134,
0.012158511206507683,
0.021695343777537346,
0.024677978828549385,
-0.020251519978046417,
-0.023823082447052002,
0.04608835652470589,
0.015502101741731167,
0.040085092186927795,
0.008021768182516098,
-0.016926927492022514,
-0.04084499925374985,
0.0829058513045311,
0.020042546093463898,
-0.01456171739846468,
-0.015986543148756027,
-0.021448373794555664,
0.022322267293930054,
-0.026881707832217216,
0.08852916210889816,
0.008159500546753407,
-0.028211545199155807,
0.04365665465593338,
-0.024772966280579567,
-0.015806064009666443,
-0.00612674979493022,
0.018560728058218956,
-0.034537769854068756,
-0.0636042132973671,
-0.036551523953676224,
-0.03717844933271408,
-0.026159796863794327,
0.010287240147590637,
-0.023918071761727333,
-0.020156532526016235,
-0.034176815301179886,
-0.03828031197190285,
-0.0006661059451289475,
0.019140155985951424,
0.07986622303724289,
-0.0030823724810034037,
-0.03537366911768913,
0.037786372005939484,
0.11132636666297913,
-0.02182832732796669,
0.025285903364419937,
0.024070052430033684,
-0.00670142937451601,
0.014191262423992157,
0.014580714516341686,
-0.03622856363654137,
0.08009419590234756,
0.006259733345359564,
-0.005794290453195572,
0.03676049783825874,
-0.04962192475795746,
0.03476574271917343,
0.0313461609184742,
0.04601236432790756,
-0.03493672236800194,
0.019909562543034554,
0.0551692433655262,
0.07754850387573242,
0.01684143766760826,
0.0275846216827631,
-0.02604581043124199,
-0.06861960142850876,
0.05653707683086395,
0.010011774487793446,
-0.03867926448583603,
0.036798495799303055,
-0.03943917155265808,
0.00012207489635329694,
0.008396971970796585,
-0.0636042132973671,
0.04274476692080498,
0.007380596362054348,
0.05931073799729347,
0.011883044615387917,
0.004986889194697142,
-0.032751988619565964,
0.020840447396039963,
0.023861078545451164,
-0.009090387262403965,
0.024677978828549385,
0.04122495278716087,
0.046506304293870926,
-0.066947802901268,
-0.01548310462385416,
0.0925566703081131,
0.038641270250082016,
-0.0011392667656764388,
0.00045505366870202124,
-0.010686191730201244,
0.041984859853982925,
-0.010591203346848488,
-0.010011774487793446,
0.04339068755507469,
0.049735911190509796,
-0.05509325489401817,
-0.04513847455382347,
-0.0070243896916508675,
-0.0076275658793747425,
-0.025551870465278625,
-0.0036309303250163794,
0.03831830993294716,
0.017534852027893066,
-0.022531241178512573,
0.05543521046638489,
0.0328659750521183,
0.0023390885908156633,
-0.0009296986390836537,
0.00801226869225502,
-0.00962707120925188,
-0.03909721225500107,
0.014780189841985703,
-0.053649429231882095,
0.0771685540676117,
0.02080245316028595,
-0.03111818991601467,
-0.023234155029058456,
-0.012737940065562725,
-0.050001878291368484,
-0.036950476467609406,
0.03955315798521042,
-0.010211249813437462,
0.0007931528962217271,
-0.03184010088443756,
-0.048672039061784744,
0.03729243203997612,
0.01632850058376789,
0.07078533619642258,
0.03020630218088627,
0.00658744340762496,
-0.005746796261519194,
0.03271399438381195,
0.0500398725271225,
0.006031761411577463,
0.02511492557823658,
-0.07754850387573242,
0.02146737091243267,
0.016138523817062378,
0.015046157874166965,
-0.050571806728839874,
-0.00266442378051579,
-0.01844674162566662,
-0.03180210664868355,
-0.05418136715888977,
0.01219650637358427,
0.036190569400787354,
-0.02008054032921791,
-0.0518636479973793,
-0.028382524847984314,
0.019795576110482216,
0.04057903215289116,
0.03672250360250473,
0.014960668049752712,
-0.02547588013112545,
-0.02429802529513836,
0.04715222492814064,
0.0029660118743777275,
-0.03704546391963959,
-0.00917112734168768,
0.06466808170080185,
-0.04217483475804329,
0.007314104586839676,
0.024374015629291534,
-0.012975411489605904,
-0.025703852996230125,
-0.020270517095923424,
0.04711423069238663,
0.0011446098797023296,
0.05649908259510994,
0.013098896481096745,
0.050875771790742874,
0.025608863681554794,
0.04829208552837372,
0.005471330136060715,
0.017895808443427086,
0.005984267219901085,
0.007822291925549507,
0.04924197122454643,
-0.03801434487104416,
0.029370402917265892,
-0.01358333695679903,
-0.017316380515694618,
-0.06048859283328056,
-0.002944639418274164,
0.05098975822329521,
0.029598375782370567,
-0.017582347616553307,
0.024829959496855736,
0.0005224360502324998,
0.012225002981722355,
0.036133576184511185,
-0.03427180275321007,
-0.0005304506630636752,
0.051331713795661926,
-0.021999306976795197,
0.020365506410598755,
0.03902122378349304,
-0.028800472617149353,
0.019852569326758385,
-0.010961657389998436,
-0.03413882106542587,
-0.0458223894238472,
0.0014117646496742964,
-0.05509325489401817,
0.03831830993294716,
-0.02152436412870884,
0.0037876612041145563,
0.024374015629291534,
0.028781475499272346,
0.007722554262727499,
0.009190124459564686,
0.040958985686302185,
0.059766680002212524,
-0.06744173914194107,
-0.04479651525616646,
0.02912343479692936,
0.007850788533687592,
-0.0387362577021122,
0.03155513480305672,
0.026178793981671333,
0.049545932561159134,
-0.010705188848078251,
-0.06770770996809006,
-0.07804244756698608,
-0.0473422035574913,
-0.03250502049922943,
-0.025722850114107132,
-0.014219759032130241,
0.009888289496302605,
-0.008406470529735088,
0.034841734915971756,
0.010344233363866806,
0.062426354736089706,
0.0017097906675189734,
-0.007789046037942171,
-0.049431946128606796,
0.07709255814552307,
-0.06960747390985489,
0.015692079439759254,
0.006321475841104984,
0.030833223834633827,
-0.05311749503016472,
-0.026691731065511703,
-0.08222193270921707,
0.004616434685885906,
0.014314747415482998,
-0.03653252497315407,
-0.006539949215948582,
0.023082174360752106,
0.025551870465278625,
0.02568485587835312,
0.03729243203997612,
0.05528322979807854,
0.005238608457148075,
-0.01006876677274704,
0.028420520946383476,
-0.08017018437385559,
0.04510047659277916,
0.01448572613298893,
0.00023049522133078426,
0.026729727163910866,
0.002431702334433794,
-0.0028496510349214077,
-0.02496294304728508,
0.012357986532151699,
-0.044454555958509445,
-0.014865679666399956,
-0.025095926597714424,
-0.05399138852953911,
-0.038185324519872665,
0.049279965460300446,
0.014960668049752712,
0.04084499925374985,
-0.02198030799627304,
0.07667461037635803,
-0.02881947159767151,
-0.021144410595297813,
0.023861078545451164,
0.025665856897830963,
-0.055245235562324524,
0.0934685543179512,
-0.038641270250082016,
0.05361143499612808,
0.0060270121321082115,
0.012500469572842121,
0.04171889275312424,
-0.01438123919069767,
-0.008624943904578686,
-0.027147676795721054,
-0.009413347579538822,
-0.003863652003929019,
0.01858922466635704,
0.02866748906672001,
0.03244802728295326,
-0.01679394394159317,
0.00573729770258069,
-0.002373521914705634,
0.012244001030921936,
-0.016879433766007423,
-0.022873198613524437,
0.025912826880812645,
0.007779547479003668,
-0.018266262486577034,
0.037881363183259964,
0.006003264803439379,
-0.00044021173380315304,
0.040351059287786484,
0.003312719287350774,
-0.020916439592838287,
0.033207934349775314,
0.040503039956092834,
-0.016613466665148735,
0.040920987725257874,
0.030586255714297295,
0.02737564779818058,
0.03258100897073746,
-0.041984859853982925,
0.040807005017995834,
-0.02921842224895954,
-0.07006341964006424,
-0.0018510858062654734,
-0.03867926448583603,
0.05858882516622543,
0.004371839575469494,
0.005794290453195572,
-0.04730420932173729,
0.009992776438593864,
-0.021695343777537346,
-0.016993418335914612,
-0.022987185046076775,
0.008102508261799812,
-0.005010636523365974,
0.03837529942393303,
-0.015530598349869251,
-0.0339108482003212,
-0.049849897623062134,
-0.019425122067332268,
0.011721564456820488,
0.001200415543280542,
0.04323870688676834,
-0.05684104189276695,
-0.0025195665657520294,
0.01992855966091156,
0.015882056206464767,
-0.023234155029058456,
0.017040913924574852,
-0.011341610923409462,
-0.024222034960985184,
0.041832879185676575,
0.010600701905786991,
0.004668678157031536,
0.04377064108848572,
0.03123217634856701,
-0.033815860748291016,
0.04114896059036255,
-0.004345717839896679,
0.04422658309340477,
0.02059347927570343,
-0.051749665290117264,
0.0007373472326435149,
-0.03886923938989639,
-0.019833572208881378,
0.01139860413968563,
-0.03886923938989639,
0.011465095914900303,
-0.016404490917921066,
0.020992429926991463,
-0.04278276115655899,
0.00441695936024189,
-0.033986836671829224,
-0.018199771642684937,
0.02065047062933445,
-0.02978835254907608,
0.03448077663779259,
-0.05258556082844734,
0.03877425193786621,
-0.017582347616553307,
-0.03529767692089081,
-0.046506304293870926,
-0.08488160371780396,
-0.034442782402038574,
0.030643247067928314,
0.025817839428782463,
-0.028515508398413658,
0.04202285408973694,
-0.03467075526714325,
-0.022056300193071365,
-0.10479117184877396,
0.01207302138209343,
0.039059218019247055,
0.003004007274284959,
-0.04798812419176102,
-0.019187649711966515,
0.007751050870865583,
-0.02234126441180706,
-0.03569662943482399,
-0.0032557263039052486,
0.025152919813990593,
0.014960668049752712,
-0.039059218019247055,
0.04939395189285278,
0.019947556778788567,
0.029294412583112717,
-0.020916439592838287,
0.03394884243607521,
-0.04806411638855934,
-0.05630910396575928,
-0.04719022288918495,
-0.03358788788318634,
0.07112728804349899,
0.022987185046076775,
-0.03955315798521042,
0.024108048528432846,
0.010933161713182926,
-0.0306052528321743,
0.0013713946100324392,
0.022569237276911736,
0.009536832571029663,
-0.026064809411764145,
-0.04209884628653526,
-0.02574184723198414,
0.024924948811531067,
0.06440211087465286,
0.049279965460300446,
-0.0609065406024456,
-0.015521099790930748,
0.04479651525616646,
-0.028002571314573288,
-0.06333824247121811,
-0.012405481189489365,
0.00039984166505746543,
-0.03250502049922943,
0.04513847455382347,
0.028648491948843002,
-0.025285903364419937,
-0.049279965460300446,
-0.047532178461551666,
-0.010230246931314468,
0.016470983624458313,
0.05357344076037407,
0.00025557808112353086,
0.03440478816628456,
-0.036855489015579224,
0.03343590721487999,
-0.029370402917265892,
0.0467342771589756,
0.012367486022412777,
-0.011360608972609043,
0.014989164657890797,
0.026216790080070496,
-0.001655172323808074,
0.05695502460002899,
0.010334734804928303,
-0.02188532054424286,
-0.010895165614783764,
-0.027052687481045723,
0.09810398519039154,
0.0056470585986971855,
-0.056423090398311615,
0.0014355117455124855,
-0.008396971970796585,
0.03461376205086708,
0.006929401308298111,
-0.03801434487104416,
-0.01379231084138155,
-0.020764457061886787,
0.016917428001761436,
0.04608835652470589,
0.012025527656078339,
0.053079500794410706,
0.07804244756698608,
-0.015141146257519722,
-0.041528914123773575,
-0.044302575290203094,
-0.026387769728899002,
0.014637707732617855,
0.05551120266318321,
-0.007067134603857994,
-0.06683381646871567,
-0.008135753683745861,
0.005808538757264614,
-0.03096620924770832,
-0.009612822905182838,
0.021752336993813515,
0.08860515058040619,
0.009812298230826855,
0.05737297609448433,
-0.008767426013946533,
0.005784791894257069,
0.017373371869325638,
-0.042250826954841614,
0.037520404905080795,
0.08488160371780396,
-0.02583683654665947,
0.04855805262923241,
0.045632410794496536,
0.0331699401140213,
-0.00860119704157114,
0.0023842081427574158,
0.06907553970813751,
0.0089336559176445,
0.02460198849439621,
-0.009897788055241108,
0.0031821103766560555,
-0.056119129061698914,
-0.02809755876660347,
-0.0738629549741745,
0.00728085869923234,
-0.004991638939827681,
-0.029617372900247574,
0.022379260510206223,
0.0030158807057887316,
0.007931528612971306
] |
729,649 | avltree._avl_tree | __setitem__ | Maps the given key to the given value in this tree.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree[0] = 'foo'
>>> avl_tree[2] = 'c'
>>> avl_tree
AvlTree({0: 'foo', 1: 'b', 2: 'c'})
```
Args:
__k (_K): The key to map.
__v (_V): The value to associate with the key.
| def __setitem__(self, __k: _K, __v: _V) -> None:
"""Maps the given key to the given value in this tree.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree[0] = 'foo'
>>> avl_tree[2] = 'c'
>>> avl_tree
AvlTree({0: 'foo', 1: 'b', 2: 'c'})
```
Args:
__k (_K): The key to map.
__v (_V): The value to associate with the key.
"""
if __k in self.__nodes:
self.__nodes[__k].value = __v
return
if self.__root_key is None:
self.__root_key = __k
self.__nodes[self.__root_key] = AvlTreeNode[_K, _V](value=__v)
return
stack: Final[list[_K]] = [self.__root_key]
current_node: AvlTreeNode[_K, _V] = self.__nodes[stack[-1]]
while True:
if __k < stack[-1] and current_node.lesser_child_key is None:
current_node.lesser_child_key = __k
self.__nodes[__k] = AvlTreeNode[_K, _V](value=__v)
break
if stack[-1] < __k and current_node.greater_child_key is None:
current_node.greater_child_key = __k
self.__nodes[__k] = AvlTreeNode[_K, _V](value=__v)
break
if __k < stack[-1] and current_node.lesser_child_key is not None:
stack.append(current_node.lesser_child_key)
current_node = self.__nodes[stack[-1]]
elif current_node.greater_child_key is not None:
stack.append(current_node.greater_child_key)
current_node = self.__nodes[stack[-1]]
self.__enforce_avl(stack=stack)
| (self, _AvlTree__k: ~_K, _AvlTree__v: ~_V) -> NoneType | [
0.05582147464156151,
-0.008941666223108768,
-0.0482550784945488,
0.04234865680336952,
0.039086613804101944,
0.03223439306020737,
-0.026366574689745903,
-0.0272158645093441,
-0.00037669119774363935,
-0.052385713905096054,
-0.0374845452606678,
-0.011368895880877972,
0.05887119472026825,
0.025285661220550537,
-0.006113918498158455,
0.026714010164141655,
0.029088160023093224,
0.024397768080234528,
0.016281263902783394,
0.04200122132897377,
-0.016657652333378792,
-0.029088160023093224,
0.03592107817530632,
0.002170272171497345,
-0.021193629130721092,
-0.04821647331118584,
0.008685913868248463,
0.026714010164141655,
0.03567015379667282,
0.001228091772645712,
-0.02532426454126835,
-0.006939080078154802,
-0.010693324729800224,
-0.0389321967959404,
-0.003640845650807023,
-0.044857919216156006,
-0.0064758313819766045,
-0.00449013477191329,
-0.024822412058711052,
-0.022718491032719612,
0.042464468628168106,
0.0013511421857401729,
-0.04412444308400154,
-0.04188540577888489,
0.03926033154129982,
0.05578286945819855,
0.016802417114377022,
0.027872132137417793,
0.05261733755469322,
-0.053312208503484726,
-0.035457830876111984,
0.02239035628736019,
0.013733395375311375,
-0.023780101910233498,
-0.04701974615454674,
0.054779164493083954,
0.017584150657057762,
-0.026134949177503586,
0.025189150124788284,
-0.019224822521209717,
0.01993899792432785,
0.013385958969593048,
-0.0290109533816576,
-0.020884796977043152,
-0.03192555904388428,
0.005645844154059887,
-0.06319484859704971,
0.010770533233880997,
-0.03682827576994896,
0.0008239554590545595,
-0.02358708158135414,
-0.03289066255092621,
0.023625686764717102,
0.005066783167421818,
-0.0032765197101980448,
0.05427731201052666,
-0.04327515512704849,
0.043583985418081284,
-0.0034164595417678356,
0.018153559416532516,
0.01966876909136772,
-0.03862336277961731,
0.02841258980333805,
-0.043661195784807205,
-0.0086617860943079,
0.042696092277765274,
-0.004562517628073692,
0.0013957781484350562,
0.05431591346859932,
0.005843689665198326,
-0.013530723750591278,
0.00566514628008008,
-0.0030111167579889297,
0.03856545686721802,
-0.03595968335866928,
0.013936066068708897,
0.055705662816762924,
-0.09936685860157013,
-0.026984238997101784,
0.030091866850852966,
0.05396847799420357,
0.020981308072805405,
-0.005086085293442011,
-0.020093414932489395,
-0.040920305997133255,
-0.028258172795176506,
-0.03715641051530838,
0.05161363258957863,
-0.017989492043852806,
0.02206222154200077,
-0.05188385769724846,
0.020035509020090103,
-0.0026033613830804825,
0.033083681017160416,
-0.07423561066389084,
0.07635883241891861,
-0.06037675216794014,
-0.04551418870687485,
-0.032504621893167496,
0.01715950481593609,
0.016483934596180916,
-0.02903025411069393,
0.000975355738773942,
0.019784580916166306,
-0.027563299983739853,
-0.05412289500236511,
0.049953658133745193,
0.015026630833745003,
-0.049953658133745193,
-0.017970191314816475,
0.028586307540535927,
0.012140977196395397,
-0.024629391729831696,
0.03165533021092415,
0.055087994784116745,
-0.04647929221391678,
-0.009347008541226387,
-0.021367348730564117,
-0.03406808525323868,
0.007141751702874899,
0.026385877281427383,
-0.04671091586351395,
0.04068868234753609,
-0.03715641051530838,
0.021927107125520706,
-0.05906421318650246,
0.003872469998896122,
0.00037035770947113633,
-0.023915216326713562,
-0.001069453195668757,
-0.00021624306100420654,
-0.014225596562027931,
0.041190534830093384,
0.04597743973135948,
0.017892982810735703,
0.015181047841906548,
0.01571185328066349,
-0.07952436804771423,
0.0353420190513134,
-0.027621205896139145,
-0.040071018040180206,
-0.03142370656132698,
0.007001811638474464,
-0.048448096960783005,
-0.023413363844156265,
0.009448343887925148,
-0.0008227490470744669,
0.006152522284537554,
-0.038854990154504776,
0.04041845351457596,
0.021000610664486885,
-0.06551109254360199,
-0.10060218721628189,
0.0391831211745739,
-0.011079365387558937,
-0.05284896120429039,
-0.032774847000837326,
0.04582302272319794,
0.052038274705410004,
0.01886773481965065,
-0.02903025411069393,
0.04925878345966339,
0.0075615704990923405,
-0.029783034697175026,
-0.021270837634801865,
0.008787249214947224,
-0.005240501370280981,
0.043313756585121155,
0.01554778590798378,
0.049992259591817856,
-0.03588247671723366,
-0.08323036134243011,
0.029203973710536957,
-0.03362413868308067,
0.000848083000164479,
0.025845419615507126,
0.007889704778790474,
0.02480310946702957,
-0.030400699004530907,
0.07632023096084595,
0.022834302857518196,
-0.04173099249601364,
0.029126765206456184,
0.009182941168546677,
-0.012044467031955719,
0.0053611393086612225,
0.003218613564968109,
-0.0013065062230452895,
0.048486702144145966,
0.016570793464779854,
-0.056632157415151596,
-0.02049875631928444,
-0.022448262199759483,
0.027968643233180046,
-0.030439302325248718,
-0.0783662423491478,
-0.07998761534690857,
0.025111941620707512,
0.0011798366904258728,
-0.010056357830762863,
0.04949040710926056,
0.0030859122052788734,
-0.011687379330396652,
-0.03316088765859604,
0.05381406098604202,
-0.05169083923101425,
0.0024537707213312387,
-0.03051651082932949,
0.018732620403170586,
0.04308213293552399,
0.03648084029555321,
-0.01205411832779646,
0.02596123144030571,
-0.060878604650497437,
-0.0005977597902528942,
-0.040881700813770294,
0.029203973710536957,
-0.033083681017160416,
-0.016175102442502975,
-0.00012342743866611272,
0.014862563461065292,
0.011339942924678326,
0.0005223611951805651,
0.026038439944386482,
-0.0604153573513031,
-0.0069921608082950115,
-0.018800178542733192,
0.08176340162754059,
-0.01194795686751604,
0.039414748549461365,
-0.04261888563632965,
-0.06609015166759491,
-0.01814390905201435,
0.030999062582850456,
0.01901250146329403,
-0.015258255414664745,
-0.001819216413423419,
0.049065761268138885,
0.000699698633980006,
0.006364844739437103,
-0.031886953860521317,
-0.012469111941754818,
-0.010239727795124054,
0.034261103719472885,
-0.036789670586586,
0.0070211137644946575,
0.07180355489253998,
-0.003457476384937763,
-0.02385731041431427,
0.03358553349971771,
0.012469111941754818,
0.00008060105756158009,
0.00687634851783514,
0.015412671491503716,
0.002150970045477152,
0.043931420892477036,
-0.021290140226483345,
0.0116391247138381,
-0.013405260629951954,
-0.012787595391273499,
-0.01148470863699913,
-0.046672310680150986,
-0.05107317492365837,
0.02449427731335163,
-0.045745812356472015,
-0.01538371853530407,
-0.039993807673454285,
-0.05914142355322838,
-0.001919345697388053,
-0.03621061146259308,
0.04142215847969055,
-0.009704096242785454,
-0.05863957107067108,
0.06431436538696289,
0.04972203075885773,
0.00868108868598938,
-0.06427576392889023,
0.026173554360866547,
0.013328052125871181,
0.01993899792432785,
0.003595003392547369,
-0.025247056037187576,
0.0016346407355740666,
0.010143217630684376,
0.06524086743593216,
0.05821492522954941,
-0.01843344047665596,
0.04223284497857094,
0.0038025001995265484,
0.06724827736616135,
-0.050223883241415024,
0.03229229897260666,
0.023471269756555557,
0.028875838965177536,
0.05261733755469322,
-0.046016041189432144,
-0.02267988584935665,
-0.05157502740621567,
0.03829522803425789,
0.02874072454869747,
-0.044549088925123215,
0.0007630334002897143,
-0.0886349231004715,
-0.031249988824129105,
0.04018682986497879,
-0.01781577430665493,
0.09936685860157013,
-0.020884796977043152,
0.03831453248858452,
0.018549252301454544,
-0.002796381711959839,
-0.003623956348747015,
-0.01482396014034748,
0.0290109533816576,
-0.05806050822138786,
0.01569255068898201,
0.004601121414452791,
0.07273004949092865,
-0.010220425203442574,
0.0075470940209925175,
0.005312884226441383,
0.039993807673454285,
-0.04381560906767845,
-0.03675106540322304,
0.0704910159111023,
-0.010287982411682606,
0.03528411313891411,
-0.02204291895031929,
-0.03445412591099739,
0.049065761268138885,
-0.021946409717202187,
-0.013241193257272243,
-0.035747360438108444,
-0.0009801812702789903,
-0.012150628492236137,
-0.03829522803425789,
0.05574426427483559,
-0.06412135064601898,
-0.008965793065726757,
0.009173289872705936,
0.04686533287167549,
0.0003769928007386625,
-0.008198537863790989,
-0.012517367489635944,
0.004724171943962574,
-0.020054809749126434,
-0.0353420190513134,
-0.016995437443256378,
0.05833073705434799,
-0.03362413868308067,
0.04018682986497879,
-0.0689854621887207,
0.00724308704957366,
0.05230850353837013,
0.017950888723134995,
0.04018682986497879,
-0.014225596562027931,
0.03352762758731842,
-0.015171396546065807,
-0.00761947687715292,
0.04373840242624283,
0.04956761747598648,
0.06937149912118912,
0.037001993507146835,
0.015412671491503716,
0.0013197764055803418,
0.08716797083616257,
0.012160279788076878,
0.04898855462670326,
0.024301256984472275,
-0.039376143366098404,
0.03777407482266426,
0.004550453741103411,
-0.02026713266968727,
-0.025169847533106804,
0.021541066467761993,
0.03806360438466072,
-0.02594192884862423,
-0.000014184353858581744,
-0.029609315097332,
0.046942539513111115,
-0.0021907805930823088,
-0.023085229098796844,
-0.004038949962705374,
0.056284721940755844,
0.006326240487396717,
0.016676954925060272,
0.022467564791440964,
-0.04192401096224785,
0.007223784923553467,
0.014158039353787899,
0.005028178915381432,
-0.01391676440834999,
-0.0434681735932827,
0.022834302857518196,
-0.0962013229727745,
0.05095736309885979,
0.02690703049302101,
0.01899319887161255,
-0.027254467830061913,
0.00688117416575551,
0.0029628616757690907,
-0.028817933052778244,
0.012980615720152855,
0.018713319674134254,
-0.0019398541189730167,
0.023316852748394012,
-0.0097330491989851,
-0.0525401271879673,
-0.026173554360866547,
0.050301093608140945,
0.010973204858601093,
0.05798330157995224,
0.03373995050787926,
-0.0232782494276762,
0.010471351444721222,
0.014071180485188961,
-0.05956606939435005,
0.015316161327064037,
0.018809828907251358,
-0.02451357990503311,
0.01719810999929905,
0.029049556702375412,
0.0105678616091609,
0.011561916209757328,
0.023702893406152725,
-0.026829823851585388,
0.020981308072805405,
0.009988800622522831,
-0.041808199137449265,
-0.001042309682816267,
0.024976829066872597,
-0.023625686764717102,
0.06531807035207748,
-0.04258028045296669,
-0.02320104092359543,
-0.11982700973749161,
-0.02806515246629715,
0.007325120735913515,
0.034589238464832306,
0.007648429833352566,
0.015779409557580948,
0.036963388323783875,
0.012922709807753563,
-0.025285661220550537,
0.06222974881529808,
0.036963388323783875,
0.006644724402576685,
-0.004656615201383829,
-0.07825043052434921,
-0.019842488691210747,
-0.03613340109586716,
-0.03692478686571121,
-0.006075314246118069,
-0.012411206029355526,
-0.010056357830762863,
0.01554778590798378,
-0.07273004949092865,
-0.06844500452280045,
-0.033353909850120544,
0.011031110771000385,
0.006688153836876154,
0.04671091586351395,
0.007228610571473837,
-0.0038797082379460335,
-0.01042309682816267,
0.02296941727399826,
0.0568251796066761,
-0.007629127707332373,
0.005399743095040321,
-0.07099287211894989,
-0.05354383587837219,
-0.011195178143680096,
0.07620441913604736,
0.0032620432320982218,
0.00043731165351346135,
-0.025768211111426353,
-0.007706335745751858,
-0.0018915990367531776,
-0.03148161247372627,
-0.03207997605204582,
-0.019861789420247078,
-0.008666612207889557,
-0.00022966401593293995,
0.013395609334111214,
0.04563000053167343,
0.0008595435647293925,
0.024648694321513176,
-0.013308750465512276,
-0.029126765206456184,
0.049374595284461975,
-0.02563309669494629,
0.010596814565360546,
0.0005476951482705772,
0.038816384971141815,
0.051227591931819916,
-0.03235020488500595,
-0.014573032967746258,
-0.0054673003032803535,
-0.032137881964445114,
-0.026501689106225967,
-0.05257873237133026,
0.07346352934837341,
-0.06103302165865898,
0.0032909961882978678,
0.03281345218420029,
-0.01133029256016016,
0.0105678616091609,
0.011687379330396652,
0.005457649473100901,
-0.07245982438325882,
-0.052733149379491806,
0.0090092234313488,
0.03404878452420235,
-0.02654029242694378,
0.04628627002239227,
0.04902715981006622,
0.055126599967479706,
-0.0441630482673645,
0.0011044380953535438,
-0.007691859267652035,
0.0033947445917874575,
0.0034019830636680126,
-0.027717716991901398,
0.006089790724217892,
0.012469111941754818,
-0.04350677877664566,
-0.02594192884862423,
-0.0032113753259181976,
-0.03084464557468891,
-0.021290140226483345,
0.04458769038319588,
0.09203208237886429,
0.024397768080234528,
0.009182941168546677,
-0.012044467031955719,
-0.013135031796991825,
-0.030941154807806015,
0.05910281836986542,
0.010490654036402702,
0.01416769064962864,
0.060878604650497437,
0.007643604185432196,
-0.027408884838223457,
0.02414683997631073,
0.006649549584835768,
-0.06886965036392212,
-0.001733563607558608,
0.09064234048128128,
0.03953056037425995,
0.03084464557468891,
-0.02387661300599575,
-0.00009409739868715405,
-0.06265439093112946,
-0.07543233782052994,
0.026154251769185066,
-0.07632023096084595,
0.046981144696474075,
-0.039125215262174606,
-0.047251373529434204,
-0.03597898408770561,
0.07060682773590088,
0.049953658133745193,
0.04678812250494957,
0.005472125951200724,
0.007228610571473837,
0.01963016577064991,
0.09774548560380936,
-0.06373530626296997,
0.029667221009731293,
-0.050918757915496826,
-0.024687297642230988,
-0.01734287478029728,
0.007643604185432196,
0.017188457772135735,
-0.042696092277765274,
-0.01540302112698555,
0.024320559576153755,
0.023046625778079033,
-0.06543388217687607,
0.03227299451828003,
-0.03497527912259102,
-0.035824570804834366,
0.02474520355463028,
-0.01993899792432785,
0.01777717098593712,
0.03814081475138664,
0.014688845723867416,
-0.0027264119125902653,
0.0019482987700030208,
0.010037056170403957,
0.03495597839355469,
0.06388971954584122,
0.00921672023832798,
-0.0008384319953620434,
-0.020981308072805405,
-0.005457649473100901,
0.060222335159778595,
-0.0169471837580204,
0.009081605821847916,
-0.02320104092359543,
0.005211548414081335,
-0.010316935367882252,
-0.011040762066841125,
-0.019147614017128944,
-0.06192091479897499,
0.05396847799420357,
-0.038198720663785934,
0.015171396546065807,
-0.017555197700858116,
0.01806670054793358,
-0.0014283503405749798,
-0.01703404262661934,
-0.0014778117183595896,
-0.018134258687496185,
-0.04323654994368553,
0.03711780533194542,
0.02267988584935665,
0.03406808525323868,
0.058137718588113785,
-0.033720649778842926,
-0.049683429300785065,
-0.011378547176718712,
0.0024429133627563715,
0.07338631898164749,
0.014688845723867416,
-0.008217839524149895,
0.040032412856817245,
-0.005891944747418165,
0.030941154807806015,
0.007262389175593853,
-0.049953658133745193,
-0.04798484966158867,
-0.019784580916166306,
-0.015769759193062782,
0.061148833483457565,
0.04528256505727768,
-0.0015284796245396137,
-0.05250152572989464,
0.03404878452420235,
-0.06794314831495285,
-0.026443783193826675,
-0.07083845138549805,
-0.012884105555713177,
0.07052962481975555,
0.008570102043449879,
0.005669971462339163,
0.022853605449199677,
-0.006437227129936218,
0.055628452450037,
0.04551418870687485,
-0.07747834920883179,
-0.019205521792173386,
0.012430507689714432,
0.0005986645701341331,
-0.07535512745380402,
0.00868108868598938,
0.05863957107067108,
0.023915216326713562,
-0.02690703049302101,
0.014466872438788414,
0.056632157415151596,
0.0029339087195694447,
0.011446104384958744,
-0.030651625245809555,
0.019263427704572678,
-0.008685913868248463,
0.02594192884862423,
0.05006946995854378,
-0.06481622159481049,
0.008903061971068382,
-0.035766664892435074,
0.004224732052534819,
-0.0007600174867548048,
-0.088326096534729,
-0.008367430418729782,
-0.005544508341699839,
-0.013636885210871696,
0.03497527912259102,
-0.01794123835861683,
0.02051805891096592,
0.014080831781029701,
-0.04173099249601364,
-0.021560369059443474,
-0.021521763876080513,
0.0028832408133894205,
-0.02295011468231678,
0.03567015379667282,
0.001965187955647707,
-0.013202589005231857,
-0.004564930219203234,
0.026096345856785774,
-0.03794779255986214,
-0.0845428928732872,
-0.0030183549970388412,
0.011600520461797714,
-0.002736062975600362,
-0.035168301314115524,
-0.0377354696393013,
0.0341452918946743,
0.003607067046687007,
-0.02320104092359543,
0.05860096588730812,
-0.010027404874563217,
-0.006741234101355076,
0.0032282646279782057,
0.08446568995714188,
-0.026482386514544487,
-0.027022844180464745,
0.020074112340807915,
0.0494518019258976,
0.04929738864302635,
0.0250733382999897,
-0.05883258953690529,
-0.004618010949343443,
-0.028760027140378952,
-0.06867662817239761,
-0.018481694161891937,
0.038488250225782394,
0.10708767175674438,
0.02779492549598217,
0.0007280485006049275,
-0.05392987281084061,
-0.033353909850120544,
0.027254467830061913,
-0.017130551859736443,
-0.002613012446090579,
0.07161053270101547,
-0.005380440969020128,
0.035129696130752563,
0.009646190330386162,
0.02812305837869644,
0.007281691301614046,
0.0254207756370306,
0.06423716247081757,
0.014621288515627384,
0.03179044649004936,
-0.0059498511254787445,
0.02175338938832283,
-0.0326976403594017,
-0.024397768080234528,
-0.06315624713897705,
-0.06991195678710938,
-0.015779409557580948,
-0.041808199137449265,
0.0054045687429606915,
0.0020797939505428076,
0.05767446756362915
] |
729,650 | avltree._avl_tree | between | Iterates over all keys between the given start and stop in sort order.
Getting the first key has an amortized and worst-case time complexity of
O[log(n)]. Iterating over all keys has an amortized and worst-case time
complexity of O[k], where k is the number of items in only the interval between
start and stop.
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b', 2: 'c'})
>>> for key in avl_tree.between(start=0, stop=2, treatment="inclusive"):
... print(key)
...
0
1
2
>>> for key in avl_tree.between(start=0, treatment="exclusive"):
... print(key)
...
1
2
```
Args:
start (_K | None): The key at which to start iterating. If None, iteration
starts at the minimum key. Defaults to None.
stop (_K | None): The key at which to stop iterating. If None, iteration
stops at the maximum key. Defaults to None.
treatment (Literal["inclusive", "exclusive"]): Whether the given start and
stop should be included or excluded from the returned iterator. Has no
effect when start and stop are None. Defaults to "inclusive".
Returns:
Iterator[_K]: An iterator which will iterate over all keys between the given
start and stop.
| def between( # noqa: C901, PLR0912
self,
start: _K | None = None,
stop: _K | None = None,
treatment: Literal["inclusive", "exclusive"] = "inclusive",
) -> Iterator[_K]:
"""Iterates over all keys between the given start and stop in sort order.
Getting the first key has an amortized and worst-case time complexity of
O[log(n)]. Iterating over all keys has an amortized and worst-case time
complexity of O[k], where k is the number of items in only the interval between
start and stop.
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b', 2: 'c'})
>>> for key in avl_tree.between(start=0, stop=2, treatment="inclusive"):
... print(key)
...
0
1
2
>>> for key in avl_tree.between(start=0, treatment="exclusive"):
... print(key)
...
1
2
```
Args:
start (_K | None): The key at which to start iterating. If None, iteration
starts at the minimum key. Defaults to None.
stop (_K | None): The key at which to stop iterating. If None, iteration
stops at the maximum key. Defaults to None.
treatment (Literal["inclusive", "exclusive"]): Whether the given start and
stop should be included or excluded from the returned iterator. Has no
effect when start and stop are None. Defaults to "inclusive".
Returns:
Iterator[_K]: An iterator which will iterate over all keys between the given
start and stop.
"""
if self.__root_key is None:
return
stack: Final[list[tuple[_K, bool]]] = []
current_key: _K = self.__root_key
while True:
current_node: AvlTreeNode[_K, _V] = self.__nodes[current_key]
if start is None or start < current_key:
stack.append((current_key, True))
if current_node.lesser_child_key is not None:
current_key = current_node.lesser_child_key
else:
break
elif start == current_key:
if treatment == "inclusive":
stack.append((current_key, True))
break
elif current_node.greater_child_key is not None:
current_key = current_node.greater_child_key
else:
break
elif current_node.greater_child_key is not None:
current_key = current_node.greater_child_key
else:
break
while len(stack) > 0:
key, lesser_child_visited = stack.pop(-1)
node: AvlTreeNode[_K, _V] = self.__nodes[key]
if (
stop is not None # noqa: PLR0916
and (stop < key or (stop == key and treatment == "exclusive"))
and (lesser_child_visited or node.lesser_child_key is None)
):
break
elif node.lesser_child_key is not None and not lesser_child_visited:
stack.append((key, True))
stack.append((node.lesser_child_key, False))
elif node.greater_child_key is not None:
stack.append((node.greater_child_key, False))
yield key
else:
yield key
| (self, start: Optional[~_K] = None, stop: Optional[~_K] = None, treatment: Literal['inclusive', 'exclusive'] = 'inclusive') -> Iterator[~_K] | [
0.03893772512674332,
0.0026554346550256014,
-0.07214687019586563,
-0.016998931765556335,
0.012266629375517368,
0.03800371661782265,
-0.010538715869188309,
-0.016978176310658455,
-0.012526075355708599,
-0.06953164935112,
-0.03266949951648712,
0.021668968722224236,
0.06529748439788818,
0.023661518469452858,
-0.027293767780065536,
0.019956622272729874,
-0.001975684892386198,
0.0015424091834574938,
-0.06114634498953819,
0.026650341227650642,
-0.018773546442389488,
-0.0035881446674466133,
0.019915111362934113,
0.012152472510933876,
-0.00020739501633215696,
0.005009911488741636,
-0.03196380287408829,
0.01798482984304428,
-0.006527672987431288,
0.010647683404386044,
-0.005015100352466106,
-0.031050553545355797,
-0.0030588738154619932,
-0.044956885278224945,
-0.028601378202438354,
-0.04238317534327507,
0.006434272509068251,
-0.010320780798792839,
0.03800371661782265,
0.02189728245139122,
0.03476582467556,
-0.006112558767199516,
-0.00974480900913477,
-0.019105637446045876,
-0.025757845491170883,
0.01786029525101185,
0.050519414246082306,
-0.03893772512674332,
0.03628099337220192,
-0.03860563412308693,
0.04036986827850342,
0.005334219429641962,
0.03343746066093445,
-0.03999626636505127,
-0.033665772527456284,
0.010092467069625854,
-0.0275428369641304,
-0.020952897146344185,
0.03368652984499931,
-0.018991481512784958,
0.021648213267326355,
0.03111281991004944,
0.015826234593987465,
0.025052150711417198,
-0.04748908057808876,
-0.029120272025465965,
-0.06658434122800827,
-0.030386369675397873,
-0.05765938386321068,
0.05533474311232567,
-0.024367211386561394,
0.008286720141768456,
0.029224049299955368,
0.03966417536139488,
-0.055168695747852325,
-0.0008736859890632331,
-0.029037248343229294,
0.0402245819568634,
-0.02137838862836361,
-0.02139914408326149,
0.023952098563313484,
-0.010419369675219059,
-0.006740419194102287,
-0.015701700001955032,
0.05363277345895767,
0.04686640948057175,
-0.039311327040195465,
-0.005853112321346998,
0.048194777220487595,
0.004670036491006613,
-0.050560928881168365,
0.02608993649482727,
0.004664847627282143,
0.03816976398229599,
0.007596592418849468,
0.041283123195171356,
0.02602767013013363,
-0.03215060755610466,
-0.03808674216270447,
-0.012432674877345562,
0.054629046469926834,
0.04474932700395584,
0.03522245213389397,
0.00869145616889,
-0.011716602370142937,
-0.03578285500407219,
-0.08484937250614166,
0.024118144065141678,
-0.007181478198617697,
-0.0017175356624647975,
-0.07770940661430359,
-0.016697974875569344,
0.02378605119884014,
0.033769551664590836,
-0.08115485310554504,
0.037899941205978394,
-0.018939591944217682,
0.009199971333146095,
-0.006470595020800829,
-0.04877593740820885,
0.018348054960370064,
-0.05437998101115227,
0.008426820859313011,
0.011820380575954914,
-0.03397710993885994,
-0.08020009100437164,
0.06297284364700317,
0.03812825307250023,
-0.06106331944465637,
0.008712212555110455,
0.057866938412189484,
0.019925488159060478,
-0.038418833166360855,
0.014103509485721588,
0.0005503508145920932,
-0.017818782478570938,
0.0414491668343544,
0.024533258751034737,
-0.029576897621154785,
0.048651400953531265,
0.05641403794288635,
-0.043587006628513336,
0.030842995271086693,
-0.004423562437295914,
-0.0445832796394825,
-0.07081850618124008,
-0.04057742655277252,
0.017798027023673058,
0.04412665590643883,
0.0340186208486557,
-0.003998070023953915,
-0.03752633556723595,
0.06562957912683487,
0.03868865594267845,
0.029618408530950546,
-0.02515592984855175,
-0.026401272043585777,
-0.03731878101825714,
-0.022893555462360382,
0.00627860426902771,
-0.017310267314314842,
-0.02281053364276886,
0.02000851184129715,
-0.03520169481635094,
-0.002174161374568939,
0.02984672226011753,
-0.04624373838305473,
0.0012816655216738582,
-0.0016228376189246774,
-0.0072852568700909615,
0.00822445284575224,
0.008836746215820312,
-0.07044490426778793,
-0.010611360892653465,
-0.07455454021692276,
-0.057451825588941574,
-0.005500264931470156,
0.06841084361076355,
0.031029798090457916,
-0.006418705452233553,
-0.0014282527845352888,
0.04761361703276634,
0.003813863033428788,
-0.04790419712662697,
-0.0031315188389271498,
-0.028539111837744713,
0.004664847627282143,
0.005713011138141155,
-0.0012622070498764515,
0.009241483174264431,
-0.045371998101472855,
-0.07891323417425156,
0.018015962094068527,
0.004034392535686493,
-0.04138689860701561,
0.028227776288986206,
0.001162968808785081,
0.052844054996967316,
-0.03264874219894409,
0.05770089477300644,
-0.013864818960428238,
-0.022250128909945488,
-0.02696167677640915,
-0.009770753793418407,
0.051930803805589676,
0.037505581974983215,
-0.044873859733343124,
-0.02281053364276886,
0.03310536965727806,
0.02841457724571228,
-0.06459179520606995,
-0.07795847207307816,
-0.018804680556058884,
0.028746668249368668,
-0.015379986725747585,
-0.0033650207333266735,
-0.05994250997900963,
0.016697974875569344,
0.002659326186403632,
-0.03455827012658119,
0.04985523223876953,
0.018275409936904907,
0.016282860189676285,
-0.06185203790664673,
0.08401914685964584,
-0.018991481512784958,
0.013916708528995514,
0.0004193303466308862,
-0.02048589289188385,
0.02600691467523575,
0.059859488159418106,
-0.06600318104028702,
0.028684401884675026,
-0.025757845491170883,
-0.006771552842110395,
-0.05558381229639053,
-0.0065172952599823475,
0.006065858528017998,
-0.0038424022495746613,
-0.005025478079915047,
-0.011830759234726429,
0.05197231471538544,
-0.0006586697418242693,
-0.03503565117716789,
-0.05122511088848114,
-0.04184352606534958,
-0.01138451136648655,
0.007487624883651733,
0.036467794328927994,
0.06189354881644249,
-0.034163910895586014,
-0.0464928075671196,
-0.003813863033428788,
0.005796033889055252,
0.0032041638623923063,
-0.01611681468784809,
-0.019344327971339226,
-0.003538849763572216,
0.028227776288986206,
0.001253126421943307,
0.03989248722791672,
-0.008779668249189854,
-0.03399786353111267,
0.039332084357738495,
0.013636506162583828,
0.04790419712662697,
0.06197657063603401,
-0.05205534026026726,
0.012567587196826935,
0.03152793273329735,
-0.09091003984212875,
-0.03596965968608856,
-0.015089406631886959,
0.03443373367190361,
-0.011218464933335781,
0.024055875837802887,
0.0031159520149230957,
-0.05803298577666283,
-0.06953164935112,
-0.005956890992820263,
-0.038958482444286346,
0.019717931747436523,
-0.0960574597120285,
-0.005962079856544733,
-0.03731878101825714,
-0.017237622290849686,
-0.04337944835424423,
-0.08501541614532471,
0.008935336023569107,
-0.017715005204081535,
0.041096318513154984,
-0.012204362079501152,
-0.02424267865717411,
-0.020973652601242065,
0.06529748439788818,
-0.018109362572431564,
0.01722724549472332,
-0.08775517344474792,
0.01646966114640236,
-0.005246007349342108,
0.03075997345149517,
-0.055127184838056564,
0.049564652144908905,
0.0051603903993964195,
0.019282061606645584,
0.09331770241260529,
-0.013833685778081417,
0.021274609491229057,
0.0007977978675626218,
0.006942787207663059,
-0.07808300852775574,
0.010388236492872238,
0.03893772512674332,
-0.06284831464290619,
-0.007606970611959696,
-0.0790792852640152,
-0.01353272795677185,
-0.004216005094349384,
0.007352713029831648,
0.04146992415189743,
-0.04906651750206947,
0.06965618580579758,
-0.07276954501867294,
-0.024803081527352333,
0.014612024649977684,
0.01184113696217537,
0.04242468625307083,
0.01870090141892433,
0.05433846637606621,
0.03349972888827324,
-0.004236761014908552,
0.03827354311943054,
0.027252256870269775,
0.04989674314856529,
-0.05491962656378746,
0.034205421805381775,
0.01983208768069744,
0.060357626527547836,
-0.01207982748746872,
-0.01814049668610096,
0.06396912038326263,
-0.010917507112026215,
0.006314926780760288,
-0.04333793744444847,
0.04985523223876953,
-0.013055345974862576,
0.042196374386548996,
-0.020952897146344185,
0.024429479613900185,
0.028705157339572906,
-0.0017512636259198189,
0.039809465408325195,
-0.005905001424252987,
0.017414046451449394,
0.012702498584985733,
-0.036156460642814636,
0.0242011658847332,
-0.07579988241195679,
0.008333420380949974,
0.05682915449142456,
0.061270877718925476,
0.00019717930990736932,
-0.051515690982341766,
0.022229373455047607,
-0.027605103328824043,
-0.06052367016673088,
-0.02611069194972515,
-0.03389408811926842,
0.003263836493715644,
0.015452631749212742,
0.025778600946068764,
-0.03455827012658119,
0.028725912794470787,
0.056123457849025726,
-0.005305680446326733,
0.011602445505559444,
0.02016417868435383,
0.013646883890032768,
0.017476314678788185,
0.07920381426811218,
-0.0006265632109716535,
0.06110483035445213,
0.05338370427489281,
0.06621073931455612,
-0.023536983877420425,
-0.029493873938918114,
0.06753910332918167,
0.007876794785261154,
0.060689717531204224,
0.02833155356347561,
-0.019956622272729874,
0.02511441707611084,
-0.006750796921551228,
0.005702633410692215,
-0.029929744079709053,
-0.0068649533204734325,
0.047323036938905716,
-0.03289781138300896,
0.04404363036155701,
-0.048194777220487595,
0.04873442277312279,
0.02928631752729416,
-0.03553378954529762,
-0.01981133222579956,
0.05662159621715546,
-0.041283123195171356,
0.042549218982458115,
-0.05674613267183304,
-0.014362956397235394,
-0.0028513167053461075,
-0.024055875837802887,
-0.05168173462152481,
-0.03302234783768654,
0.018991481512784958,
0.028684401884675026,
-0.10502392798662186,
0.029141027480363846,
0.09522723406553268,
-0.014570513740181923,
-0.012692120857536793,
0.026297492906451225,
-0.05122511088848114,
0.02066231705248356,
-0.023391693830490112,
0.02880893647670746,
0.005334219429641962,
0.018109362572431564,
-0.037547092884778976,
-0.04313037917017937,
-0.009651408530771732,
0.011810002848505974,
-0.004714142065495253,
0.004299027845263481,
0.02281053364276886,
-0.01464315876364708,
0.05483660474419594,
-0.03924906253814697,
-0.004991750232875347,
0.06679189950227737,
-0.00997312180697918,
-0.03543001040816307,
-0.005858301185071468,
0.03175624832510948,
0.009941988624632359,
0.03439222276210785,
-0.00930893886834383,
0.01972830854356289,
0.03300159052014351,
0.07052792608737946,
-0.029971254989504814,
0.022436929866671562,
-0.01911601610481739,
-0.015888500958681107,
0.003951369784772396,
-0.030822239816188812,
-0.03999626636505127,
-0.07252047955989838,
0.02382756397128105,
-0.0021339470986276865,
0.019956622272729874,
0.07409790903329849,
-0.00581678980961442,
0.02984672226011753,
0.027667371556162834,
-0.007466869428753853,
0.025508776307106018,
0.005479509476572275,
0.013626128435134888,
-0.024844594299793243,
-0.043047357350587845,
-0.008188130334019661,
-0.023620005697011948,
-0.04132463410496712,
0.007534325588494539,
0.022540709003806114,
0.032814789563417435,
0.01961415261030197,
-0.06832782179117203,
-0.040286846458911896,
-0.021015163511037827,
0.018565990030765533,
-0.03069770522415638,
0.008660322986543179,
0.023101113736629486,
-0.028995737433433533,
-0.04508141800761223,
-0.006621073931455612,
0.03347897157073021,
-0.06641829758882523,
-0.04690792039036751,
-0.033333681523799896,
-0.06986374408006668,
0.014487490989267826,
0.05915379524230957,
0.045787110924720764,
-0.016189459711313248,
0.03397710993885994,
-0.0006868845084682107,
0.01694704405963421,
-0.01230814028531313,
0.02472005970776081,
0.011602445505559444,
0.05085150897502899,
0.03302234783768654,
0.03717349097132683,
0.09622350335121155,
-0.0010715138632804155,
-0.02018493413925171,
-0.008743345737457275,
-0.02428418956696987,
0.08240019530057907,
-0.006802686490118504,
0.04931558296084404,
0.0207245834171772,
-0.011737357825040817,
0.011332621797919273,
-0.042134106159210205,
-0.011810002848505974,
-0.00020496270735748112,
-0.04043213650584221,
-0.03601117059588432,
-0.031818512827157974,
0.04599466919898987,
-0.005038450472056866,
0.015981901437044144,
0.040722716599702835,
-0.009941988624632359,
0.011073174886405468,
-0.02507290616631508,
-0.011093931272625923,
-0.030033523216843605,
-0.016801754012703896,
0.0522213838994503,
-0.003974719904363155,
-0.06388609856367111,
0.0021780531387776136,
0.015743210911750793,
0.06907502561807632,
-0.0539233535528183,
0.02976369857788086,
0.08667587488889694,
0.00343766575679183,
-0.006439461372792721,
-0.003959152847528458,
0.05404788628220558,
0.04968918859958649,
-0.03711122274398804,
-0.01489222701638937,
-0.04095102846622467,
0.019717931747436523,
-0.00041997895459644496,
0.04570408910512924,
0.06650131940841675,
0.01887732557952404,
-0.0027164043858647346,
-0.025052150711417198,
-0.01034153625369072,
0.0029576898086816072,
0.029576897621154785,
0.02318413555622101,
0.01139488909393549,
0.05824054405093193,
-0.07990951091051102,
-0.03947737440466881,
-0.014601646922528744,
-0.009931610897183418,
0.009397150948643684,
-0.03032410331070423,
0.05645555257797241,
0.09663861989974976,
0.006693718954920769,
-0.021772747859358788,
-0.022084083408117294,
-0.011259976774454117,
-0.0680372416973114,
0.051432669162750244,
-0.07646406441926956,
0.01488184928894043,
-0.05998402461409569,
-0.08447577059268951,
0.017279135063290596,
0.005059205926954746,
0.07538476586341858,
0.01488184928894043,
0.014798826538026333,
0.018036717548966408,
-0.019780198112130165,
0.058904726058244705,
-0.03711122274398804,
0.024097388610243797,
0.019821710884571075,
-0.06006704643368721,
-0.01748669147491455,
-0.020039645954966545,
-0.0006152124260552227,
-0.021710479632019997,
0.018804680556058884,
0.01038304716348648,
0.007638103794306517,
-0.045371998101472855,
0.03177700191736221,
0.022436929866671562,
0.014612024649977684,
0.06438423693180084,
-0.002545169787481427,
0.038958482444286346,
0.07256198674440384,
-0.060772739350795746,
-0.003977314103394747,
-0.006283793598413467,
0.0020638967398554087,
0.0032197306863963604,
0.04562106728553772,
0.003422098932787776,
0.006818253081291914,
0.028497599065303802,
0.05338370427489281,
0.007809338625520468,
0.02139914408326149,
0.01012360118329525,
0.006418705452233553,
-0.035616811364889145,
0.021191587671637535,
0.03538849949836731,
-0.006745608057826757,
-0.02020569145679474,
0.0649653971195221,
-0.027833417057991028,
0.06467481702566147,
-0.0016202431870624423,
0.000021667834516847506,
-0.013397815637290478,
0.014840337447822094,
-0.011685469187796116,
-0.020932141691446304,
0.013553483411669731,
0.07795847207307816,
-0.014964872039854527,
-0.016625329852104187,
0.011716602370142937,
-0.06284831464290619,
0.0366753526031971,
-0.0034869604278355837,
0.039311327040195465,
0.033707283437252045,
-0.02116045355796814,
0.027273012325167656,
0.05570834502577782,
-0.011550556868314743,
0.01657344028353691,
0.01698855496942997,
-0.0000025032529720192542,
-0.03908301517367363,
-0.04271526634693146,
-0.051474180072546005,
0.0070050545036792755,
0.04248695448040962,
-0.008426820859313011,
-0.02374454028904438,
0.02928631752729416,
0.0038320242892950773,
0.023869074881076813,
-0.03501489385962486,
-0.0046207415871322155,
-0.02515592984855175,
0.0019276872044429183,
-0.00015842450375203043,
0.03362426161766052,
-0.00838530994951725,
0.05645555257797241,
0.028622133657336235,
-0.043088868260383606,
-0.009625463746488094,
0.012640232220292091,
-0.022561464458703995,
-0.002185836434364319,
0.0044676680117845535,
-0.01579510048031807,
0.01464315876364708,
-0.051847781985998154,
-0.0064290836453437805,
0.06791270524263382,
0.0011597257107496262,
-0.030386369675397873,
0.018015962094068527,
-0.0033987488131970167,
-0.03347897157073021,
-0.015712078660726547,
0.053342193365097046,
-0.03765087202191353,
0.03161095827817917,
-0.04885895922780037,
-0.014030864462256432,
-0.02648429572582245,
-0.04798721894621849,
0.027169233188033104,
-0.011467534117400646,
0.014072376303374767,
0.03574134409427643,
-0.04690792039036751,
0.026774875819683075,
0.007954628206789494,
0.0035621998831629753,
0.0376301147043705,
-0.037547092884778976,
-0.005022883415222168,
0.01653192937374115,
0.03455827012658119,
0.07202234119176865,
0.020734962075948715,
0.001146753435023129,
0.018171630799770355,
-0.057451825588941574,
-0.06836933642625809,
0.004882782697677612,
-0.02613144740462303,
-0.005230440758168697,
0.00887306872755289,
0.010025011375546455,
0.013117613270878792,
-0.02141989953815937,
-0.01839994266629219,
0.02986747771501541,
-0.025861624628305435,
-0.014923361130058765,
0.019541507586836815,
0.011768491938710213,
0.0006726149586029351,
-0.08941563218832016,
0.005035855807363987,
0.01868014596402645,
0.016739485785365105,
-0.024761570617556572,
-0.01959339715540409,
0.018192386254668236,
-0.022125594317913055,
-0.09472909569740295,
-0.00997312180697918,
0.03636401519179344,
0.06928258389234543,
-0.0004926239489577711,
0.025716334581375122,
-0.059319838881492615,
-0.028020218014717102,
0.005069584120064974,
0.015089406631886959,
0.004727114457637072,
0.01229776255786419,
-0.019188661128282547,
-0.005313463509082794,
-0.017756516113877296,
-0.01585736870765686,
0.046783387660980225,
-0.00799614004790783,
-0.01933395117521286,
0.06222563982009888,
-0.03410164266824722,
-0.013885574415326118,
-0.017414046451449394,
-0.016936665400862694,
0.019541507586836815,
-0.029556142166256905,
-0.014964872039854527,
0.0037100843619555235,
-0.044417236000299454,
0.0029940123204141855,
0.04176050424575806,
0.07256198674440384
] |
729,655 | avltree._avl_tree | maximum | Gets the maximum key contained in this tree.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree.maximum()
1
```
Returns:
_K: The maximum key.
Raises:
ValueError: If there are no keys present in this tree.
| def maximum(self) -> _K:
"""Gets the maximum key contained in this tree.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree.maximum()
1
```
Returns:
_K: The maximum key.
Raises:
ValueError: If there are no keys present in this tree.
"""
if self.__root_key is None:
message: Final[str] = "Cannot get the maximum of an empty AvlTree"
raise ValueError(message)
key: _K = self.__root_key
node: AvlTreeNode[_K, _V] = self.__nodes[key]
while node.greater_child_key is not None:
key = node.greater_child_key
node = self.__nodes[key]
return key
| (self) -> ~_K | [
0.0841929167509079,
0.01955130323767662,
-0.011482511647045612,
0.04403150826692581,
0.023421403020620346,
-0.0032311677932739258,
0.006161124911159277,
-0.025027858093380928,
0.045710984617471695,
-0.06349153071641922,
-0.029719442129135132,
0.0027679423801600933,
0.006832003127783537,
-0.01998942717909813,
-0.0010684988228604198,
0.03652862459421158,
-0.003689829260110855,
0.005754947196692228,
0.014448978938162327,
0.038810525089502335,
-0.007051065098494291,
0.005499374587088823,
-0.0007992348400875926,
-0.030833007767796516,
0.004470238462090492,
0.0009298734948970377,
0.056627582758665085,
0.03444753587245941,
0.034411024302244186,
-0.020391041412949562,
-0.10814371705055237,
-0.010168137960135937,
0.019259219989180565,
-0.02977420762181282,
-0.05180821567773819,
-0.01841035485267639,
-0.005750383250415325,
0.016694366931915283,
-0.050749413669109344,
-0.08112604171037674,
0.04764603450894356,
-0.0070647564716637135,
-0.008776180446147919,
-0.018492503091692924,
-0.0037217759527266026,
0.006293475162237883,
0.04268062114715576,
-0.007849729619920254,
-0.019003648310899734,
-0.024699265137314796,
-0.0005171351367607713,
-0.02241736650466919,
0.01705946959555149,
-0.007954697124660015,
-0.08769790828227997,
0.04753650352358818,
0.0005353903397917747,
-0.05220982804894447,
-0.043593380600214005,
-0.022892002016305923,
-0.017223767936229706,
-0.00032402953365817666,
0.019788620993494987,
-0.01604630798101425,
-0.005052122287452221,
0.0062980386428534985,
-0.025338197126984596,
0.040161408483982086,
-0.04746348038315773,
0.05838008224964142,
-0.03877401351928711,
-0.03264027088880539,
-0.004125671926885843,
0.035049956291913986,
0.00656273914501071,
-0.03240295499563217,
-0.035104721784591675,
-0.008036845363676548,
-0.021194269880652428,
0.009059135802090168,
0.019569559022784233,
-0.032366443425416946,
0.033826857805252075,
-0.032165635377168655,
0.028441578149795532,
-0.0045341313816607,
0.04603957757353783,
0.014093003235757351,
0.01960606873035431,
-0.019259219989180565,
-0.04348384961485863,
0.023019788786768913,
-0.01800874061882496,
0.0573577918112278,
-0.035287272185087204,
-0.02530168741941452,
0.02031802013516426,
-0.014905358664691448,
0.03218389302492142,
-0.04582051560282707,
0.06604725867509842,
0.06936970353126526,
0.03654688224196434,
-0.022508643567562103,
0.00737965852022171,
-0.012796884402632713,
-0.024352416396141052,
0.03815333545207977,
-0.014403341338038445,
0.023987313732504845,
-0.04465218260884285,
-0.0005165647016838193,
0.022983277216553688,
0.04574749246239662,
-0.028313791379332542,
0.06382012367248535,
-0.030741732567548752,
-0.002214582171291113,
0.026561293751001358,
0.0036943929735571146,
0.031198110431432724,
0.0025488801766186953,
-0.030705220997333527,
-0.05242889001965523,
-0.02701767347753048,
0.007297510281205177,
0.04987316578626633,
-0.039759792387485504,
-0.026798611506819725,
0.032859332859516144,
0.05845310166478157,
0.039759792387485504,
0.006786365061998367,
0.05334164947271347,
0.010916600935161114,
-0.03826286643743515,
0.05060337483882904,
0.02880668267607689,
-0.018355589359998703,
-0.005805148743093014,
0.032037850469350815,
-0.007553082890808582,
0.0690046027302742,
-0.020810911431908607,
0.016384027898311615,
-0.04706186801195145,
-0.004169027786701918,
-0.028824936598539352,
0.035743653774261475,
-0.03149019554257393,
0.0010645054280757904,
-0.02031802013516426,
0.04122020676732063,
0.03725883364677429,
0.06506147980690002,
0.021048229187726974,
0.010040352120995522,
-0.05819753184914589,
-0.018255185335874557,
-0.06874902546405792,
0.008730541914701462,
0.037076279520988464,
-0.023293616250157356,
-0.06239622086286545,
-0.0042260754853487015,
-0.04567447304725647,
0.015124420635402203,
0.03884703293442726,
-0.04476171359419823,
0.054400451481342316,
-0.004360707476735115,
-0.024863561615347862,
-0.12946577370166779,
0.016949938610196114,
-0.05060337483882904,
-0.0050977603532373905,
-0.032676782459020615,
0.022125285118818283,
0.04662374407052994,
0.056956175714731216,
-0.038043804466724396,
0.040088385343551636,
0.012669098563492298,
-0.02701767347753048,
0.03623654320836067,
0.006599249318242073,
0.030102800577878952,
0.04005187749862671,
-0.017963102087378502,
-0.01998942717909813,
-0.07090313732624054,
-0.06279783695936203,
0.011135662905871868,
-0.01967909000813961,
-0.023969057947397232,
0.0028181441593915224,
0.044615671038627625,
0.07083012163639069,
0.01609194651246071,
0.03231167793273926,
-0.00059899827465415,
0.02446194738149643,
0.003053179709240794,
-0.02305629849433899,
0.021814946085214615,
-0.006466899532824755,
0.0030212332494556904,
-0.018191291019320488,
-0.02880668267607689,
-0.009027188643813133,
-0.014768444932997227,
0.02013546973466873,
-0.026050148531794548,
0.0535242035984993,
0.0032631142530590296,
-0.07258261740207672,
-0.04362989217042923,
0.011254321783781052,
0.00533507764339447,
0.006147433537989855,
0.026743846014142036,
0.01687691919505596,
0.03545156866312027,
-0.003726339666172862,
0.04830322042107582,
-0.07137777656316757,
0.024516712874174118,
0.03552459180355072,
0.023914292454719543,
-0.009191486053168774,
0.050749413669109344,
-0.009656992740929127,
0.02139507606625557,
-0.0038837906904518604,
-0.0407455749809742,
-0.013189371675252914,
0.000252149737207219,
-0.032220400869846344,
-0.03844542056322098,
-0.029737696051597595,
0.0017422292148694396,
-0.00792274996638298,
0.00773107074201107,
0.030504414811730385,
-0.046477701514959335,
-0.007110394537448883,
-0.021796690300107002,
0.05326863005757332,
0.00871685054153204,
0.013244137167930603,
-0.025392962619662285,
-0.0714142844080925,
-0.0037833871319890022,
0.023530934005975723,
0.01140036340802908,
-0.02824077196419239,
-0.035360295325517654,
0.014385085552930832,
0.007160596549510956,
0.01800874061882496,
0.04414103925228119,
0.0020947824232280254,
-0.0511145181953907,
0.07068407535552979,
-0.020902186632156372,
0.01904015801846981,
0.045126818120479584,
-0.02318408526480198,
-0.04830322042107582,
0.029664676636457443,
0.04976363480091095,
-0.02389603666961193,
-0.011427746154367924,
-0.0787893757224083,
-0.008383694104850292,
-0.03289584442973137,
-0.00035996941733174026,
0.010076861828565598,
-0.011446001008152962,
-0.022399112582206726,
-0.03840890899300575,
-0.06268830597400665,
-0.061812058091163635,
0.016082817688584328,
-0.08017677068710327,
0.03997885435819626,
-0.04603957757353783,
-0.1276402473449707,
-0.015124420635402203,
-0.018227802589535713,
0.03851843997836113,
-0.016959067434072495,
-0.06210413947701454,
0.04122020676732063,
0.026214445009827614,
-0.03652862459421158,
0.0033041886053979397,
-0.015599055215716362,
0.044725202023983,
0.007174287922680378,
-0.0004960275837220252,
-0.02573981136083603,
0.005467427894473076,
-0.07422558218240738,
-0.004773730877786875,
0.05564180389046669,
-0.01922271028161049,
0.008397385478019714,
0.027364522218704224,
0.08923134207725525,
-0.0650249719619751,
0.01993466168642044,
0.060972318053245544,
0.00584622286260128,
-0.032932352274656296,
-0.01986164227128029,
0.04436010122299194,
-0.029993269592523575,
0.021358566358685493,
0.025338197126984596,
0.009428802877664566,
0.033443499356508255,
-0.043848954141139984,
-0.04129322990775108,
-0.012240101583302021,
-0.03316967189311981,
-0.011299959383904934,
-0.04147578030824661,
0.04395848512649536,
-0.03342524543404579,
-0.005024739541113377,
-0.007548518944531679,
0.020409297198057175,
-0.010679283179342747,
-0.05936586111783981,
0.05666409432888031,
0.046660251915454865,
0.058161020278930664,
0.009757396765053272,
-0.004543259274214506,
0.013819174841046333,
-0.022380856797099113,
0.000628662935923785,
0.011546405032277107,
0.023330125957727432,
0.021194269880652428,
0.03588969260454178,
-0.04899691790342331,
0.0006269515142776072,
-0.019332241266965866,
-0.001848337473347783,
-0.016137583181262016,
-0.029719442129135132,
0.004974537994712591,
-0.021796690300107002,
-0.05374326556921005,
0.046295151114463806,
-0.009784779511392117,
-0.014348575845360756,
0.07090313732624054,
0.00012058405263815075,
-0.01795397512614727,
-0.05429092049598694,
-0.016977321356534958,
-0.04636817052960396,
-0.006777237635105848,
-0.0124226538464427,
0.00269035785458982,
0.05604341998696327,
-0.04454265162348747,
0.031782276928424835,
-0.02458973415195942,
0.029682930558919907,
0.048777855932712555,
-0.006909587420523167,
0.052100297063589096,
-0.02887970209121704,
0.04297270625829697,
0.007402477785944939,
0.002834117505699396,
0.028478087857365608,
-0.027254991233348846,
0.041621822863817215,
-0.008516043424606323,
0.002129010856151581,
0.012860777787864208,
0.010898345150053501,
-0.06382012367248535,
-0.0034821764566004276,
0.010022096335887909,
-0.015699459239840508,
0.0000018763264506560517,
-0.0434473417699337,
-0.03154496103525162,
-0.015955030918121338,
0.050055716186761856,
0.04450614005327225,
-0.05231935903429985,
0.001541422214359045,
-0.03289584442973137,
0.009766523726284504,
0.05063988268375397,
-0.026415253058075905,
-0.015069655142724514,
0.05454649403691292,
-0.020518828183412552,
0.06911413371562958,
0.00935578253120184,
-0.04381244257092476,
-0.016940811648964882,
-0.01565382070839405,
0.01111740805208683,
-0.04140276089310646,
-0.006768109742552042,
0.05016524717211723,
-0.07466370612382889,
0.061556484550237656,
0.06294387578964233,
0.017716657370328903,
-0.05487508699297905,
-0.01826431229710579,
0.0038541259709745646,
-0.01047847606241703,
-0.038189847022295,
-0.023147575557231903,
0.002704049227759242,
0.004773730877786875,
-0.015535162761807442,
-0.09434279799461365,
0.013207626529037952,
-0.03895656391978264,
-0.0055221933871507645,
0.01865679956972599,
0.014010854996740818,
-0.044177547097206116,
0.025849342346191406,
-0.029025744646787643,
-0.04428707808256149,
-0.00040903023909777403,
0.02101171761751175,
0.04304572567343712,
-0.01517005916684866,
-0.0010605121497064829,
0.06714256852865219,
0.013618367724120617,
-0.03601748123764992,
0.021504608914256096,
0.035542845726013184,
0.03965026140213013,
-0.015434758737683296,
-0.003500431776046753,
-0.005896424874663353,
0.017424574121832848,
-0.01382830273360014,
0.015544289723038673,
-0.015051400288939476,
-0.11340121179819107,
-0.004540977068245411,
0.04377593472599983,
-0.005809712689369917,
-0.005102324299514294,
0.037094537168741226,
0.10909298807382584,
-0.004979101940989494,
-0.05505763739347458,
0.01794484630227089,
-0.003936274442821741,
-0.017853571102023125,
0.020044192671775818,
-0.035743653774261475,
0.0038609716575592756,
-0.010907473042607307,
-0.09025363624095917,
-0.010213776491582394,
-0.0025967999827116728,
-0.03501344472169876,
0.03276805579662323,
-0.06214065104722977,
-0.03431974723935127,
-0.02637874335050583,
0.04271713271737099,
-0.01635664515197277,
0.03149019554257393,
-0.021322056651115417,
-0.011035259813070297,
0.024188119918107986,
-0.040088385343551636,
0.01827344112098217,
-0.011071769520640373,
-0.0186020340770483,
-0.04403150826692581,
-0.00013940971984993666,
0.009520079009234905,
0.09573019295930862,
0.001782162464223802,
-0.021833201870322227,
0.03271329030394554,
-0.01597328670322895,
-0.045272860676050186,
-0.0012847086181864142,
-0.029025744646787643,
0.03826286643743515,
-0.02510087937116623,
-0.03525076061487198,
0.010305051691830158,
0.017844444140791893,
-0.002103910082951188,
-0.009419675916433334,
0.039577241986989975,
-0.020664868876338005,
0.007931877858936787,
-0.04143926873803139,
0.015863755717873573,
0.021230779588222504,
-0.006832003127783537,
0.041804373264312744,
0.03411893919110298,
-0.004956282675266266,
0.07499229907989502,
0.030686967074871063,
-0.039577241986989975,
-0.010916600935161114,
-0.022125285118818283,
-0.018802840262651443,
-0.010022096335887909,
0.038116827607154846,
-0.012742118909955025,
0.018492503091692924,
0.014257299713790417,
0.08258645981550217,
-0.04509030655026436,
-0.0003491304232738912,
0.03316967189311981,
0.04739046096801758,
-0.06765371561050415,
-0.01401998195797205,
-0.022253070026636124,
0.058307062834501266,
-0.049982696771621704,
-0.002667538821697235,
-0.00044497012277133763,
-0.04432358965277672,
0.03703977167606354,
0.008461277931928635,
0.014275554567575455,
0.0038974820636212826,
-0.03156321495771408,
0.0338633693754673,
0.015891138464212418,
-0.006393878720700741,
0.02785741165280342,
0.03968677297234535,
0.043593380600214005,
-0.04720790684223175,
0.043082237243652344,
0.030887773260474205,
0.018875861540436745,
0.030650455504655838,
0.030303606763482094,
-0.009666120633482933,
0.003596271388232708,
0.03800729662179947,
-0.004705274011939764,
-0.0008157785632647574,
-0.007941005751490593,
-0.019971173256635666,
-0.04881436377763748,
-0.014823210425674915,
0.074116051197052,
0.07342235743999481,
-0.012157953344285488,
-0.0035551972687244415,
0.00887658353894949,
-0.07207147032022476,
-0.017169002443552017,
0.04534588009119034,
-0.08966946601867676,
0.04260760173201561,
-0.03526901826262474,
0.010752304457128048,
0.02146809734404087,
0.025977129116654396,
0.06845694780349731,
0.059000756591558456,
-0.014120385982096195,
0.06739814579486847,
0.023238850757479668,
0.027583584189414978,
-0.06484241783618927,
0.013134605251252651,
-0.013965216465294361,
-0.033187925815582275,
0.007137777283787727,
0.023804761469364166,
0.03470310568809509,
0.044433120638132095,
-0.008182886987924576,
0.04779207333922386,
0.007192542776465416,
-0.02714546024799347,
0.017159873619675636,
-0.008986114524304867,
-0.01629275269806385,
0.0942697748541832,
0.01453112717717886,
0.007060192991048098,
0.01859290525317192,
-0.01111740805208683,
0.001059371163137257,
-0.0009555448195897043,
-0.04501728713512421,
-0.0013965216930955648,
0.02422463148832321,
0.012751246802508831,
-0.0005245513166300952,
0.02376825176179409,
0.03470310568809509,
0.0059283715672791,
-0.02305629849433899,
-0.0036236541345715523,
-0.04114718735218048,
0.04319176822900772,
0.017744040116667747,
-0.020226744934916496,
0.026433508843183517,
0.002095923526212573,
-0.02249038778245449,
-0.03652862459421158,
-0.0017718939343467355,
0.0408916138112545,
-0.014585892669856548,
-0.04333781078457832,
-0.0063847508281469345,
0.003388618817552924,
-0.0408916138112545,
-0.013965216465294361,
0.06495194882154465,
-0.006667706184089184,
-0.019752109423279762,
0.0369119830429554,
-0.09083779901266098,
0.03764219209551811,
-0.03738661855459213,
0.01642053946852684,
0.04158531129360199,
0.01629275269806385,
-0.005805148743093014,
0.07564948499202728,
-0.02926306240260601,
-0.0325855053961277,
-0.013499709777534008,
-0.03439277037978172,
-0.0062889112159609795,
-0.03232993185520172,
0.016018925234675407,
-0.030267097055912018,
0.04753650352358818,
0.016329262405633926,
-0.06294387578964233,
-0.008429331704974174,
-0.012924671173095703,
-0.062323201447725296,
-0.038299378007650375,
-0.025849342346191406,
0.011217811144888401,
-0.04939853027462959,
-0.030102800577878952,
0.00003148306495859288,
0.002448476618155837,
-0.008547990582883358,
0.07079360634088516,
-0.06944272667169571,
0.05699268728494644,
-0.040855105966329575,
-0.045857023447752,
0.004356143530458212,
0.037331853061914444,
0.03415545076131821,
0.04848577082157135,
-0.022253070026636124,
0.0509684756398201,
0.08550728857517242,
-0.015306972898542881,
0.014321193099021912,
0.00737965852022171,
-0.0037080845795571804,
-0.048522282391786575,
0.0969715416431427,
0.009205177426338196,
-0.05038430914282799,
0.0038837906904518604,
-0.07079360634088516,
0.012021039612591267,
-0.001760484417900443,
-0.061812058091163635,
0.03965026140213013,
0.010003841482102871,
0.07313027232885361,
0.0021757897920906544,
-0.01693168468773365,
-0.022818980738520622,
0.026214445009827614,
-0.03389987722039223,
0.0006098372978158295,
-0.028021709993481636,
0.002089077839627862,
0.016192348673939705,
0.051516130566596985,
-0.04662374407052994,
-0.04479822516441345,
-0.0236404649913311,
0.005604341626167297,
0.014823210425674915,
-0.05173519626259804,
0.00916410330682993,
0.057467322796583176,
-0.011464255861938,
0.03340698778629303,
-0.0460030660033226,
0.04260760173201561,
-0.04950806125998497,
-0.027565330266952515,
0.07966563105583191,
0.017223767936229706,
0.008338055573403835,
0.015024017542600632,
0.06798230856657028,
-0.04936201870441437,
-0.038189847022295,
0.006393878720700741,
0.03749614953994751,
-0.01851988583803177,
-0.00635736808180809,
-0.050749413669109344,
0.04695233702659607,
-0.00852517131716013,
0.005179908592253923,
-0.03782474249601364,
0.037094537168741226,
0.07243657112121582,
-0.01768927462399006,
0.05903726816177368,
-0.03588969260454178,
-0.004294532351195812,
0.026050148531794548,
-0.040599532425403595,
-0.05345118045806885,
0.08740582317113876,
-0.011865870095789433,
-0.005773202516138554,
0.0017947128508239985,
0.02013546973466873,
0.0654630959033966,
0.03181878849864006,
0.009419675916433334,
0.05699268728494644,
0.028441578149795532,
-0.01025028619915247,
0.019259219989180565,
0.0032631142530590296,
0.012669098563492298,
-0.06933319568634033,
-0.023804761469364166,
0.007680869195610285,
-0.07484626024961472,
-0.009141284041106701,
-0.01584549993276596,
0.02249038778245449
] |
729,656 | avltree._avl_tree | minimum | Gets the minimum key contained in this tree.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree.minimum()
0
```
Returns:
_K: The minimum key.
Raises:
ValueError: If there are no keys present in this tree.
| def minimum(self) -> _K:
"""Gets the minimum key contained in this tree.
This method has an amortized and worst-case time complexity of O[log(n)].
Example usage:
```
>>> from avltree import AvlTree
>>> avl_tree = AvlTree[int, str]({0: 'a', 1: 'b'})
>>> avl_tree.minimum()
0
```
Returns:
_K: The minimum key.
Raises:
ValueError: If there are no keys present in this tree.
"""
if self.__root_key is None:
message: Final[str] = "Cannot get the minimum of an empty AvlTree"
raise ValueError(message)
key: _K = self.__root_key
while self.__nodes[key].lesser_child_key is not None:
key = self.__nodes[key].lesser_child_key # type: ignore[assignment]
return key
| (self) -> ~_K | [
0.06188405677676201,
0.007775749545544386,
0.014675106853246689,
0.040564462542533875,
0.06825131922960281,
0.02173096314072609,
0.06635545194149017,
-0.01724168471992016,
0.05501599982380867,
-0.04392695054411888,
-0.03625404089689255,
-0.03852550685405731,
0.0267746914178133,
-0.004449034575372934,
-0.043998491019010544,
-0.034608568996191025,
-0.006930656731128693,
0.02160576358437538,
-0.0263096671551466,
0.03741660341620445,
0.0017002465901896358,
0.012162184342741966,
0.024825165048241615,
0.02867056243121624,
-0.01313694752752781,
0.013029634952545166,
0.05447943136096001,
0.012895492836833,
0.03895476087927818,
-0.039849039167165756,
-0.03888322040438652,
0.03371429070830345,
0.019656237214803696,
-0.04700326547026634,
-0.05959470570087433,
-0.022392727434635162,
0.016266921535134315,
-0.0314607098698616,
-0.03553861752152443,
-0.08348982036113739,
0.01415642537176609,
0.01724168471992016,
-0.01609700918197632,
-0.03566381707787514,
-0.005294127389788628,
0.0021596821025013924,
0.04689595475792885,
-0.003362486371770501,
0.026166582480072975,
-0.0033602507319301367,
0.018958698958158493,
0.012770294211804867,
0.00009676370245870203,
-0.023340662941336632,
-0.08678076416254044,
0.03934824466705322,
-0.004352899733930826,
-0.08012733608484268,
-0.05726958066225052,
-0.015131188556551933,
0.0010384806664660573,
0.030119292438030243,
0.016740890219807625,
0.007011141628026962,
-0.017214857041835785,
-0.0600239597260952,
-0.03387526050209999,
0.05802077427506447,
-0.03848973661661148,
0.02559424377977848,
-0.03959864377975464,
-0.012573552317917347,
0.006434332113713026,
0.04385540634393692,
-0.00944357831031084,
-0.005124214570969343,
-0.03974172845482826,
-0.0366654098033905,
0.028938844799995422,
0.006805457640439272,
0.013351574540138245,
-0.03434028476476669,
0.006689201574772596,
-0.007359910290688276,
0.018440017476677895,
-0.022070787847042084,
0.012242669239640236,
0.02015703171491623,
0.02634543739259243,
-0.005151042714715004,
-0.050580378621816635,
0.07955499738454819,
-0.042066849768161774,
0.0645311176776886,
0.01600758172571659,
0.04235301911830902,
0.05494445934891701,
-0.02287563867866993,
0.03934824466705322,
-0.004093558993190527,
0.04653824120759964,
0.08957090973854065,
0.01901235617697239,
-0.018565217033028603,
-0.00921106617897749,
-0.0033334223553538322,
-0.035789016634225845,
0.026166582480072975,
0.020639942958950996,
0.04585859179496765,
-0.05161774158477783,
-0.05823540315032005,
-0.010355742648243904,
0.021480564028024673,
-0.018994471058249474,
0.018600989133119583,
-0.03378583490848541,
0.02804456651210785,
0.014540964737534523,
0.00810216087847948,
0.06045321002602577,
0.002870633266866207,
-0.011500419117510319,
-0.041780680418014526,
-0.018797729164361954,
-0.007350967265665531,
0.07590634375810623,
-0.025379616767168045,
-0.026524294167757034,
-0.013065406121313572,
0.08856932073831558,
0.04299689829349518,
0.01680348813533783,
0.018761958926916122,
-0.002678363351151347,
-0.046359386295080185,
0.05430057644844055,
0.03185419365763664,
-0.003829746739938855,
0.0053343698382377625,
0.055159084498882294,
-0.037881627678871155,
0.028956729918718338,
-0.022857753559947014,
-0.022625241428613663,
-0.04120834171772003,
-0.006765215191990137,
-0.002174213994294405,
0.04417734593153,
0.002828155178576708,
0.025290189310908318,
-0.03473376855254173,
0.05569565296173096,
0.015918154269456863,
0.02883153222501278,
-0.002653770847246051,
-0.0013190604513511062,
-0.09114484488964081,
-0.006836757529526949,
-0.07222191244363785,
0.005741266533732414,
-0.001845566788688302,
0.02575521543622017,
-0.08907011896371841,
-0.0168839730322361,
-0.04260341823101044,
-0.029868895187973976,
0.016651460900902748,
-0.061740972101688385,
0.03305252641439438,
0.042853813618421555,
-0.00472178915515542,
-0.0853499174118042,
0.029600610956549644,
-0.019030241295695305,
-0.003264115657657385,
-0.02520076185464859,
0.053298987448215485,
0.02062205784022808,
0.020049719139933586,
-0.013807656243443489,
0.08549300581216812,
0.0030830244068056345,
-0.014576735906302929,
0.018127020448446274,
-0.004290299955755472,
0.014433651231229305,
0.021587878465652466,
0.01549784280359745,
-0.02192770317196846,
-0.04339038208127022,
-0.045608192682266235,
0.012904435396194458,
0.005262827500700951,
-0.044391974806785583,
0.019727779552340508,
0.029135586693882942,
0.013700343668460846,
-0.027025090530514717,
0.040993716567754745,
0.005821751430630684,
0.02019280381500721,
0.01577506959438324,
0.02634543739259243,
0.024324368685483932,
-0.015354758128523827,
-0.0119117870926857,
0.012967035174369812,
-0.014299510046839714,
0.012770294211804867,
-0.014290566556155682,
-0.022821981459856033,
-0.037917397916316986,
0.05777037516236305,
-0.014514136128127575,
-0.09600971639156342,
-0.03688003495335579,
-0.010999622754752636,
-0.0011346156243234873,
-0.01996029168367386,
0.023769916966557503,
0.03255172818899155,
0.03927670046687126,
-0.0431399829685688,
0.02795513905584812,
-0.06310027837753296,
-0.0026649492792785168,
-0.005553468130528927,
-0.014657220803201199,
0.009135052561759949,
0.0636010691523552,
-0.07511937618255615,
0.03727351874113083,
-0.026238124817609787,
-0.030530661344528198,
-0.03262327238917351,
0.011616675183176994,
-0.022965066134929657,
-0.020210688933730125,
-0.07243654131889343,
-0.029529068619012833,
-0.005790452007204294,
0.04990072920918465,
0.042138393968343735,
-0.021265937015414238,
-0.0015236266190186143,
-0.03630769997835159,
0.03412565961480141,
-0.03931247442960739,
0.02686411887407303,
-0.030584316700696945,
-0.04918530583381653,
0.0026157640386372805,
0.02326912060379982,
0.0066042449325323105,
-0.018270105123519897,
0.003581584431231022,
0.03289155662059784,
-0.024342255666851997,
0.02582675591111183,
-0.006541645620018244,
-0.014523079618811607,
-0.011133764870464802,
0.050902318209409714,
-0.006121334619820118,
0.02248215675354004,
0.020997654646635056,
0.02189193293452263,
-0.016928687691688538,
0.021820390596985817,
0.008339145220816135,
-0.00964032020419836,
0.031299740076065063,
-0.020926112309098244,
0.018833501264452934,
-0.048255257308483124,
-0.06127594783902168,
0.03308829665184021,
0.007176583167165518,
-0.003959416877478361,
-0.048291027545928955,
-0.029153471812605858,
-0.07154226303100586,
0.013181662186980247,
-0.0887124091386795,
0.016696175560355186,
-0.023734144866466522,
-0.15939615666866302,
-0.03655809536576271,
-0.04457082971930504,
0.037452373653650284,
0.00590670807287097,
-0.04889913648366928,
-0.019781434908509254,
0.02251792699098587,
-0.02097976766526699,
-0.002995832357555628,
-0.014558850787580013,
0.018511559814214706,
0.0309956856071949,
0.04957878962159157,
-0.03351755067706108,
-0.024109741672873497,
-0.07576325535774231,
-0.0033222439233213663,
0.054515205323696136,
-0.03033391945064068,
0.04389117658138275,
-0.032909441739320755,
0.04503585398197174,
-0.08899857103824615,
0.02772262692451477,
0.026828348636627197,
-0.03305252641439438,
-0.022535812109708786,
-0.0496145598590374,
0.04882759600877762,
0.019495267421007156,
0.02772262692451477,
0.051403116434812546,
0.012510953471064568,
0.04875605180859566,
-0.05966624617576599,
-0.00202554021961987,
-0.03820356726646423,
-0.013861313462257385,
0.0387401357293129,
-0.044856999069452286,
0.011509361676871777,
0.0007674025255255401,
0.01423691026866436,
0.001366010052151978,
0.003552520414814353,
-0.00822288915514946,
-0.09200335294008255,
0.05447943136096001,
0.06585465371608734,
0.034680113196372986,
-0.02795513905584812,
-0.003769383067265153,
0.06485306471586227,
-0.02130170911550522,
0.028885187581181526,
0.02843804843723774,
-0.005191285628825426,
0.0014833840541541576,
0.07225768268108368,
-0.03798894211649895,
0.014585678465664387,
-0.027937253937125206,
-0.023841459304094315,
0.015050703659653664,
-0.022732554003596306,
-0.040564462542533875,
0.051581971347332,
-0.0263096671551466,
0.00753429438918829,
-0.011410990729928017,
0.014031225815415382,
0.07769490033388138,
0.03072740137577057,
-0.03165744990110397,
-0.05991664528846741,
-0.04500008374452591,
-0.046788640320301056,
-0.020675713196396828,
-0.005088443402200937,
-0.03648655489087105,
0.02965426817536354,
-0.022428499534726143,
0.0021004360169172287,
-0.005942479241639376,
-0.03627192601561546,
-0.008670028299093246,
-0.021820390596985817,
0.03453702852129936,
0.004026487935334444,
0.03848973661661148,
-0.019262753427028656,
0.018708301708102226,
0.04539356380701065,
-0.0011480296961963177,
0.03763122856616974,
0.025898298248648643,
-0.032873667776584625,
-0.00523599935695529,
0.007435923907905817,
-0.054050181061029434,
0.003219401929527521,
0.0016130544245243073,
-0.008531414903700352,
-0.025290189310908318,
-0.0003359132679179311,
-0.0056339530274271965,
-0.00431712856516242,
0.018118077889084816,
0.0680009201169014,
-0.054801374673843384,
-0.015310044400393963,
-0.0541217215359211,
0.06524654477834702,
0.0029846536926925182,
-0.01488973293453455,
-0.020103376358747482,
0.04889913648366928,
-0.02638120949268341,
0.023519519716501236,
-0.006183934397995472,
-0.036611754447221756,
0.01917332597076893,
-0.031210312619805336,
0.0233048927038908,
-0.0006913889083079994,
-0.0008708034874871373,
0.0013089998392388225,
-0.09701130539178848,
0.05583873763680458,
0.05995241552591324,
-0.020300116389989853,
-0.0471821203827858,
-0.02232118509709835,
-0.019692007452249527,
-0.02686411887407303,
0.004357371013611555,
-0.0056652529165148735,
0.01833270490169525,
0.03695157915353775,
-0.029761580750346184,
-0.0526193343102932,
0.022607354447245598,
-0.013271089643239975,
0.025540588423609734,
0.026917776092886925,
0.026291782036423683,
-0.04467814415693283,
0.032515957951545715,
-0.005911179352551699,
-0.03142493963241577,
-0.0004896173486486077,
0.023608947172760963,
0.04972187429666519,
0.007842820137739182,
0.03959864377975464,
0.0481121726334095,
0.0050124297849833965,
-0.008316787891089916,
0.009175295010209084,
0.050580378621816635,
0.014040169306099415,
0.004252293147146702,
0.008410687558352947,
-0.015488900244235992,
0.01556044165045023,
-0.0006030789227224886,
-0.03280212730169296,
0.0015593977877870202,
-0.09629588574171066,
0.0006913889083079994,
-0.018386362120509148,
0.00010214334906777367,
0.020872455090284348,
0.05344206839799881,
0.08041350543498993,
0.001018918352201581,
-0.027150288224220276,
0.0426749587059021,
-0.0000337974306603428,
0.015614098869264126,
0.014567793346941471,
-0.03181841969490051,
0.030816828832030296,
-0.03802471235394478,
-0.05841425806283951,
-0.0282770786434412,
0.01482713408768177,
-0.005946950521320105,
-0.007051384076476097,
-0.0485771968960762,
0.002606821246445179,
-0.010856538079679012,
-0.02389511652290821,
-0.021856160834431648,
0.07619251310825348,
-0.004686017986387014,
-0.006277833599597216,
0.0007031263085082173,
-0.058306943625211716,
0.0018880449933931231,
-0.02101553976535797,
-0.01917332597076893,
-0.040170978754758835,
0.04081486165523529,
0.006206291262060404,
0.05437212064862251,
0.007744450122117996,
0.013449945487082005,
-0.008111104369163513,
-0.013780828565359116,
0.004113680217415094,
0.0242885984480381,
-0.03727351874113083,
0.0446423701941967,
-0.032873667776584625,
0.00288851885125041,
0.013548316434025764,
0.01644577831029892,
-0.022929295897483826,
0.010328914038836956,
0.02850959077477455,
-0.013208489865064621,
0.020335888490080833,
-0.010945966467261314,
0.02437802590429783,
0.027937253937125206,
0.008321259170770645,
0.04077909141778946,
0.023251235485076904,
0.008491172455251217,
0.04911376163363457,
-0.003954945597797632,
-0.01790345087647438,
-0.010024859569966793,
0.006716029718518257,
-0.04643092676997185,
-0.039026305079460144,
0.04564396291971207,
0.0027543772011995316,
-0.022392727434635162,
0.004748617764562368,
0.07411778718233109,
-0.03167533501982689,
-0.010945966467261314,
0.0069217137061059475,
0.05029420927166939,
-0.05165351182222366,
-0.001641000621020794,
-0.013288975693285465,
0.05447943136096001,
-0.05397863686084747,
-0.000742809905204922,
0.021283823996782303,
-0.04771868884563446,
0.07583479583263397,
0.016946572810411453,
0.0678936094045639,
0.03217613324522972,
-0.04113680124282837,
0.05780614912509918,
-0.0907871276140213,
-0.01937006786465645,
0.0025196289643645287,
-0.01299386378377676,
0.023394320160150528,
-0.00989966094493866,
0.02689989097416401,
0.002068018540740013,
0.01279712188988924,
0.006979842204600573,
0.038704365491867065,
-0.0023318305611610413,
0.04067177698016167,
0.01531898695975542,
-0.0036508911289274693,
-0.018905043601989746,
-0.0446423701941967,
-0.04911376163363457,
-0.04836256802082062,
-0.02563001587986946,
0.07361698895692825,
0.08055658638477325,
-0.005629481747746468,
0.003979538567364216,
0.013092233799397945,
-0.03600364178419113,
-0.05730535089969635,
0.015918154269456863,
-0.1022338941693306,
0.029922550544142723,
-0.08005578815937042,
-0.013423116877675056,
0.04993649944663048,
-0.03455491364002228,
0.0892847403883934,
0.04378386586904526,
-0.01766199618577957,
0.042531874030828476,
0.010427284985780716,
0.02444956824183464,
-0.08542145788669586,
0.005692081060260534,
-0.02670314908027649,
-0.07404623925685883,
0.000964702689088881,
0.034805309027433395,
0.033463891595602036,
0.0168839730322361,
0.03564593195915222,
0.0017606103792786598,
0.028062451630830765,
-0.042138393968343735,
0.01577506959438324,
-0.029046159237623215,
0.005173400044441223,
0.07562017440795898,
0.021677305921912193,
0.013780828565359116,
0.029403869062662125,
-0.017170142382383347,
0.029725810512900352,
-0.001606347388587892,
-0.00989966094493866,
-0.010489883832633495,
0.011768702417612076,
-0.01246623881161213,
-0.019495267421007156,
0.025021906942129135,
0.03623615577816963,
-0.016651460900902748,
0.013986512087285519,
0.002881811698898673,
-0.014272681437432766,
0.01818067766726017,
0.0032931796740740538,
-0.03652232512831688,
0.02248215675354004,
0.0036419483367353678,
0.0235910601913929,
-0.016070181503891945,
0.0034049644600600004,
-0.009237894788384438,
0.03230133280158043,
-0.02772262692451477,
0.02749011479318142,
-0.011393105611205101,
-0.05201122537255287,
0.007207883056253195,
0.03206881880760193,
-0.02409185655415058,
-0.05147465690970421,
0.03738083317875862,
-0.05855734273791313,
0.0186188742518425,
-0.051760826259851456,
0.012752408161759377,
0.040206752717494965,
-0.016257978975772858,
-0.03430451452732086,
0.03276635706424713,
0.015327929519116879,
-0.031174540519714355,
-0.037845857441425323,
-0.01589132472872734,
-0.024986134842038155,
-0.002725312951952219,
0.00451610516756773,
0.01750996895134449,
0.007641607895493507,
-0.03630769997835159,
-0.022571584209799767,
0.009166352450847626,
-0.018350590020418167,
-0.022142330184578896,
-0.001312353415414691,
0.011267906054854393,
0.007932248525321484,
-0.04417734593153,
-0.026882005855441093,
-0.03630769997835159,
0.004739674739539623,
-0.01013217307627201,
-0.01668723300099373,
-0.035431306809186935,
0.041780680418014526,
-0.052583564072847366,
-0.020926112309098244,
0.02670314908027649,
0.028724217787384987,
0.008799698203802109,
0.034841082990169525,
-0.026256009936332703,
0.03848973661661148,
0.08527837693691254,
0.03410777449607849,
-0.007663964759558439,
-0.05244047939777374,
-0.04110103100538254,
-0.05340629816055298,
0.036021530628204346,
0.04650247097015381,
-0.002472679363563657,
-0.00303160329349339,
-0.03625404089689255,
0.029046159237623215,
-0.0026671849191188812,
-0.054872915148735046,
0.004507162608206272,
-0.005866465624421835,
0.08213051408529282,
-0.007704207208007574,
-0.0031120884232223034,
0.0327305868268013,
0.020729370415210724,
-0.03013717755675316,
-0.007780220825225115,
-0.03891899064183235,
-0.0014543200377374887,
0.013753999955952168,
0.044105805456638336,
-0.023769916966557503,
-0.003570405999198556,
-0.0033110652584582567,
-0.01967412233352661,
-0.0038744607008993626,
-0.037452373653650284,
0.009000910446047783,
0.06116863340139389,
-0.025075562298297882,
-0.0001629263279028237,
-0.01271663699299097,
0.04700326547026634,
-0.04725366458296776,
-0.07029027491807938,
0.03036968968808651,
0.06968216598033905,
0.027973024174571037,
0.045572422444820404,
0.07404623925685883,
-0.08692385256290436,
-0.07189997285604477,
0.03142493963241577,
0.061311718076467514,
0.012689808383584023,
-0.006595302373170853,
-0.037559688091278076,
0.10123230516910553,
0.0186188742518425,
-0.02149844914674759,
0.002892990130931139,
0.03813202679157257,
0.07647867500782013,
-0.002283763140439987,
0.03691580891609192,
-0.03564593195915222,
-0.02418128401041031,
0.08091429620981216,
-0.03813202679157257,
-0.002671656431630254,
0.07733718305826187,
-0.010972794145345688,
0.015703527256846428,
-0.011527246795594692,
0.002474915236234665,
0.03766700252890587,
0.021444793790578842,
-0.015918154269456863,
0.0392051599919796,
-0.025325961410999298,
0.03155013918876648,
0.046681325882673264,
-0.0066042449325323105,
0.004627889953553677,
-0.10101767629384995,
-0.05802077427506447,
0.05494445934891701,
-0.05616067722439766,
-0.004294771235436201,
0.007681850343942642,
0.05083077773451805
] |
729,665 | allpairspy.allpairs | AllPairs | null | class AllPairs:
def __init__(self, parameters, filter_func=lambda x: True, previously_tested=None, n=2):
"""
TODO: check that input arrays are:
- (optional) has no duplicated values inside single array / or compress such values
"""
if not previously_tested:
previously_tested = [[]]
self.__validate_parameter(parameters)
self.__is_ordered_dict_param = isinstance(parameters, OrderedDict)
self.__param_name_list = self.__extract_param_name_list(parameters)
self.__pairs_class = namedtuple("Pairs", self.__param_name_list)
self.__filter_func = filter_func
self.__n = n
self.__pairs = PairsStorage(n)
value_matrix = self.__extract_value_matrix(parameters)
self.__max_unique_pairs_expected = get_max_combination_number(value_matrix, n)
self.__working_item_matrix = self.__get_working_item_matrix(value_matrix)
for arr in previously_tested:
if not arr:
continue
if len(arr) != len(self.__working_item_matrix):
raise RuntimeError("previously tested combination is not complete")
if not self.__filter_func(arr):
raise ValueError("invalid tested combination is provided")
tested = []
for i, val in enumerate(arr):
idxs = [
Item(item.id, 0) for item in self.__working_item_matrix[i] if item.value == val
]
if len(idxs) != 1:
raise ValueError(
"value from previously tested combination is not "
"found in the parameters or found more than "
"once"
)
tested.append(idxs[0])
self.__pairs.add_sequence(tested)
def __iter__(self):
return self
def next(self):
return self.__next__()
def __next__(self):
assert len(self.__pairs) <= self.__max_unique_pairs_expected
if len(self.__pairs) == self.__max_unique_pairs_expected:
# no reasons to search further - all pairs are found
raise StopIteration()
previous_unique_pairs_count = len(self.__pairs)
chosen_item_list = [None] * len(self.__working_item_matrix)
indexes = [None] * len(self.__working_item_matrix)
direction = 1
i = 0
while -1 < i < len(self.__working_item_matrix):
if direction == 1:
# move forward
self.__resort_working_array(chosen_item_list[:i], i)
indexes[i] = 0
elif direction == 0 or direction == -1:
# scan current array or go back
indexes[i] += 1
if indexes[i] >= len(self.__working_item_matrix[i]):
direction = -1
if i == 0:
raise StopIteration()
i += direction
continue
direction = 0
else:
raise ValueError(f"next(): unknown 'direction' code '{direction}'")
chosen_item_list[i] = self.__working_item_matrix[i][indexes[i]]
if self.__filter_func(self.__get_values(chosen_item_list[: i + 1])):
assert direction > -1
direction = 1
else:
direction = 0
i += direction
if len(self.__working_item_matrix) != len(chosen_item_list):
raise StopIteration()
self.__pairs.add_sequence(chosen_item_list)
if len(self.__pairs) == previous_unique_pairs_count:
# could not find new unique pairs - stop
raise StopIteration()
# replace returned array elements with real values and return it
return self.__get_iteration_value(chosen_item_list)
def __validate_parameter(self, value):
if isinstance(value, OrderedDict):
for parameter_list in value.values():
if not parameter_list:
raise ValueError("each parameter arrays must have at least one item")
return
if len(value) < 2:
raise ValueError("must provide more than one option")
for parameter_list in value:
if not parameter_list:
raise ValueError("each parameter arrays must have at least one item")
def __resort_working_array(self, chosen_item_list, num):
for item in self.__working_item_matrix[num]:
data_node = self.__pairs.get_node_info(item)
new_combs = [
# numbers of new combinations to be created if this item is
# appended to array
{key(z) for z in combinations(chosen_item_list + [item], i + 1)}
- self.__pairs.get_combs()[i]
for i in range(0, self.__n)
]
# weighting the node node that creates most of new pairs is the best
weights = [-len(new_combs[-1])]
# less used outbound connections most likely to produce more new
# pairs while search continues
weights.extend(
[len(data_node.out)]
+ [len(x) for x in reversed(new_combs[:-1])]
+ [-data_node.counter] # less used node is better
)
# otherwise we will prefer node with most of free inbound
# connections; somehow it works out better ;)
weights.append(-len(data_node.in_))
item.set_weights(weights)
self.__working_item_matrix[num].sort(key=cmp_to_key(cmp_item))
def __get_working_item_matrix(self, parameter_matrix):
return [
[
Item(f"a{param_idx:d}v{value_idx:d}", value)
for value_idx, value in enumerate(value_list)
]
for param_idx, value_list in enumerate(parameter_matrix)
]
@staticmethod
def __get_values(item_list):
return [item.value for item in item_list]
def __get_iteration_value(self, item_list):
if not self.__param_name_list:
return [item.value for item in item_list]
return self.__pairs_class(*[item.value for item in item_list])
def __extract_param_name_list(self, parameters):
if not self.__is_ordered_dict_param:
return []
return list(parameters)
def __extract_value_matrix(self, parameters):
if not self.__is_ordered_dict_param:
return parameters
return [v for v in parameters.values()]
| (parameters, filter_func=<function AllPairs.<lambda> at 0x7f625a34cca0>, previously_tested=None, n=2) | [
0.06454934924840927,
-0.0011813208693638444,
-0.1150873601436615,
0.013100196607410908,
0.0013958188937976956,
-0.04887770488858223,
-0.05665278434753418,
-0.02318350225687027,
0.03195071220397949,
-0.02917679026722908,
-0.039908017963171005,
0.03101932257413864,
-0.0038900701329112053,
0.027050793170928955,
-0.024256624281406403,
0.03348952904343605,
0.026321878656744957,
0.02919703908264637,
-0.014902233146131039,
0.06268656998872757,
-0.014942728914320469,
0.011065313592553139,
-0.03701261058449745,
0.09710748493671417,
0.020227352157235146,
-0.03269987180829048,
0.03604072704911232,
0.007521983236074448,
0.0037129034753888845,
-0.01639043167233467,
-0.023345481604337692,
-0.0019336458062753081,
0.020834779366850853,
0.012857225723564625,
-0.009658104740083218,
-0.016501793637871742,
0.0036217893939465284,
0.01631956547498703,
-0.022900035604834557,
0.013920225203037262,
0.014598519541323185,
-0.0758880004286766,
0.03972579166293144,
-0.021138494834303856,
0.023527711629867554,
0.06762698292732239,
-0.032092444598674774,
0.0928959846496582,
-0.04891820251941681,
-0.00353320618160069,
0.040839407593011856,
-0.0534941591322422,
0.01631956547498703,
0.03976628556847572,
-0.015884241089224815,
0.03523082286119461,
0.001219285186380148,
-0.02231285534799099,
0.07139303535223007,
-0.031424276530742645,
0.021644683554768562,
0.014254310168325901,
0.06313201785087585,
-0.020207105204463005,
-0.052927225828170776,
-0.006889245938509703,
-0.05855605751276016,
-0.038328707218170166,
-0.004365888889878988,
0.054547034204006195,
0.03610147163271904,
0.014001214876770973,
0.028974315151572227,
-0.013960720039904118,
-0.015691889449954033,
0.024357862770557404,
0.025329746305942535,
-0.006124898791313171,
0.019437694922089577,
-0.08706467598676682,
-0.005208694841712713,
0.03681013733148575,
0.020227352157235146,
-0.06693856418132782,
-0.05074048414826393,
0.07074511051177979,
0.014790871180593967,
0.03968529403209686,
0.00983020942658186,
-0.02919703908264637,
-0.0267470795661211,
0.011865093372762203,
0.012998959049582481,
0.05333217605948448,
0.040839407593011856,
0.015469166450202465,
-0.007218269165605307,
-0.11111882328987122,
0.006150208413600922,
-0.0376402884721756,
-0.016542289406061172,
-0.015944983810186386,
-0.04916117340326309,
-0.008893758058547974,
0.03885514289140701,
-0.05150989443063736,
-0.032234176993370056,
0.007643468677997589,
0.01337353978306055,
-0.012685121037065983,
-0.07082610577344894,
0.10034710168838501,
-0.021745922043919563,
-0.0024031370412558317,
-0.023831425234675407,
0.010629990138113499,
-0.014315052889287472,
0.01550966128706932,
-0.04972810298204422,
0.007608035579323769,
0.006960112601518631,
-0.002991582965478301,
-0.02070317044854164,
0.04871572554111481,
-0.011763855814933777,
-0.04041421040892601,
0.026362374424934387,
0.01623857580125332,
-0.001133232843130827,
-0.02925778180360794,
0.0016134806210175157,
-0.021826911717653275,
-0.008979810401797295,
0.02842763066291809,
-0.01331279706209898,
-0.05090246722102165,
-0.03369200602173805,
-0.028569363057613373,
-0.057867638766765594,
0.014861738309264183,
0.06086428463459015,
-0.017463555559515953,
0.010078242979943752,
0.01981227658689022,
0.021199237555265427,
-0.0647113248705864,
0.028771840035915375,
0.014973100274801254,
-0.008271144703030586,
-0.006580469664186239,
-0.04725789651274681,
0.018394945189356804,
-0.018324077129364014,
0.011935959570109844,
-0.0037660535890609026,
-0.020834779366850853,
-0.0012110595125705004,
-0.04555710032582283,
-0.034704387187957764,
-0.018354449421167374,
-0.03709360212087631,
-0.08463496714830399,
-0.023325234651565552,
0.04563808813691139,
-0.026909060776233673,
0.017828011885285378,
-0.028123915195465088,
0.011065313592553139,
-0.022981025278568268,
-0.05742219090461731,
0.019478190690279007,
-0.03776177391409874,
-0.053534653037786484,
-0.04903968796133995,
-0.050133056938648224,
0.06009487435221672,
-0.007370126433670521,
-0.039847277104854584,
0.04033321887254715,
-0.0427224338054657,
-0.02935902029275894,
-0.04260094836354256,
-0.012178931385278702,
-0.03496760502457619,
0.004710097797214985,
0.033125072717666626,
0.053696636110544205,
0.025370242074131966,
0.06402291357517242,
0.017615411430597305,
-0.04118361696600914,
-0.048391763120889664,
0.016542289406061172,
0.05248177796602249,
-0.0030776350758969784,
0.03294284641742706,
-0.011541131883859634,
0.0854448676109314,
0.04466620460152626,
0.0709070935845375,
-0.024661576375365257,
-0.0647113248705864,
0.042479462921619415,
0.021624436601996422,
-0.043248873203992844,
-0.023466968908905983,
-0.015357804484665394,
-0.03861217200756073,
0.0360812209546566,
0.0378427654504776,
-0.005735132377594709,
-0.06414439529180527,
0.05041652172803879,
-0.025228509679436684,
0.031302787363529205,
0.018506305292248726,
0.024702072143554688,
-0.01727120205760002,
0.013677253387868404,
-0.07491611689329147,
0.019427571445703506,
-0.0647113248705864,
-0.004067236557602882,
0.002480330877006054,
0.05126692354679108,
-0.016997860744595528,
-0.0025182953104376793,
0.0063020652160048485,
-0.02848837338387966,
0.03972579166293144,
0.02818465791642666,
-0.057948630303144455,
0.020855028182268143,
-0.01981227658689022,
0.015965232625603676,
-0.0653187558054924,
-0.00266255927272141,
-0.02136121690273285,
-0.03519032895565033,
-0.019457943737506866,
-0.04786532744765282,
-0.012968587689101696,
0.016117088496685028,
-0.010548999533057213,
-0.04960661754012108,
-0.006767760030925274,
0.054628025740385056,
0.03865266591310501,
-0.0007415683357976377,
-0.0018564517376944423,
0.030168922618031502,
0.02306201681494713,
-0.0393005907535553,
-0.018698658794164658,
0.03081684745848179,
-0.05410158634185791,
-0.02579544112086296,
0.00898487213999033,
0.017787516117095947,
-0.03324655815958977,
0.04021173343062401,
-0.033995721489191055,
0.015236319042742252,
0.0031307851895689964,
-0.004629107657819986,
0.018536677584052086,
0.0284073818475008,
0.03836920112371445,
-0.01631956547498703,
0.04571907967329025,
0.0806664377450943,
0.010822341777384281,
-0.021948397159576416,
0.03379324451088905,
-0.037296079099178314,
0.06021635979413986,
0.0308978371322155,
-0.01805073581635952,
-0.05069999024271965,
-0.011935959570109844,
0.019457943737506866,
0.018232963979244232,
-0.03840969502925873,
-0.015793127939105034,
0.01164236944168806,
0.021725675091147423,
-0.007815573364496231,
0.0005707292002625763,
0.05317019671201706,
0.020834779366850853,
0.004768309649080038,
-0.0025992856826633215,
0.01982240006327629,
-0.022677311673760414,
0.034643642604351044,
0.020237475633621216,
-0.019275715574622154,
-0.02909580059349537,
0.04280342534184456,
-0.016096841543912888,
0.007825696840882301,
-0.00984539557248354,
0.04709591716527939,
-0.016552412882447243,
0.00024107297940645367,
0.04806780070066452,
0.014122700318694115,
-0.02310251072049141,
-0.006104651372879744,
0.013464653864502907,
0.024702072143554688,
0.06017586588859558,
0.031383778899908066,
-0.014730128459632397,
0.035696517676115036,
-0.05385861545801163,
-0.02237359806895256,
-0.004656948149204254,
0.03778202086687088,
0.08827953785657883,
-0.008721653372049332,
0.030492885038256645,
-0.04863473400473595,
-0.001747620990499854,
-0.012138435617089272,
0.011257665231823921,
0.026119403541088104,
-0.026058660820126534,
-0.013930348679423332,
-0.02826564945280552,
-0.006018599029630423,
0.0241553857922554,
-0.00663108890876174,
0.07252690196037292,
0.06422538310289383,
0.028893325477838516,
0.024276871234178543,
-0.0036167274229228497,
0.059608932584524155,
-0.04029272496700287,
0.047500867396593094,
-0.03201145678758621,
-0.0267470795661211,
-0.013414034619927406,
0.02148270234465599,
-0.028468124568462372,
-0.03195071220397949,
0.00625650817528367,
-0.01071097981184721,
-0.009663166478276253,
0.027779705822467804,
0.015965232625603676,
0.005805999040603638,
0.07293185591697693,
0.024438852444291115,
0.013484901748597622,
-0.014041710644960403,
-0.016937118023633957,
0.019994504749774933,
0.026423117145895958,
0.046731460839509964,
-0.024398356676101685,
0.009566990658640862,
0.040839407593011856,
0.04648848995566368,
-0.03379324451088905,
-0.03585850074887276,
-0.020196979865431786,
-0.002193068154156208,
-0.031424276530742645,
-0.012280168943107128,
-0.07629295438528061,
0.04920166730880737,
-0.01985277235507965,
0.013090073131024837,
0.007182836066931486,
-0.02310251072049141,
0.052643757313489914,
-0.002384154824540019,
-0.037316326051950455,
0.027678469195961952,
-0.0036445679143071175,
0.03093833290040493,
0.03093833290040493,
-0.01628919318318367,
-0.050133056938648224,
0.06693856418132782,
0.02316325344145298,
0.027799954637885094,
0.0028270711190998554,
-0.04863473400473595,
0.006570346187800169,
0.0019500969210639596,
-0.022900035604834557,
0.001766603090800345,
0.013403911143541336,
0.01623857580125332,
0.004183660261332989,
-0.1188129112124443,
-0.03871341049671173,
-0.03525106981396675,
-0.11954183131456375,
-0.003922972362488508,
0.022515330463647842,
-0.017504049465060234,
-0.08609279245138168,
0.021037256345152855,
0.04179104417562485,
-0.02494504302740097,
0.02994620054960251,
-0.03701261058449745,
0.00428742915391922,
0.01615758426487446,
-0.01544891856610775,
-0.033813491463661194,
0.013606387190520763,
-0.03847043961286545,
0.04741987958550453,
0.07827722281217575,
0.06608816236257553,
0.09573065489530563,
-0.02490454725921154,
0.00987070519477129,
0.018212715163826942,
-0.055478423833847046,
-0.03780226781964302,
-0.003414251608774066,
0.024560337886214256,
-0.0462455190718174,
-0.008281268179416656,
-0.003912848420441151,
-0.05588337406516075,
-0.007354940753430128,
-0.0758880004286766,
-0.02504628151655197,
0.007233454845845699,
-0.013920225203037262,
-0.008352135308086872,
0.06086428463459015,
0.024621080607175827,
0.017362317070364952,
0.039908017963171005,
0.03972579166293144,
0.0036926560569554567,
0.024621080607175827,
0.009253152646124363,
-0.01727120205760002,
0.00450509088113904,
-0.06361795961856842,
0.028549116104841232,
0.04017123952507973,
0.00815472099930048,
0.03077635169029236,
-0.051793359220027924,
-0.01206756941974163,
0.005861680023372173,
-0.02492479607462883,
-0.01714971661567688,
-0.015347681008279324,
0.021664932370185852,
0.08022098988294601,
-0.0022322977893054485,
0.05167187377810478,
0.01647142320871353,
-0.054506536573171616,
-0.017888754606246948,
-0.025289252400398254,
-0.003275049151852727,
-0.0394018292427063,
0.0010288311168551445,
-0.007992739789187908,
0.0031636874191462994,
-0.028164410963654518,
-0.011166551150381565,
-0.021745922043919563,
-0.0033813491463661194,
-0.00010258256224915385,
0.004692381247878075,
-0.015519784763455391,
-0.020146362483501434,
-0.033995721489191055,
-0.044261254370212555,
0.03168749436736107,
0.0002364856336498633,
-0.01634993590414524,
-0.001535021117888391,
0.030472638085484505,
-0.03326680511236191,
-0.03330730274319649,
-0.001512242597527802,
-0.06086428463459015,
-0.08763161301612854,
0.03595973551273346,
0.05924447625875473,
0.0026271259412169456,
0.0445852130651474,
0.006965174339711666,
0.029399514198303223,
0.04227698966860771,
-0.03334779664874077,
0.019083362072706223,
0.0028371948283165693,
0.017615411430597305,
-0.03602048009634018,
0.04219599813222885,
-0.025248756632208824,
-0.03664815425872803,
-0.013343168422579765,
-0.05240078642964363,
-0.02070317044854164,
-0.02907555364072323,
-0.06880134344100952,
0.05203633010387421,
-0.030229667201638222,
0.014234062284231186,
-0.016056345775723457,
-0.013383663259446621,
-0.02672683075070381,
-0.02393266372382641,
-0.022920282557606697,
0.040070001035928726,
-0.012320664711296558,
-0.003242146922275424,
0.02070317044854164,
-0.006742450874298811,
0.017807763069868088,
-0.007835821248590946,
-0.04612403362989426,
-0.012432025745511055,
-0.06264607608318329,
-0.03365151211619377,
0.025997918099164963,
0.0010845120996236801,
0.038227468729019165,
0.04130510240793228,
0.026423117145895958,
0.07698137313127518,
-0.00989095214754343,
-0.02051081880927086,
0.035554785281419754,
0.045962050557136536,
0.07228393107652664,
0.01890113390982151,
-0.07034016400575638,
0.008640662766993046,
0.0248843003064394,
-0.026828069239854813,
0.012604130432009697,
-0.051145438104867935,
-0.0284073818475008,
-0.029642485082149506,
0.0247830618172884,
0.02909580059349537,
-0.010498380288481712,
0.05697674676775932,
-0.06017586588859558,
0.005552904214709997,
-0.031302787363529205,
0.024357862770557404,
0.02482355758547783,
-0.0008130676578730345,
0.03527131676673889,
-0.09775540977716446,
-0.038308460265398026,
0.03458290174603462,
-0.004446879029273987,
0.007390373852103949,
-0.0034344990272074938,
-0.022879786789417267,
0.04092039912939072,
0.03085734136402607,
0.019225096330046654,
-0.05434455722570419,
-0.010508503764867783,
0.0017223114846274257,
-0.05434455722570419,
0.00021687077241949737,
-0.017483802512288094,
-0.040070001035928726,
-0.06544024497270584,
0.038267962634563446,
0.053696636110544205,
0.005487099289894104,
-0.02150295116007328,
0.021948397159576416,
-0.01250289287418127,
-0.06280805170536041,
0.043289367109537125,
0.0023917476646602154,
-0.003457277547568083,
-0.0015653925947844982,
-0.0023765619844198227,
-0.046731460839509964,
-0.041264608502388,
-0.013343168422579765,
0.04709591716527939,
-0.026342127472162247,
-0.01816209778189659,
-0.017574915662407875,
-0.03193046525120735,
-0.0205816850066185,
0.01704847812652588,
0.0018083637114614248,
0.03168749436736107,
0.039017125964164734,
-0.034785374999046326,
-0.04055594280362129,
-0.014173319563269615,
0.020834779366850853,
0.046852946281433105,
0.009622671641409397,
0.0343196801841259,
0.033934976905584335,
-0.08155733346939087,
-0.03101932257413864,
-0.012340911664068699,
-0.04102163761854172,
0.09241004288196564,
0.051914844661951065,
-0.02050069533288479,
-0.03614196553826332,
0.020348837599158287,
-0.00385969877243042,
0.038146477192640305,
-0.06685757637023926,
-0.040677428245544434,
0.0266458410769701,
-0.023669444024562836,
0.03294284641742706,
-0.020976513624191284,
0.015195823274552822,
-0.031262293457984924,
0.10083304345607758,
0.02046019956469536,
0.0015008533373475075,
-0.02474256604909897,
0.03502834588289261,
-0.011257665231823921,
-0.04049519822001457,
0.03703286126255989,
0.0205816850066185,
0.025977671146392822,
-0.006722202990204096,
0.021097999066114426,
0.005135297309607267,
-0.04381580650806427,
0.04353233799338341,
0.01873915269970894,
0.055316440761089325,
0.011551255360245705,
-0.0035256133414804935,
0.024337613955140114,
-0.052076827734708786,
-0.0445852130651474,
0.01506421435624361,
-0.04620502144098282,
0.004973316565155983,
0.02134096994996071,
-0.01637018471956253,
0.0015502067981287837,
0.013798738829791546,
0.02842763066291809,
0.03632419556379318,
-0.0675864890217781,
-0.0006820909911766648,
0.0123915309086442,
0.06377993524074554,
0.05564040318131447,
-0.008863386698067188,
0.08803656697273254,
-0.01620820350944996,
-0.03239616006612778,
0.029804466292262077,
0.04835126921534538,
0.013940472155809402,
-0.014790871180593967,
-0.04450422525405884,
0.02046019956469536,
-0.03093833290040493,
-0.0032396160531789064,
0.050983455032110214,
0.02492479607462883,
-0.012523140758275986,
-0.0005302340141497552,
0.01457827165722847,
0.0070411027409136295,
0.02316325344145298,
-0.057867638766765594,
-0.013626634143292904,
-0.07438968122005463,
-0.022717807441949844,
-0.02397315762937069,
0.041163370013237,
-0.03838944807648659,
-0.05588337406516075,
0.013889852911233902,
-0.033934976905584335,
0.005213757045567036,
0.05770565941929817,
-0.015600775368511677,
0.021017007529735565,
0.0018273459281772375,
0.03693162277340889,
0.044099271297454834,
0.011348779313266277,
0.04620502144098282,
-0.05572139471769333,
-0.003378818277269602,
0.04798681288957596,
-0.028042925521731377,
-0.013889852911233902,
-0.004436755087226629,
-0.04029272496700287,
-0.03972579166293144,
-0.02563346177339554,
0.03593948855996132,
0.010913455858826637,
0.016076594591140747,
-0.010002314113080502,
0.02407439611852169,
-0.010189604945480824,
-0.001035158522427082,
0.018668286502361298,
0.006610841490328312,
-0.04972810298204422,
0.05649080127477646,
0.029419763013720512,
-0.031404025852680206,
-0.0075574168004095554,
-0.0006915820995345712,
-0.026220642030239105,
0.060459334403276443,
-0.03371225297451019,
0.05470901355147362,
0.028893325477838516,
-0.03932083770632744,
0.031242046505212784,
0.016815630719065666,
0.00862547755241394,
0.06086428463459015,
-0.03687087818980217,
0.03172798827290535,
-0.021118246018886566,
0.0016906745731830597,
-0.04102163761854172,
0.06317251175642014,
-0.004482312593609095,
-0.010589494369924068,
-0.0205816850066185,
-0.09718848019838333,
0.0657237097620964,
-0.014061957597732544,
0.004148227162659168,
0.02136121690273285,
0.012351036071777344,
0.010078242979943752,
0.0025043750647455454,
-0.03407670930027962,
-0.032112691551446915,
-0.0698947161436081,
-0.04009024798870087,
0.05211732164025307,
0.07463265210390091,
0.04980909451842308,
-0.03440067172050476,
0.024276871234178543,
0.04108237847685814,
0.02221161685883999
] |
729,666 | allpairspy.allpairs | __extract_param_name_list | null | def __extract_param_name_list(self, parameters):
if not self.__is_ordered_dict_param:
return []
return list(parameters)
| (self, parameters) | [
0.020596181973814964,
0.04070114344358444,
-0.013491025194525719,
-0.05024486035108566,
0.007956020534038544,
0.02440314181149006,
0.007631464395672083,
-0.010534930042922497,
0.0711568295955658,
0.015464680269360542,
-0.008618291467428207,
-0.03957835212349892,
-0.04277128726243973,
-0.045297566801309586,
0.02838553860783577,
-0.001845367019996047,
0.013648917898535728,
0.03775382041931152,
-0.04859576374292374,
-0.06831476092338562,
0.007986722514033318,
0.006934106349945068,
-0.008723553270101547,
0.021104946732521057,
-0.005513075273483992,
-0.06452535092830658,
0.03933274373412132,
-0.07192874699831009,
-0.0005208255024626851,
0.022157562896609306,
-0.03394686058163643,
0.00511395838111639,
-0.004291602410376072,
0.022964566946029663,
-0.01789446920156479,
0.040946755558252335,
0.030350422486662865,
0.05308692157268524,
0.004322303459048271,
-0.02156108058989048,
0.009420910850167274,
-0.024227706715464592,
0.016710275784134865,
-0.03017498552799225,
0.00638586888089776,
0.03771873190999031,
-0.030262703076004982,
0.018824279308319092,
-0.0027368010487407446,
0.025946978479623795,
0.04161341115832329,
-0.041894108057022095,
-0.03563104569911957,
-0.02035057172179222,
-0.05859561264514923,
-0.00960511900484562,
0.06701653450727463,
0.00011752839054679498,
0.0616832859814167,
0.022227736189961433,
0.03842047601938248,
-0.003164426190778613,
0.0021074244286864996,
-0.017745347693562508,
0.03542052209377289,
-0.06175345927476883,
0.028789041563868523,
-0.013850669376552105,
-0.02880658581852913,
-0.0166751891374588,
-0.017552368342876434,
-0.04968346655368805,
-0.059051744639873505,
0.03212232515215874,
0.0031161813531070948,
0.03810469061136246,
0.027262749150395393,
-0.009561260230839252,
-0.011473512277007103,
-0.03982396423816681,
-0.04350811988115311,
0.017008516937494278,
-0.02440314181149006,
0.02377157285809517,
-0.00468414044007659,
-0.010789311490952969,
-0.05740264803171158,
0.013640145771205425,
-0.006916563026607037,
0.01903480291366577,
-0.04880628362298012,
-0.0005674256826750934,
-0.0057630715891718864,
0.046876490116119385,
-0.01950847916305065,
-0.01651729643344879,
-0.0545605830848217,
-0.018666386604309082,
-0.020648812875151634,
-0.014929600059986115,
0.0007324451580643654,
-0.009710380807518959,
0.0008442855905741453,
0.023578593507409096,
0.017490966245532036,
-0.07256031781435013,
-0.05392901599407196,
-0.04385899007320404,
0.013622602447867393,
0.0421748049557209,
-0.01945584826171398,
0.0005512526840902865,
0.010026165284216404,
-0.030034637078642845,
0.03143812343478203,
-0.015508539043366909,
-0.00428721634671092,
-0.003278459655120969,
-0.04312216117978096,
0.008390224538743496,
0.01167526375502348,
0.029736395925283432,
-0.010719137266278267,
0.00786830298602581,
-0.0421748049557209,
0.021631253883242607,
-0.008530573919415474,
0.0288592167198658,
-0.030350422486662865,
-0.041894108057022095,
0.0598236620426178,
0.015034861862659454,
-0.07073578238487244,
-0.026052240282297134,
0.024069814011454582,
-0.0767006054520607,
0.05908683314919472,
0.01978917606174946,
0.02796449325978756,
-0.01196473278105259,
0.04185901954770088,
0.04378881677985191,
0.013491025194525719,
0.011298076249659061,
-0.02429788187146187,
-0.05357814207673073,
0.07119191437959671,
0.016254141926765442,
-0.01884182170033455,
0.017447106540203094,
-0.011289304122328758,
0.010903345420956612,
-0.031087253242731094,
-0.06364816427230835,
-0.04406951367855072,
-0.05680616572499275,
-0.020157592371106148,
-0.04070114344358444,
-0.008877059444785118,
-0.021227750927209854,
0.008692852221429348,
-0.05431497469544411,
-0.04108710214495659,
-0.05224483087658882,
0.04470108449459076,
0.008118298836052418,
0.04838524013757706,
-0.005486759822815657,
0.002730222186073661,
-0.04757823422551155,
0.024210162460803986,
0.02192949503660202,
0.0034100364428013563,
0.003197320504114032,
0.038946785032749176,
0.022894393652677536,
-0.048560675233602524,
0.010754224844276905,
-0.009806870482861996,
-0.025139974430203438,
0.029841657727956772,
-0.053332533687353134,
0.002622767584398389,
-0.03785908222198486,
0.03778890520334244,
-0.012701563537120819,
-0.017701487988233566,
0.05999910086393356,
-0.04108710214495659,
-0.006793757900595665,
0.00936828088015318,
-0.0005871622124686837,
-0.01688571088016033,
0.04389407858252525,
-0.036385416984558105,
0.032420564442873,
0.010078796185553074,
0.03642050549387932,
-0.006513060070574284,
0.003888099454343319,
0.005907806102186441,
-0.05178869515657425,
-0.045718610286712646,
-0.012885771691799164,
-0.009543715976178646,
-0.00269513507373631,
0.021683884784579277,
-0.007666551508009434,
0.0032981960102915764,
-0.05838508903980255,
0.04670105502009392,
-0.03138549253344536,
0.026929419487714767,
-0.05975348874926567,
-0.0015778271481394768,
-0.011833155527710915,
-0.05020977184176445,
-0.014701534062623978,
0.0437537282705307,
-0.04143797606229782,
0.03199952095746994,
0.02980657108128071,
0.024227706715464592,
-0.016280457377433777,
0.05220974236726761,
-0.01857866905629635,
0.039683613926172256,
-0.040420446544885635,
-0.0498238131403923,
0.000317155325319618,
0.020490920171141624,
-0.041999369859695435,
-0.010447211563587189,
-0.012561215087771416,
0.022631239145994186,
0.01868393085896969,
-0.01406119205057621,
-0.05526232719421387,
0.00688586151227355,
-0.009622662328183651,
-0.011184042319655418,
0.04912206903100014,
-0.003936344292014837,
0.053648319095373154,
-0.015982216224074364,
-0.0177278034389019,
-0.008841972798109055,
0.06631479412317276,
0.01358751580119133,
0.02449086122214794,
0.019315499812364578,
0.05687633901834488,
-0.0003138658939860761,
-0.0009714766638353467,
-0.03291178494691849,
0.004280637484043837,
-0.01742079108953476,
0.027824142947793007,
-0.009929675608873367,
-0.007837601937353611,
-0.02980657108128071,
-0.016447121277451515,
-0.012798053212463856,
0.058314915746450424,
0.04066605493426323,
-0.013806810602545738,
0.026262763887643814,
0.05740264803171158,
-0.05880613625049591,
0.010991062968969345,
0.08491100370883942,
-0.06389378011226654,
-0.04575369879603386,
-0.0017291407566517591,
0.05635003000497818,
0.02324526570737362,
0.05013959854841232,
-0.025613650679588318,
-0.07768304646015167,
0.08848989754915237,
0.04891154542565346,
-0.023999640718102455,
-0.007600763346999884,
0.008504258468747139,
0.02980657108128071,
0.02817501500248909,
0.03324511647224426,
0.017859380692243576,
-0.02633293904364109,
-0.0027017139364033937,
0.009982306510210037,
0.025104885920882225,
-0.00214360817335546,
-0.033560898154973984,
0.002999955089762807,
0.002197335474193096,
0.00402844836935401,
-0.021578622981905937,
0.07270066440105438,
0.03880643472075462,
0.018069904297590256,
0.046560704708099365,
0.03173636645078659,
-0.06133241206407547,
-0.03084164299070835,
-0.023069828748703003,
-0.0009215870522893965,
0.010341949760913849,
-0.03299950435757637,
-0.0237189419567585,
-0.03194689005613327,
0.04406951367855072,
-0.024999624118208885,
-0.06056049466133118,
0.003280652454122901,
-0.01747342199087143,
0.013105066493153572,
0.05592898651957512,
0.03436790406703949,
0.07361292839050293,
0.022315453737974167,
-0.009026180021464825,
-0.0003281200770288706,
-0.035806480795145035,
0.04642035439610481,
0.017192725092172623,
-0.017429562285542488,
0.026946963742375374,
0.04077131673693657,
-0.0021074244286864996,
-0.0400695726275444,
-0.017236582934856415,
-0.05213956907391548,
-0.020964598283171654,
0.02770133875310421,
-0.021490905433893204,
-0.02743818424642086,
0.04785893112421036,
0.0015460294671356678,
-0.05287639796733856,
-0.045718610286712646,
-0.07284101098775864,
-0.008701623417437077,
0.023999640718102455,
-0.03936782851815224,
0.03131531924009323,
0.012350691482424736,
0.10027919709682465,
0.01735938899219036,
-0.013096294365823269,
-0.022859305143356323,
-0.02314000390470028,
0.042209893465042114,
0.07066560536623001,
0.062034156173467636,
0.017333073541522026,
-0.021701429039239883,
0.01641203463077545,
0.03775382041931152,
0.044630907475948334,
0.12420865893363953,
-0.03996431082487106,
0.024473316967487335,
-0.006934106349945068,
0.08470048010349274,
-0.002638118341565132,
0.013762950897216797,
-0.051016777753829956,
0.06989368796348572,
-0.03398194536566734,
-0.08126194030046463,
0.008648993447422981,
-0.003473632037639618,
-0.05743773281574249,
-0.020947054028511047,
-0.04894663393497467,
0.04435021057724953,
0.03321002796292305,
-0.030666206032037735,
0.008083212189376354,
-0.0379643440246582,
-0.059051744639873505,
0.08736710995435715,
0.0017664209008216858,
-0.05827982723712921,
0.014008562080562115,
-0.0016490980051457882,
-0.058420177549123764,
0.011368250474333763,
-0.0032653019297868013,
-0.023999640718102455,
-0.02801712416112423,
-0.06764810532331467,
0.03078901208937168,
-0.0122542018070817,
-0.019596196711063385,
0.035543326288461685,
-0.007771813310682774,
-0.061928894370794296,
-0.031824082136154175,
0.019701458513736725,
-0.06894633173942566,
-0.09115652740001678,
0.030087267979979515,
0.020578637719154358,
-0.07045508176088333,
0.04399934038519859,
0.06470078229904175,
-0.01757868379354477,
-0.023806659504771233,
0.010973519645631313,
-0.04505195468664169,
-0.008429697714745998,
-0.05263078957796097,
0.038490649312734604,
0.0006299247615970671,
-0.020631268620491028,
0.08098123967647552,
0.02192949503660202,
-0.018596211448311806,
0.018666386604309082,
-0.046139657497406006,
-0.002859606174752116,
0.08582327514886856,
0.05013959854841232,
0.07403397560119629,
-0.027052225545048714,
-0.0017137901159003377,
-0.018771648406982422,
-0.024280337616801262,
-0.03410474956035614,
0.04045553132891655,
-0.030490770936012268,
-0.051332563161849976,
0.054841283708810806,
0.025718912482261658,
0.03298196196556091,
-0.0057104406878352165,
0.029052196070551872,
0.023122459650039673,
-0.019596196711063385,
0.05712195113301277,
0.004151253495365381,
-0.0062586781568825245,
0.03536789119243622,
0.03866608813405037,
-0.03571876138448715,
0.02040320262312889,
0.03410474956035614,
-0.028578517958521843,
-0.01259630173444748,
0.016903255134820938,
0.06357799470424652,
-0.08863025158643723,
0.03143812343478203,
0.0022368086501955986,
-0.05606933310627937,
0.013464709743857384,
-0.004475810099393129,
-0.01971900276839733,
0.07140243798494339,
0.02506979927420616,
0.04024501144886017,
0.04256076365709305,
0.0017247548094019294,
0.009745467454195023,
-0.005670967511832714,
-0.01206999458372593,
0.00013390698586590588,
0.019999699667096138,
0.05603424832224846,
0.009245474822819233,
0.00209974916651845,
-0.06831476092338562,
-0.025508388876914978,
0.030911816284060478,
0.06582356989383698,
0.03268371894955635,
0.013622602447867393,
0.005258692894130945,
-0.004513090010732412,
-0.06115697696805,
0.005342025309801102,
0.004675368312746286,
-0.02859606221318245,
-0.016236597672104836,
-0.021596167236566544,
-0.027087312191724777,
-0.07529711723327637,
-0.030438140034675598,
-0.021490905433893204,
-0.006820072885602713,
0.033508267253637314,
0.029297806322574615,
0.04013974964618683,
0.032420564442873,
0.0074033974669873714,
-0.019947068765759468,
-0.017850609496235847,
0.07677077502012253,
0.009420910850167274,
-0.015105036087334156,
0.09375298023223877,
-0.016955886036157608,
0.022332997992634773,
-0.0830162987112999,
0.025368040427565575,
-0.020438289269804955,
-0.04424494877457619,
-0.019140062853693962,
-0.04403442516922951,
-0.0073946258053183556,
0.03806960582733154,
0.021017229184508324,
-0.03126268833875656,
-0.0017444913974031806,
-0.035964373499155045,
0.03740294650197029,
0.03831521421670914,
0.04028009623289108,
0.017403246834874153,
0.007495501544326544,
0.02250843495130539,
-0.03342055156826973,
0.024368055164813995,
-0.0015811165794730186,
-0.06624461710453033,
-0.04891154542565346,
0.024210162460803986,
0.03445562347769737,
0.03891169652342796,
-0.03157847374677658,
-0.007210418116301298,
-0.014245400205254555,
0.005056941416114569,
0.06729723513126373,
-0.027052225545048714,
-0.010991062968969345,
-0.033560898154973984,
0.07175330817699432,
0.011385793797671795,
0.015613800846040249,
0.007008666638284922,
-0.0033727562986314297,
-0.020280396565794945,
0.052806224673986435,
-0.02443823032081127,
0.04182393476366997,
-0.04287654906511307,
-0.015219070017337799,
-0.016754133626818657,
-0.03321002796292305,
-0.04722736030817032,
-0.029315348714590073,
0.012964718043804169,
-0.06726215034723282,
0.024876819923520088,
-0.015087492763996124,
-0.052174653857946396,
0.022420715540647507,
0.04133271425962448,
0.027104856446385384,
-0.04024501144886017,
0.014017333276569843,
-0.07199891656637192,
0.006530603859573603,
0.011526143178343773,
0.026052240282297134,
-0.04484143108129501,
0.030964447185397148,
0.014105051755905151,
-0.0288592167198658,
0.0036139809526503086,
0.0012762966798618436,
0.008666536770761013,
0.008583204820752144,
0.06389378011226654,
-0.012955945916473866,
-0.01647343672811985,
-0.01709623448550701,
0.06329729408025742,
-0.008929690346121788,
0.007530588656663895,
0.023017197847366333,
0.015333103016018867,
0.0535079687833786,
0.002309175906702876,
-0.008280577138066292,
-0.0009840860730037093,
-0.03540297597646713,
-0.04617474600672722,
0.033560898154973984,
0.06901650875806808,
-0.015227841213345528,
-0.03196443244814873,
-0.016815537586808205,
0.0008667632937431335,
0.03877134621143341,
-0.08877059817314148,
-0.022789131850004196,
0.043262507766485214,
-0.017017288133502007,
0.060314882546663284,
0.05743773281574249,
0.03919239342212677,
-0.051964133977890015,
0.01789446920156479,
0.04894663393497467,
-0.04266602545976639,
0.05792895331978798,
-0.007219189777970314,
0.0024933835957199335,
0.023543506860733032,
-0.07157787680625916,
-0.01382435392588377,
0.04606948420405388,
0.012938402593135834,
0.015105036087334156,
0.09634943306446075,
-0.0012609460391104221,
-0.0022422908805310726,
0.020104961469769478,
-0.009289334528148174,
0.0328240692615509,
-0.05371849238872528,
-0.09206879138946533,
-0.03996431082487106,
-0.0780339166522026,
0.03631524369120598,
-0.03673629090189934,
0.03084164299070835,
-0.020859336480498314,
0.05273605138063431,
-0.023385614156723022,
-0.025982066988945007,
0.041262537240982056,
-0.027929404750466347,
-0.09922657907009125,
-0.05171852186322212,
-0.003971431404352188,
0.03694681450724602,
-0.03542052209377289,
-0.02377157285809517,
-0.004265286959707737,
0.030578488484025,
0.04908698424696922,
-0.008776184171438217,
-0.03750820830464363,
0.06571831554174423,
0.020648812875151634,
-0.01500854641199112,
0.03782399371266365,
-0.004192919470369816,
0.02524523437023163,
0.007916548289358616,
-0.03084164299070835,
-0.08666536957025528,
0.0009528365917503834,
-0.0018146657384932041,
-0.023964552208781242,
-0.022315453737974167,
-0.053648319095373154,
0.0009193940786644816,
-0.027420641854405403,
-0.06884106993675232,
-0.029420610517263412,
-0.03536789119243622,
0.014806794933974743,
0.014298031106591225,
0.01292963046580553,
-0.010745452716946602,
-0.01987689547240734,
0.05971840023994446,
-0.031613562256097794,
-0.000938034150749445,
0.02985920011997223,
-0.018859365954995155,
0.02585926093161106,
0.06305168569087982,
0.01709623448550701,
-0.042209893465042114,
-0.04908698424696922,
0.01968391425907612,
0.046350181102752686,
0.05129747465252876,
0.011903329752385616,
-0.01778920739889145,
-0.03147321194410324,
0.010894573293626308,
0.04364846646785736,
-0.017236582934856415,
-0.02324526570737362,
0.01926286891102791,
-0.018490949645638466,
0.0376836434006691,
0.027368010953068733,
0.0048815058544278145,
-0.04343794286251068,
0.04329759627580643,
0.035227540880441666,
-0.02994691953063011,
0.007977950386703014,
0.006105171516537666,
0.02628030814230442,
-0.001679799403063953,
0.0036534538958221674,
0.05701668933033943,
0.004736770875751972,
0.0025175060145556927,
-0.005697282962501049,
-0.041262537240982056,
-0.036911725997924805,
0.020859336480498314,
-0.04122745245695114,
0.01072790939360857,
0.0022433872800320387,
0.02875395491719246,
0.0020811092108488083,
0.03196443244814873,
0.026157502084970474,
0.01892954111099243,
0.017447106540203094,
0.05659564211964607,
0.02335052751004696,
0.010473527014255524,
-0.013043663464486599,
0.00983318593353033,
-0.008223560638725758,
-0.029789026826620102,
0.008929690346121788,
-0.010815626941621304,
0.04129762575030327,
-0.05024486035108566,
0.013385764323174953,
0.03191180154681206,
-0.01725412718951702,
0.043683554977178574,
-0.01022791676223278,
-0.06540253013372421,
0.02014004811644554,
0.004221427720040083,
0.029841657727956772,
0.032596003264188766,
0.047718580812215805,
0.0469115749001503,
-0.04908698424696922,
0.01903480291366577,
-0.03477140888571739,
0.031613562256097794,
-0.08582327514886856,
0.019297955557703972,
0.0354556068778038,
-0.006223590578883886,
-0.07213927060365677,
-0.04213972017168999,
0.0011677456786856055,
0.029736395925283432,
0.0016874746652320027,
-0.02970130927860737,
-0.02140318788588047,
-0.060876280069351196,
-0.0018793577328324318,
-0.014087507501244545,
0.025052255019545555,
-0.0027916247490793467,
0.009754239581525326,
0.005021854303777218,
-0.017657630145549774
] |
729,667 | allpairspy.allpairs | __extract_value_matrix | null | def __extract_value_matrix(self, parameters):
if not self.__is_ordered_dict_param:
return parameters
return [v for v in parameters.values()]
| (self, parameters) | [
0.07692839205265045,
0.017264002934098244,
0.0034161144867539406,
-0.04647469520568848,
0.01014260109513998,
0.00022996190818957984,
-0.014622610062360764,
-0.002995304297655821,
0.06128720939159393,
0.06253021955490112,
-0.03290518745779991,
0.03440715745091438,
-0.03725571557879448,
-0.008839169517159462,
0.025360818952322006,
-0.0017436642665416002,
0.03708307817578316,
0.013362337835133076,
-0.007686797063797712,
0.0015375751536339521,
0.014898833818733692,
-0.024463091045618057,
-0.005179200787097216,
0.09481389820575714,
-0.01565844938158989,
-0.11532353609800339,
0.023703474551439285,
-0.08991092443466187,
0.021407362073659897,
0.03250811621546745,
-0.09350183606147766,
0.017574753612279892,
-0.031455013900995255,
0.019611906260252,
-0.019594643265008926,
0.01443270593881607,
0.012533665634691715,
-0.002867982489988208,
-0.004395846743136644,
-0.0017533752834424376,
-0.030937092378735542,
-0.06943581998348236,
0.03066086769104004,
-0.026603827252984047,
-0.006607796996831894,
0.014027002267539501,
-0.008019128814339638,
-0.007363096810877323,
-0.002306902315467596,
0.0034894864074885845,
0.03663421422243118,
-0.036565158516168594,
0.02201160229742527,
0.01373351365327835,
-0.07271597534418106,
0.018040882423520088,
0.03299150988459587,
0.012110698036849499,
0.04688902944326401,
0.005990608595311642,
0.014285962097346783,
0.018904082477092743,
-0.016098681837320328,
0.010323873721063137,
0.0200435072183609,
-0.04965126886963844,
0.021148402243852615,
0.021390099078416824,
0.003724708454683423,
0.004180046729743481,
-0.06608659774065018,
-0.04050134867429733,
-0.035149507224559784,
-0.01381120178848505,
0.014458602294325829,
0.019180307164788246,
-0.009676473215222359,
-0.006206408608704805,
-0.026569299399852753,
-0.02753608301281929,
-0.050825223326683044,
0.033664803951978683,
0.017781922593712807,
0.010203025303781033,
-0.026362132281064987,
0.020544162020087242,
-0.007544368971139193,
0.05745460093021393,
0.011497825384140015,
0.04229680448770523,
-0.04229680448770523,
-0.014872938394546509,
-0.022633107379078865,
0.05603894963860512,
0.0023047442082315683,
0.031765762716531754,
-0.03195566684007645,
-0.0008286720840260386,
-0.027397971600294113,
-0.017954561859369278,
0.02416960336267948,
-0.012438713572919369,
0.012999793514609337,
0.0062366207130253315,
-0.005537428893148899,
-0.042262278497219086,
-0.037704579532146454,
-0.0504799410700798,
0.04830467700958252,
0.03753194212913513,
-0.04830467700958252,
0.0801740288734436,
-0.002466594334691763,
-0.03325046971440315,
-0.020906707271933556,
-0.017626546323299408,
-0.04882259666919708,
-0.0008605025941506028,
-0.0813479796051979,
0.048926182091236115,
-0.000179248905624263,
0.06156343221664429,
0.03577101230621338,
0.0318002924323082,
-0.03183481842279434,
0.021493682637810707,
-0.012542298063635826,
0.0130688501521945,
0.004497272428125143,
-0.06991920620203018,
0.016254058107733727,
-0.038291558623313904,
-0.005748912692070007,
-0.00923624075949192,
0.005520164500921965,
-0.07609972357749939,
0.07264692336320877,
-0.04278019815683365,
0.062288518995046616,
0.0014706772053614259,
0.03404461219906807,
0.05117050185799599,
-0.0026823943480849266,
-0.013983841985464096,
-0.0051619368605315685,
-0.06867620348930359,
0.08839169144630432,
0.06726055592298508,
-0.05514122173190117,
-0.0023889061994850636,
-0.024791106581687927,
0.03349216282367706,
-0.012473241426050663,
-0.05279332026839256,
-0.028968995437026024,
-0.0713348537683487,
0.06715697050094604,
-0.05358746275305748,
0.03521856293082237,
-0.001662739203311503,
-0.0016994252800941467,
-0.00807955302298069,
-0.024014227092266083,
-0.01319833006709814,
0.00023077115474734455,
0.04878807067871094,
0.022374147549271584,
-0.015520337969064713,
-0.02292659506201744,
-0.08093364536762238,
-0.0024946483317762613,
-0.00981458555907011,
-0.029538707807660103,
-0.02242593839764595,
0.01071231346577406,
0.011610041372478008,
-0.04502451792359352,
0.03478696569800377,
0.011506457813084126,
0.025619778782129288,
-0.01594330556690693,
-0.02886541187763214,
-0.04115737974643707,
-0.05873213708400726,
0.033768389374017715,
-0.00968510564416647,
0.009434777311980724,
0.01145466510206461,
-0.016219530254602432,
-0.003867136547341943,
0.003079466288909316,
-0.013534978032112122,
0.010375665500760078,
0.06301360577344894,
-0.02194254659116268,
0.014191010035574436,
0.009132657200098038,
0.03659968450665474,
0.012965265661478043,
0.023876115679740906,
-0.0030643604695796967,
-0.09522823989391327,
-0.0064265248365700245,
0.04046682268381119,
-0.05793799087405205,
-0.037152133882045746,
0.022771218791604042,
-0.022391410544514656,
0.00959878508001566,
-0.006564636714756489,
0.03250811621546745,
-0.06132173538208008,
0.016435330733656883,
-0.06736413389444351,
0.021580003201961517,
-0.010315241292119026,
-0.048442792147397995,
-0.03373385965824127,
0.01125612948089838,
-0.05155031010508537,
0.05590083822607994,
-0.009676473215222359,
0.008554313331842422,
0.020008979365229607,
0.008873697370290756,
-0.012594089843332767,
0.02128651551902294,
-0.04095021262764931,
-0.048753540962934494,
0.021959811449050903,
0.010746841318905354,
-0.020716803148388863,
-0.02993577904999256,
-0.023772530257701874,
0.03157585859298706,
-0.006547372788190842,
0.007725641131401062,
-0.03756646811962128,
0.01124749705195427,
0.02316829189658165,
-0.02035425789654255,
0.010539673268795013,
0.0478212870657444,
0.08652717620134354,
-0.021873490884900093,
-0.032767076045274734,
0.011739521287381649,
0.09122298657894135,
-0.0027579243760555983,
0.022201506420969963,
0.00005580453944276087,
0.015062841586768627,
0.04671638831496239,
0.016469858586788177,
-0.011799945496022701,
-0.018092675134539604,
0.044472068548202515,
0.051895592361688614,
0.021234722808003426,
-0.03395829349756241,
0.014389545656740665,
-0.07437331974506378,
0.03577101230621338,
0.015080106444656849,
0.016737449914216995,
-0.008934121578931808,
0.007406257092952728,
0.06332436203956604,
-0.02770872414112091,
0.012809889391064644,
0.017712866887450218,
0.010539673268795013,
-0.057661768049001694,
-0.008916856721043587,
0.028623715043067932,
0.032767076045274734,
0.04833920672535896,
-0.05579725652933121,
-0.05887024849653244,
0.09184449166059494,
0.006715696770697832,
-0.027674196287989616,
-0.006404944695532322,
-0.00046612805454060435,
0.001993992365896702,
0.017220841720700264,
0.013983841985464096,
-0.01912851445376873,
0.02703542821109295,
-0.012257441878318787,
0.014527658000588417,
0.04243491590023041,
-0.043160006403923035,
-0.028399283066391945,
0.01071231346577406,
-0.013146537356078625,
-0.04133002087473869,
-0.006650956813246012,
0.09419239312410355,
0.06967751681804657,
0.03419999033212662,
0.012024377472698689,
0.047027140855789185,
-0.02480837143957615,
-0.00939161702990532,
0.008662213571369648,
0.030212003737688065,
0.03440715745091438,
-0.009926801547408104,
0.0062495688907802105,
0.01855880208313465,
0.049029767513275146,
-0.006219356786459684,
-0.06418756395578384,
-0.037152133882045746,
-0.03777363523840904,
-0.01969822682440281,
0.02959050051867962,
0.06670810282230377,
0.06256474554538727,
0.03231821209192276,
-0.03687590733170509,
0.003394534345716238,
-0.039120230823755264,
-0.011601409874856472,
0.007242248859256506,
-0.003651336533948779,
-0.03842967003583908,
0.01937021128833294,
-0.023116499185562134,
0.004669912625104189,
-0.00027892153593711555,
-0.01583109050989151,
0.04267661273479462,
0.07098957896232605,
-0.007712692953646183,
-0.03395829349756241,
0.054692357778549194,
-0.0018947242060676217,
-0.014933361671864986,
-0.01640080288052559,
-0.06208135187625885,
-0.017108626663684845,
-0.013552241958677769,
0.01888681761920452,
0.008070921525359154,
-0.010056281462311745,
0.05617706477642059,
0.023375459015369415,
-0.019560115411877632,
-0.05089427903294563,
0.006676852703094482,
0.04012154042720795,
0.07105863094329834,
0.016452593728899956,
0.04871901497244835,
-0.010867689736187458,
-0.045369796454906464,
0.025257235392928123,
0.03299150988459587,
0.13051585853099823,
0.015727506950497627,
-0.006573268678039312,
-0.005584904924035072,
0.0730612576007843,
-0.0021191562991589308,
-0.02605137974023819,
-0.011368345469236374,
0.0570402629673481,
-0.024946482852101326,
-0.009590153582394123,
0.01655617728829384,
0.0032780023757368326,
0.023927906528115273,
0.008718321099877357,
-0.003062202362343669,
-0.038533251732587814,
0.016478490084409714,
-0.044713765382766724,
-0.040259651839733124,
-0.010151233524084091,
-0.06387680768966675,
0.027501555159687996,
-0.03002209961414337,
-0.04098474234342575,
0.020164353772997856,
0.022615842521190643,
-0.05455424636602402,
-0.04740694910287857,
-0.013862993568181992,
-0.042331334203481674,
-0.0013217751402407885,
-0.053380295634269714,
-0.02655203640460968,
0.017005043104290962,
0.015157793648540974,
0.050652582198381424,
0.030229268595576286,
-0.06059664860367775,
-0.054692357778549194,
-0.0415717177093029,
-0.0713348537683487,
-0.08604378998279572,
0.009512465447187424,
-0.03421725332736969,
-0.1301015168428421,
0.0006231225561350584,
0.06667357683181763,
0.013837098143994808,
-0.0318002924323082,
0.020423315465450287,
-0.03231821209192276,
0.005403632763773203,
-0.025775155052542686,
0.03152406960725784,
-0.023289138451218605,
0.03791175037622452,
0.027812307700514793,
0.04647469520568848,
0.014622610062360764,
0.07050618529319763,
-0.03166218101978302,
-0.02876182831823826,
0.03981078788638115,
0.029486915096640587,
0.04806298390030861,
-0.06619018316268921,
-0.005036772694438696,
-0.04433395713567734,
-0.016884194687008858,
-0.031213315203785896,
-0.041916996240615845,
-0.028640979900956154,
-0.03584006801247597,
-0.016236793249845505,
0.033854708075523376,
-0.00033260180498473346,
0.01009944174438715,
0.04267661273479462,
0.028968995437026024,
-0.027225332334637642,
0.03729024529457092,
0.021079346537590027,
-0.016038257628679276,
0.00944340880960226,
-0.012404185719788074,
0.005653960630297661,
0.022564051672816277,
-0.007742905057966709,
-0.022702163085341454,
-0.022529523819684982,
0.0274670273065567,
0.036150820553302765,
-0.0665009394288063,
0.053863685578107834,
0.018351634964346886,
-0.0879082977771759,
-0.027069956064224243,
0.04122643917798996,
0.019335683435201645,
0.10144327580928802,
-0.035080451518297195,
0.0009381906129419804,
0.00321542052552104,
-0.015848353505134583,
0.014898833818733692,
-0.006931496784090996,
-0.034010086208581924,
-0.021735379472374916,
0.03183481842279434,
0.040259651839733124,
0.01707409881055355,
0.01104896143078804,
-0.07292314618825912,
-0.014605346135795116,
0.012473241426050663,
0.049996551126241684,
0.02672467567026615,
-0.018265314400196075,
0.034338101744651794,
-0.047372423112392426,
-0.03749741241335869,
-0.01146329753100872,
-0.021545475348830223,
-0.03718665987253189,
0.022391410544514656,
0.008252193219959736,
-0.07575444132089615,
-0.010177128948271275,
-0.01484704203903675,
-0.025015538558363914,
0.010729577392339706,
0.06677716225385666,
0.06256474554538727,
0.05234445631504059,
0.025326291099190712,
0.014415442012250423,
-0.004540432710200548,
-0.03035011515021324,
0.07333748042583466,
0.01388888992369175,
0.006089876871556044,
0.01541675440967083,
0.003107520518824458,
-0.022149715572595596,
-0.06332436203956604,
0.02120019495487213,
-0.029245220124721527,
-0.017367586493492126,
-0.021649058908224106,
-0.04278019815683365,
-0.0010579596273601055,
-0.045369796454906464,
0.014104689471423626,
-0.032853394746780396,
-0.008524101227521896,
-0.05144672840833664,
0.002083549275994301,
0.0068840207532048225,
0.006180512718856335,
0.06139079108834267,
-0.001327170175500214,
0.02672467567026615,
-0.028623715043067932,
-0.017678339034318924,
0.0400870144367218,
-0.0639113336801529,
-0.05061805620789528,
0.035253092646598816,
-0.0012289811857044697,
-0.015347697772085667,
-0.05358746275305748,
-0.03059181198477745,
0.043160006403923035,
-0.004268524702638388,
0.012835785746574402,
0.08521511405706406,
-0.033440373837947845,
-0.05210275948047638,
0.06284096837043762,
0.00290466845035553,
0.006577584892511368,
0.011351081542670727,
0.008463677018880844,
0.0035261723678559065,
0.030643604695796967,
-0.019888130947947502,
0.04322906211018562,
-0.02430771477520466,
-0.03242179751396179,
-0.035909123718738556,
-0.01591740921139717,
0.0201988834887743,
0.015641186386346817,
0.0239106435328722,
-0.005619432777166367,
0.021631794050335884,
-0.008118396624922752,
-0.01744527369737625,
-0.01496788952499628,
0.06802017241716385,
-0.014260065741837025,
-0.03059181198477745,
0.0252399705350399,
-0.08859886229038239,
0.00968510564416647,
-0.0007585370913147926,
0.05451972037553787,
-0.06622470915317535,
0.035909123718738556,
-0.00670274905860424,
-0.03452800586819649,
-0.02389337867498398,
-0.0022313722874969244,
0.05600442364811897,
-0.03663421422243118,
0.027225332334637642,
-0.032370004802942276,
-0.03677232563495636,
0.028917204588651657,
0.03026379644870758,
0.03059181198477745,
0.04768317565321922,
0.025412611663341522,
0.05417443811893463,
0.03214557096362114,
-0.042503975331783295,
0.0356329008936882,
0.01438091415911913,
-0.004812340717762709,
-0.01381120178848505,
0.014121953397989273,
-0.000787130615208298,
-0.01327601820230484,
0.0012160331243649125,
-0.006107140798121691,
-0.02876182831823826,
0.025447139516472816,
-0.046198468655347824,
-0.0002568020427133888,
0.012058905325829983,
-0.019732754677534103,
0.030971620231866837,
0.037808164954185486,
-0.003500276478007436,
-0.07105863094329834,
0.03825702890753746,
0.050410885363817215,
0.003107520518824458,
0.06225399300456047,
-0.0020144933369010687,
-0.025619778782129288,
-0.002643550280481577,
-0.0489952377974987,
0.016383538022637367,
0.03642704337835312,
-0.024255923926830292,
0.06166701763868332,
0.017850978299975395,
-0.016590707004070282,
-0.006940128747373819,
0.00793712493032217,
-0.03684138134121895,
-0.003910296596586704,
-0.01653028279542923,
-0.038464196026325226,
-0.016884194687008858,
-0.0636005848646164,
0.014441337436437607,
-0.012248809449374676,
0.06166701763868332,
-0.004687176551669836,
0.07651405781507492,
0.011169809848070145,
-0.05023824796080589,
0.025015538558363914,
-0.01814446598291397,
-0.04923693463206291,
-0.021476419642567635,
0.017661074176430702,
0.026672882959246635,
-0.003249948378652334,
-0.020181618630886078,
-0.009426144883036613,
0.04063946008682251,
0.004419584758579731,
-0.002814032370224595,
-0.04067398980259895,
0.0641530305147171,
0.01167046558111906,
-0.020129825919866562,
0.010047649033367634,
-0.020319730043411255,
0.05282784625887871,
0.03974173218011856,
-0.027104483917355537,
-0.04688902944326401,
0.04395414888858795,
-0.035494789481163025,
0.012343761511147022,
-0.047924868762493134,
-0.04129549488425255,
-0.020423315465450287,
-0.0772046148777008,
0.005489952862262726,
-0.010522409342229366,
-0.009849113412201405,
0.03784269466996193,
0.018748706206679344,
0.011135281063616276,
0.024773843586444855,
-0.03098888322710991,
0.04685450345277786,
-0.025274500250816345,
0.05286237597465515,
0.014268698170781136,
-0.03274981305003166,
0.017462538555264473,
0.06111456826329231,
-0.007695429027080536,
0.0030492544174194336,
0.00940024945884943,
0.014242801815271378,
0.07033354789018631,
-0.0005510993069037795,
-0.04240038990974426,
0.0030341483652591705,
0.008813273161649704,
-0.05928458273410797,
-0.01327601820230484,
-0.0025313342921435833,
-0.06581037491559982,
0.05003107711672783,
-0.03815344348549843,
0.01845521852374077,
0.0694703459739685,
-0.017937298864126205,
0.005714384838938713,
0.057661768049001694,
0.06995373964309692,
-0.06284096837043762,
-0.013914786279201508,
-0.030229268595576286,
0.04799392446875572,
0.021390099078416824,
0.022736690938472748,
0.060320425778627396,
0.000011658259609248489,
0.003862820565700531,
-0.031144259497523308,
-0.02679373137652874,
0.007941440679132938,
0.009426144883036613,
-0.01720357872545719,
-0.019836338236927986,
0.0493059903383255,
-0.053967271000146866,
0.012050273828208447,
-0.013353705406188965,
0.010323873721063137,
-0.013957945629954338,
0.02448035590350628,
0.046958085149526596,
0.03653062880039215,
-0.00015766889555379748,
0.053138598799705505,
0.007975969463586807,
-0.010401560924947262,
0.01124749705195427,
-0.01491609774529934,
-0.025326291099190712,
0.048684485256671906,
-0.009374353103339672,
0.019404739141464233,
-0.03397555649280548,
0.003847714513540268,
-0.00001707854971755296,
-0.029158899560570717,
-0.032870661467313766,
0.036806851625442505,
-0.015727506950497627,
0.028295699506998062,
0.009201712906360626,
0.06280644237995148,
0.02631033957004547,
-0.0018127202056348324,
-0.03185208514332771,
0.007026448845863342,
0.02563704364001751,
-0.09391617029905319,
0.015822457149624825,
0.01753159426152706,
-0.010695049539208412,
-0.030695395544171333,
-0.009305297397077084,
-0.010263449512422085,
0.062357574701309204,
-0.04954768717288971,
-0.01631448231637478,
-0.030695395544171333,
-0.06505075842142105,
0.017005043104290962,
-0.036150820553302765,
0.07033354789018631,
-0.05382915958762169,
0.0012559561291709542,
0.019853603094816208,
-0.019853603094816208
] |
729,668 | allpairspy.allpairs | __get_iteration_value | null | def __get_iteration_value(self, item_list):
if not self.__param_name_list:
return [item.value for item in item_list]
return self.__pairs_class(*[item.value for item in item_list])
| (self, item_list) | [
0.07912025600671768,
-0.037362340837717056,
-0.06806043535470963,
-0.013957706280052662,
0.0005799094797112048,
0.0006746224826201797,
0.026249349117279053,
-0.021056197583675385,
0.09819135814905167,
0.012717021629214287,
0.0078163156285882,
0.03286042809486389,
0.012504332698881626,
0.009092448279261589,
0.017803829163312912,
0.007337765768170357,
0.01762658916413784,
0.05735509470105171,
-0.03094622865319252,
0.053668487817049026,
0.0003409114433452487,
0.023945219814777374,
0.0015685802791267633,
0.02671017497777939,
0.030893055722117424,
-0.06288500875234604,
0.08273596316576004,
-0.0034074527211487293,
0.020240889862179756,
0.020701715722680092,
-0.03963102400302887,
0.012504332698881626,
-0.03582035005092621,
0.029918232932686806,
0.065898098051548,
0.03539497032761574,
-0.08996738493442535,
0.04781954362988472,
-0.048705749213695526,
-0.014507152140140533,
0.04700423777103424,
-0.0818852111697197,
0.0038837871979922056,
-0.007470696233212948,
-0.009863445535302162,
0.03902840614318848,
-0.005751461256295443,
-0.014055188745260239,
0.036866068840026855,
-0.018184896558523178,
0.02499094046652317,
-0.0034606249537318945,
0.010563546791672707,
-0.005888822488486767,
-0.041828807443380356,
0.06277865916490555,
-0.004313596058636904,
-0.013638673350214958,
-0.0018277948256582022,
0.032381877303123474,
0.015676941722631454,
-0.016572006046772003,
0.032062843441963196,
-0.04200604930520058,
0.012203022837638855,
-0.0058666677214205265,
-0.020737163722515106,
0.02729506976902485,
-0.01704169437289238,
0.01670493744313717,
0.027950860559940338,
-0.04094260558485985,
-0.05976556986570358,
-0.02077261172235012,
0.00509123969823122,
0.02772044762969017,
0.021800607442855835,
0.031176641583442688,
0.03160201758146286,
-0.03697241470217705,
-0.059623777866363525,
0.057709574699401855,
-0.0025544818490743637,
-0.041828807443380356,
-0.02102074958384037,
-0.003857200965285301,
-0.06781229376792908,
-0.00479879230260849,
-0.014755289070308208,
0.06281410902738571,
-0.01605800911784172,
-0.009553274139761925,
-0.03750413656234741,
0.07089628279209137,
-0.04342397302389145,
0.009845721535384655,
-0.008862035349011421,
-0.09039276093244553,
-0.023643910884857178,
0.002629809081554413,
0.02359073981642723,
-0.025629006326198578,
-0.00063585105817765,
-0.02431742660701275,
0.011494060046970844,
-0.050938982516527176,
-0.01986868493258953,
-0.03317946195602417,
0.05462558940052986,
0.018822964280843735,
-0.03261229023337364,
0.05217966437339783,
0.008574019186198711,
0.004134139511734247,
-0.06667795777320862,
0.043388526886701584,
-0.042076945304870605,
0.007492851000279188,
0.018645722419023514,
-0.025026388466358185,
-0.008405640721321106,
-0.014817323535680771,
-0.006748440209776163,
-0.00030961737502366304,
-0.02557583525776863,
-0.0038018133491277695,
0.0004353474942035973,
-0.019461030140519142,
-0.0016605239361524582,
0.019673720002174377,
0.06664250791072845,
-0.0233248770236969,
-0.01489708200097084,
-0.01697079837322235,
0.00763464393094182,
-0.052250564098358154,
-0.012584090232849121,
-0.012513194233179092,
-0.0327540822327137,
0.016403628513216972,
0.08216879516839981,
0.038035858422517776,
0.013222157023847103,
0.05295952409505844,
-0.009960928000509739,
-0.022899501025676727,
0.04048177972435951,
0.09670253098011017,
-0.025540387257933617,
0.002999799093231559,
-0.0683794692158699,
0.04122618958353996,
0.01596052572131157,
0.023236257955431938,
-0.0020227597560733557,
-0.005800202488899231,
0.008458812721073627,
-0.02282860316336155,
-0.03484552353620529,
-0.062176041305065155,
-0.007803022395819426,
-0.04292770102620125,
-0.04576355218887329,
0.0392056442797184,
0.03227553516626358,
0.022048745304346085,
-0.03665338084101677,
0.004949446767568588,
0.03654703497886658,
-0.0339415967464447,
0.03078671172261238,
-0.052994973957538605,
-0.03044995479285717,
-0.030485402792692184,
0.00422275997698307,
0.053916625678539276,
-0.03234643116593361,
0.012468883767724037,
0.0694783627986908,
0.010058410465717316,
-0.0476423054933548,
-0.04427472874522209,
0.009092448279261589,
-0.09166889637708664,
0.019655995070934296,
0.07706426084041595,
0.02433514967560768,
0.041403431445360184,
0.011050958186388016,
0.014002016745507717,
0.022190537303686142,
0.0040078554302453995,
0.0012384695000946522,
0.02621390111744404,
-0.029634647071361542,
0.003480564570054412,
0.006907956674695015,
0.06713878363370895,
0.025593558326363564,
0.060687221586704254,
-0.03137160465121269,
-0.022545019164681435,
-0.039170198142528534,
0.04601169005036354,
-0.04374300688505173,
0.026869691908359528,
0.0055343410931527615,
-0.03224008530378342,
-0.01953192614018917,
-0.0077897291630506516,
-0.006004028953611851,
0.020223164930939674,
0.017174625769257545,
-0.002536757616326213,
-0.007577040698379278,
0.015650354325771332,
-0.023147637024521828,
-0.060687221586704254,
0.009216517210006714,
-0.01564149372279644,
0.02282860316336155,
-0.03179698437452316,
0.03895751014351845,
-0.037114206701517105,
0.05540544539690018,
-0.038035858422517776,
-0.020063648000359535,
-0.015995973721146584,
-0.06880484521389008,
0.06876939535140991,
-0.02316536195576191,
-0.0028580063953995705,
0.04055267572402954,
0.041261639446020126,
-0.011414301581680775,
-0.033392149955034256,
0.018238069489598274,
-0.03261229023337364,
-0.10832952708005905,
0.033480770885944366,
-0.03690151497721672,
0.04175791144371033,
-0.02250957116484642,
0.013514604419469833,
-0.03301994502544403,
0.008556295186281204,
0.023129913955926895,
0.08550091832876205,
-0.007661229930818081,
0.04278590902686119,
0.032895877957344055,
0.0678831934928894,
-0.011564956977963448,
0.021534746512770653,
-0.014205843210220337,
0.003296677256003022,
-0.033959321677684784,
0.009996376000344753,
0.0406944677233696,
-0.004541793372482061,
0.028323065489530563,
-0.013390535488724709,
0.02589486911892891,
0.028518030419945717,
-0.028677547350525856,
0.035784900188446045,
-0.011272509582340717,
0.026249349117279053,
-0.04154522344470024,
0.03227553516626358,
0.07337765395641327,
-0.02523907832801342,
0.0028646530117839575,
-0.0009205439710058272,
0.01108640618622303,
0.019886408001184464,
0.026373418048024178,
-0.008179659023880959,
-0.09897121787071228,
-0.00401007104665041,
0.060190945863723755,
-0.006655388977378607,
-0.0669969916343689,
-0.029173821210861206,
0.012654987163841724,
0.012415711767971516,
0.05593717098236084,
0.04328218102455139,
0.02903202921152115,
0.005764754023402929,
-0.0173695906996727,
-0.005622961558401585,
0.02102074958384037,
-0.05342034995555878,
-0.0027804637793451548,
0.010164755396544933,
-0.04732327163219452,
-0.01878751628100872,
0.034615110605955124,
-0.000979808857664466,
0.018557103350758553,
0.021392954513430595,
-0.045373622328042984,
-0.015233838930726051,
-0.019726891070604324,
0.008356899954378605,
0.03076898865401745,
0.06398389488458633,
-0.056220754981040955,
0.013488017953932285,
0.005574220325797796,
0.0516124963760376,
-0.042573221027851105,
-0.014303325675427914,
0.006650957744568586,
-0.04767775163054466,
-0.017768381163477898,
0.02970554307103157,
0.02945740707218647,
0.040339987725019455,
0.010652166791260242,
-0.0339415967464447,
-0.004869688767939806,
0.013425984419882298,
0.013886810280382633,
0.04909567907452583,
-0.019248342141509056,
0.05501551926136017,
0.0014334343140944839,
0.023448945954442024,
0.0034894265700131655,
0.005764754023402929,
-0.07107352465391159,
0.049769192934036255,
0.07968742400407791,
0.04618892818689346,
0.01704169437289238,
0.06841491907835007,
0.04523183032870293,
-0.06178611144423485,
-0.06859215348958969,
-0.04501914232969284,
-0.04799678549170494,
0.013461432419717312,
-0.04335307702422142,
0.004147432744503021,
0.0005486154113896191,
0.04540907219052315,
0.04700423777103424,
-0.04842216148972511,
-0.017405038699507713,
-0.03576717525720596,
0.031566571444272995,
0.057957712560892105,
0.018503930419683456,
0.03796496242284775,
-0.043494872748851776,
-0.020489025861024857,
0.018645722419023514,
0.04945015907287598,
0.09457564353942871,
-0.04700423777103424,
0.04200604930520058,
0.028907960280776024,
0.05072629079222679,
-0.02472507953643799,
-0.04328218102455139,
0.005516617093235254,
0.024671906605362892,
0.010200203396379948,
-0.03658248484134674,
0.0027826791629195213,
0.024689631536602974,
-0.07678067684173584,
0.002324068918824196,
0.0028978856280446053,
0.0040654586628079414,
0.01695307344198227,
-0.011361129581928253,
-0.0387093722820282,
-0.035129111260175705,
-0.05171883851289749,
0.043565768748521805,
0.02424652874469757,
0.0021368584129959345,
-0.0033498494885861874,
0.0605454295873642,
-0.009615308605134487,
0.028447134420275688,
0.01887613534927368,
-0.07259779423475266,
-0.008977241814136505,
-0.03241732716560364,
-0.04200604930520058,
-0.003278953256085515,
-0.035519037395715714,
0.031761534512043,
-0.024973217397928238,
-0.029244717210531235,
-0.055476345121860504,
-0.0213397815823555,
-0.0339415967464447,
-0.025434043258428574,
0.03555448725819588,
-0.014489428140223026,
-0.10407574474811554,
-0.004586103372275829,
0.04945015907287598,
-0.020701715722680092,
-0.004216113593429327,
-0.005348238628357649,
-0.042076945304870605,
0.008379055187106133,
-0.06334583461284637,
0.020949851721525192,
0.03227553516626358,
-0.04360121488571167,
0.07777322828769684,
0.024760527536273003,
0.013053778558969498,
0.022686811164021492,
-0.04087170958518982,
0.02656838297843933,
0.049521055072546005,
-0.04072991758584976,
-0.04044632986187935,
0.03640524297952652,
0.025132732465863228,
-0.005640685558319092,
-0.026373418048024178,
-0.057036060839891434,
-0.03151340037584305,
-0.034473318606615067,
-0.05313676595687866,
0.029492855072021484,
0.013204433023929596,
-0.03185015544295311,
-0.01009385846555233,
0.057213302701711655,
-0.0183621384203434,
-0.03683061897754669,
0.05434200167655945,
0.00872910488396883,
0.020896680653095245,
0.011387716047465801,
-0.0040078554302453995,
-0.08379940688610077,
-0.00022819741570856422,
-0.016518834978342056,
-0.036688826978206635,
-0.012920848093926907,
-0.006509165279567242,
0.053987521678209305,
-0.044629212468862534,
0.043388526886701584,
0.02282860316336155,
-0.05685882270336151,
-0.022243710234761238,
0.06479920446872711,
-0.035040490329265594,
0.05437745153903961,
-0.009730515070259571,
0.07926204800605774,
-0.045550864189863205,
-0.042325083166360855,
-0.007164956070482731,
-0.021144816651940346,
0.04622437804937363,
-0.01622638665139675,
-0.021197989583015442,
-0.012849952094256878,
-0.000945468433201313,
0.005463445093482733,
-0.06412568688392639,
0.005410272628068924,
0.0026984899304807186,
0.016031421720981598,
0.02764955163002014,
0.0076700919307768345,
-0.045302726328372955,
-0.033480770885944366,
-0.052675940096378326,
0.05072629079222679,
-0.02176515944302082,
-0.046791549772024155,
0.012486608698964119,
0.02805720455944538,
0.0019418935989961028,
-0.034632835537195206,
-0.019638272002339363,
-0.01596938818693161,
-0.013886810280382633,
0.03069809079170227,
0.024140184745192528,
0.006092649418860674,
-0.02896113321185112,
0.00832145195454359,
-0.014737565070390701,
0.011635852977633476,
0.04675609990954399,
-0.0007826285436749458,
-0.013629810884594917,
0.08798228949308395,
-0.04473555460572243,
0.05352669581770897,
-0.009455791674554348,
-0.032062843441963196,
-0.03399476781487465,
-0.05799316242337227,
-0.038177650421857834,
0.005082377698272467,
-0.04360121488571167,
0.009668480604887009,
-0.02433514967560768,
-0.03266546502709389,
-0.02027633786201477,
-0.04583444818854332,
-0.013550052419304848,
0.010200203396379948,
0.012637263163924217,
0.03863847628235817,
-0.03945378214120865,
-0.06412568688392639,
0.04328218102455139,
-0.024033840745687485,
0.023395774886012077,
-0.014374221675097942,
-0.012105540372431278,
-0.01887613534927368,
0.022137364372611046,
-0.01283222809433937,
-0.004838671535253525,
-0.021322058513760567,
0.026515210047364235,
-0.031637467443943024,
0.019797787070274353,
0.02903202921152115,
0.035448141396045685,
-0.03902840614318848,
0.05533454939723015,
0.04824492335319519,
0.056220754981040955,
-0.0004860272747464478,
-0.018752068281173706,
0.03160201758146286,
-0.04072991758584976,
-0.054909173399209976,
-0.0006784995784983039,
0.0020105743315070868,
-0.0029687818605452776,
-0.03956012800335884,
-0.03948923200368881,
-0.0545901395380497,
-0.032488223165273666,
0.00967734307050705,
-0.037114206701517105,
-0.0005699396715499461,
0.005135549698024988,
-0.04278590902686119,
0.008148642256855965,
0.031743813306093216,
0.015756700187921524,
-0.0476423054933548,
-0.024601010605692863,
0.007718833163380623,
0.034721456468105316,
-0.005933132953941822,
-0.01224733330309391,
-0.02167653851211071,
0.0007970293518155813,
0.028340790420770645,
-0.03153112158179283,
-0.009198793210089207,
0.004089829511940479,
0.05143525451421738,
-0.0022708966862410307,
0.023697083815932274,
-0.02018771693110466,
0.026284797117114067,
-0.06713878363370895,
0.01894703321158886,
0.04087170958518982,
0.04154522344470024,
-0.03319718688726425,
0.01579214818775654,
0.01919516921043396,
-0.004763344302773476,
0.010988924652338028,
-0.0550864152610302,
0.025185905396938324,
-0.02936878614127636,
-0.06150252744555473,
-0.05997825786471367,
0.04572810232639313,
0.028393961489200592,
-0.005662840791046619,
-0.039595574140548706,
0.031318433582782745,
-0.05363304167985916,
-0.010138168931007385,
0.008277141489088535,
0.042502325028181076,
0.020329510793089867,
0.11151985824108124,
0.03906385228037834,
-0.05451924353837967,
-0.007390937767922878,
-0.02309446409344673,
-0.0027516621630638838,
0.06962015479803085,
0.004829809535294771,
0.0004228852631058544,
0.04980463907122612,
-0.016146628186106682,
0.0009144513169303536,
0.04842216148972511,
-0.016580868512392044,
0.10946386307477951,
0.010031824000179768,
0.0022465260699391365,
-0.04427472874522209,
-0.01811400055885315,
-0.06972649693489075,
0.020949851721525192,
-0.030077749863266945,
-0.03895751014351845,
0.03303766995668411,
-0.04700423777103424,
0.054058417677879333,
0.00018333336629439145,
0.021534746512770653,
0.0063009075820446014,
0.05685882270336151,
-0.02250957116484642,
-0.008680364117026329,
0.056468892842531204,
0.0008778953924775124,
-0.01323988102376461,
-0.05973012000322342,
0.006442700047045946,
0.013275329023599625,
0.018982481211423874,
-0.030467677861452103,
0.02566445618867874,
0.03814220055937767,
-0.04643706604838371,
0.017919035628437996,
-0.027862239629030228,
0.055228207260370255,
0.034047942608594894,
-0.026586107909679413,
0.04689789190888405,
-0.024264253675937653,
0.012318229302763939,
-0.023466670885682106,
-0.03257684409618378,
-0.029244717210531235,
-0.018503930419683456,
-0.024228805676102638,
-0.03087533265352249,
-0.06157342344522476,
0.015455390326678753,
-0.005919839721173048,
-0.07585902512073517,
-0.018078552559018135,
0.006194563116878271,
-0.02456556260585785,
0.04817402735352516,
0.037114206701517105,
0.0020515613723546267,
0.00548116909340024,
-0.010474925860762596,
-0.008835449814796448,
0.033392149955034256,
-0.02250957116484642,
-0.03707875683903694,
0.004563948605209589,
0.02176515944302082,
0.03452648967504501,
0.032630015164613724,
-0.0026497486978769302,
-0.06809588521718979,
-0.027684999629855156,
0.057886816561222076,
0.013301915489137173,
-0.07897846400737762,
0.024016115814447403,
-0.01853937841951847,
0.00658006127923727,
-0.01360322441905737,
-0.04689789190888405,
-0.02266908809542656,
0.01390453428030014,
-0.07635530084371567,
-0.026408866047859192,
0.020240889862179756,
-0.0032700912561267614,
-0.022296881303191185,
0.06079356372356415,
0.03151340037584305,
-0.06047452986240387,
-0.017077142372727394,
0.032151464372873306,
0.03814220055937767,
0.05008822679519653,
0.02961692400276661,
0.04491279646754265,
-0.017564555630087852,
-0.01274360716342926,
0.0018311181338503957,
-0.026922864839434624,
-0.020949851721525192,
-0.034296076744794846,
-0.017564555630087852,
-0.01108640618622303,
0.029900508001446724,
-0.00041734648402780294,
0.03135388344526291,
-0.019017929211258888,
0.012070092372596264,
0.02548721432685852,
-0.0021667678374797106,
0.027614103630185127,
0.04186425730586052,
-0.04540907219052315,
0.0015752268955111504,
0.005614099558442831,
0.010847131721675396,
-0.0010916920145973563,
0.06575630605220795,
-0.010297685861587524,
-0.0015231623547151685,
-0.012185298837721348,
0.001833333633840084,
0.025948040187358856,
-0.03440242260694504,
0.03782316669821739,
0.021251162514090538,
-0.063523069024086,
0.025363145396113396,
-0.015535148791968822,
-0.00264753308147192,
-0.02275770716369152,
0.017839277163147926,
-0.05178973823785782,
0.031477950513362885,
-0.007510575465857983,
-0.03385297581553459,
0.016421351581811905,
-0.09641894698143005,
0.03277180716395378,
0.04122618958353996,
0.011361129581928253,
-0.0016494464362040162,
0.05551179125905037,
-0.04941470921039581,
0.04586989805102348,
-0.033374425023794174,
-0.05345579981803894,
-0.014205843210220337,
-0.029014304280281067,
0.05763867869973183,
0.0615379773080349,
0.03977281600236893,
-0.024122461676597595,
0.016182078048586845,
0.03828399255871773,
0.01046606432646513
] |
729,669 | allpairspy.allpairs | __get_values | null | @staticmethod
def __get_values(item_list):
return [item.value for item in item_list]
| (item_list) | [
0.06310777366161346,
-0.0922045186161995,
-0.07254742085933685,
-0.02674567513167858,
-0.00929823238402605,
0.00833924114704132,
0.02107127755880356,
-0.05253677815198898,
0.1138414740562439,
0.00891817081719637,
-0.009377779439091682,
0.042354684323072433,
0.02361680194735527,
-0.013028130866587162,
0.0032371459528803825,
0.010606348514556885,
-0.024995626881718636,
0.07021402567625046,
0.0371575728058815,
0.06222391128540039,
0.0068366751074790955,
0.016731513664126396,
-0.01427437737584114,
0.04829423874616623,
-0.0036481418646872044,
-0.02672799676656723,
0.03995057940483093,
-0.01784518174827099,
0.05002661049365997,
0.025331495329737663,
-0.035761069506406784,
-0.015016821213066578,
-0.03549591079354286,
0.0010562154930084944,
-0.011516726575791836,
-0.01018209382891655,
-0.03606158494949341,
0.0359555222094059,
-0.06187036633491516,
0.040940504521131516,
0.019869225099682808,
-0.06137540191411972,
0.050415508449077606,
-0.021035924553871155,
0.026215357705950737,
-0.005471108015626669,
-0.0016649756580591202,
-0.008374596014618874,
0.024041056632995605,
-0.030864473432302475,
0.026445161551237106,
0.048612430691719055,
-0.005493204575031996,
-0.007039963733404875,
-0.04037483036518097,
0.08173958957195282,
-0.0009076161659322679,
0.04808211326599121,
0.024606727063655853,
0.07565861940383911,
0.0043331352062523365,
0.004253587685525417,
-0.011516726575791836,
-0.08916403353214264,
0.040445540100336075,
-0.018490400165319443,
-0.03305645287036896,
0.015635525807738304,
-0.02361680194735527,
0.012656908482313156,
-0.008356918580830097,
-0.02434156835079193,
-0.011587435379624367,
0.02494259551167488,
0.03765253722667694,
0.004414892289787531,
0.017226478084921837,
0.005082208663225174,
0.015255464240908623,
-0.04101121425628662,
-0.009201006963849068,
0.04444059729576111,
0.01234755665063858,
0.022927388548851013,
-0.013797091320157051,
0.00235107378102839,
-0.002930003684014082,
0.006050037685781717,
0.041046567261219025,
0.11037673056125641,
-0.04108192026615143,
0.013036970049142838,
-0.06052689254283905,
0.0622946172952652,
-0.06452195346355438,
0.0014296473236754537,
-0.001230778289027512,
-0.04299106448888779,
-0.06865842640399933,
0.047304313629865646,
0.009625260718166828,
-0.025225430727005005,
-0.022237977012991905,
-0.006001425441354513,
0.0173944104462862,
-0.038076791912317276,
-0.0070841568522155285,
-0.03547823429107666,
0.08937615901231766,
0.0599258691072464,
-0.05455198511481285,
0.011799562722444534,
0.01833130605518818,
-0.012321040965616703,
-0.0539156049489975,
-0.0005289363907650113,
-0.036980800330638885,
0.012727618217468262,
-0.02252081222832203,
-0.049814481288194656,
0.0014848887221887708,
0.018649496138095856,
-0.0034625306725502014,
0.06098650395870209,
0.02840733528137207,
0.004271264653652906,
-0.007521668449044228,
-0.031218018382787704,
0.03569036349654198,
0.04277893900871277,
0.011596273630857468,
-0.02073541097342968,
-0.023917315527796745,
-0.033268578350543976,
0.03987986966967583,
-0.04953164607286453,
0.03272058442234993,
-0.005647880490869284,
0.06017334759235382,
0.014159474521875381,
0.012754133902490139,
0.009784356690943241,
0.03180136904120445,
0.004737502429634333,
-0.01689944788813591,
-0.01824291981756687,
0.047905340790748596,
0.11157878488302231,
-0.05886523425579071,
-0.016245389357209206,
-0.032048847526311874,
0.05006196349859238,
-0.0058555882424116135,
0.011039440520107746,
0.009245200082659721,
-0.0371575728058815,
-0.013081163167953491,
-0.05487017333507538,
-0.009722486138343811,
-0.03906671702861786,
-0.027983082458376884,
0.01485772617161274,
-0.03199581801891327,
0.02181372232735157,
0.010022998787462711,
0.06636038422584534,
0.0012440362479537725,
-0.040091995149850845,
-0.014336246997117996,
-0.031076600775122643,
-0.0029741968028247356,
-0.06222391128540039,
-0.07813343405723572,
-0.0015003563603386283,
0.021407146006822586,
0.04581942409276962,
-0.028000758960843086,
0.023051129654049873,
0.05144079029560089,
0.03286200389266014,
-0.09390153735876083,
-0.03906671702861786,
-0.0075039914809167385,
-0.03790001943707466,
0.04327389970421791,
0.03365748003125191,
-0.00025480095064267516,
0.004657954443246126,
0.01653706468641758,
0.017306024208664894,
0.02002832107245922,
-0.02732902392745018,
-0.013867800123989582,
-0.012983937747776508,
-0.03896065428853035,
-0.018021954223513603,
-0.048471011221408844,
0.016749192029237747,
-0.050627633929252625,
0.02218494564294815,
-0.04327389970421791,
-0.07060292363166809,
-0.0347711443901062,
0.03846568986773491,
-0.030882149934768677,
0.022821325808763504,
0.019869225099682808,
-0.018543431535363197,
-0.027894696220755577,
-0.02386428415775299,
0.010836152359843254,
0.025985553860664368,
-0.029167458415031433,
0.023917315527796745,
0.00827737059444189,
-0.04302641749382019,
-0.03058163821697235,
-0.04949629306793213,
-0.01408876571804285,
-0.0010700258426368237,
0.02108895592391491,
-0.08675992488861084,
-0.01786285825073719,
0.006673160940408707,
0.043097127228975296,
0.003276919713243842,
-0.017809826880693436,
-0.035053979605436325,
-0.03821820765733719,
0.0011252672411501408,
0.004847985226660967,
-0.003972961101680994,
0.010403059422969818,
0.021018246188759804,
-0.017650730907917023,
-0.004470133688300848,
0.040799085050821304,
-0.010694734752178192,
-0.024995626881718636,
0.019462648779153824,
-0.02420015074312687,
-0.011834916658699512,
0.019816193729639053,
0.040905147790908813,
-0.01955103501677513,
0.061905719339847565,
0.026763351634144783,
0.07283025979995728,
-0.0032879679929465055,
-0.0015323963016271591,
0.025207754224538803,
0.034947916865348816,
0.03694544732570648,
0.02851339988410473,
-0.008162468671798706,
-0.04337996244430542,
0.0025013303384184837,
0.030175060033798218,
0.04359209164977074,
-0.04606690630316734,
0.026922447606921196,
-0.0731838047504425,
0.03645048290491104,
0.018313627690076828,
-0.06077437475323677,
-0.0008612133678980172,
0.024889564141631126,
0.044405244290828705,
-0.050274088978767395,
0.053526703268289566,
0.08902261406183243,
-0.01210891455411911,
-0.029397262260317802,
-0.015653202310204506,
-0.012117752805352211,
0.048965975642204285,
0.005095466505736113,
0.0018859412521123886,
-0.037475764751434326,
-0.003639303147792816,
0.015432236716151237,
0.02973312884569168,
-0.030351832509040833,
0.007747053634375334,
0.00946616567671299,
-0.05165291577577591,
0.03655654564499855,
0.04649116098880768,
-0.023280933499336243,
0.01642216183245182,
-0.004905436187982559,
0.0002655730058904737,
0.019851548597216606,
-0.05978444963693619,
0.03669796511530876,
0.020346511155366898,
-0.023634478449821472,
-0.014097604900598526,
0.03871317207813263,
0.03417011722922325,
0.009740163572132587,
0.04136475920677185,
-0.04733966663479805,
0.00755702331662178,
-0.01870252750813961,
0.005930716171860695,
0.046314388513565063,
0.010509123094379902,
-0.04253145679831505,
0.01031467318534851,
-0.021495532244443893,
0.045253753662109375,
0.004010525532066822,
0.028725527226924896,
0.00959874503314495,
-0.058547042310237885,
-0.07763846963644028,
0.0707796961069107,
0.005581590812653303,
0.03526610881090164,
-0.022025849670171738,
-0.03606158494949341,
0.019038395956158638,
0.06420376151800156,
0.025490589439868927,
0.05091047286987305,
-0.0050645312294363976,
0.025455236434936523,
0.0004079577047377825,
0.005820233374834061,
-0.019710130989551544,
-0.021760690957307816,
-0.010093707591295242,
0.039384905248880386,
0.08449724316596985,
0.02110663242638111,
0.03328625485301018,
0.02602090686559677,
0.03213723376393318,
-0.05610758066177368,
-0.05487017333507538,
-0.0371575728058815,
-0.03452366217970848,
0.04048089683055878,
-0.020045997574925423,
-0.00043557840399444103,
0.007667506113648415,
0.04373350739479065,
0.06388556957244873,
-0.02239707112312317,
0.020045997574925423,
-0.03148317709565163,
0.017350217327475548,
0.060845084488391876,
0.0419657826423645,
0.014300893060863018,
-0.03581410273909569,
-0.03418779745697975,
0.01324909646064043,
0.046561866998672485,
0.10351795703172684,
-0.01343470811843872,
0.026056261733174324,
-0.011242728680372238,
0.04210720211267471,
-0.039844512939453125,
-0.02731134742498398,
-0.01677570678293705,
0.04924881085753441,
-0.01808382384479046,
-0.016970157623291016,
0.008993299677968025,
0.024659760296344757,
-0.03726363554596901,
0.0491781011223793,
-0.027293669059872627,
0.009280554950237274,
0.009899258613586426,
-0.030652346089482307,
0.037440408021211624,
-0.0383596271276474,
-0.05900665000081062,
-0.0047286637127399445,
-0.005157336592674255,
0.028743203729391098,
0.010579831898212433,
0.04875384643673897,
0.00965177733451128,
-0.02442995458841324,
-0.0057716211304068565,
-0.03093518316745758,
-0.0033166934736073017,
-0.05681467056274414,
-0.04330925643444061,
-0.021743014454841614,
-0.046208322048187256,
-0.001756676472723484,
-0.03572571650147438,
0.036026228219270706,
-0.038041435182094574,
-0.0051484983414411545,
-0.05504694581031799,
-0.029308876022696495,
0.026551224291324615,
-0.05593080818653107,
-0.08647709339857101,
-0.023881960660219193,
0.02351073920726776,
-0.018004275858402252,
-0.020116707310080528,
0.03630906715989113,
-0.038041435182094574,
-0.00018464436288923025,
-0.08053753525018692,
0.01727950945496559,
-0.032066527754068375,
-0.007450959645211697,
0.06791598349809647,
0.028973007574677467,
-0.0010589775629341602,
0.01786285825073719,
-0.04412240907549858,
-0.005890942644327879,
0.07275954633951187,
-0.040233414620161057,
-0.06430982798337936,
0.018260596320033073,
0.047516439110040665,
0.012188461609184742,
-0.016758030280470848,
0.019745485857129097,
-0.026568902656435966,
-0.10733624547719955,
-0.07707279920578003,
0.03825356438755989,
0.001921295770443976,
-0.017067382112145424,
-0.011472533456981182,
0.013876639306545258,
0.038076791912317276,
-0.021955139935016632,
0.07601216435432434,
0.028478045016527176,
0.007234413176774979,
0.019003041088581085,
-0.050875116139650345,
-0.05193575099110603,
-0.002359912497922778,
0.01628074422478676,
-0.07806272059679031,
-0.04599619656801224,
0.037086863070726395,
0.08216384053230286,
-0.024023378267884254,
0.019268199801445007,
0.009669453836977482,
-0.08039611577987671,
-0.042743582278490067,
0.05285497009754181,
-0.0058732652105391026,
0.07268884032964706,
0.012321040965616703,
0.003376354230567813,
-0.0683402344584465,
-0.02290971204638481,
0.0026582160498946905,
-0.047905340790748596,
0.036026228219270706,
-0.009607584215700626,
0.03934955224394798,
0.025844134390354156,
-0.008971203118562698,
-0.020682379603385925,
-0.07933548837900162,
0.03340999782085419,
0.007694021798670292,
-0.026197679340839386,
0.0024018960539251566,
-0.03574339300394058,
-0.049319520592689514,
-0.02218494564294815,
-0.02960938960313797,
0.0305462833493948,
0.00994345173239708,
-0.04772856831550598,
-0.006545000709593296,
0.03222562000155449,
-0.047622501850128174,
-0.005997005850076675,
-0.032773617655038834,
0.0010070506250485778,
-0.006080972962081432,
0.028831589967012405,
-0.03197814151644707,
-0.009430811740458012,
-0.020929859951138496,
-0.00881652720272541,
0.004529794678092003,
0.019869225099682808,
0.044864851981401443,
0.04281429201364517,
-0.02266222983598709,
0.041400112211704254,
0.011896787211298943,
0.019109103828668594,
-0.010509123094379902,
0.009492681361734867,
-0.0016583467368036509,
-0.05366812273859978,
-0.07862839847803116,
-0.00904191192239523,
0.005594848655164242,
0.033250901848077774,
-0.024518340826034546,
-0.01940961740911007,
-0.014362763613462448,
-0.05430450290441513,
0.019692452624440193,
-0.020523283630609512,
0.05214788019657135,
0.018189886584877968,
-0.03105892241001129,
-0.045713361352682114,
-0.01953335851430893,
-0.025225430727005005,
0.024730468168854713,
-0.06727959960699081,
0.000897672725841403,
-0.014548374339938164,
0.042602166533470154,
-0.007031125016510487,
-0.06607755273580551,
-0.03151853010058403,
0.013531932607293129,
0.0074730562046170235,
0.012736456468701363,
0.03178368881344795,
-0.00596165144816041,
-0.022361718118190765,
0.0743858590722084,
0.055188365280628204,
0.039844512939453125,
0.0037718825042247772,
0.004355231765657663,
0.018313627690076828,
-0.034700434654951096,
-0.06554723531007767,
0.012930906377732754,
0.0056876540184021,
0.0017489426536485553,
0.018985362723469734,
-0.04589013382792473,
-0.002015206264331937,
-0.043450672179460526,
0.02121269702911377,
-0.05918342247605324,
-0.0013699866831302643,
-0.008957944810390472,
-0.0371222198009491,
-0.028973007574677467,
0.04207184910774231,
-0.004741921555250883,
-0.07855768501758575,
0.04051624983549118,
-0.05582474544644356,
0.02913210354745388,
-0.020045997574925423,
0.07869910448789597,
-0.03340999782085419,
-0.03367515653371811,
0.010190933011472225,
-0.02803611382842064,
0.005833491683006287,
0.006014683283865452,
0.05317315831780434,
0.014654438011348248,
0.031942784786224365,
-0.046561866998672485,
-0.008281790651381016,
-0.05083976313471794,
-0.02983919344842434,
0.015511784702539444,
0.009413134306669235,
-0.04659722372889519,
0.03247310221195221,
0.02347538433969021,
0.009961128234863281,
0.022379394620656967,
0.000041741779568837956,
0.04444059729576111,
0.013911993242800236,
0.000569538795389235,
-0.0539156049489975,
0.014521858654916286,
0.03512468934059143,
-0.028106823563575745,
-0.05281961336731911,
0.027594182640314102,
-0.07229994237422943,
-0.013063485734164715,
0.008520432747900486,
0.044758789241313934,
0.04599619656801224,
0.04217791184782982,
0.05186504125595093,
-0.05002661049365997,
0.011613951064646244,
-0.04337996244430542,
-0.0013500996865332127,
0.04299106448888779,
-0.04387492686510086,
0.009448488242924213,
0.04030412435531616,
0.004218233283609152,
0.051016535609960556,
0.020912183448672295,
-0.03022809326648712,
0.05430450290441513,
0.013708705082535744,
0.004456875845789909,
-0.027187606319785118,
0.00028753146762028337,
-0.031076600775122643,
0.04772856831550598,
-0.019126782193779945,
-0.05419844016432762,
0.013929670676589012,
-0.050875116139650345,
0.0018472722731530666,
-0.026781029999256134,
0.036379773169755936,
-0.002673683688044548,
0.0779213085770607,
-0.029786162078380585,
-0.010898022912442684,
0.043910279870033264,
-0.008051985874772072,
-0.043804217129945755,
-0.0128867132589221,
0.00008168821659637615,
0.012966260313987732,
0.01963942125439644,
-0.051370080560445786,
0.029397262260317802,
0.016872933134436607,
-0.015909522771835327,
-0.06657250970602036,
-0.04472343623638153,
0.04893061891198158,
-0.01667848229408264,
-0.04719825088977814,
0.04733966663479805,
-0.051582206040620804,
0.057733889669179916,
0.0012970679672434926,
-0.019480327144265175,
0.013443546369671822,
-0.01822524145245552,
-0.006390324793756008,
-0.002583087654784322,
-0.035053979605436325,
0.012250332161784172,
-0.0069692544639110565,
-0.04854172095656395,
0.024058733135461807,
-0.022485457360744476,
-0.036008551716804504,
0.05596616491675377,
0.05985515937209129,
0.020222770050168037,
0.06865842640399933,
0.03680402785539627,
0.014910757541656494,
0.045359816402196884,
-0.004280103370547295,
0.001996424049139023,
0.007481894921511412,
0.0335514135658741,
0.03920813277363777,
0.0149814672768116,
0.03683938458561897,
-0.028955331072211266,
-0.03008667379617691,
0.058334916830062866,
-0.011887948960065842,
-0.05373883247375488,
-0.01126924529671669,
-0.0076763443648815155,
-0.010685895569622517,
-0.040339477360248566,
-0.028460368514060974,
-0.054127730429172516,
-0.019621744751930237,
-0.0275765061378479,
0.0011153238592669368,
0.0587238147854805,
0.007720537483692169,
-0.010844990611076355,
0.03561965376138687,
0.08103249967098236,
-0.048965975642204285,
-0.026321420446038246,
0.022078881040215492,
0.02301577478647232,
0.04401634633541107,
-0.020222770050168037,
0.015299657359719276,
0.0029653580859303474,
-0.02925584465265274,
-0.002797424327582121,
-0.0033984507899731398,
0.04804675653576851,
-0.040339477360248566,
-0.040091995149850845,
-0.004675631877034903,
-0.02374054305255413,
-0.047763921320438385,
0.02745276503264904,
-0.01126924529671669,
0.026321420446038246,
0.029185134917497635,
0.015847651287913322,
0.037086863070726395,
0.029096748679876328,
-0.02685173787176609,
0.05059228092432022,
-0.006350550800561905,
0.006253326311707497,
-0.015900684520602226,
0.02446530945599079,
0.02146017737686634,
-0.011737692169845104,
-0.00533410906791687,
-0.018508078530430794,
0.01882626861333847,
-0.019710130989551544,
-0.0019522309303283691,
0.023457705974578857,
-0.05430450290441513,
0.043097127228975296,
0.026674965396523476,
-0.018074985593557358,
0.0017378943739458919,
0.009139136411249638,
-0.0515114963054657,
-0.020293479785323143,
0.033003419637680054,
0.004803792107850313,
-0.029167458415031433,
-0.05900665000081062,
0.011322276666760445,
0.07777988910675049,
-0.006182617042213678,
0.007353734690696001,
0.09913399815559387,
-0.013125356286764145,
0.016006747260689735,
-0.031218018382787704,
-0.050981178879737854,
-0.025561299175024033,
-0.025119367986917496,
0.04977912828326225,
-0.00284382700920105,
0.05334993079304695,
0.0078089237213134766,
0.02697547897696495,
-0.0038889944553375244,
0.0060898116789758205
] |
729,670 | allpairspy.allpairs | __get_working_item_matrix | null | def __get_working_item_matrix(self, parameter_matrix):
return [
[
Item(f"a{param_idx:d}v{value_idx:d}", value)
for value_idx, value in enumerate(value_list)
]
for param_idx, value_list in enumerate(parameter_matrix)
]
| (self, parameter_matrix) | [
0.07411634176969528,
-0.04497181624174118,
-0.041102148592472076,
-0.0069287968799471855,
-0.010214528068900108,
-0.029806900769472122,
-0.005303362384438515,
-0.0042771161533892155,
0.05030568316578865,
0.05567441135644913,
-0.025658337399363518,
0.04929468780755997,
-0.03688386082649231,
0.029231680557131767,
0.0014914345229044557,
-0.009447567164897919,
0.021074000746011734,
-0.016228200867772102,
0.0017049633897840977,
0.05009651184082031,
0.0020481350366026163,
0.032299526035785675,
0.037790268659591675,
0.08185567706823349,
0.005835006013512611,
-0.03489673510193825,
-0.003926318138837814,
-0.052362531423568726,
0.0571734718978405,
-0.04849286377429962,
-0.08046120405197144,
-0.027087675407528877,
0.0029414703603833914,
-0.007900571450591087,
0.0043010832741856575,
0.03813888877630234,
-0.011696157976984978,
0.017831847071647644,
0.008785191923379898,
0.029667453840374947,
0.038278333842754364,
-0.042078278958797455,
0.05602302774786949,
-0.01659425161778927,
0.011208091862499714,
0.005338224116712809,
-0.0011014172341674566,
-0.002309598959982395,
0.025431735441088676,
-0.005669411737471819,
0.04277551546692848,
-0.03106192871928215,
0.02693079598248005,
0.015530964359641075,
-0.08785191923379898,
0.027802342548966408,
0.012070923112332821,
-0.013683284632861614,
0.07439523190259933,
-0.023950105533003807,
0.002721404889598489,
-0.005638907663524151,
-0.017709830775856972,
-0.03660496696829796,
0.0030547715723514557,
-0.03995170444250107,
-0.019139166921377182,
-0.0034099267795681953,
0.02595466375350952,
0.04099756106734276,
0.003945928066968918,
-0.010406268760561943,
0.00956086814403534,
-0.03156742453575134,
-0.012227801606059074,
0.0025492743588984013,
0.009508575312793255,
0.022276736795902252,
-0.0004270579374860972,
-0.024438172578811646,
-0.036256346851587296,
0.05117722973227501,
-0.025414304807782173,
-0.014711709693074226,
-0.05630192160606384,
0.015984168276190758,
-0.010205812752246857,
0.04525071009993553,
-0.022363891825079918,
-0.03073074109852314,
0.0052031343802809715,
0.007739335764199495,
-0.028551872819662094,
0.029702315106987953,
0.010022788308560848,
0.0036910006310790777,
-0.013212649151682854,
-0.045599330216646194,
-0.046924080699682236,
0.012070923112332821,
-0.011765881441533566,
-0.024821652099490166,
-0.044832367449998856,
0.004850158002227545,
-0.01283788401633501,
0.008227401413023472,
-0.028551872819662094,
-0.04200855642557144,
0.0228170957416296,
0.041102148592472076,
-0.06937512755393982,
0.10807180404663086,
-0.03918474540114403,
-0.014668133109807968,
-0.0324389711022377,
0.04221772775053978,
-0.021509775891900063,
-0.0108594736084342,
-0.00863267108798027,
0.013753008097410202,
0.0335196889936924,
0.010223244316875935,
0.0063099986873567104,
0.023601487278938293,
-0.018616240471601486,
0.018546516075730324,
-0.012009914964437485,
0.012907608412206173,
0.006615040358155966,
-0.07404661923646927,
-0.030085796490311623,
-0.04047463461756706,
-0.010964058339595795,
0.03908015787601471,
-0.00452332803979516,
-0.0632394328713417,
0.029754607006907463,
-0.056545957922935486,
-0.009822332300245762,
0.043995682150125504,
0.013482828624546528,
-0.01319521851837635,
-0.012890176847577095,
0.04040490835905075,
0.0015513532562181354,
-0.05229280889034271,
0.07153656333684921,
0.0863179937005043,
-0.0665513128042221,
-0.04814424365758896,
-0.02154463715851307,
0.026477592065930367,
-0.041032422333955765,
-0.037685684859752655,
0.0035079759545624256,
-0.017247911542654037,
0.04305441305041313,
-0.04971303045749664,
0.044832367449998856,
-0.012742014601826668,
0.0006068144575692713,
-0.04469291865825653,
-0.06738799810409546,
0.07348882406949997,
-0.021962979808449745,
0.049782752990722656,
-0.04239203780889511,
-0.0681549608707428,
-0.03545452281832695,
-0.07788142561912537,
0.025274857878684998,
-0.04019573703408241,
-0.0423223115503788,
-0.04497181624174118,
0.01934833824634552,
0.035315077751874924,
-0.027070242911577225,
0.029336266219615936,
0.06351833045482635,
-0.011835605837404728,
-0.0261115413159132,
0.0063797226175665855,
-0.008366849273443222,
-0.050584577023983,
-0.00981361698359251,
-0.0012179866898804903,
-0.006972374394536018,
0.01582729071378708,
0.010885619558393955,
-0.0036190981045365334,
0.008401711471378803,
0.010040218941867352,
0.03604717552661896,
0.03221236914396286,
-0.05135153606534004,
0.011582856997847557,
-0.006893935147672892,
0.031236236914992332,
-0.004980890080332756,
0.022782232612371445,
-0.018075881525874138,
-0.049678169190883636,
-0.005691200494766235,
0.08241346478462219,
-0.04640115052461624,
-0.027174828574061394,
-0.04033518582582474,
-0.026146404445171356,
-0.015252068638801575,
0.022276736795902252,
-0.017247911542654037,
0.004298904445022345,
-0.0023379242047667503,
-0.026407867670059204,
0.0072774155996739864,
-0.007447367534041405,
-0.01983640529215336,
0.019156599417328835,
0.011547994799911976,
-0.044274576008319855,
0.02924911119043827,
-0.0423223115503788,
-0.012663574889302254,
-0.01952264830470085,
0.008183824829757214,
0.003684464143589139,
0.01830248348414898,
-0.044344302266836166,
-0.05577899515628815,
0.0610082745552063,
-0.039010435342788696,
-0.046087395399808884,
0.011216807179152966,
-0.031968336552381516,
-0.011199376545846462,
0.006510454695671797,
-0.010850757360458374,
-0.040056291967630386,
-0.05710374563932419,
-0.006776276510208845,
-0.03545452281832695,
0.0015132231637835503,
0.06135689467191696,
0.05410562455654144,
-0.006205413024872541,
-0.02320057526230812,
0.02687850408256054,
0.058463361114263535,
-0.046645183116197586,
-0.008340703323483467,
0.01743093691766262,
0.043507616966962814,
0.009613160975277424,
-0.0044448887929320335,
0.015408947132527828,
-0.031096789985895157,
-0.013421820476651192,
0.00013931130524724722,
-0.005917802918702364,
-0.01079846452921629,
0.05724319443106651,
-0.03772054612636566,
0.044344302266836166,
-0.037964578717947006,
0.007334066554903984,
0.012585136108100414,
-0.038278333842754364,
0.10305169224739075,
0.011887898668646812,
0.06644672900438309,
0.02736656926572323,
0.018267620354890823,
-0.033885739743709564,
0.020080437883734703,
-0.017953863367438316,
0.04622684419155121,
0.017518090084195137,
-0.024647343903779984,
-0.0929417535662651,
-0.00416599353775382,
-0.022991403937339783,
0.020185023546218872,
-0.01148698665201664,
0.020272178575396538,
0.01206220779567957,
-0.03203805908560753,
0.053896453231573105,
0.03799943998456001,
0.016132330521941185,
-0.005024467129260302,
-0.030539000406861305,
0.042461760342121124,
0.011138368397951126,
-0.037371926009655,
-0.0008067255257628858,
0.005595330614596605,
-0.03995170444250107,
0.0038413426373153925,
0.04190396890044212,
0.047900211066007614,
0.028272978961467743,
0.03545452281832695,
0.0025754207745194435,
-0.015661695972085,
-0.0280463770031929,
0.0318986140191555,
0.013753008097410202,
0.015426378697156906,
-0.01934833824634552,
-0.027418863028287888,
0.038836125284433365,
0.05762667581439018,
-0.0023226721677929163,
-0.03315364196896553,
0.011922759935259819,
-0.0785786584019661,
-0.049991924315690994,
0.031741734594106674,
0.08380793780088425,
0.05957894027233124,
0.021474912762641907,
-0.026808779686689377,
-0.022172151133418083,
0.0016450445400550961,
0.025762923061847687,
0.0263904370367527,
0.018755687400698662,
-0.02891792356967926,
-0.014546115882694721,
0.0014053692575544119,
0.02590237185359001,
0.01275072991847992,
-0.013482828624546528,
0.023880382999777794,
0.020376764237880707,
-0.03160228580236435,
0.002584136324003339,
0.04364706203341484,
-0.024438172578811646,
-0.016315355896949768,
0.010266820900142193,
-0.04030032455921173,
-0.019278615713119507,
0.002270379336550832,
0.028447287157177925,
-0.008227401413023472,
0.0018618418835103512,
0.05612761527299881,
-0.022398753091692924,
-0.04315899685025215,
-0.012210370972752571,
0.018267620354890823,
0.010519569739699364,
0.04430944100022316,
0.011757166124880314,
0.07955478876829147,
-0.03758109733462334,
-0.04082325100898743,
-0.03453068435192108,
0.0615660659968853,
0.10019302368164062,
0.015060328878462315,
0.0024969815276563168,
-0.00698108971118927,
0.017709830775856972,
-0.034670133143663406,
0.008584735915064812,
-0.0054776715114712715,
0.08875832706689835,
-0.011007635854184628,
0.016080038622021675,
-0.019818974658846855,
0.027628034353256226,
0.023061128333210945,
0.019313476979732513,
0.004606124944984913,
-0.054767999798059464,
-0.003412105841562152,
-0.052188221365213394,
-0.06135689467191696,
0.006902650464326143,
-0.07899700105190277,
0.054942309856414795,
-0.024595050141215324,
-0.028377564623951912,
-0.011635149829089642,
0.058358773589134216,
-0.027017951011657715,
-0.020254747942090034,
-0.035036180168390274,
-0.0697934702038765,
-0.004410026594996452,
-0.0261115413159132,
0.01649838127195835,
0.03254355862736702,
-0.026948226615786552,
0.027889497578144073,
0.011112221516668797,
-0.038278333842754364,
-0.07327965646982193,
-0.03660496696829796,
-0.08527214080095291,
-0.054454244673252106,
-0.015269500203430653,
-0.026076680049300194,
-0.10598009079694748,
-0.021631792187690735,
0.07181545346975327,
-0.04699380323290825,
-0.021806100383400917,
0.031201375648379326,
0.0030286251567304134,
0.012567704543471336,
-0.028517011553049088,
-0.004723783582448959,
-0.016080038622021675,
0.01973181962966919,
0.014694279059767723,
0.06146148219704628,
0.016855714842677116,
0.03017294965684414,
-0.006501738913357258,
0.011983768083155155,
0.025850078091025352,
-0.021997841075062752,
0.008567305281758308,
-0.033554550260305405,
0.02292168140411377,
-0.03953336179256439,
-0.003969895653426647,
0.004161635879427195,
-0.047900211066007614,
-0.006384080275893211,
-0.05783584713935852,
-0.02700052037835121,
-0.03161971643567085,
0.010048934258520603,
-0.05745236575603485,
0.031183945015072823,
0.04695894196629524,
0.06128717213869095,
0.03017294965684414,
0.05100291967391968,
0.02374093420803547,
0.018110742792487144,
0.01802358776330948,
-0.037127893418073654,
-0.0038914564065635204,
-0.010929197072982788,
0.022695079445838928,
-0.00461919791996479,
0.032526127994060516,
0.03824347257614136,
-0.06658617407083511,
0.03224723041057587,
0.03341510519385338,
-0.04821396991610527,
-0.06777147948741913,
0.023061128333210945,
0.002477371832355857,
0.12194682657718658,
0.014973173849284649,
0.00981361698359251,
0.0002088988694595173,
0.005473313853144646,
-0.03039955161511898,
-0.010136089287698269,
-0.02396753616631031,
-0.0017452724277973175,
0.035646263509988785,
0.02644273079931736,
0.031131651252508163,
-0.003351097460836172,
-0.09628848731517792,
0.009883340448141098,
0.008031303994357586,
0.007264342624694109,
0.01709974743425846,
0.008637028746306896,
0.030486706644296646,
-0.07251269370317459,
-0.04594794660806656,
0.026128973811864853,
0.02544916607439518,
-0.05044512823224068,
0.016480950638651848,
0.0076957582496106625,
-0.06721369177103043,
-0.03820861130952835,
-0.021527206525206566,
-0.04535529389977455,
0.001896703732199967,
0.03341510519385338,
0.07899700105190277,
0.030817894265055656,
0.0015927518252283335,
0.03029496595263481,
-0.004998320713639259,
0.02335745468735695,
0.049503859132528305,
0.07446496188640594,
-0.02353176288306713,
-0.017134610563516617,
0.02095198445022106,
0.003987326752394438,
-0.03282245248556137,
0.03045184537768364,
-0.05410562455654144,
-0.050549715757369995,
-0.04281038045883179,
-0.0094824293628335,
-0.014990605413913727,
-0.026948226615786552,
-0.01261128205806017,
-0.08436573296785355,
0.00580014381557703,
-0.07934562116861343,
-0.00040063916821964085,
0.028726182878017426,
0.01835477538406849,
0.034722425043582916,
-0.00945628248155117,
0.014485107734799385,
-0.02259049378335476,
0.008724183775484562,
0.031427979469299316,
-0.03942877799272537,
-0.029336266219615936,
-0.006262063980102539,
0.0390452966094017,
-0.03475728631019592,
-0.024542758241295815,
0.007133610546588898,
0.04525071009993553,
0.0038696678820997477,
0.047691039741039276,
0.09879854321479797,
-0.03897557407617569,
-0.006593251600861549,
0.03327565640211105,
0.010214528068900108,
0.022015271708369255,
0.006227201782166958,
-0.05933490768074989,
0.025379443541169167,
0.03744165226817131,
-0.017613960430026054,
-0.012672290205955505,
-0.029928917065262794,
-0.0428801029920578,
0.006022388581186533,
-0.028952784836292267,
-0.04023060202598572,
-0.010519569739699364,
0.027715187519788742,
-0.008192540146410465,
0.015897013247013092,
-0.03127110004425049,
-0.010824611410498619,
-0.012742014601826668,
0.05678999051451683,
0.005325151141732931,
-0.00802694633603096,
0.026181265711784363,
-0.025274857878684998,
0.007029024884104729,
-0.0030722024384886026,
0.05849822238087654,
-0.0434378944337368,
0.007307920139282942,
0.05124695226550102,
-0.08143733441829681,
0.0016940691275522113,
-0.05525606870651245,
0.007342781871557236,
-0.08276208490133286,
0.03583800420165062,
-0.07488330453634262,
-0.036256346851587296,
-0.007399432361125946,
0.021300604566931725,
0.028551872819662094,
0.007368928287178278,
-0.005708631593734026,
0.028185823932290077,
0.022834526374936104,
-0.050933193415403366,
0.03045184537768364,
-0.03758109733462334,
-0.013831447809934616,
-0.004906808491796255,
0.016263063997030258,
0.0010649212636053562,
0.0032813737634569407,
0.0016635649371892214,
0.011347539722919464,
-0.012497981078922749,
-0.013927318155765533,
-0.008340703323483467,
0.007856994867324829,
0.0472726970911026,
0.008101027458906174,
0.029388558119535446,
0.0703861191868782,
0.025013392791152,
-0.049608442932367325,
0.010763603262603283,
-0.02781977318227291,
-0.020812537521123886,
0.1154625192284584,
0.014058049768209457,
0.008846200071275234,
0.031427979469299316,
-0.04957358166575432,
-0.029650021344423294,
-0.021300604566931725,
-0.046087395399808884,
0.09970495104789734,
0.03974253311753273,
0.01522592268884182,
-0.01297733187675476,
0.02649502269923687,
-0.05424507334828377,
-0.01101635117083788,
-0.03327565640211105,
-0.013970895670354366,
0.013683284632861614,
-0.02238132245838642,
0.05933490768074989,
-0.003457861952483654,
0.04605253413319588,
0.03329308703541756,
0.07209435105323792,
0.024995962157845497,
-0.01719561778008938,
0.00495910132303834,
0.0031484628561884165,
-0.01072002574801445,
0.0032661217264831066,
0.03254355862736702,
0.023514332249760628,
-0.005943949334323406,
-0.0036604965571314096,
-0.027854636311531067,
0.023287730291485786,
-0.08004286140203476,
0.006279494613409042,
-0.06414584815502167,
0.02401982992887497,
0.0406838059425354,
-0.036465518176555634,
-0.0007195708458311856,
-0.026373006403446198,
0.00046246452257037163,
0.022729940712451935,
0.02159692905843258,
-0.03758109733462334,
0.04096269980072975,
-0.027418863028287888,
0.014598408713936806,
-0.041415903717279434,
-0.0021679727360606194,
0.005325151141732931,
-0.052257947623729706,
0.009412705898284912,
-0.027837205678224564,
0.05863766744732857,
0.05595330521464348,
0.015740135684609413,
0.05821932479739189,
0.06972374767065048,
-0.02919681742787361,
-0.001902150921523571,
0.02396753616631031,
0.0511075034737587,
0.031044496223330498,
-0.03156742453575134,
0.028133530169725418,
0.01005765050649643,
0.002584136324003339,
0.011495701968669891,
-0.034722425043582916,
-0.03346739709377289,
0.05487258732318878,
0.016193339601159096,
-0.01352640613913536,
0.03677927330136299,
-0.0035537320654839277,
-0.03618662431836128,
-0.017082316800951958,
-0.028011513873934746,
-0.04580850154161453,
0.053129494190216064,
0.0005948306643404067,
-0.008985647931694984,
0.10751401633024216,
-0.002159257186576724,
-0.009316835552453995,
0.03012065775692463,
0.057522088289260864,
-0.04720297455787659,
-0.003211650066077709,
0.008253548294305801,
0.04462319612503052,
0.03318850323557854,
-0.01664654351770878,
0.02161436155438423,
0.0005724973161704838,
-0.002610282739624381,
-0.04803965985774994,
0.04647087678313255,
0.007342781871557236,
0.011556711047887802,
-0.003453504294157028,
-0.00525106955319643,
0.01181817427277565,
-0.0362912081182003,
0.0197841115295887,
-0.005473313853144646,
-0.010824611410498619,
-0.001835695467889309,
-0.003684464143589139,
0.05529092997312546,
0.04172966256737709,
-0.037406787276268005,
0.04486722871661186,
-0.020254747942090034,
0.007900571450591087,
0.01093791238963604,
-0.0173089187592268,
-0.04678463190793991,
0.02429872564971447,
-0.01308191753923893,
-0.0021647042594850063,
0.04270579293370247,
0.014833726920187473,
0.017030024901032448,
-0.018372206017374992,
-0.04640115052461624,
0.0670393779873848,
-0.01670755259692669,
0.07049070298671722,
-0.023183144629001617,
0.07153656333684921,
-0.027628034353256226,
0.04612225666642189,
0.0012223443482071161,
0.01573142036795616,
-0.007007236126810312,
-0.08645744621753693,
0.036256346851587296,
-0.010231959633529186,
-0.04500667750835419,
0.006567105185240507,
0.043019551783800125,
-0.016263063997030258,
0.07599887996912003,
-0.027070242911577225,
-0.04490208998322487,
-0.07334937900304794,
-0.011059928685426712,
0.028726182878017426,
-0.005900371819734573,
0.07132738828659058,
-0.10298196971416473,
0.023008836433291435,
0.005817574914544821,
-0.005917802918702364
] |
729,671 | allpairspy.allpairs | __resort_working_array | null | def __resort_working_array(self, chosen_item_list, num):
for item in self.__working_item_matrix[num]:
data_node = self.__pairs.get_node_info(item)
new_combs = [
# numbers of new combinations to be created if this item is
# appended to array
{key(z) for z in combinations(chosen_item_list + [item], i + 1)}
- self.__pairs.get_combs()[i]
for i in range(0, self.__n)
]
# weighting the node node that creates most of new pairs is the best
weights = [-len(new_combs[-1])]
# less used outbound connections most likely to produce more new
# pairs while search continues
weights.extend(
[len(data_node.out)]
+ [len(x) for x in reversed(new_combs[:-1])]
+ [-data_node.counter] # less used node is better
)
# otherwise we will prefer node with most of free inbound
# connections; somehow it works out better ;)
weights.append(-len(data_node.in_))
item.set_weights(weights)
self.__working_item_matrix[num].sort(key=cmp_to_key(cmp_item))
| (self, chosen_item_list, num) | [
0.03783199191093445,
0.01029890961945057,
-0.08731015771627426,
0.03826601058244705,
0.011429167352616787,
-0.05598845332860947,
-0.014123701490461826,
-0.01528108585625887,
0.012478046119213104,
-0.02652941271662712,
-0.0363490916788578,
0.014548678882420063,
-0.0031782849691808224,
-0.001193552277982235,
-0.018644733354449272,
0.0016253107460215688,
0.051612094044685364,
0.017008120194077492,
-0.024106139317154884,
0.08875688910484314,
-0.006501242984086275,
-0.008707506582140923,
-0.007129666395485401,
0.07920847088098526,
0.012062111869454384,
0.0361320823431015,
0.030272826552391052,
0.00487819267436862,
0.0025769879575818777,
-0.036873530596494675,
-0.02381679229438305,
0.011610008776187897,
0.045969847589731216,
0.013870524242520332,
-0.0029364097863435745,
0.046114519238471985,
0.029025021940469742,
0.03188231214880943,
0.020471230149269104,
0.030146237462759018,
0.025209270417690277,
-0.07465127110481262,
0.01570606231689453,
-0.02242431603372097,
0.02875375933945179,
0.053275834769010544,
-0.005682936403900385,
0.11313428729772568,
0.0006024274043738842,
0.02237006276845932,
0.013915734365582466,
-0.07508528977632523,
0.007043766789138317,
0.047778259962797165,
-0.027650628238916397,
0.05689265951514244,
0.033600304275751114,
-0.0021825279109179974,
0.05757985636591911,
-0.06926219910383224,
-0.01895216293632984,
0.02253282070159912,
0.0397489070892334,
-0.023473193868994713,
-0.030146237462759018,
-0.020778659731149673,
-0.08723782002925873,
-0.006532890256494284,
-0.014277417212724686,
0.054722562432289124,
0.0647049993276596,
0.02817506715655327,
0.05034620687365532,
-0.024630578234791756,
-0.013355126604437828,
0.03685544803738594,
0.014159870333969593,
-0.04188283532857895,
0.0035783962812274694,
-0.02045314572751522,
0.013273747637867928,
0.0014309064717963338,
0.057543687522411346,
-0.023183848708868027,
-0.03551722317934036,
0.011492461897432804,
0.03472151979804039,
0.03088768571615219,
-0.006939783226698637,
-0.07819575816392899,
0.007626980077475309,
0.03325670585036278,
-0.013951902277767658,
0.005750752054154873,
0.04209984466433525,
0.006514806300401688,
-0.0007759220316074789,
-0.08557408303022385,
0.014078491367399693,
-0.015064076520502567,
-0.02625815011560917,
0.020905248820781708,
-0.08832287043333054,
-0.007667669095098972,
0.022189222276210785,
-0.014810898341238499,
-0.0001299090072279796,
0.02226155810058117,
-0.07190248370170593,
0.0016569580184295774,
-0.05747134983539581,
0.1078537255525589,
-0.040182925760746,
-0.01175468135625124,
0.005294127855449915,
0.025444364175200462,
-0.004724477883428335,
-0.003933297470211983,
0.023581700399518013,
0.056856490671634674,
-0.000002980171984745539,
-0.016727816313505173,
-0.001464814180508256,
0.00477420911192894,
-0.07537463307380676,
-0.030327077955007553,
0.042895544320344925,
-0.0035648331977427006,
-0.012170616537332535,
-0.030544087290763855,
-0.014838024973869324,
-0.002852770732715726,
-0.044197604060173035,
0.03398007154464722,
-0.036728858947753906,
-0.03211740776896477,
-0.07501295208930969,
-0.04904414713382721,
0.016257628798484802,
-0.0357523150742054,
0.04745274409651756,
-0.03560764342546463,
0.015534264035522938,
0.02953137643635273,
0.04792293161153793,
-0.03551722317934036,
0.028102731332182884,
0.023364689201116562,
-0.019295761361718178,
0.0014806378167122602,
-0.02542627975344658,
0.008707506582140923,
-0.0396404042840004,
-0.02947712503373623,
0.014476342126727104,
0.015109286643564701,
-0.01300248596817255,
-0.07305986434221268,
-0.05378218740224838,
-0.007437096443027258,
0.002266166964545846,
-0.07855743914842606,
-0.0323524996638298,
0.03347371518611908,
-0.047308072447776794,
-0.012903023511171341,
0.003295831847935915,
-0.041448816657066345,
-0.06676658987998962,
-0.028319740667939186,
0.01925959438085556,
-0.028934599831700325,
-0.0645964965224266,
-0.06651341170072556,
-0.036186333745718,
0.04054461047053337,
-0.03217165917158127,
-0.07428959012031555,
0.035318296402692795,
0.023527447134256363,
-0.0066639999859035015,
-0.019711697474122047,
0.045499660074710846,
-0.01375297736376524,
-0.002877636346966028,
0.03264184668660164,
0.05323966592550278,
0.0012602375354617834,
0.046584706753492355,
0.030960023403167725,
-0.0221711378544569,
-0.009693090803921223,
-0.017469264566898346,
0.008915473707020283,
-0.010769096203148365,
0.037614982575178146,
-0.01699003577232361,
0.07696603983640671,
-0.0028459893073886633,
0.033817313611507416,
-0.04068928211927414,
-0.050273869186639786,
0.028609085828065872,
0.017008120194077492,
0.014196038246154785,
-0.014295500703155994,
-0.03685544803738594,
-0.0436912477016449,
0.0638369619846344,
0.04506564140319824,
-0.0050635552033782005,
-0.04209984466433525,
0.030091984197497368,
-0.026149645447731018,
0.004661183338612318,
0.010823349468410015,
-0.01692674122750759,
0.007229129318147898,
0.037651147693395615,
-0.08210192620754242,
-0.06604322791099548,
-0.025100765749812126,
0.002515953965485096,
-0.0034924966748803854,
0.008029351942241192,
0.0031036881264299154,
-0.013762019574642181,
0.0034698916133493185,
-0.012053069658577442,
0.04068928211927414,
-0.008115251548588276,
-0.05164826288819313,
0.03779582306742668,
-0.04141264781355858,
-0.007111582439392805,
-0.023961465805768967,
-0.013092907145619392,
-0.021502025425434113,
-0.02636665478348732,
0.011537672020494938,
-0.06343910843133926,
-0.020362725481390953,
0.029983479529619217,
-0.029459040611982346,
-0.043004050850868225,
0.012903023511171341,
0.055771443992853165,
-0.00602201372385025,
-0.01573318988084793,
0.02320193313062191,
0.03372689336538315,
-0.048718634992837906,
-0.04842928797006607,
-0.05117807537317276,
0.017424054443836212,
-0.028988853096961975,
-0.05114190652966499,
-0.027650628238916397,
-0.053963031619787216,
-0.018364429473876953,
0.039676569402217865,
0.0219541285187006,
0.0006798501126468182,
-0.058773405849933624,
-0.0261677298694849,
0.026583664119243622,
0.006293275859206915,
0.0713961273431778,
-0.04459545388817787,
0.0436912477016449,
0.011293536052107811,
-0.00907823070883751,
-0.012676971964538097,
0.037144795060157776,
-0.04936966300010681,
0.040978629142045975,
-0.03041749820113182,
-0.006067223846912384,
-0.05284181609749794,
-0.018572397530078888,
-0.016447512432932854,
0.018807491287589073,
-0.0017858074279502034,
0.029513292014598846,
-0.021936044096946716,
-0.013499799184501171,
0.027741048485040665,
-0.008806969039142132,
-0.004279156215488911,
0.017659148201346397,
-0.030091984197497368,
0.04043610394001007,
0.05031003803014755,
0.01147437747567892,
-0.008259924128651619,
-0.010280825197696686,
0.006311359815299511,
-0.02522735483944416,
0.016574101522564888,
0.06604322791099548,
0.006939783226698637,
-0.023165764287114143,
-0.02061590366065502,
-0.03133979067206383,
0.02817506715655327,
0.040074422955513,
-0.0036032618954777718,
-0.019024500623345375,
-0.001581230666488409,
0.004692830611020327,
0.03171955421566963,
0.01826496608555317,
-0.0061712078750133514,
0.008237319067120552,
0.025155019015073776,
-0.03685544803738594,
-0.0065193274058401585,
0.019295761361718178,
0.026348570361733437,
0.08239127695560455,
-0.017550643533468246,
0.011953607201576233,
-0.09497782588005066,
-0.010398372076451778,
-0.0011879010125994682,
0.006984993349760771,
0.025806047022342682,
-0.017912326380610466,
-0.023021090775728226,
0.014828982762992382,
0.01853622868657112,
0.030037732794880867,
0.0012500651646405458,
0.015832651406526566,
0.009928184561431408,
0.02331043779850006,
0.07638734579086304,
-0.018915995955467224,
0.005502094980329275,
0.014078491367399693,
-0.008115251548588276,
0.018283050507307053,
-0.04231685400009155,
0.017424054443836212,
0.05117807537317276,
0.0044780815951526165,
-0.023220017552375793,
0.022098802030086517,
-0.06477733701467514,
-0.055301256477832794,
-0.002800778951495886,
0.008427202701568604,
-0.039170216768980026,
0.06148602440953255,
0.005701020359992981,
0.06040097773075104,
-0.012993443757295609,
0.01689961552619934,
0.036077830940485,
0.00003546183870639652,
-0.008793406188488007,
-0.015552347525954247,
0.015914030373096466,
0.03466726839542389,
0.017270339652895927,
-0.019024500623345375,
0.0046295360662043095,
0.007455180864781141,
0.0038587001617997885,
-0.055662937462329865,
-0.03379923105239868,
-0.09505016356706619,
0.050056859850883484,
0.04090629145503044,
0.01731554977595806,
0.027487870305776596,
-0.08506772667169571,
0.009503208100795746,
0.024106139317154884,
-0.04047227278351784,
0.007260776124894619,
0.037289466708898544,
0.04166582599282265,
0.02081482857465744,
-0.04304021969437599,
-0.0071206241846084595,
-0.00038626560126431286,
0.03135787323117256,
0.030272826552391052,
-0.021610530093312263,
-0.053746022284030914,
0.01411466021090746,
-0.000008918440471461508,
0.02350936271250248,
0.03141212463378906,
0.03797666355967522,
0.03888086974620819,
-0.01232433132827282,
-0.07038341462612152,
-0.006501242984086275,
-0.00231702858582139,
-0.0846337080001831,
-0.040074422955513,
0.025986887514591217,
-0.02189987525343895,
-0.03264184668660164,
0.0090465834364295,
0.07407257705926895,
-0.02719852514564991,
0.02750595472753048,
-0.08571875095367432,
0.05298648774623871,
0.05414387211203575,
-0.030381331220269203,
-0.06267958134412766,
0.0048013352788984776,
-0.006501242984086275,
0.01720704510807991,
0.13006103038787842,
0.012423793785274029,
0.07913613319396973,
-0.005999408662319183,
0.02886226400732994,
-0.00338625255972147,
-0.02558903768658638,
-0.051503587514162064,
0.02781338430941105,
0.017351718619465828,
-0.04687405377626419,
0.007866594940423965,
0.025607122108340263,
-0.029242031276226044,
0.029133526608347893,
-0.059822287410497665,
0.013246621936559677,
-0.012993443757295609,
0.03700011968612671,
-0.029440956190228462,
0.01962127536535263,
0.017695317044854164,
0.028247402980923653,
0.05714583769440651,
0.049333494156599045,
-0.0029138047248125076,
0.04947816580533981,
-0.005049991887062788,
0.027596374973654747,
-0.0443422757089138,
-0.12868663668632507,
-0.0027691316790878773,
0.04054461047053337,
-0.013988071121275425,
0.02652941271662712,
-0.03989357873797417,
-0.03638526052236557,
-0.004360534716397524,
0.01165521889925003,
-0.0037343718577176332,
-0.024522073566913605,
-0.0014523813733831048,
0.06484967470169067,
0.023527447134256363,
0.04126797243952751,
0.019295761361718178,
-0.03020048886537552,
-0.0357523150742054,
-0.04600601643323898,
-0.03130362182855606,
-0.020091462880373,
-0.004936966113746166,
0.040978629142045975,
0.0012025943724438548,
-0.044197604060173035,
-0.04130414128303528,
-0.022984923794865608,
-0.004408005625009537,
-0.02189987525343895,
-0.006229981314390898,
0.03522787615656853,
0.01058825571089983,
-0.057073500007390976,
-0.03441409021615982,
0.019476603716611862,
0.001844580750912428,
-0.01699003577232361,
-0.015977324917912483,
-0.031158948317170143,
-0.03461301699280739,
-0.016519848257303238,
-0.03826601058244705,
-0.028211236000061035,
-0.043944425880908966,
0.0317014716565609,
0.05059938132762909,
0.006953346077352762,
0.06242639943957329,
-0.0008979898411780596,
0.0013382253237068653,
0.06452415883541107,
-0.0006583752110600471,
0.04032760113477707,
0.003818010911345482,
-0.021031837910413742,
-0.010425498709082603,
0.008074562065303326,
-0.0281388983130455,
-0.014367837458848953,
0.010524961166083813,
-0.04477629438042641,
0.004177432972937822,
-0.011736596934497356,
-0.03114086389541626,
0.02864525467157364,
-0.010009563528001308,
0.028355909511446953,
-0.01831921935081482,
-0.028373992070555687,
0.00022054156579542905,
0.021303100511431694,
-0.0008736893068999052,
0.017867116257548332,
0.000840346678160131,
-0.0008081343257799745,
0.008142377249896526,
0.03414282947778702,
0.0007425794028677046,
0.0016908657271414995,
-0.002524995943531394,
0.003558051772415638,
-0.010072858072817326,
-0.035318296402692795,
0.018717069178819656,
0.01739692874252796,
0.035264045000076294,
0.06336677819490433,
0.03316628560423851,
0.0557352751493454,
0.01976594887673855,
-0.011221200227737427,
-0.01001860573887825,
0.010479751043021679,
-0.004032759927213192,
0.060292474925518036,
-0.09193969517946243,
0.01739692874252796,
0.0645964965224266,
-0.0482846163213253,
-0.00577335711568594,
-0.06025630608201027,
-0.04582517221570015,
-0.01393381878733635,
-0.0005916899535804987,
0.031737640500068665,
0.007129666395485401,
0.06546453386545181,
-0.047416575253009796,
-0.006098871119320393,
-0.06966005265712738,
0.06546453386545181,
0.018328260630369186,
-0.011438209563493729,
0.006704689469188452,
-0.03700011968612671,
0.02256898768246174,
0.015895945951342583,
-0.028084646910429,
-0.033292874693870544,
0.029296282678842545,
-0.0007307116757147014,
0.01868090219795704,
0.04535498470067978,
0.014467299915850163,
-0.030688760802149773,
-0.02969413436949253,
0.014295500703155994,
-0.06513901799917221,
0.0439082570374012,
-0.028265487402677536,
-0.032461006194353104,
-0.053384337574243546,
0.005999408662319183,
0.010344119742512703,
-0.01707141473889351,
0.010289867408573627,
0.004263332579284906,
-0.04188283532857895,
-0.03797666355967522,
0.028120815753936768,
-0.012279121205210686,
-0.03582465276122093,
0.017532559111714363,
-0.0029838806949555874,
0.023943381384015083,
-0.010389329865574837,
-0.004193256609141827,
-0.0021565319038927555,
-0.06050948426127434,
-0.012098279781639576,
0.04094246029853821,
-0.040978629142045975,
0.023274268954992294,
-0.03616825118660927,
0.008214714005589485,
-0.007369281258434057,
0.06195621192455292,
-0.004923403263092041,
-0.07096210867166519,
-0.05859256535768509,
-0.013219495303928852,
0.08043818920850754,
0.024250812828540802,
0.04188283532857895,
0.022822165861725807,
-0.0844166949391365,
-0.03669269010424614,
-0.015841694548726082,
-0.024250812828540802,
0.04484863206744194,
0.022514736279845238,
0.004973134491592646,
-0.03103235922753811,
0.051937609910964966,
0.056603312492370605,
0.0120440274477005,
-0.04311255365610123,
-0.024051886051893234,
0.02880801260471344,
0.025625206530094147,
0.04466778784990311,
0.029386702924966812,
-0.008291571401059628,
-0.048176109790802,
0.08600810170173645,
0.045969847589731216,
-0.02170095033943653,
-0.05508424714207649,
0.03166530281305313,
0.0014410787262022495,
0.019747864454984665,
-0.00037326765595935285,
0.03841068223118782,
0.02189987525343895,
0.016664521768689156,
-0.058628734201192856,
-0.0178761575371027,
-0.09056530147790909,
0.01770435832440853,
0.022406231611967087,
-0.01920534111559391,
0.040255263447761536,
-0.03217165917158127,
-0.0018717070342972875,
-0.04021909460425377,
0.00009331691398983821,
-0.03354605287313461,
-0.0018796187359839678,
0.0317014716565609,
0.027939973399043083,
0.025715626776218414,
-0.015669895336031914,
-0.010606339201331139,
0.07002173364162445,
0.06322210282087326,
-0.07327687740325928,
0.0435827411711216,
0.009385661222040653,
0.07515762746334076,
0.011148863472044468,
-0.030815349891781807,
0.04477629438042641,
0.00965692289173603,
-0.04076161980628967,
0.014286459423601627,
0.032569508999586105,
-0.004527812823653221,
0.0007702707080170512,
-0.05884574353694916,
0.04076161980628967,
-0.04600601643323898,
-0.03851918876171112,
0.0914333388209343,
-0.0037208087742328644,
-0.01853622868657112,
0.018219755962491035,
0.052082281559705734,
0.06267958134412766,
0.0108956852927804,
0.003291310742497444,
-0.015163538977503777,
-0.0022073935251682997,
-0.01936809904873371,
-0.0161762498319149,
0.032262079417705536,
-0.007242692168802023,
-0.038700029253959656,
0.027415534481406212,
-0.016727816313505173,
0.02689109370112419,
0.021357351914048195,
-0.04466778784990311,
0.05031003803014755,
0.029965395107865334,
0.019548939540982246,
-0.007997704669833183,
0.010398372076451778,
0.010136152617633343,
-0.06423481553792953,
-0.014168912544846535,
0.012541340664029121,
-0.014910361729562283,
-0.01440400630235672,
-0.016574101522564888,
-0.037651147693395615,
0.020489314571022987,
-0.05305882543325424,
0.04278704151511192,
0.031484462320804596,
0.0025317776016891003,
0.004950529430061579,
-0.012279121205210686,
-0.0029703176114708185,
-0.04130414128303528,
0.031846143305301666,
0.03819367289543152,
-0.030652591958642006,
0.04141264781355858,
0.03674694150686264,
-0.0805828645825386,
-0.02922394685447216,
-0.008580917492508888,
-0.04416143521666527,
0.01079622283577919,
0.016863446682691574,
0.0179575365036726,
0.05309499055147171,
0.02828357182443142,
0.07349388301372528,
0.0005625858320854604,
0.02267749235033989,
0.08528473228216171,
-0.06582621484994888,
0.008115251548588276,
-0.035842735320329666,
0.03736180439591408,
-0.003352344734594226,
0.02725277654826641,
0.0033749497961252928,
-0.001072614686563611,
-0.0040214573964476585,
-0.0595691092312336,
0.03710862621665001,
-0.02045314572751522,
0.02631240151822567,
0.019440434873104095,
-0.005339337978512049,
0.05602462217211723,
-0.0010534003376960754,
-0.037180960178375244,
-0.03294927626848221,
-0.045499660074710846,
0.025806047022342682,
0.04282321035861969,
-0.033817313611507416,
0.04600601643323898,
-0.07009407132863998,
0.003958162851631641,
0.034703437238931656,
0.020163800567388535
] |
729,672 | allpairspy.allpairs | __validate_parameter | null | def __validate_parameter(self, value):
if isinstance(value, OrderedDict):
for parameter_list in value.values():
if not parameter_list:
raise ValueError("each parameter arrays must have at least one item")
return
if len(value) < 2:
raise ValueError("must provide more than one option")
for parameter_list in value:
if not parameter_list:
raise ValueError("each parameter arrays must have at least one item")
| (self, value) | [
0.05088719353079796,
0.01629222184419632,
-0.03709080070257187,
-0.010997248813509941,
-0.01699417270720005,
-0.030279265716671944,
-0.04177048057317734,
-0.03402300924062729,
0.032948415726423264,
0.0040557230822741985,
0.004179214593023062,
0.026726175099611282,
-0.0024568322114646435,
-0.07348831743001938,
0.019204022362828255,
-0.01092792022973299,
0.03937864676117897,
0.0458955317735672,
-0.010104643180966377,
0.03430032357573509,
0.03587755188345909,
0.01013930793851614,
-0.045930199325084686,
0.03809606656432152,
0.021959833800792694,
0.011785862036049366,
0.05667613074183464,
-0.03504560887813568,
0.023311741650104523,
0.031683169305324554,
-0.04333037510514259,
0.004404532723128796,
-0.0008303183130919933,
0.06984856724739075,
0.029724637046456337,
0.018112096935510635,
-0.007188509218394756,
0.02951665222644806,
-0.06815001368522644,
0.01826808601617813,
-0.03358970582485199,
-0.022549128159880638,
0.037645429372787476,
0.01892670802772045,
-0.001863206154666841,
0.015052972361445427,
-0.021907838061451912,
0.06461425870656967,
-0.11917586624622345,
-0.006317568942904472,
0.052759066224098206,
-0.05158047750592232,
0.027038155123591423,
-0.02868470922112465,
-0.04641549661755562,
0.07133913040161133,
0.04738609865307808,
0.04814871400594711,
0.05324436351656914,
-0.003459930419921875,
-0.027956757694482803,
0.009680005721747875,
0.023883702233433723,
-0.04336503893136978,
0.007197175174951553,
-0.030955219641327858,
-0.005338302347809076,
-0.0013963213423267007,
-0.013449748046696186,
0.026899496093392372,
-0.010009316727519035,
0.00009221245272783563,
-0.06419828534126282,
0.01528695598244667,
0.0005305262748152018,
0.034057676792144775,
-0.04391966760158539,
0.04523691162467003,
0.015434280037879944,
-0.03917066007852554,
0.0042788744904100895,
-0.006828867364674807,
0.036328185349702835,
0.015182963572442532,
0.006763871759176254,
0.02185584045946598,
-0.04336503893136978,
0.04610351845622063,
0.053764328360557556,
0.04450896009802818,
-0.04537557065486908,
-0.01500097569078207,
0.018320083618164062,
0.047455426305532455,
-0.012045844458043575,
0.05064454302191734,
-0.003927898593246937,
-0.038962673395872116,
-0.08132244646549225,
-0.04825270548462868,
0.011508547700941563,
-0.06669411063194275,
0.06887796521186829,
-0.0054726265370845795,
0.005585285369306803,
-0.03048725239932537,
-0.004376368131488562,
-0.01071126852184534,
-0.0044716945849359035,
0.02662218175828457,
-0.019429340958595276,
0.003925731871277094,
-0.006061919499188662,
-0.0050263237208127975,
-0.024992961436510086,
0.026136882603168488,
-0.02386637032032013,
-0.026344867423176765,
-0.07189375907182693,
0.01449834369122982,
0.01708083413541317,
0.052967049181461334,
0.0033949348144233227,
0.026344867423176765,
0.06256905943155289,
0.003906233236193657,
-0.050471220165491104,
0.03903200104832649,
0.010589944198727608,
-0.030816562473773956,
0.028667375445365906,
-0.010191304609179497,
-0.008752736262977123,
-0.06201443448662758,
0.0019444505451247096,
-0.048807334154844284,
0.006243906915187836,
-0.04690079763531685,
-0.021959833800792694,
-0.040141258388757706,
0.04003726691007614,
0.06839266419410706,
0.006226575002074242,
-0.03279242664575577,
0.014593670144677162,
-0.026812836527824402,
-0.003992894198745489,
-0.022791776806116104,
-0.005000325385481119,
0.029793966561555862,
-0.04239444062113762,
0.02741946093738079,
0.006035921163856983,
-0.08180774748325348,
-0.006976190488785505,
-0.08915658295154572,
0.02045193687081337,
-0.08166909217834473,
0.016474207863211632,
-0.04204779490828514,
-0.004458695650100708,
-0.01760946400463581,
0.01377039309591055,
0.0068678646348416805,
-0.008986719883978367,
0.05532422289252281,
-0.021526530385017395,
0.04142383858561516,
0.018458740785717964,
-0.007171177305281162,
0.030365927144885063,
-0.01676885597407818,
-0.004891999531537294,
0.011057911440730095,
0.0008926057489588857,
0.018198758363723755,
-0.010763265192508698,
-0.007197175174951553,
0.016933510079979897,
-0.023225082084536552,
-0.044474296271800995,
0.011049245484173298,
-0.005017657298594713,
-0.023814374580979347,
0.021907838061451912,
-0.0007192842313088477,
0.021214552223682404,
0.043642353266477585,
0.0064908904023468494,
-0.003427432617172599,
0.0003360812261234969,
0.02303442731499672,
-0.0022228483576327562,
0.03329506143927574,
-0.036154866218566895,
-0.008748402819037437,
0.0731416717171669,
-0.014836320653557777,
0.04742076247930527,
0.011993847787380219,
-0.0135537413880229,
-0.0674220621585846,
-0.0005957926623523235,
-0.003529259003698826,
-0.033520378172397614,
0.030799230560660362,
0.031648505479097366,
-0.019464004784822464,
0.030539248138666153,
-0.03454297408461571,
0.01721949130296707,
-0.03194315358996391,
0.0026279871817678213,
-0.016396213322877884,
0.05002058669924736,
-0.02154386229813099,
0.027974089607596397,
-0.05015924200415611,
-0.03788807988166809,
-0.009931322187185287,
0.10142774134874344,
0.010875924490392208,
0.09796131402254105,
-0.015191629528999329,
0.052932385355234146,
0.00014691705291625112,
0.03969062492251396,
-0.012149836868047714,
-0.04218645393848419,
0.07730139046907425,
-0.021353209391236305,
0.016985507681965828,
-0.006820200942456722,
0.016257556155323982,
-0.004203046206384897,
-0.005403297953307629,
0.028130080550909042,
-0.09546548128128052,
0.006382564082741737,
0.016240224242210388,
0.025911564007401466,
-0.02733280137181282,
-0.020694587379693985,
0.031163206323981285,
-0.03034859523177147,
0.01936001144349575,
0.013406418263912201,
0.052620407193899155,
-0.007717140018939972,
-0.012704466469585896,
-0.009125377051532269,
0.05158047750592232,
0.007777802180498838,
0.0018751219613477588,
-0.0075264861807227135,
0.007439825218170881,
0.018944039940834045,
-0.03955196589231491,
0.07792534679174423,
-0.019481336697936058,
-0.00948068592697382,
0.003154451260343194,
-0.021162554621696472,
0.08042117953300476,
-0.03022726997733116,
-0.014160366728901863,
0.058755990117788315,
0.043781012296676636,
0.007431159261614084,
0.039482638239860535,
0.007396494969725609,
0.027142146602272987,
0.028788700699806213,
-0.012080508284270763,
0.022046495229005814,
0.06929393857717514,
0.07612280547618866,
-0.018060101196169853,
-0.011777196079492569,
0.06620881706476212,
0.04807938635349274,
-0.03275776281952858,
0.01685551553964615,
0.006265572272241116,
0.0032541111577302217,
0.008237103931605816,
-0.0009272700408473611,
-0.022757112979888916,
-0.018146760761737823,
0.028060751035809517,
0.014862318523228168,
0.012288494035601616,
0.001802543643862009,
0.004352536052465439,
-0.0436076894402504,
0.004887666553258896,
0.031908489763736725,
-0.05473493039608002,
0.05799337476491928,
-0.016326885670423508,
0.02917000837624073,
0.03577355667948723,
0.029551316052675247,
-0.04076521843671799,
-0.02501029334962368,
-0.03310440853238106,
0.03123253397643566,
-0.018008103594183922,
0.0008763568475842476,
0.012869121506810188,
-0.026379533112049103,
0.06808068603277206,
-0.044474296271800995,
-0.0029897959902882576,
0.06967524439096451,
0.030556580051779747,
0.029620643705129623,
-0.034577637910842896,
-0.026466192677617073,
0.06478757411241531,
0.004003726877272129,
0.0025413264520466328,
0.017973439767956734,
-0.0852048471570015,
-0.008527417667210102,
-0.01085859164595604,
0.03464696928858757,
-0.020070629194378853,
0.0025564921088516712,
0.02483697049319744,
0.005966592580080032,
-0.04166648909449577,
-0.0004479277413338423,
0.038512036204338074,
0.06184111163020134,
0.016396213322877884,
-0.040661223232746124,
0.016283554956316948,
0.03277509659528732,
0.009983318857848644,
-0.008345430716872215,
-0.03792274370789528,
-0.01274779625236988,
-0.0223758053034544,
-0.0101826386526227,
-0.009671339765191078,
-0.006213575601577759,
0.02885803021490574,
0.013233096338808537,
-0.006911194883286953,
-0.05788938328623772,
0.07910393178462982,
0.037680093199014664,
0.013735729269683361,
0.017990771681070328,
-0.010225968435406685,
-0.012487813830375671,
-0.05022856965661049,
0.006547219585627317,
0.02019195444881916,
0.12090907990932465,
-0.03202981501817703,
0.031509850174188614,
0.010676604695618153,
0.043295711278915405,
0.01878805086016655,
0.006040254142135382,
-0.09754534065723419,
0.05255107954144478,
-0.0315445140004158,
-0.015867583453655243,
-0.00834109727293253,
0.02903135120868683,
-0.04225578159093857,
0.03927465155720711,
0.014463678933680058,
0.006950192153453827,
0.050471220165491104,
-0.014108370058238506,
-0.009619343094527721,
0.0014179865829646587,
-0.035981543362140656,
0.048287369310855865,
0.006274238228797913,
-0.048322033137083054,
-0.036120202392339706,
-0.004887666553258896,
-0.013363087549805641,
-0.04190913960337639,
-0.0008991052745841444,
-0.01020863652229309,
-0.003154451260343194,
-0.008731070905923843,
-0.03293108567595482,
-0.018597397953271866,
0.02365838550031185,
0.009056048467755318,
0.025599585846066475,
-0.04568754881620407,
-0.047490090131759644,
-0.021491866558790207,
-0.07126980274915695,
-0.031388524919748306,
0.030036617070436478,
0.011725199408829212,
-0.0794505774974823,
-0.003000628435984254,
0.06069719046354294,
-0.011213901452720165,
0.028268737718462944,
0.035669565200805664,
-0.04059189558029175,
0.010589944198727608,
-0.025946227833628654,
-0.014351020567119122,
0.005537622142583132,
-0.030140608549118042,
0.04239444062113762,
-0.017938775941729546,
-0.023381071165204048,
0.06863531470298767,
-0.03235912322998047,
-0.016240224242210388,
0.06433694064617157,
0.03381502628326416,
0.000040046747017186135,
-0.03384969010949135,
-0.021162554621696472,
0.009732002392411232,
-0.039482638239860535,
-0.039655961096286774,
0.006763871759176254,
-0.029499320313334465,
-0.08984986692667007,
0.01351041067391634,
-0.00661221519112587,
-0.05865199491381645,
-0.005533289164304733,
0.09040449559688568,
0.004965661093592644,
-0.012366489507257938,
0.005862599704414606,
0.019498668611049652,
0.052273765206336975,
0.03175250068306923,
-0.029118012636899948,
0.002350672846660018,
0.034750960767269135,
0.008055116981267929,
-0.03000195138156414,
-0.003542258171364665,
0.006937193218618631,
0.03232445940375328,
-0.07265637069940567,
0.060766518115997314,
-0.004023225512355566,
-0.06950192153453827,
-0.008549083024263382,
0.03040059097111225,
-0.008882726542651653,
0.04870334267616272,
-0.024057025089859962,
-0.01442901510745287,
-0.03296574950218201,
-0.02383170649409294,
0.029637977480888367,
0.006911194883286953,
0.05924128741025925,
0.06097450479865074,
0.07411227375268936,
-0.01944667287170887,
-0.012366489507257938,
0.006144247017800808,
-0.010130641981959343,
-0.015269624069333076,
0.017852114513516426,
0.13075374066829681,
0.04807938635349274,
0.017236823216080666,
0.003676582360640168,
0.0331217385828495,
0.011863856576383114,
-0.03534025326371193,
-0.010823927819728851,
-0.006191910710185766,
-0.019602661952376366,
-0.0714084580540657,
-0.021786512807011604,
-0.06291570514440536,
0.034889619797468185,
-0.06249973177909851,
-0.08846329152584076,
0.0219425018876791,
0.02733280137181282,
0.06489156931638718,
-0.021821176633238792,
0.0019000369356945157,
-0.005381632596254349,
0.009203371591866016,
0.010598610155284405,
0.03326039761304855,
0.03310440853238106,
0.017574800178408623,
-0.07251771539449692,
0.0004159715899731964,
-0.08915658295154572,
-0.0007414910360239446,
-0.003381935879588127,
-0.0415971614420414,
-0.0038932343013584614,
-0.07577615976333618,
0.026258207857608795,
0.054422952234745026,
0.03364170342683792,
0.03573889285326004,
0.000016325057003996335,
-0.023814374580979347,
-0.005741274915635586,
0.034404318779706955,
0.04967394098639488,
0.018250754103064537,
-0.019256018102169037,
0.019827980548143387,
-0.012825790792703629,
-0.002491496503353119,
-0.01643087901175022,
-0.07175510376691818,
-0.09920922666788101,
0.017158828675746918,
-0.027835432440042496,
0.01769612543284893,
-0.017063502222299576,
0.04305306077003479,
0.06860064715147018,
-0.021959833800792694,
-0.003776242258027196,
0.01861472986638546,
0.03709080070257187,
-0.0407305546104908,
0.06610482186079025,
0.004549689590930939,
0.047975391149520874,
0.019949303939938545,
-0.003145785303786397,
-0.022705117240548134,
0.054908253252506256,
0.0006515805143862963,
0.020243952050805092,
-0.023155752569437027,
-0.007383496034890413,
-0.021959833800792694,
0.02391836792230606,
0.04287973791360855,
0.024213014170527458,
-0.014325021766126156,
-0.06468358635902405,
0.03372836485505104,
0.021318545565009117,
0.026379533112049103,
0.00034447648795321584,
0.006477891001850367,
-0.03022726997733116,
-0.06378231197595596,
-0.030989885330200195,
-0.024975627660751343,
-0.007899126969277859,
0.014039041474461555,
0.008302100002765656,
0.007782135624438524,
0.061078496277332306,
-0.0034685966093093157,
-0.020122626796364784,
-0.10059580206871033,
-0.028476722538471222,
0.028355397284030914,
0.004333037417382002,
-0.00296163116581738,
0.0059362612664699554,
-0.09088979661464691,
-0.0024979962036013603,
-0.017765453085303307,
0.01246181596070528,
0.022791776806116104,
-0.01642221212387085,
0.07390429079532623,
0.05404164269566536,
0.013259095139801502,
-0.037818752229213715,
-0.028667375445365906,
0.018580064177513123,
-0.05015924200415611,
0.023398403078317642,
-0.022878438234329224,
-0.017990771681070328,
-0.002523994306102395,
0.07778669148683548,
0.02220248430967331,
-0.014749660156667233,
-0.05081786587834358,
-0.005741274915635586,
-0.032948415726423264,
0.02027861587703228,
0.01071126852184534,
0.03972528874874115,
0.04284507408738136,
-0.015061638318002224,
-0.006330567877739668,
0.03320840001106262,
-0.008466755039989948,
-0.009714670479297638,
0.01668219454586506,
0.017574800178408623,
-0.01681218482553959,
-0.0716857761144638,
-0.010234634391963482,
0.02001863345503807,
-0.041319847106933594,
0.05979591980576515,
0.006573217920958996,
-0.003854236798360944,
0.011933185160160065,
0.0038195725064724684,
-0.03364170342683792,
0.0035595903173089027,
-0.08388760685920715,
-0.07237906008958817,
-0.009446022100746632,
-0.04374634847044945,
-0.03461230546236038,
-0.09248435497283936,
0.054769594222307205,
-0.020243952050805092,
0.037818752229213715,
-0.058929309248924255,
-0.03436965495347977,
-0.005034989677369595,
0.005992590915411711,
-0.0384427085518837,
-0.03338172286748886,
0.07043785601854324,
-0.007821132428944111,
-0.011933185160160065,
-0.045098256319761276,
0.046970125287771225,
0.03100721724331379,
0.056260161101818085,
-0.06003856658935547,
-0.011265897192060947,
0.0711311474442482,
0.007834131829440594,
0.025946227833628654,
0.04353836178779602,
-0.07182443141937256,
-0.0319778174161911,
0.03171783313155174,
-0.022618455812335014,
0.036466844379901886,
-0.02346773073077202,
-0.018580064177513123,
-0.00790779385715723,
0.02566891349852085,
-0.015460277907550335,
0.03232445940375328,
-0.06038521230220795,
-0.01765279471874237,
-0.02986329421401024,
0.0040838876739144325,
-0.02492363192141056,
0.03788807988166809,
0.04374634847044945,
-0.049257971346378326,
-0.051753800362348557,
-0.007743137888610363,
-0.003178283106535673,
0.02435167133808136,
0.002827306976541877,
-0.05854800343513489,
0.006620881147682667,
0.0023246747441589832,
0.007530819159001112,
-0.038650695234537125,
0.003737244987860322,
-0.018944039940834045,
-0.004161882679909468,
-0.05206577852368355,
-0.03521892800927162,
0.021162554621696472,
0.024576988071203232,
-0.04024525359272957,
-0.016326885670423508,
-0.028476722538471222,
-0.03156184405088425,
-0.018822714686393738,
-0.02662218175828457,
-0.010199970565736294,
-0.03625885769724846,
0.0011580042773857713,
0.041493166238069534,
0.029932623729109764,
0.08860195428133011,
-0.030885891988873482,
-0.03218580409884453,
-0.011127240024507046,
0.08014386147260666,
-0.03270576894283295,
0.025166282430291176,
-0.036813486367464066,
-0.02168251946568489,
0.04034924507141113,
-0.03069523721933365,
-0.011317893862724304,
0.01892670802772045,
-0.0022228483576327562,
-0.07667743414640427,
-0.05754273757338524,
0.012617805041372776,
0.010910588316619396,
0.020157290622591972,
0.0001334440166829154,
-0.031041881069540977,
-0.019602661952376366,
0.042117126286029816,
-0.02833806537091732,
-0.017418811097741127,
0.009203371591866016,
0.016881514340639114,
0.039655961096286774,
-0.044300977140665054,
0.05206577852368355,
-0.020659923553466797,
-0.01322443038225174,
-0.016760189086198807,
-0.048287369310855865,
-0.0016498040640726686,
-0.01521762739866972,
-0.017375480383634567,
-0.0021979333832859993,
0.02220248430967331,
-0.0004744676116388291,
0.004159715957939625,
0.053591009229421616,
0.04308772459626198,
0.04437030479311943,
-0.02719414420425892,
0.020694587379693985,
0.002669151173904538,
-0.019827980548143387,
-0.023051759228110313,
0.005914596375077963,
-0.08783933520317078,
-0.009177373722195625,
-0.009506684727966785,
-0.0013670733897015452,
0.04277574643492699,
0.013094439171254635,
-0.03577355667948723,
0.036952145397663116,
-0.0009928072104230523,
-0.014290357939898968,
-0.03192581981420517,
-0.061910439282655716,
0.04440496861934662,
0.04755942150950432,
0.00031441604369319975,
0.0063435668125748634,
0.009931322187185287,
0.009783999063074589,
-0.02670884318649769
] |
729,673 | allpairspy.allpairs | __init__ |
TODO: check that input arrays are:
- (optional) has no duplicated values inside single array / or compress such values
| def __init__(self, parameters, filter_func=lambda x: True, previously_tested=None, n=2):
"""
TODO: check that input arrays are:
- (optional) has no duplicated values inside single array / or compress such values
"""
if not previously_tested:
previously_tested = [[]]
self.__validate_parameter(parameters)
self.__is_ordered_dict_param = isinstance(parameters, OrderedDict)
self.__param_name_list = self.__extract_param_name_list(parameters)
self.__pairs_class = namedtuple("Pairs", self.__param_name_list)
self.__filter_func = filter_func
self.__n = n
self.__pairs = PairsStorage(n)
value_matrix = self.__extract_value_matrix(parameters)
self.__max_unique_pairs_expected = get_max_combination_number(value_matrix, n)
self.__working_item_matrix = self.__get_working_item_matrix(value_matrix)
for arr in previously_tested:
if not arr:
continue
if len(arr) != len(self.__working_item_matrix):
raise RuntimeError("previously tested combination is not complete")
if not self.__filter_func(arr):
raise ValueError("invalid tested combination is provided")
tested = []
for i, val in enumerate(arr):
idxs = [
Item(item.id, 0) for item in self.__working_item_matrix[i] if item.value == val
]
if len(idxs) != 1:
raise ValueError(
"value from previously tested combination is not "
"found in the parameters or found more than "
"once"
)
tested.append(idxs[0])
self.__pairs.add_sequence(tested)
| (self, parameters, filter_func=<function AllPairs.<lambda> at 0x7f625a34cca0>, previously_tested=None, n=2) | [
0.045276153832674026,
0.01676124706864357,
-0.08034816384315491,
0.018679248169064522,
0.012528417631983757,
-0.037434082478284836,
-0.07483036816120148,
-0.02885504439473152,
-0.00574455363675952,
-0.02227904088795185,
-0.0339004248380661,
0.07607754319906235,
-0.013577176257967949,
0.020691730082035065,
-0.01570303924381733,
-0.005092622246593237,
0.010591520927846432,
0.020710626617074013,
-0.005002863705158234,
0.06111146882176399,
0.0032691045198589563,
0.030102215707302094,
-0.05287256836891174,
0.11489106714725494,
0.028760559856891632,
-0.03544994071125984,
0.015334556810557842,
0.003042345866560936,
0.020276006311178207,
0.00047920490032993257,
-0.047808289527893066,
-0.002619535196572542,
0.0208240058273077,
0.06421050429344177,
-0.00906089972704649,
-0.046447739005088806,
-0.0011332029243931174,
0.020464971661567688,
-0.0571431890130043,
0.013520486652851105,
0.024565525352954865,
-0.08548802882432938,
0.03749077022075653,
-0.014994418248534203,
0.027948008850216866,
0.06379477679729462,
-0.015107797458767891,
0.06160277873277664,
-0.08987202495336533,
0.01075214147567749,
0.027872422710061073,
-0.04202594608068466,
0.008990037254989147,
0.03373035416007042,
-0.051889948546886444,
0.04807284101843834,
0.024830076843500137,
-0.0160053838044405,
0.036678217351436615,
-0.008333382196724415,
-0.013558279722929,
0.0513608455657959,
0.07501933723688126,
-0.018679248169064522,
-0.06545767933130264,
-0.007525553926825523,
-0.05929739773273468,
-0.02634180150926113,
-0.003032897599041462,
0.05026484280824661,
0.04293297976255417,
0.015466832555830479,
0.01375669427216053,
-0.007761761080473661,
0.005295760463923216,
0.02751338854432106,
0.012622900307178497,
-0.0022510525304824114,
0.01684628054499626,
-0.07664443552494049,
-0.012037106789648533,
0.030272284522652626,
0.01458814274519682,
-0.04686346277594566,
-0.04973573982715607,
0.07838292419910431,
0.0406653918325901,
0.03645145893096924,
0.006991726346313953,
-0.009882899932563305,
-0.05147422477602959,
0.026417387649416924,
0.0049650706350803375,
0.04410456493496895,
0.04436911642551422,
0.024338766932487488,
0.0044713979586958885,
-0.07762705534696579,
0.028930630534887314,
-0.04274401441216469,
-0.007383829914033413,
-0.05260801687836647,
-0.05011367052793503,
-0.023034904152154922,
0.00790348555892706,
-0.052645809948444366,
-0.020597247406840324,
0.006850002333521843,
-0.016685660928487778,
-0.014002349227666855,
-0.029667595401406288,
0.09675037860870361,
0.007090933155268431,
0.029025113210082054,
-0.02384745515882969,
0.008971140719950199,
-0.007095657289028168,
-0.0070389676839113235,
-0.04531394690275192,
-0.002197905909270048,
0.010232485830783844,
0.015466832555830479,
-0.03316345810890198,
0.06927478313446045,
-0.0014940090477466583,
-0.006439002230763435,
0.02983766421675682,
0.0008580218418501318,
0.01832021214067936,
-0.008550692349672318,
0.0005480001564137638,
-0.029384147375822067,
0.0002872867335099727,
0.04009849578142166,
-0.0025321387220174074,
-0.04179918393492699,
-0.013822832144796848,
-0.011205658316612244,
-0.04731697961688042,
0.02887394092977047,
0.05124746263027191,
0.01153634861111641,
0.028269249945878983,
0.022033385932445526,
0.006061071064323187,
-0.0406653918325901,
0.016600625589489937,
0.009882899932563305,
-0.014181866310536861,
0.006420105695724487,
-0.06613795459270477,
0.03119821660220623,
-0.0032785527873784304,
0.01056317612528801,
-0.001920362701639533,
-0.028061388060450554,
0.009136485867202282,
-0.04875312000513077,
-0.00977896898984909,
-0.03208635374903679,
-0.025226904079318047,
-0.04308415204286575,
-0.018726488575339317,
0.026700835675001144,
-0.04244166985154152,
-0.004712329246103764,
-0.015731384977698326,
0.008404243737459183,
-0.018632005900144577,
-0.06742291897535324,
0.002796690445393324,
-0.03688608109951019,
-0.03110373392701149,
-0.03284221887588501,
-0.056727465242147446,
0.05185215547680855,
-0.007081484887748957,
-0.050151463598012924,
0.025888284668326378,
-0.047808289527893066,
-0.03771752864122391,
-0.03786870092153549,
-0.008205830119550228,
-0.02044607512652874,
0.01773441955447197,
0.015740832313895226,
0.0513608455657959,
0.04270622134208679,
0.06413491815328598,
0.02277035266160965,
-0.03004552610218525,
-0.017299799248576164,
0.006283105351030827,
0.0571431890130043,
0.01704469509422779,
0.02180662751197815,
0.00530520873144269,
0.07505712658166885,
-0.0010883236536756158,
0.08548802882432938,
-0.02054055780172348,
-0.04372663423418999,
0.048488568514585495,
0.008342830464243889,
-0.01745097152888775,
-0.032029666006565094,
0.008994761854410172,
-0.01540069468319416,
0.029403043910861015,
0.018187936395406723,
0.022222351282835007,
-0.0630011260509491,
0.0513608455657959,
-0.018849316984415054,
0.03384373337030411,
0.0035974320489913225,
0.030310077592730522,
-0.015589660033583641,
0.014134624972939491,
-0.07724912464618683,
0.06443726271390915,
-0.06742291897535324,
0.025056835263967514,
0.033484701067209244,
0.024754490703344345,
-0.01045924425125122,
0.01239614188671112,
0.00881052017211914,
-0.03004552610218525,
0.034448426216840744,
0.013104762881994247,
-0.04535173997282982,
0.01929338462650776,
-0.03246428444981575,
0.013350417837500572,
-0.03150056302547455,
0.024338766932487488,
-0.03868125379085541,
-0.03737739101052284,
-0.02547255903482437,
-0.024168698117136955,
-0.01351103838533163,
0.02993214689195156,
-0.0008952243952080607,
-0.029289664700627327,
-0.024263180792331696,
0.048110634088516235,
0.04678787663578987,
0.00221562129445374,
-0.0227514561265707,
0.02180662751197815,
0.030688010156154633,
-0.041421253234148026,
0.0031604492105543613,
0.0445580817759037,
-0.03399490565061569,
-0.005810691509395838,
0.0013853538548573852,
0.021542076021432877,
-0.05359063670039177,
0.020011454820632935,
-0.049168843775987625,
0.0030730527359992266,
0.003647035686299205,
-0.026417387649416924,
-0.011441865935921669,
0.02983766421675682,
0.05495119094848633,
-0.03238869830965996,
0.03344690799713135,
0.06923698633909225,
0.015041659586131573,
-0.014786556363105774,
0.004355656448751688,
-0.05219229310750961,
0.04852636158466339,
0.06507974117994308,
-0.04134566709399223,
-0.015325108543038368,
-0.0010859615867957473,
0.020483868196606636,
0.0014963711146265268,
-0.014796004630625248,
-0.01458814274519682,
0.0406653918325901,
0.05011367052793503,
-0.03080138936638832,
-0.01051593478769064,
0.03983394429087639,
-0.0038903288077563047,
-0.008078278042376041,
0.011904831044375896,
0.000615319178905338,
-0.021353110671043396,
0.02014373056590557,
0.0015471556689590216,
-0.015249522402882576,
-0.005867381114512682,
0.04183697700500488,
-0.029289664700627327,
-0.024452146142721176,
-0.0027163801714777946,
0.05510236322879791,
-0.004795001354068518,
-0.00753027806058526,
0.004542259965091944,
0.01327483169734478,
-0.02286483533680439,
0.009882899932563305,
0.050340428948402405,
0.03654594346880913,
0.10778596252202988,
0.04081656411290169,
-0.007270450703799725,
0.030347872525453568,
-0.001742026419378817,
-0.017687177285552025,
-0.0006218148628249764,
0.01361497025936842,
0.08533685654401779,
0.010544279590249062,
0.0049367258325219154,
-0.07233602553606033,
-0.022316833958029747,
-0.015230625867843628,
-0.00828141625970602,
0.015381798148155212,
-0.06035560369491577,
-0.01609986647963524,
-0.021050766110420227,
-0.03427835553884506,
0.0208240058273077,
0.013246486894786358,
0.06092250347137451,
0.05370401591062546,
0.04603201523423195,
0.011082830838859081,
-0.016241591423749924,
0.050151463598012924,
-0.04709022119641304,
0.03709394112229347,
-0.05211670696735382,
-0.04089215025305748,
-0.013888970017433167,
-0.015835314989089966,
-0.027551181614398956,
-0.04599422216415405,
-0.0026738629676401615,
-0.00734131271019578,
-0.014597591012716293,
0.030593527480959892,
0.009282933548092842,
0.015929797664284706,
0.08125519752502441,
0.055858224630355835,
0.02180662751197815,
-0.01839579828083515,
0.01215993519872427,
0.029478630051016808,
0.016628971323370934,
0.060620155185461044,
-0.04542732611298561,
0.014361383393406868,
0.013019728474318981,
0.0716557502746582,
-0.015136142261326313,
-0.02190111018717289,
-0.03263435512781143,
-0.03692387416958809,
-0.04021187499165535,
-0.007138174492865801,
-0.07634209096431732,
0.029044009745121002,
0.0019735093228518963,
0.042479462921619415,
-0.007917657494544983,
-0.06164057180285454,
0.048488568514585495,
-0.027248837053775787,
-0.04860194772481918,
0.0038430874701589346,
-0.005343001801520586,
0.02286483533680439,
0.027097662910819054,
-0.05729436129331589,
-0.011649727821350098,
0.03922925516963005,
0.029044009745121002,
0.03475077077746391,
0.026568559929728508,
0.0064673470333218575,
-0.011404072865843773,
-0.004658001475036144,
-0.057899054139852524,
0.00814441591501236,
0.02110745571553707,
0.008923899382352829,
0.0046792603097856045,
-0.11171644926071167,
-0.03480745851993561,
-0.04002290964126587,
-0.11322817206382751,
0.005295760463923216,
0.012311107479035854,
-0.01628883183002472,
-0.07354540377855301,
0.027116559445858,
0.025075731799006462,
-0.022883731871843338,
-0.009495520032942295,
0.003727345960214734,
0.0009259313228540123,
0.020011454820632935,
-0.04331091046333313,
-0.018972143530845642,
0.0014951900811865926,
-0.05283477529883385,
0.02004924789071083,
0.05646291375160217,
0.0542709119617939,
0.09327340871095657,
-0.011451314203441143,
-0.021485386416316032,
0.02014373056590557,
-0.047430358827114105,
-0.021560972556471825,
-0.02074841968715191,
0.04833739623427391,
-0.018263522535562515,
-0.03180290758609772,
-0.013548831455409527,
-0.028741663321852684,
-0.006750795058906078,
-0.06613795459270477,
-0.02190111018717289,
-0.010903313755989075,
-0.02199559286236763,
-0.00804520957171917,
0.04905546456575394,
0.03769863396883011,
-0.0039989841170609,
-0.0001964946713997051,
0.03983394429087639,
0.027475595474243164,
0.004105277359485626,
-0.0232616625726223,
-0.01234890054911375,
0.004053311422467232,
-0.056727465242147446,
0.012169383466243744,
0.07059753686189651,
0.019340626895427704,
0.02307269722223282,
-0.056538499891757965,
0.026795318350195885,
-0.005824863910675049,
-0.05279698222875595,
-0.02365848980844021,
0.00685472646728158,
0.01781945303082466,
0.033938217908144,
-0.00583903631195426,
0.04497380554676056,
-0.009372692555189133,
-0.07762705534696579,
-0.034826356917619705,
-0.015136142261326313,
-0.023129386827349663,
-0.02420649118721485,
0.00818693358451128,
-0.008905002847313881,
-0.00395174277946353,
-0.022789249196648598,
0.017309246584773064,
-0.04497380554676056,
-0.019246144220232964,
0.04187477007508278,
0.008796347305178642,
-0.019350074231624603,
-0.01997366175055504,
0.0020018541254103184,
-0.017309246584773064,
0.011923727579414845,
0.0021719231735914946,
-0.024395456537604332,
0.009977382607758045,
0.007369657512754202,
-0.04047642648220062,
-0.026133939623832703,
0.04595642909407616,
-0.06114926189184189,
-0.07524609565734863,
0.011045037768781185,
0.07490595430135727,
0.025245800614356995,
0.03979615122079849,
0.019321730360388756,
0.023582903668284416,
0.003217139048501849,
-0.04410456493496895,
-0.0022262507118284702,
0.0057020364329218864,
-0.009575830772519112,
-0.03853008151054382,
0.0329366996884346,
-0.04338649660348892,
-0.03643256425857544,
-0.03845449537038803,
-0.04871532693505287,
-0.03592235594987869,
-0.0455029122531414,
-0.06764967739582062,
0.051965534687042236,
-0.005583932623267174,
0.013737797737121582,
-0.01569359190762043,
-0.018480833619832993,
-0.06114926189184189,
-0.03527987375855446,
-0.00358562171459198,
0.0552157424390316,
0.02004924789071083,
-0.009864003397524357,
0.0174415223300457,
-0.012556762434542179,
-0.02209007553756237,
0.015920350328087807,
-0.052078913897275925,
0.020276006311178207,
-0.041912563145160675,
-0.056236155331134796,
-0.003084863070398569,
-0.025510352104902267,
0.0397205650806427,
0.023091593757271767,
0.03994732350111008,
0.05287256836891174,
0.013870073482394218,
-0.016014833003282547,
0.027154352515935898,
0.03767973557114601,
0.06114926189184189,
0.04021187499165535,
-0.05695422366261482,
-0.009240416809916496,
0.0368293896317482,
-0.005291036330163479,
0.04021187499165535,
-0.022940421476960182,
-0.011215106584131718,
-0.009174278937280178,
0.024565525352954865,
0.033201251178979874,
-0.03335242345929146,
0.05476222559809685,
-0.06523091346025467,
0.022222351282835007,
-0.05676525831222534,
0.009977382607758045,
0.021579869091510773,
-0.0031297423411160707,
0.03990953043103218,
-0.05529132857918739,
-0.023582903668284416,
0.0232616625726223,
-0.0005976036190986633,
0.03263435512781143,
-0.009150657802820206,
-0.03354138880968094,
0.05113408342003822,
0.009268761612474918,
0.02702207677066326,
-0.0687456801533699,
0.030536837875843048,
-0.004043863154947758,
-0.05283477529883385,
-0.00491310516372323,
-0.01454090140759945,
-0.04807284101843834,
-0.047241393476724625,
0.016137659549713135,
0.0910814106464386,
0.0017396643524989486,
-0.02666304260492325,
0.03641366586089134,
0.01773441955447197,
-0.06655367463827133,
0.013794487342238426,
0.010071865282952785,
-0.010487589053809643,
-0.0009519141167402267,
0.014843245968222618,
-0.06867009401321411,
-0.02343173138797283,
-0.005640622694045305,
0.05351505056023598,
-0.03072580322623253,
-0.022033385932445526,
-0.048866499215364456,
-0.01056317612528801,
-0.01782890222966671,
0.027475595474243164,
-0.02307269722223282,
0.043159738183021545,
0.04289518669247627,
-0.06164057180285454,
-0.022411316633224487,
0.006750795058906078,
0.015967590734362602,
0.03322014957666397,
0.018178489059209824,
0.023488420993089676,
0.017299799248576164,
-0.08065050840377808,
-0.0025179663207381964,
-0.013246486894786358,
-0.05880608782172203,
0.08291809260845184,
0.04127008095383644,
-0.017488764598965645,
-0.041534632444381714,
0.03662152960896492,
-0.016591178253293037,
0.04663670435547829,
-0.06126264110207558,
-0.06152719259262085,
0.007941278629004955,
-0.01496607344597578,
0.02634180150926113,
-0.031047044321894646,
0.03964497894048691,
-0.01859421283006668,
0.10771037638187408,
-0.012934694066643715,
0.0039635528810322285,
-0.02694649063050747,
0.03707504644989967,
0.01656283251941204,
-0.008158588781952858,
0.07838292419910431,
0.0027848801109939814,
0.011952072381973267,
-0.0013605521526187658,
0.0189060065895319,
-0.011715865693986416,
-0.04535173997282982,
0.04516277462244034,
-0.015240074135363102,
0.061867330223321915,
-0.015740832313895226,
-0.0034958631731569767,
0.02713545598089695,
-0.030177801847457886,
-0.06016663834452629,
0.015825867652893066,
-0.06545767933130264,
0.01588255725800991,
0.024282077327370644,
-0.03437284007668495,
0.012084349058568478,
0.02227904088795185,
0.01234890054911375,
0.029780974611639977,
-0.043462082743644714,
0.02840152569115162,
0.006580726243555546,
0.0668938159942627,
0.024357663467526436,
0.0003256703494116664,
0.08057492226362228,
-0.012188280001282692,
-0.027929112315177917,
0.03911587595939636,
0.04633435979485512,
0.010506486520171165,
-0.026965387165546417,
-0.03401380404829979,
0.044331323355436325,
-0.012963038869202137,
-0.012131590396165848,
0.05710539594292641,
0.024093110114336014,
-0.0017349402187392116,
-0.04387780651450157,
0.026776421815156937,
-0.012292210943996906,
-0.005347725935280323,
-0.046069808304309845,
-0.029308561235666275,
-0.07876085489988327,
-0.009967934340238571,
-0.03208635374903679,
0.012830762192606926,
-0.05030263587832451,
-0.06451284885406494,
0.008290864527225494,
-0.02702207677066326,
-0.0029502250254154205,
0.049660153687000275,
0.0006224053795449436,
0.007501933258026838,
0.004003708250820637,
0.01442752219736576,
0.04663670435547829,
0.0008497545495629311,
0.05612277612090111,
-0.05309932678937912,
-0.008191658183932304,
0.03633807972073555,
-0.04818622022867203,
-0.028911733999848366,
0.02847711183130741,
-0.013114211149513721,
-0.037944287061691284,
-0.04312194511294365,
0.05695422366261482,
0.005215449724346399,
0.024093110114336014,
-0.02741890586912632,
0.012330004014074802,
-0.02014373056590557,
0.01862255670130253,
0.010279727168381214,
0.0285904910415411,
-0.03654594346880913,
0.05419532582163811,
0.0523056723177433,
-0.020219316706061363,
-0.005328829400241375,
-0.03983394429087639,
-0.002466000849381089,
0.03888911381363869,
-0.051323048770427704,
0.03361697494983673,
0.03631918504834175,
-0.0164589025080204,
0.025170214474201202,
-0.0001662306603975594,
0.03643256425857544,
0.05736994743347168,
-0.010969451628625393,
0.02596387080848217,
0.017668280750513077,
0.005541415419429541,
-0.058957260102033615,
0.06035560369491577,
-0.01732814311981201,
-0.010100210085511208,
-0.015088900923728943,
-0.09667479246854782,
0.043462082743644714,
0.021353110671043396,
0.0029029836878180504,
0.02055945433676243,
0.018187936395406723,
-0.026322904974222183,
0.024584421887993813,
-0.028363732621073723,
-0.020672833546996117,
-0.05007587745785713,
-0.051209669560194016,
0.043462082743644714,
0.09410485625267029,
0.017866695299744606,
-0.040929943323135376,
0.023016007617115974,
0.06020443141460419,
-0.013596072793006897
] |
729,675 | allpairspy.allpairs | __next__ | null | def __next__(self):
assert len(self.__pairs) <= self.__max_unique_pairs_expected
if len(self.__pairs) == self.__max_unique_pairs_expected:
# no reasons to search further - all pairs are found
raise StopIteration()
previous_unique_pairs_count = len(self.__pairs)
chosen_item_list = [None] * len(self.__working_item_matrix)
indexes = [None] * len(self.__working_item_matrix)
direction = 1
i = 0
while -1 < i < len(self.__working_item_matrix):
if direction == 1:
# move forward
self.__resort_working_array(chosen_item_list[:i], i)
indexes[i] = 0
elif direction == 0 or direction == -1:
# scan current array or go back
indexes[i] += 1
if indexes[i] >= len(self.__working_item_matrix[i]):
direction = -1
if i == 0:
raise StopIteration()
i += direction
continue
direction = 0
else:
raise ValueError(f"next(): unknown 'direction' code '{direction}'")
chosen_item_list[i] = self.__working_item_matrix[i][indexes[i]]
if self.__filter_func(self.__get_values(chosen_item_list[: i + 1])):
assert direction > -1
direction = 1
else:
direction = 0
i += direction
if len(self.__working_item_matrix) != len(chosen_item_list):
raise StopIteration()
self.__pairs.add_sequence(chosen_item_list)
if len(self.__pairs) == previous_unique_pairs_count:
# could not find new unique pairs - stop
raise StopIteration()
# replace returned array elements with real values and return it
return self.__get_iteration_value(chosen_item_list)
| (self) | [
0.02988700196146965,
-0.03553081676363945,
-0.0936368927359581,
0.01593262329697609,
-0.017746014520525932,
-0.03576355054974556,
-0.0269390307366848,
0.015447760000824928,
0.05166708305478096,
-0.006051099859178066,
-0.023894086480140686,
0.018579980358481407,
0.009663335047662258,
0.06993675231933594,
-0.031845852732658386,
0.03894425928592682,
0.02988700196146965,
0.044064417481422424,
-0.03857576102018356,
0.06757061183452606,
-0.025891724973917007,
0.02273041382431984,
-0.035821735858917236,
0.06621299684047699,
-0.0033891976345330477,
0.016863562166690826,
0.024359555914998055,
0.008422083221375942,
0.014497426338493824,
-0.019995782524347305,
-0.0333586260676384,
0.02375832386314869,
0.005677754525095224,
0.00838814303278923,
0.033649545162916183,
0.00884876400232315,
-0.010589424520730972,
0.018424823880195618,
-0.003042520023882389,
0.00645838538184762,
0.02575596235692501,
-0.05015430971980095,
0.0682300254702568,
-0.004729846026748419,
-0.0009988193633034825,
0.03657812252640724,
-0.01883210800588131,
0.045189302414655685,
0.0038595155347138643,
-0.003161311848089099,
0.053528960794210434,
-0.01654355227947235,
0.035104136914014816,
0.03368833288550377,
0.018638163805007935,
0.06974280625581741,
-0.016892652958631516,
-0.07381565868854523,
0.03576355054974556,
-0.00618201307952404,
0.005876549053937197,
-0.039390332996845245,
0.07102284580469131,
0.003309195162728429,
0.005377138964831829,
-0.026260221377015114,
-0.03793574124574661,
-0.05923095718026161,
0.004737119190394878,
0.07110042124986649,
0.00915907695889473,
0.0351429246366024,
0.03124462068080902,
-0.013372542336583138,
-0.003813453484326601,
0.0011291265254840255,
-0.006589298602193594,
0.002717661438509822,
0.04363773763179779,
-0.10736823081970215,
0.008262078277766705,
0.04142675921320915,
-0.004215890541672707,
-0.06113162264227867,
-0.06532084941864014,
0.04348258301615715,
0.028568172827363014,
0.021256428211927414,
-0.013324055820703506,
0.0053141070529818535,
0.004058309830725193,
-0.0009982133051380515,
0.005493506323546171,
0.04941731318831444,
0.023409223183989525,
0.02075216919183731,
-0.018793320283293724,
-0.07381565868854523,
0.03562778979539871,
-0.04546082764863968,
0.001038214541040361,
0.03776118904352188,
-0.023273460566997528,
0.005571084562689066,
0.05767939239740372,
-0.02478623576462269,
-0.04429715499281883,
-0.00021818869572598487,
0.0020594587549567223,
-0.00426437659189105,
-0.044646255671978,
0.07625937461853027,
-0.05573993921279907,
0.04371531680226326,
-0.03812968730926514,
-0.018744833767414093,
0.0023649230133742094,
-0.0024315917398780584,
0.0062547423876821995,
0.013052532449364662,
-0.0017188420752063394,
-0.01382831484079361,
-0.048137273639440536,
0.017707224935293198,
0.020383672788739204,
-0.04891305789351463,
0.034464117139577866,
-0.009066952392458916,
-0.04068976640701294,
-0.011268233880400658,
-0.014904712326824665,
-0.014303481206297874,
0.01626233011484146,
0.006608692929148674,
-0.03640357032418251,
-0.03291255235671997,
0.007268107961863279,
-0.04255164414644241,
-0.0826207846403122,
0.04061218723654747,
0.023098910227417946,
-0.007277804892510176,
0.010890040546655655,
0.05713634565472603,
0.029111219570040703,
-0.0313028059899807,
0.01721266284584999,
0.07160468399524689,
0.044956568628549576,
-0.006424444727599621,
-0.025309888646006584,
0.005939580965787172,
0.024437133222818375,
0.05581751838326454,
-0.005619571078568697,
-0.01936545968055725,
-0.003042520023882389,
0.009949404746294022,
-0.04930094629526138,
0.017901170998811722,
0.016194449737668037,
-0.08153469115495682,
-0.029615478590130806,
0.0313028059899807,
-0.00894088763743639,
0.022206760942935944,
-0.02804451994597912,
0.017552068457007408,
-0.015942320227622986,
-0.022555861622095108,
0.018696347251534462,
-0.05930853635072708,
-0.043443791568279266,
-0.04286195710301399,
-0.08231047540903091,
0.03277679160237312,
-0.004286195617169142,
0.018337547779083252,
0.04072855785489082,
-0.02098490297794342,
-0.010434268042445183,
-0.009517875500023365,
-0.035647183656692505,
-0.061325568705797195,
0.028335439041256905,
0.0759490579366684,
0.06919975578784943,
0.010502149350941181,
0.05612783133983612,
0.03816847503185272,
-0.04449109733104706,
-0.025329282507300377,
0.025154732167720795,
0.043831683695316315,
-0.023234670981764793,
0.016795679926872253,
-0.019540010020136833,
0.08649969846010208,
0.03324225917458534,
0.04356016218662262,
-0.05469263345003128,
-0.0777333602309227,
0.04297832399606705,
0.013886498287320137,
-0.028917275369167328,
-0.01646597310900688,
-0.019297577440738678,
-0.02955729514360428,
0.03444472327828407,
0.04612024128437042,
-0.009425751864910126,
-0.06415717303752899,
0.019850322976708412,
-0.010579727590084076,
0.009241503663361073,
0.03714056313037872,
0.01049245148897171,
-0.038362421095371246,
0.019258787855505943,
-0.013168900273740292,
0.009546967223286629,
-0.0430946908891201,
-0.029848214238882065,
-0.052675601094961166,
0.028238466009497643,
-0.016815075650811195,
-0.012693732976913452,
-0.029770635068416595,
-0.05729150399565697,
0.018715741112828255,
0.0031152497977018356,
-0.06078252196311951,
0.02488320879638195,
-0.01836663857102394,
0.02854877896606922,
-0.03960367292165756,
0.007951765321195126,
-0.010705792345106602,
-0.041931018233299255,
0.02185765840113163,
-0.06524326652288437,
-0.015321695245802402,
0.0318070612847805,
-0.01096761878579855,
-0.026609323918819427,
0.0007891157874837518,
0.023797113448381424,
0.019733956083655357,
0.02082974649965763,
0.0028776663821190596,
0.023816507309675217,
-0.002077641198411584,
-0.0430946908891201,
-0.026919636875391006,
0.0641183853149414,
-0.08044859766960144,
0.005847456865012646,
-0.02973184548318386,
0.04945610463619232,
-0.0175714623183012,
0.058455176651477814,
-0.03359135985374451,
0.015719283372163773,
-0.002654629060998559,
-0.03186524659395218,
0.05240407586097717,
0.005566236097365618,
0.03880849480628967,
0.025736568495631218,
0.053218647837638855,
0.05709755793213844,
-0.004998945631086826,
-0.04561598226428032,
0.043598949909210205,
-0.025542622432112694,
0.057601816952228546,
-0.004901972599327564,
0.00888755265623331,
-0.05659329891204834,
-0.04600387439131737,
0.017658738419413567,
0.0410388708114624,
-0.04445230960845947,
-0.004388017114251852,
-0.01121005043387413,
0.016504762694239616,
-0.011345812119543552,
-0.022614046931266785,
0.06795850396156311,
0.004375895485281944,
0.030080948024988174,
0.002006123773753643,
0.013488910160958767,
-0.01387680135667324,
0.06578631699085236,
-0.011675519868731499,
-0.03696601465344429,
-0.018579980358481407,
0.020849142223596573,
-0.005920186638832092,
0.003224343992769718,
-0.04266801103949547,
-0.02870393544435501,
0.005881397519260645,
0.004114069044589996,
0.06904459744691849,
-0.01741630584001541,
0.006695968564599752,
-0.018618768081068993,
-0.013401634059846401,
0.048447586596012115,
0.019811533391475677,
0.05349016934633255,
-0.024107426404953003,
0.0039686099626123905,
-0.06997554004192352,
-0.008271776139736176,
0.009828188456594944,
0.009309384040534496,
0.0705573782324791,
-0.030701573938131332,
0.0390024408698082,
-0.06023947522044182,
-0.0033310139551758766,
-0.03388227894902229,
0.053528960794210434,
-0.019452733919024467,
-0.021430978551506996,
-0.025406861677765846,
-0.0030231254640966654,
0.028800908476114273,
-0.007151740603148937,
-0.028645751997828484,
0.06442869454622269,
0.052675601094961166,
0.013197991997003555,
0.02909182570874691,
-0.009081498719751835,
0.06916096806526184,
-0.04006914049386978,
0.025736568495631218,
-0.033824097365140915,
-0.007811155170202255,
-0.043055903166532516,
0.06535963714122772,
-0.01371194701641798,
-0.021489161998033524,
-0.014080443419516087,
0.01473985891789198,
-0.028025126084685326,
0.05864912271499634,
0.018250271677970886,
0.0009527573129162192,
0.027966942638158798,
0.021586135029792786,
-0.004841364920139313,
-0.037644822150468826,
0.038440000265836716,
0.005857154261320829,
0.038032714277505875,
0.023428617045283318,
-0.0456547737121582,
-0.0023746201768517494,
0.05892064422369003,
0.013896195217967033,
-0.05422716215252876,
-0.1093076840043068,
0.02798633649945259,
-0.03236950561404228,
-0.011830675415694714,
-0.01772661879658699,
-0.04705118015408516,
0.048059698194265366,
-0.02067459188401699,
-0.006618390325456858,
-0.015913229435682297,
-0.004780756775289774,
0.05500294640660286,
0.007617209572345018,
-0.039312753826379776,
0.06854034215211868,
0.01120035257190466,
-0.03851757571101189,
0.052675601094961166,
-0.008058436214923859,
-0.038905467838048935,
0.07265198975801468,
-0.000907907378859818,
0.017949657514691353,
0.01351800188422203,
-0.06784214079380035,
-0.015127749182283878,
0.002134612761437893,
-0.018841806799173355,
0.006535963620990515,
0.011074288748204708,
0.036209624260663986,
0.006642633583396673,
-0.11326417326927185,
-0.034929584711790085,
-0.01610717363655567,
-0.05030946433544159,
-0.011753098107874393,
0.01124883908778429,
-0.008834217675030231,
-0.036132048815488815,
0.0025697778910398483,
0.008921492844820023,
-0.01152036339044571,
0.042008597403764725,
-0.06202377378940582,
-0.004812272731214762,
0.0405346117913723,
-0.036132048815488815,
-0.02624082751572132,
0.02082974649965763,
-0.04922337085008621,
0.03442532569169998,
0.06931612640619278,
0.06834639608860016,
0.04317227005958557,
-0.0315549336373806,
-0.006652330979704857,
0.0005178950959816575,
-0.067725770175457,
-0.056321773678064346,
0.01572898030281067,
0.005745635833591223,
-0.03417319804430008,
-0.001819451223127544,
-0.03267981857061386,
-0.05414958670735359,
0.005745635833591223,
-0.050348252058029175,
-0.01674719527363777,
-0.012150686234235764,
-0.05093009024858475,
-0.0003384955052752048,
0.016436882317066193,
0.009896069765090942,
0.023506196215748787,
0.016815075650811195,
0.017862381413578987,
0.010017285123467445,
0.022361917421221733,
0.004438927862793207,
-0.011840373277664185,
0.0024025000166147947,
-0.03830423578619957,
0.07020827382802963,
0.006555357947945595,
0.018715741112828255,
-0.022943753749132156,
-0.04736149311065674,
0.012383420951664448,
0.0134695153683424,
-0.04096129164099693,
-0.017193268984556198,
0.00751053960993886,
0.01446833461523056,
0.07750062644481659,
0.014187113381922245,
0.03372712433338165,
-0.01923939399421215,
-0.024534106254577637,
-0.03141917288303375,
-0.038265448063611984,
0.005813516676425934,
-0.04507293552160263,
0.0028776663821190596,
-0.0055322954431176186,
-0.04022429883480072,
-0.01878362149000168,
-0.02934395521879196,
-0.026686901226639748,
-0.018861200660467148,
-0.027520867064595222,
0.0382266603410244,
0.0072147729806602,
-0.029790028929710388,
-0.05271438881754875,
-0.058532752096652985,
0.03300952538847923,
-0.00884876400232315,
-0.021915841847658157,
-0.008727547712624073,
0.02678387425839901,
-0.0477105937898159,
-0.016175055876374245,
0.01045366283506155,
-0.009382113814353943,
-0.06528205424547195,
-0.009915463626384735,
0.05116282403469086,
-0.0195012204349041,
0.02185765840113163,
0.040418244898319244,
0.02160552889108658,
0.05414958670735359,
-0.031128253787755966,
0.03593810275197029,
-0.015593218617141247,
0.03599628433585167,
-0.0430946908891201,
0.04173707216978073,
0.024262582883238792,
0.0007521449006162584,
-0.049960363656282425,
-0.03968125209212303,
-0.001983092864975333,
0.019297577440738678,
-0.03322286531329155,
-0.01731933280825615,
-0.05895943567156792,
0.017842985689640045,
-0.03289315849542618,
-0.01641748659312725,
-0.04689602181315422,
-0.03091491386294365,
-0.0005442595575004816,
0.004892275203019381,
-0.022148577496409416,
-0.03021671064198017,
0.05007673054933548,
-0.02368074655532837,
0.03260223940014839,
-0.025949908420443535,
-0.027152370661497116,
-0.02226494438946247,
-0.07556116580963135,
-0.037082381546497345,
0.034852009266614914,
-0.006928703282028437,
0.026357194408774376,
0.012781009078025818,
0.019714560359716415,
0.04553840309381485,
-0.001954000908881426,
0.0026715993881225586,
0.054964154958724976,
0.04945610463619232,
0.018017537891864777,
-0.017387215048074722,
-0.05748544633388519,
0.009803945198655128,
0.0024037121329456568,
-0.0390024408698082,
-0.011675519868731499,
-0.03712116926908493,
-0.0278311800211668,
-0.05217134207487106,
0.02185765840113163,
0.0219352375715971,
0.01386710349470377,
0.043754104524850845,
-0.0121215945109725,
0.0198794137686491,
0.014254994690418243,
-0.0001965213450603187,
0.04096129164099693,
-0.010676699690520763,
0.028878485783934593,
-0.09937767684459686,
-0.05740787088871002,
0.02529049478471279,
0.004795302636921406,
0.01049245148897171,
0.0035201108548790216,
0.03219495341181755,
0.06051099672913551,
0.017261149361729622,
0.014575004577636719,
-0.057601816952228546,
0.0036340539809316397,
0.022846780717372894,
-0.04173707216978073,
0.017018718644976616,
-0.03242768719792366,
-0.02059701271355152,
-0.1028686985373497,
0.033416811376810074,
0.01677628606557846,
0.07707394659519196,
0.0007242652354761958,
-0.02734631672501564,
-0.05581751838326454,
-0.06287713348865509,
0.06795850396156311,
-0.008606331422924995,
-0.014128929935395718,
0.05096887797117233,
-0.036830250173807144,
-0.06551479548215866,
-0.053916849195957184,
-0.018172694370150566,
-0.00618201307952404,
-0.022478284314274788,
-0.04697360098361969,
-0.0024740174412727356,
-0.007689939346164465,
-0.0110936826094985,
0.052326496690511703,
-0.004584386944770813,
0.02226494438946247,
0.033028919249773026,
-0.012596760876476765,
-0.04266801103949547,
-0.04030187800526619,
0.020732775330543518,
0.05628298595547676,
-0.003093430772423744,
0.03785816207528114,
0.043754104524850845,
-0.08037101477384567,
-0.01916181668639183,
-0.004720148630440235,
-0.03372712433338165,
0.07435870915651321,
0.02057761885225773,
0.02226494438946247,
-0.04243527725338936,
-0.0017770257545635104,
-0.007529934402555227,
0.03968125209212303,
-0.027249343693256378,
-0.02465047314763069,
0.06989795714616776,
-0.005566236097365618,
0.059967949986457825,
0.03498777002096176,
-0.0055129011161625385,
-0.04961125925183296,
0.06450627744197845,
-0.007311745546758175,
-0.024921998381614685,
-0.0004654692020267248,
0.03235011175274849,
0.012567669153213501,
-0.038905467838048935,
0.004567416850477457,
0.016126569360494614,
0.05787333846092224,
0.009726366959512234,
0.016456276178359985,
-0.012848889455199242,
-0.04189223051071167,
0.02273041382431984,
0.04902942478656769,
0.019171513617038727,
-0.014371361583471298,
-0.015641704201698303,
0.043055903166532516,
-0.010550635866820812,
-0.02901424840092659,
-0.006148072425276041,
-0.07463023066520691,
0.007917825132608414,
0.0382266603410244,
0.0025649294257164,
-0.007045070640742779,
0.009033012203872204,
0.05030946433544159,
0.026745084673166275,
-0.052016183733940125,
0.03531747683882713,
0.03141917288303375,
0.06574752926826477,
0.06276076287031174,
-0.044723834842443466,
0.046546921133995056,
-0.016950836405158043,
-0.018967870622873306,
-0.011471876874566078,
0.029790028929710388,
0.01467197760939598,
-0.011132472194731236,
-0.04243527725338936,
-0.040340665727853775,
-0.030565811321139336,
-0.007079010829329491,
-0.0031976765021681786,
0.006584450136870146,
-0.06287713348865509,
0.02488320879638195,
-0.023098910227417946,
0.04084492474794388,
0.03378530591726303,
-0.018841806799173355,
-0.0017782378708943725,
-0.07614300400018692,
-0.00823298655450344,
-0.0333586260676384,
0.02529049478471279,
-0.02527109906077385,
-0.06268318742513657,
0.033746518194675446,
-0.029150009155273438,
-0.0055322954431176186,
0.06512690335512161,
-0.037799980491399765,
0.04561598226428032,
0.04266801103949547,
0.046624500304460526,
0.029188798740506172,
0.013052532449364662,
0.035899315029382706,
-0.03266042470932007,
0.024126820266246796,
0.032699212431907654,
-0.0004784999182447791,
0.0017867229180410504,
-0.0016606583958491683,
-0.09860189259052277,
-0.027520867064595222,
-0.008068133145570755,
-0.036190230399370193,
0.010385781526565552,
0.009702123701572418,
0.015525337308645248,
0.03363015130162239,
-0.007064464967697859,
0.0038570913020521402,
-0.02065519616007805,
0.011277930811047554,
-0.05197739601135254,
0.07428112626075745,
-0.018764227628707886,
-0.0036607214715331793,
-0.050503410398960114,
0.022187365218997,
-0.04196980595588684,
0.06074373424053192,
0.01311071589589119,
0.09417993575334549,
0.004998945631086826,
-0.031923431903123856,
0.04127160459756851,
0.033028919249773026,
0.007447507232427597,
0.0353950560092926,
-0.047322701662778854,
0.023583773523569107,
-0.010026982985436916,
0.034522298723459244,
-0.050270676612854004,
0.06113162264227867,
-0.016912048682570457,
-0.003573445836082101,
-0.008669364266097546,
-0.07257440686225891,
0.03919638693332672,
-0.018899990245699883,
0.06206256151199341,
0.029188798740506172,
-0.02488320879638195,
0.0019103632075712085,
0.0006327471928671002,
-0.04189223051071167,
-0.03240829333662987,
-0.019918203353881836,
-0.03161311894655228,
0.03816847503185272,
0.05349016934633255,
0.043909262865781784,
-0.03904122859239578,
0.04072855785489082,
0.06016189604997635,
0.05189981684088707
] |
729,679 | scs | SCS | null | class SCS(object):
def __init__(self, data, cone, **settings):
"""Initialize the SCS solver.
@param data Dictionary containing keys `P`, `A`, `b`, `c`.
@param cone Dictionary containing cone information.
@param settings Settings as kwargs, see docs.
"""
self._settings = settings
if not data or not cone:
raise ValueError("Missing data or cone information")
if "b" not in data or "c" not in data:
raise ValueError("Missing one of b, c from data dictionary")
if "A" not in data:
raise ValueError("Missing A from data dictionary")
A = data["A"]
b = data["b"]
c = data["c"]
if A is None or b is None or c is None:
raise ValueError("Incomplete data specification")
if not sparse.issparse(A):
raise TypeError("A is required to be a sparse matrix")
if not sparse.isspmatrix_csc(A):
warn(
"Converting A to a CSC (compressed sparse column) matrix;"
" may take a while."
)
A = A.tocsc()
if sparse.issparse(b):
b = b.todense()
if sparse.issparse(c):
c = c.todense()
m = len(b)
n = len(c)
if not A.has_sorted_indices:
A.sort_indices()
Adata, Aindices, Acolptr = A.data, A.indices, A.indptr
if A.shape != (m, n):
raise ValueError("A shape not compatible with b,c")
Pdata, Pindices, Pcolptr = None, None, None
if "P" in data:
P = data["P"]
if P is not None:
if not sparse.issparse(P):
raise TypeError("P is required to be a sparse matrix")
if P.shape != (n, n):
raise ValueError("P shape not compatible with A,b,c")
if not sparse.isspmatrix_csc(P):
warn(
"Converting P to a CSC (compressed sparse column) "
"matrix; may take a while."
)
P = P.tocsc()
# extract upper triangular component only
if sparse.tril(P, -1).data.size > 0:
P = sparse.triu(P, format="csc")
if not P.has_sorted_indices:
P.sort_indices()
Pdata, Pindices, Pcolptr = P.data, P.indices, P.indptr
# Which scs are we using (scs_direct, scs_indirect, ...)
_scs = _select_scs_module(self._settings)
# Initialize solver
self._solver = _scs.SCS(
(m, n),
Adata,
Aindices,
Acolptr,
Pdata,
Pindices,
Pcolptr,
b,
c,
cone,
**self._settings
)
def solve(self, warm_start=True, x=None, y=None, s=None):
"""Solve the optimization problem.
@param warm_start Whether to warm-start. By default the solution of
the previous problem is used as the warm-start. The
warm-start can be overriden to another value by
passing `x`, `y`, `s` args.
@param x Primal warm-start override.
@param y Dual warm-start override.
@param s Slack warm-start override.
@return dictionary with solution with keys:
'x' - primal solution
's' - primal slack solution
'y' - dual solution
'info' - information dictionary (see docs)
"""
return self._solver.solve(warm_start, x, y, s)
def update(self, b=None, c=None):
"""Update the `b` vector, `c` vector, or both, before another solve.
After a solve we can reuse the SCS workspace in another solve if the
only problem data that has changed are the `b` and `c` vectors.
@param b New `b` vector.
@param c New `c` vector.
"""
self._solver.update(b, c)
| (data, cone, **settings) | [
-0.008927764371037483,
-0.03765592351555824,
0.005834599491208792,
0.029255757108330727,
-0.029441967606544495,
-0.015186510048806667,
-0.03422137349843979,
-0.02702122926712036,
0.05664940923452377,
-0.04978030547499657,
-0.055697664618492126,
0.0020871106535196304,
-0.015858937054872513,
0.02077282965183258,
-0.05611146613955498,
0.02586258575320244,
0.014265802688896656,
-0.024952223524451256,
-0.009698470123112202,
0.0018685718532651663,
-0.012248520739376545,
-0.02704191952943802,
0.032069604843854904,
0.08491203933954239,
-0.021228009834885597,
0.02786952257156372,
0.01825898513197899,
-0.016417570412158966,
0.04746301844716072,
-0.0811050683259964,
0.0021776296198368073,
0.03376619145274162,
-0.060787420719861984,
0.006869102828204632,
0.038214556872844696,
0.030952343717217445,
0.05176655203104019,
-0.005089757032692432,
-0.005353555083274841,
0.012217485345900059,
-0.0300005991011858,
-0.035483468323946,
0.006625994574278593,
-0.04237326234579086,
0.03697315230965614,
0.017172757536172867,
-0.011834719218313694,
0.06600131839513779,
0.012341625988483429,
-0.027414340525865555,
0.03444896265864372,
-0.09418119490146637,
-0.02331770770251751,
-0.020296957343816757,
-0.008007057011127472,
0.009098458103835583,
0.018558992072939873,
0.07382216304540634,
0.04833200201392174,
-0.07750499993562698,
0.04535263031721115,
0.0029095408972352743,
0.014503737911581993,
0.03049716167151928,
-0.037035223096609116,
-0.01018468663096428,
-0.0016694299411028624,
-0.01951073482632637,
0.043283622711896896,
0.03842145949602127,
-0.008094989694654942,
-0.022862525656819344,
-0.024890152737498283,
-0.02203492261469364,
0.05532524362206459,
-0.039331819862127304,
-0.02474532276391983,
-0.03831800818443298,
-0.04812509939074516,
-0.0275384820997715,
0.019965916872024536,
-0.024807391688227654,
-0.04065598547458649,
-0.03916630148887634,
-0.0006924707558937371,
-0.004957857541739941,
0.1005537360906601,
0.04291120171546936,
-0.0014004589756950736,
0.01578652299940586,
-0.009269150905311108,
0.008617413230240345,
0.011172637343406677,
0.05354589968919754,
0.07336698472499847,
0.04791820049285889,
-0.0035147254820913076,
-0.04431812837719917,
-0.00912432000041008,
-0.022841835394501686,
0.010707110166549683,
0.04680093377828598,
-0.011079532094299793,
0.004381122067570686,
-0.015765832737088203,
-0.021745262667536736,
0.004678541794419289,
0.04183531925082207,
0.029545418918132782,
-0.0657530352473259,
-0.04282844066619873,
0.04082150384783745,
-0.024952223524451256,
-0.010272619314491749,
-0.04485606774687767,
-0.04044908285140991,
-0.0264419075101614,
0.046925075352191925,
-0.06699444353580475,
0.017855528742074966,
-0.024352211505174637,
0.008436375297605991,
-0.04915960505604744,
0.023628057911992073,
0.019593495875597,
0.001458649872802198,
0.00007277893018908799,
0.03980769217014313,
0.05466316267848015,
-0.06600131839513779,
-0.003995769657194614,
-0.05904945731163025,
0.044483646750450134,
0.04688369482755661,
-0.00007673913933103904,
-0.01612790860235691,
-0.007039796095341444,
0.0010461416095495224,
-0.06666339933872223,
-0.003964734263718128,
0.06583579629659653,
0.020731449127197266,
-0.044649168848991394,
-0.021496981382369995,
0.04572505131363869,
0.01174161396920681,
0.052842434495687485,
-0.06058052182197571,
-0.03566967695951462,
0.06293918937444687,
-0.011338157579302788,
-0.022345274686813354,
-0.009620881639420986,
-0.010257101617753506,
-0.03262823820114136,
-0.049449265003204346,
0.032897207885980606,
-0.061366744339466095,
0.0038328352384269238,
0.016355499625205994,
-0.03057992085814476,
-0.03304203972220421,
-0.04568367078900337,
0.010572625324130058,
-0.014907194301486015,
-0.018962448462843895,
-0.03831800818443298,
-0.04978030547499657,
-0.04738025739789009,
-0.002347029745578766,
-0.03608347848057747,
0.003351791063323617,
-0.07249800115823746,
0.03676625341176987,
0.029586797580122948,
-0.024683251976966858,
0.0030181638430804014,
-0.024434970691800117,
0.052511394023895264,
-0.0882224515080452,
-0.0012045499170199037,
0.059339117258787155,
-0.04044908285140991,
0.028904026374220848,
-0.02600741572678089,
0.07390492409467697,
0.014027866534888744,
-0.031469594687223434,
0.03792489692568779,
0.0060311551205813885,
0.006315643433481455,
-0.010029510594904423,
0.010810560546815395,
0.042187049984931946,
0.03209029510617256,
0.020638342946767807,
0.011596783995628357,
-0.015217545442283154,
-0.009874335490167141,
0.05400107800960541,
-0.029855769127607346,
-0.0017586558824405074,
0.06062190234661102,
0.02408323995769024,
0.01681068167090416,
0.011596783995628357,
0.008094989694654942,
-0.006703582126647234,
-0.06053914129734039,
0.06670477986335754,
-0.03149028494954109,
-0.03649728000164032,
0.025655684992671013,
-0.037200745195150375,
0.07539460808038712,
0.003398343687877059,
0.06993243098258972,
-0.01494857482612133,
0.04402846470475197,
-0.013458889909088612,
0.06318747252225876,
-0.018983138725161552,
-0.003434551414102316,
0.03566967695951462,
-0.019717635586857796,
-0.012217485345900059,
-0.001236231648363173,
0.02778676152229309,
0.0016164116095751524,
-0.02213837392628193,
-0.02373150922358036,
-0.03024888038635254,
-0.0035017940681427717,
-0.03057992085814476,
0.03862835839390755,
-0.09062249958515167,
-0.018714167177677155,
0.03550415858626366,
-0.011131256818771362,
-0.059090837836265564,
-0.041607730090618134,
-0.03608347848057747,
-0.009708814322948456,
-0.006331161130219698,
-0.043035343289375305,
-0.022365964949131012,
0.07522909343242645,
0.023669438436627388,
-0.02457980252802372,
0.020400408655405045,
0.02507636323571205,
-0.049532026052474976,
-0.020141782239079475,
-0.005004410166293383,
-0.021724572405219078,
-0.05987706035375595,
-0.015196855179965496,
0.05611146613955498,
-0.0018646924290806055,
-0.04249740019440651,
-0.04589057341217995,
-0.008229474537074566,
0.0231521874666214,
0.04485606774687767,
-0.003232823219150305,
-0.00882431399077177,
-0.01145195309072733,
0.012569217011332512,
-0.020245231688022614,
0.029690248891711235,
0.1301819086074829,
0.03858697786927223,
-0.023710818961262703,
0.05851151421666145,
-0.038649048656225204,
0.00032101935357786715,
-0.03449034318327904,
-0.0005741494242101908,
0.03461448475718498,
0.008969144895672798,
0.022841835394501686,
0.03600072115659714,
-0.04044908285140991,
0.003662142204120755,
0.026814328506588936,
-0.04812509939074516,
-0.04696645587682724,
-0.03641452267765999,
0.043531905859708786,
-0.00308282021433115,
-0.02762124128639698,
-0.007551874965429306,
0.05458040162920952,
-0.01900382898747921,
0.0706772729754448,
0.004634575452655554,
-0.02070041373372078,
-0.013914071023464203,
0.04063529521226883,
-0.03378688171505928,
0.024786703288555145,
-0.06223572790622711,
-0.011203671805560589,
0.0005796452169306576,
-0.0021065075416117907,
-0.04195946082472801,
0.005834599491208792,
-0.02797297202050686,
0.02095904015004635,
0.005425970535725355,
-0.0004826605145353824,
0.023028045892715454,
-0.042952582240104675,
0.038380078971385956,
-0.021331461146473885,
-0.013820965774357319,
-0.019024517387151718,
-0.01832105591893196,
0.028448844328522682,
0.06707720458507538,
-0.028324704617261887,
-0.07299456000328064,
0.02331770770251751,
-0.03124200366437435,
-0.013707170262932777,
-0.026255697011947632,
0.004611298907548189,
-0.07009795308113098,
0.022759076207876205,
-0.017793459817767143,
-0.0057570114731788635,
-0.01967625506222248,
0.017927944660186768,
0.0030543713364750147,
-0.0006957035511732101,
-0.03049716167151928,
-0.0005870807217434049,
-0.009900198318064213,
0.02913161739706993,
-0.0674082413315773,
0.10609867423772812,
0.033579982817173004,
-0.028759196400642395,
0.009755367413163185,
-0.04332500323653221,
-0.05760115012526512,
0.018610717728734016,
-0.04800095781683922,
-0.029710939154028893,
-0.017865873873233795,
-0.02391771972179413,
0.02170388214290142,
0.01304508838802576,
0.06442887336015701,
0.03107648342847824,
0.08280165493488312,
-0.0006620822241529822,
-0.031386833637952805,
0.06778066605329514,
-0.05859427526593208,
0.06422197073698044,
0.019655564799904823,
-0.033579982817173004,
-0.025552235543727875,
-0.042456019669771194,
0.0020806449465453625,
-0.047669917345047,
-0.02271769568324089,
0.07812570035457611,
-0.04071805626153946,
0.02542809396982193,
-0.07080141454935074,
0.018290020525455475,
-0.012445076368749142,
0.005138895940035582,
0.03778006508946419,
-0.04837338253855705,
0.03117993287742138,
-0.04638713598251343,
-0.063559889793396,
0.043366383761167526,
-0.04189739003777504,
-0.020741794258356094,
0.011803683824837208,
-0.020752139389514923,
-0.02702122926712036,
0.014245112426578999,
0.01723482646048069,
0.061366744339466095,
0.054373499006032944,
-0.03436620533466339,
-0.0021453015506267548,
0.027186749503016472,
-0.023379778489470482,
0.031035102903842926,
0.0031552354339510202,
0.08127059042453766,
0.04696645587682724,
0.007427734788507223,
-0.006874275393784046,
-0.005689769051969051,
-0.03910423070192337,
0.020669378340244293,
0.007489805109798908,
-0.031221313402056694,
-0.05611146613955498,
0.04746301844716072,
-0.007929468527436256,
-0.0220556128770113,
0.10253997892141342,
-0.020059021189808846,
0.009853645227849483,
0.032152365893125534,
-0.016407225281000137,
-0.08731208741664886,
-0.03091096319258213,
-0.035276565700769424,
0.0371386744081974,
0.042869821190834045,
0.008798452094197273,
0.02507636323571205,
-0.006243228446692228,
0.039662860333919525,
0.005102687980979681,
-0.00009843946463661268,
-0.011658853851258755,
-0.055118344724178314,
-0.02855229564011097,
-0.014265802688896656,
0.022593555971980095,
-0.06107708439230919,
-0.008720863610506058,
-0.01714172214269638,
-0.04365604370832443,
-0.050897568464279175,
-0.02246941439807415,
-0.025034982711076736,
0.025614304468035698,
0.036786943674087524,
0.0016332223312929273,
0.06956001371145248,
0.019479699432849884,
-0.01808311976492405,
-0.015083059668540955,
-0.01440028753131628,
-0.00511303311213851,
0.0013707170728594065,
0.02517981454730034,
-0.03910423070192337,
0.004109564702957869,
0.03182132542133331,
0.00464750686660409,
-0.024124620482325554,
-0.021248700097203255,
-0.0087363813072443,
-0.004634575452655554,
-0.0106864208355546,
-0.008762244135141373,
-0.01579686813056469,
0.02059696428477764,
-0.01757621392607689,
-0.03295927867293358,
0.03436620533466339,
0.0005010875756852329,
0.007691532839089632,
-0.010319171473383904,
-0.007707050535827875,
0.006558751687407494,
-0.010153651237487793,
-0.025552235543727875,
-0.022655624896287918,
-0.023255636915564537,
-0.01773138903081417,
-0.04258016124367714,
0.0004529185243882239,
-0.023752199485898018,
-0.06298056989908218,
-0.011896789073944092,
-0.018207261338829994,
0.004114737268537283,
0.01689344085752964,
-0.014741674065589905,
0.010469174943864346,
0.020245231688022614,
0.053256236016750336,
-0.06670477986335754,
0.08325683325529099,
-0.057311490178108215,
-0.002728502731770277,
-0.028697125613689423,
-0.033579982817173004,
0.02000729739665985,
0.050732050091028214,
0.023421157151460648,
-0.014627878554165363,
0.04179393872618675,
-0.02567637525498867,
-0.010453657247126102,
0.03331100940704346,
-0.010831250809133053,
0.015569277107715607,
-0.01364510040730238,
-0.08764313161373138,
-0.027310891076922417,
0.05429074168205261,
-0.028097113594412804,
-0.04551815241575241,
-0.0014547704486176372,
-0.005519075784832239,
-0.01293129287660122,
-0.025614304468035698,
-0.03649728000164032,
0.07076003402471542,
0.00595356710255146,
0.006677719764411449,
0.018196916207671165,
-0.04824924096465111,
0.01564169116318226,
-0.02923506684601307,
-0.014441668055951595,
0.009620881639420986,
-0.009450188837945461,
0.009858817793428898,
0.06873241066932678,
0.0061656404286623,
0.03393171355128288,
0.0275384820997715,
-0.044897448271512985,
0.004130254965275526,
0.044400885701179504,
-0.02044178731739521,
-0.04216635972261429,
-0.0264419075101614,
0.10245721787214279,
0.028924716636538506,
0.03066268190741539,
0.07171177864074707,
-0.042787063866853714,
0.016014114022254944,
-0.05656664818525314,
-0.0029819561168551445,
0.04816647991538048,
0.08582240343093872,
-0.003481104038655758,
0.002021161140874028,
0.010500210337340832,
-0.01883830688893795,
0.016148598864674568,
-0.10634694993495941,
-0.018455540761351585,
-0.009015697054564953,
-0.014379598200321198,
0.03693177178502083,
0.02246941439807415,
0.06765652447938919,
-0.04646989330649376,
-0.031717874109745026,
0.007210488896816969,
0.007986366748809814,
0.017358968034386635,
-0.00778981065377593,
-0.02813849411904812,
0.025138434022665024,
-0.017948634922504425,
-0.023690128698945045,
0.005369072780013084,
0.045145731419324875,
-0.009077767841517925,
-0.0027491929940879345,
-0.007851880975067616,
0.03773868456482887,
-0.006382886320352554,
-0.0159623883664608,
0.03175925463438034,
-0.030890272930264473,
-0.01756586879491806,
-0.0028681608382612467,
-0.026152247563004494,
-0.005612181033939123,
-0.011131256818771362,
0.04775267839431763,
-0.027662621811032295,
0.0017483107512816787,
0.0033828262239694595,
0.039331819862127304,
0.03413861244916916,
-0.07899468392133713,
0.011110566556453705,
-0.016572745516896248,
-0.023214256390929222,
0.014586498029530048,
-0.014855469577014446,
0.009300186298787594,
-0.042021527886390686,
-0.002287545707076788,
0.03422137349843979,
0.016345154494047165,
0.014493392780423164,
0.08313269913196564,
0.002495739609003067,
-0.13804413378238678,
-0.0015026162145659328,
-0.01859002746641636,
-0.014162352308630943,
0.009051905013620853,
-0.006388058885931969,
0.01791759952902794,
0.0009853645460680127,
0.048621661961078644,
-0.0079811941832304,
0.022676315158605576,
0.00042220670729875565,
-0.020928004756569862,
-0.029938530176877975,
-0.05656664818525314,
-0.009791575372219086,
-0.006346678361296654,
0.0005230708047747612,
0.02811780385673046,
-0.03833869844675064,
0.02729020081460476,
0.01833140105009079,
-0.019065897911787033,
0.019893500953912735,
-0.06231848523020744,
0.08387754112482071,
0.04189739003777504,
-0.04754577949643135,
-0.04266292229294777,
0.003519898047670722,
0.027641931548714638,
0.015465826727449894,
0.04378018528223038,
0.041421517729759216,
0.016458949074149132,
0.015931352972984314,
0.04804233834147453,
0.06074604019522667,
-0.0028862645849585533,
0.11495402455329895,
0.0014379597268998623,
0.008498446084558964,
0.04613885283470154,
0.016417570412158966,
-0.04026287421584129,
-0.0203486829996109,
0.0564425066113472,
-0.05338037759065628,
0.03732488304376602,
0.058925315737724304,
-0.04452502727508545,
0.04671817645430565,
-0.038897328078746796,
-0.04721473529934883,
0.04340776428580284,
-0.028490224853157997,
0.03869042918086052,
-0.02280045486986637,
0.04406984522938728,
-0.022076303139328957,
0.017803804948925972,
0.02567637525498867,
0.057228729128837585,
-0.027828142046928406,
-0.022428033873438835,
-0.030600611120462418,
0.07224971801042557,
0.05565628409385681,
0.007960503920912743,
0.07386354357004166,
-0.020296957343816757,
-0.018807273358106613,
-0.05776667222380638,
-0.011058841831982136,
0.015776177868247032,
-0.013427854515612125,
0.02162112109363079,
-0.03478000685572624,
-0.03844214603304863,
-0.0070191058330237865,
0.07336698472499847,
0.0523458756506443,
0.02331770770251751,
-0.025945346802473068,
0.004042322281748056,
0.00431129289790988,
0.017131377011537552,
-0.024952223524451256,
0.002211251063272357,
-0.0537114180624485,
-0.0011463591363281012,
0.02507636323571205,
0.025966037064790726,
-0.030373020097613335,
0.011410572566092014,
0.02559361420571804,
-0.03968355059623718,
-0.018869342282414436,
0.05209759250283241,
0.004554401151835918,
0.03335238993167877,
0.016676194965839386,
-0.0031138553749769926,
0.028159184381365776,
-0.0056173535995185375,
0.027683312073349953,
-0.017741734161973,
-0.009320875629782677,
0.04663541540503502,
-0.024538422003388405,
0.029379896819591522,
-0.006046672817319632,
0.016200324520468712,
0.017296897247433662,
0.013003707863390446,
-0.017193447798490524,
-0.01722448132932186,
-0.014834779314696789,
0.0008230768144130707,
0.04011804237961769,
-0.001276318565942347,
-0.00646564643830061,
0.02526257373392582,
-0.000008324519512825646,
-0.022572865709662437,
0.003589726984500885,
0.011182982474565506,
-0.044814687222242355,
0.07394630461931229,
-0.008265682496130466,
-0.025552235543727875,
-0.0026535012293606997,
-0.043035343289375305,
0.0498630665242672,
-0.016262393444776535,
-0.0356283001601696,
0.0062173656187951565,
-0.0016784818144515157,
-0.017700353637337685,
0.049035463482141495,
0.0014108041068539023,
0.016427913680672646,
-0.003765592584386468,
-0.007717395666986704,
-0.04175255820155144,
0.06062190234661102,
-0.019645219668745995,
0.024207379668951035,
-0.0018789168680086732,
-0.021352151408791542,
0.028097113594412804,
-0.009341565892100334,
0.005648388992995024,
-0.008374305441975594,
-0.0038043863605707884,
-0.053918320685625076,
-0.026235006749629974,
-0.009000180289149284,
-0.032814450562000275,
-0.06790480762720108,
0.005958739668130875,
-0.049118224531412125,
0.02737296186387539,
0.08838797360658646,
0.014565808698534966,
0.0192521084100008,
0.010820905677974224,
0.05971153825521469
] |
729,680 | scs | __init__ | Initialize the SCS solver.
@param data Dictionary containing keys `P`, `A`, `b`, `c`.
@param cone Dictionary containing cone information.
@param settings Settings as kwargs, see docs.
| def __init__(self, data, cone, **settings):
"""Initialize the SCS solver.
@param data Dictionary containing keys `P`, `A`, `b`, `c`.
@param cone Dictionary containing cone information.
@param settings Settings as kwargs, see docs.
"""
self._settings = settings
if not data or not cone:
raise ValueError("Missing data or cone information")
if "b" not in data or "c" not in data:
raise ValueError("Missing one of b, c from data dictionary")
if "A" not in data:
raise ValueError("Missing A from data dictionary")
A = data["A"]
b = data["b"]
c = data["c"]
if A is None or b is None or c is None:
raise ValueError("Incomplete data specification")
if not sparse.issparse(A):
raise TypeError("A is required to be a sparse matrix")
if not sparse.isspmatrix_csc(A):
warn(
"Converting A to a CSC (compressed sparse column) matrix;"
" may take a while."
)
A = A.tocsc()
if sparse.issparse(b):
b = b.todense()
if sparse.issparse(c):
c = c.todense()
m = len(b)
n = len(c)
if not A.has_sorted_indices:
A.sort_indices()
Adata, Aindices, Acolptr = A.data, A.indices, A.indptr
if A.shape != (m, n):
raise ValueError("A shape not compatible with b,c")
Pdata, Pindices, Pcolptr = None, None, None
if "P" in data:
P = data["P"]
if P is not None:
if not sparse.issparse(P):
raise TypeError("P is required to be a sparse matrix")
if P.shape != (n, n):
raise ValueError("P shape not compatible with A,b,c")
if not sparse.isspmatrix_csc(P):
warn(
"Converting P to a CSC (compressed sparse column) "
"matrix; may take a while."
)
P = P.tocsc()
# extract upper triangular component only
if sparse.tril(P, -1).data.size > 0:
P = sparse.triu(P, format="csc")
if not P.has_sorted_indices:
P.sort_indices()
Pdata, Pindices, Pcolptr = P.data, P.indices, P.indptr
# Which scs are we using (scs_direct, scs_indirect, ...)
_scs = _select_scs_module(self._settings)
# Initialize solver
self._solver = _scs.SCS(
(m, n),
Adata,
Aindices,
Acolptr,
Pdata,
Pindices,
Pcolptr,
b,
c,
cone,
**self._settings
)
| (self, data, cone, **settings) | [
-0.0257708877325058,
-0.014535893686115742,
0.017488807439804077,
0.027142947539687157,
-0.017031453549861908,
-0.01926851086318493,
-0.013690783642232418,
-0.02585042640566826,
0.06852351874113083,
-0.04227539151906967,
-0.041639070957899094,
0.0162559412419796,
-0.01573893241584301,
0.020640572533011436,
-0.04299124702811241,
0.023245498538017273,
0.020053965970873833,
-0.02421986125409603,
0.008296992629766464,
0.0014192878734320402,
-0.014088482595980167,
-0.028972363099455833,
0.009877845644950867,
0.07079040259122849,
-0.022788146510720253,
0.020093735307455063,
0.010688157752156258,
-0.01637525111436844,
0.05806403607130051,
-0.07778990268707275,
-0.00026658253045752645,
0.03292946517467499,
-0.06673387438058853,
0.022151827812194824,
0.04450250416994095,
0.0493544302880764,
0.041519761085510254,
-0.034321412444114685,
-0.009152045473456383,
0.033724863082170486,
-0.01649456098675728,
-0.03883529454469681,
-0.0036464016884565353,
-0.03225337713956833,
0.03209429979324341,
0.021734243258833885,
0.0006555817672051489,
0.058421965688467026,
-0.00322384643368423,
-0.01665364019572735,
0.01779702492058277,
-0.07973862439393997,
-0.014197849668562412,
-0.011016258969902992,
-0.026884444057941437,
0.01589801348745823,
0.01567927747964859,
0.07894323021173477,
0.03909379988908768,
-0.05683116987347603,
0.04541721194982529,
0.01295504067093134,
0.011105741374194622,
0.023185843601822853,
-0.023444348946213722,
-0.004491511732339859,
-0.002077976707369089,
-0.022052403539419174,
0.04859880357980728,
0.034142449498176575,
-0.0013136491179466248,
-0.022589296102523804,
-0.030085919424891472,
-0.006865276955068111,
0.06355228275060654,
-0.03813932090997696,
-0.029270637780427933,
-0.02386193349957466,
-0.04140045493841171,
-0.0031368499621748924,
0.017906391993165016,
-0.022768260911107063,
-0.028495123609900475,
-0.018065471202135086,
0.005702007561922073,
-0.0020580915734171867,
0.0951295718550682,
0.04438319429755211,
-0.017339671030640602,
0.04947374016046524,
-0.018343860283493996,
-0.009823162108659744,
-0.003189047798514366,
0.04434342309832573,
0.06912006437778473,
0.06299550086259842,
-0.00007907372491899878,
-0.039889197796583176,
-0.002667068038135767,
-0.021316660568118095,
0.018761444836854935,
0.03837794065475464,
0.000730150262825191,
0.001528655062429607,
-0.021237120032310486,
-0.017399325966835022,
-0.001088079297915101,
0.05066683515906334,
0.028693974018096924,
-0.052774641662836075,
-0.03328739479184151,
0.05058729648590088,
0.0125871691852808,
-0.006770823150873184,
-0.052973490208387375,
-0.06788720190525055,
0.005880972370505333,
0.04155953228473663,
-0.07627864181995392,
0.011185280978679657,
-0.009519916959106922,
0.007690501864999533,
-0.04927489161491394,
0.034202102571725845,
0.008142884820699692,
0.014943535439670086,
-0.005299337673932314,
0.018065471202135086,
0.052058782428503036,
-0.06585893034934998,
0.0071038962341845036,
-0.06876213848590851,
0.04987144097685814,
0.03082166239619255,
-0.0065073478035628796,
-0.041241373866796494,
0.007079040165990591,
-0.0006341433036141098,
-0.06768834590911865,
-0.0025440300814807415,
0.06685318052768707,
0.010220861062407494,
-0.0358724370598793,
-0.026029391214251518,
0.05496198311448097,
0.022569410502910614,
0.05122361704707146,
-0.05428589507937431,
-0.030026264488697052,
0.06379090249538422,
-0.01855265349149704,
-0.0005247761146165431,
-0.016504503786563873,
-0.021316660568118095,
-0.017001627013087273,
-0.05150200426578522,
0.03056315891444683,
-0.06152401491999626,
0.005083088763058186,
0.019974425435066223,
-0.021634818986058235,
-0.014883880503475666,
-0.0602513812482357,
0.011354302987456322,
-0.013790208846330643,
-0.019427590072155,
-0.03127901628613472,
-0.05122361704707146,
-0.0491555817425251,
-0.0043498314917087555,
-0.02535330317914486,
-0.014734743162989616,
-0.08200550824403763,
0.03738369420170784,
0.027898576110601425,
-0.041320912539958954,
0.011622749269008636,
-0.008749375119805336,
0.04326963797211647,
-0.08295998722314835,
-0.003057310124859214,
0.06812581419944763,
-0.02533341757953167,
0.03915345296263695,
-0.01797598972916603,
0.0616433247923851,
0.021296774968504906,
-0.021316660568118095,
0.03082166239619255,
-0.013104178011417389,
0.023185843601822853,
0.004322489723563194,
-0.004498968366533518,
0.04939420148730278,
0.04299124702811241,
0.02429940178990364,
0.004695332143455744,
-0.014436469413340092,
-0.03861656039953232,
0.0610467791557312,
-0.0241800919175148,
-0.0162559412419796,
0.05170085281133652,
0.023603428155183792,
0.01224912516772747,
0.0011247420916333795,
0.022251252084970474,
0.01621617190539837,
-0.05038844794034958,
0.041042525321245193,
-0.017409268766641617,
-0.03662806749343872,
0.04442296549677849,
-0.04521836340427399,
0.0771138146519661,
-0.008262193761765957,
0.04529790207743645,
-0.019725864753127098,
0.04593421891331673,
-0.008003690280020237,
0.06080815941095352,
-0.002980255987495184,
0.005702007561922073,
0.03760242834687233,
-0.019566785544157028,
-0.011553152464330196,
0.0014031314058229327,
0.01252751424908638,
-0.01257722731679678,
0.013511819764971733,
-0.046888697892427444,
-0.007988776080310345,
-0.015351176261901855,
-0.015132442116737366,
0.03529577702283859,
-0.07588094472885132,
-0.006830478087067604,
0.040923215448856354,
-0.04358779639005661,
-0.059853680431842804,
-0.041201602667570114,
-0.040724363178014755,
-0.027023639529943466,
-0.03012569062411785,
-0.03179602697491646,
-0.017528578639030457,
0.08399400115013123,
0.01883104257285595,
-0.04299124702811241,
0.02390170283615589,
0.021654704585671425,
-0.053729116916656494,
-0.017707541584968567,
-0.003492293180897832,
-0.034062907099723816,
-0.07321636378765106,
-0.012905328534543514,
0.03879552707076073,
0.0001480496139265597,
-0.041241373866796494,
-0.04263332113623619,
-0.019964484497904778,
0.03722461313009262,
0.053132571280002594,
0.014834168367087841,
-0.01615651696920395,
-0.005677151493728161,
0.015013132244348526,
-0.001990980003029108,
0.013601301237940788,
0.11549175530672073,
0.03636956214904785,
-0.020441722124814987,
0.05659255012869835,
-0.03750300407409668,
-0.012438032776117325,
-0.034241873770952225,
-0.0032114183995872736,
0.039133571088314056,
0.027182718738913536,
0.039590924978256226,
0.03571335971355438,
-0.04490020498633385,
0.014804340898990631,
0.029708106070756912,
-0.04307078942656517,
-0.040605057030916214,
-0.039948850870132446,
0.033665210008621216,
0.0031020513270050287,
-0.03853702172636986,
0.0007028084946796298,
0.04851926118135452,
-0.005970454309135675,
0.06172286719083786,
-0.014018885791301727,
0.0020692769903689623,
-0.026546400040388107,
0.034261759370565414,
-0.03971023112535477,
0.03328739479184151,
-0.06172286719083786,
0.007367371581494808,
-0.010071723721921444,
-0.017160706222057343,
-0.04832041263580322,
-0.004250406753271818,
-0.0033779549412429333,
0.013720611110329628,
0.010688157752156258,
0.015530141070485115,
0.03609117493033409,
-0.03939207270741463,
0.04820110276341438,
-0.020113620907068253,
0.015748875215649605,
-0.001835628878325224,
-0.021336544305086136,
0.028833169490098953,
0.059535522013902664,
-0.03603151813149452,
-0.07663657516241074,
0.0183339174836874,
-0.03275050222873688,
-0.027958231046795845,
-0.013273200020194054,
0.007074068766087294,
-0.08884593099355698,
0.017826851457357407,
-0.011553152464330196,
-0.013730553910136223,
-0.004824584349989891,
0.005493215750902891,
0.000539379077963531,
-0.020859306678175926,
-0.03615082800388336,
-0.004357288125902414,
-0.010369998402893543,
0.010966546833515167,
-0.06076838821172714,
0.07953977584838867,
0.029290521517395973,
-0.021137695759534836,
0.016305653378367424,
-0.05078614503145218,
-0.0610467791557312,
-0.006397980730980635,
-0.06307504326105118,
-0.03738369420170784,
-0.006611743941903114,
-0.017647888511419296,
0.005060718394815922,
0.021614933386445045,
0.07906253635883331,
0.03183579444885254,
0.08645973354578018,
0.0024520622100681067,
-0.02573111653327942,
0.06800650805234909,
-0.045973990112543106,
0.10586743801832199,
0.021853553131222725,
-0.029230866581201553,
-0.04183792322874069,
-0.03702576458454132,
0.0026422119699418545,
-0.03529577702283859,
-0.013422337360680103,
0.08272136747837067,
-0.018164895474910736,
0.03298912197351456,
-0.07842621952295303,
0.023066535592079163,
0.0010271816281601787,
0.007088982500135899,
0.027480991557240486,
-0.058700352907180786,
0.033844172954559326,
-0.052973490208387375,
-0.0660180151462555,
0.010976488701999187,
-0.033764634281396866,
-0.015430716797709465,
0.01223918329924345,
-0.03601163253188133,
-0.04474112391471863,
0.0028186908457428217,
0.022310907021164894,
0.06625663489103317,
0.05134292319417,
-0.026506630703806877,
0.0029901983216404915,
0.04155953228473663,
-0.04537744075059891,
0.040525514632463455,
0.004200694616883993,
0.07429014891386032,
0.04231515899300575,
0.02443859539926052,
-0.007735243067145348,
-0.027679841965436935,
-0.05639370158314705,
0.01920885592699051,
0.01565939374268055,
-0.0313187874853611,
-0.03819897770881653,
0.047127317637205124,
-0.011394073255360126,
-0.013631128706037998,
0.09568634629249573,
0.009559686295688152,
0.029389947652816772,
0.04159930348396301,
-0.017548462375998497,
-0.09608405083417892,
-0.03740357980132103,
-0.033426590263843536,
0.03517646715044975,
0.028375815600156784,
-0.0028534894809126854,
0.010568847879767418,
0.012328664772212505,
0.03304877504706383,
-0.006726082414388657,
0.023026764392852783,
-0.008520698174834251,
-0.05400750786066055,
-0.013054465875029564,
-0.003174134064465761,
0.023404579609632492,
-0.09067534655332565,
0.0010974003234878182,
-0.014317159540951252,
-0.05007028952240944,
-0.05547899380326271,
-0.007088982500135899,
-0.040545400232076645,
0.03207441419363022,
0.03261130675673485,
0.010877064429223537,
0.058899205178022385,
0.019576726481318474,
-0.019974425435066223,
-0.021376315504312515,
-0.020620686933398247,
-0.01230878010392189,
-0.0069000753574073315,
0.03209429979324341,
-0.029747875407338142,
-0.012109930627048016,
0.016613870859146118,
0.00800866074860096,
-0.020958730950951576,
-0.03050350397825241,
-0.005314251407980919,
0.011006316170096397,
0.006064907647669315,
-0.010986431501805782,
0.0074667963199317455,
0.02400112710893154,
-0.020759880542755127,
-0.039928968995809555,
0.034321412444114685,
-0.010181090794503689,
0.021734243258833885,
-0.0091669587418437,
0.0036762289237231016,
0.021555278450250626,
-0.0010365026537328959,
-0.02406078204512596,
-0.028415584936738014,
-0.01206021849066019,
-0.010230803862214088,
-0.0323130339384079,
-0.009833104908466339,
-0.018164895474910736,
-0.047405704855918884,
-0.022291021421551704,
-0.023523889482021332,
0.00927632674574852,
0.03318797051906586,
-0.020501377061009407,
0.008237337693572044,
0.023762507364153862,
0.047167085111141205,
-0.046809159219264984,
0.06172286719083786,
-0.05774587765336037,
-0.01223918329924345,
-0.0366678349673748,
-0.03306866064667702,
0.014516009017825127,
0.03650875762104988,
0.03642921894788742,
0.010031954385340214,
0.039590924978256226,
-0.013491934165358543,
-0.0049463799223303795,
0.021097924560308456,
-0.0013484477531164885,
0.004272777121514082,
0.008515726774930954,
-0.08105102926492691,
-0.05130315572023392,
0.04450250416994095,
-0.023185843601822853,
-0.04251401126384735,
-0.008684748783707619,
-0.002476918278262019,
-0.016504503786563873,
-0.029091672971844673,
-0.028336044400930405,
0.058501504361629486,
0.019944598898291588,
-0.00100108259357512,
0.021595049649477005,
-0.04342871904373169,
0.010817409493029118,
-0.0509452261030674,
0.008684748783707619,
0.018284205347299576,
-0.01226901076734066,
0.0014168022898957133,
0.08486893773078918,
-0.004891696386039257,
0.04231515899300575,
0.01583835855126381,
-0.040883444249629974,
0.013720611110329628,
0.05003051832318306,
-0.021376315504312515,
-0.04959305003285408,
-0.022131942212581635,
0.09679991006851196,
0.011672462336719036,
0.04334917664527893,
0.07444922626018524,
-0.02493572048842907,
0.02505502849817276,
-0.058700352907180786,
0.0038725927006453276,
0.03559404984116554,
0.09035718441009521,
-0.005194941535592079,
0.004118668846786022,
0.007223205640912056,
-0.015311406925320625,
0.01194090861827135,
-0.09147074073553085,
-0.015321348793804646,
-0.0004940165672451258,
-0.012786018662154675,
0.01571904867887497,
0.013392509892582893,
0.08264182507991791,
-0.03790070116519928,
-0.033963482826948166,
-0.010086637921631336,
0.0008942010463215411,
0.005344078876078129,
-0.009440377354621887,
-0.04287193715572357,
0.020501377061009407,
-0.006308498326689005,
-0.02521410956978798,
-0.007963920012116432,
0.03784104809165001,
-0.027878690510988235,
-0.011244935914874077,
-0.014446411281824112,
0.04219584912061691,
-0.026307780295610428,
-0.027480991557240486,
0.04999074712395668,
-0.03873587027192116,
-0.0360712893307209,
-0.013859805651009083,
-0.03028476983308792,
-0.008669835515320301,
-0.011573037132620811,
0.04533767327666283,
-0.03917333856225014,
0.004538738634437323,
0.01549037080258131,
0.029549026861786842,
0.0305233895778656,
-0.0628364235162735,
0.0018455713288858533,
-0.01970597915351391,
-0.03161706030368805,
0.019974425435066223,
-0.027421338483691216,
0.008351676166057587,
-0.03010580502450466,
-0.0029479428194463253,
0.01520203985273838,
0.039133571088314056,
0.005194941535592079,
0.0624387226998806,
0.012199413031339645,
-0.13092246651649475,
0.0021537879947572947,
-0.002503017196431756,
-0.00412364024668932,
0.017468923702836037,
-0.03135855495929718,
0.017369497567415237,
0.020123563706874847,
0.047286394983530045,
0.0022507270332425833,
0.03593209385871887,
0.013432279229164124,
-0.022310907021164894,
-0.03056315891444683,
-0.05567784234881401,
-0.020759880542755127,
-0.013491934165358543,
-0.005008520092815161,
0.028614433482289314,
-0.028196850791573524,
0.029350176453590393,
0.016564158722758293,
-0.019417647272348404,
0.03609117493033409,
-0.08037494122982025,
0.07858529686927795,
0.02565157786011696,
-0.05718909949064255,
-0.05066683515906334,
-0.0025291163474321365,
0.039869312196969986,
-0.004461684264242649,
0.034818537533283234,
0.02551238238811493,
0.017767196521162987,
0.015619623474776745,
0.047843173146247864,
0.07130740582942963,
0.011215108446776867,
0.11445773392915726,
-0.004511396866291761,
-0.011463670060038567,
0.04366733506321907,
0.006154390051960945,
-0.033883944153785706,
-0.010151264257729053,
0.04406503587961197,
-0.05722886696457863,
0.033545900136232376,
0.06426814198493958,
-0.03316808491945267,
0.05512106418609619,
-0.03068246878683567,
-0.04859880357980728,
0.04299124702811241,
-0.010489308275282383,
0.039531268179416656,
-0.009619341231882572,
0.021018385887145996,
-0.023146074265241623,
0.004846955183893442,
0.020123563706874847,
0.07516508549451828,
-0.013621186837553978,
-0.015947725623846054,
-0.052058782428503036,
0.08311906456947327,
0.05138269439339638,
-0.006656485144048929,
0.06876213848590851,
-0.035096924751996994,
-0.010548962280154228,
-0.0610467791557312,
-0.00241353502497077,
0.01647467538714409,
-0.0033033862709999084,
0.026009507477283478,
-0.052376940846443176,
-0.020322412252426147,
-0.0037060563918203115,
0.05567784234881401,
0.06208079308271408,
0.029111558571457863,
-0.0521383211016655,
0.0017399325734004378,
-0.006298555992543697,
0.009455290623009205,
-0.013452164828777313,
-0.009047649800777435,
-0.06836443394422531,
-0.004220579285174608,
0.028137195855379105,
0.03040407970547676,
-0.03885518014431,
0.002345180604606867,
0.03207441419363022,
-0.041440222412347794,
-0.006740996148437262,
0.04136068373918533,
0.020113620907068253,
0.007944035343825817,
0.00909736193716526,
0.0007643275312148035,
0.022668836638331413,
-0.014048713259398937,
0.016405079513788223,
-0.011244935914874077,
-0.016067035496234894,
0.026844674721360207,
-0.028773514553904533,
0.02505502849817276,
-0.0017933733761310577,
0.007556278724223375,
0.006005253177136183,
-0.021157579496502876,
0.003248702734708786,
-0.027779266238212585,
-0.0015696677146479487,
-0.029668336734175682,
0.029389947652816772,
-0.0029131441842764616,
-0.012199413031339645,
0.04426388442516327,
0.010101551190018654,
-0.02551238238811493,
-0.00203199265524745,
0.0024930748622864485,
-0.04533767327666283,
0.08478940278291702,
-0.03062281385064125,
-0.01643490605056286,
-0.009678996168076992,
-0.046331919729709625,
0.05046798661351204,
-0.028733743354678154,
-0.027401452884078026,
0.0092166718095541,
-0.005587669089436531,
-0.0030175403226166964,
0.046610306948423386,
0.010688157752156258,
0.026566285640001297,
0.002500531729310751,
0.0004983664257451892,
-0.05714932829141617,
0.06383066624403,
-0.029747875407338142,
0.01827426254749298,
0.0005104838055558503,
-0.03082166239619255,
0.014774513430893421,
-0.005781547632068396,
0.0028062628116458654,
-0.019417647272348404,
-0.014416584745049477,
-0.06271710991859436,
-0.014694973826408386,
0.0034351239446550608,
-0.04430365562438965,
-0.07202326506376266,
-0.00473758764564991,
-0.03583266958594322,
0.025989621877670288,
0.07647749036550522,
0.040605057030916214,
0.028515009209513664,
0.027083292603492737,
0.03883529454469681
] |
729,681 | scs | solve | Solve the optimization problem.
@param warm_start Whether to warm-start. By default the solution of
the previous problem is used as the warm-start. The
warm-start can be overriden to another value by
passing `x`, `y`, `s` args.
@param x Primal warm-start override.
@param y Dual warm-start override.
@param s Slack warm-start override.
@return dictionary with solution with keys:
'x' - primal solution
's' - primal slack solution
'y' - dual solution
'info' - information dictionary (see docs)
| def solve(self, warm_start=True, x=None, y=None, s=None):
"""Solve the optimization problem.
@param warm_start Whether to warm-start. By default the solution of
the previous problem is used as the warm-start. The
warm-start can be overriden to another value by
passing `x`, `y`, `s` args.
@param x Primal warm-start override.
@param y Dual warm-start override.
@param s Slack warm-start override.
@return dictionary with solution with keys:
'x' - primal solution
's' - primal slack solution
'y' - dual solution
'info' - information dictionary (see docs)
"""
return self._solver.solve(warm_start, x, y, s)
| (self, warm_start=True, x=None, y=None, s=None) | [
0.03564241901040077,
-0.06699838489294052,
0.03484996780753136,
0.03222046047449112,
-0.024476023390889168,
-0.014183125458657742,
-0.05125736817717552,
-0.025736745446920395,
-0.0239357128739357,
-0.002940184436738491,
-0.029735036194324493,
0.018676700070500374,
-0.034111544489860535,
0.021900547668337822,
-0.059181906282901764,
0.002872645854949951,
-0.025268476456403732,
-0.027231601998209953,
-0.029789065942168236,
0.003969023935496807,
0.02825818955898285,
0.036020636558532715,
0.057272814214229584,
0.08551299571990967,
-0.02143227867782116,
0.0274837464094162,
0.027843952178955078,
0.008460347540676594,
-0.014966574497520924,
-0.04769132286310196,
0.0052725207060575485,
0.05219390243291855,
-0.014642388559877872,
-0.004108604043722153,
0.014129094779491425,
-0.004502579569816589,
0.040163010358810425,
0.040343113243579865,
-0.07362618297338486,
-0.053274523466825485,
-0.06627797335386276,
0.001393548445776105,
0.0207118671387434,
-0.016461431980133057,
0.01044598501175642,
-0.03839799761772156,
-0.014957569539546967,
0.08500870317220688,
0.056912604719400406,
-0.011454562656581402,
0.037929732352495193,
-0.09358161687850952,
-0.019090937450528145,
-0.07024024426937103,
0.021882537752389908,
0.01360679604113102,
-0.011391526088118553,
0.05507555231451988,
0.0895473062992096,
-0.07009615749120712,
0.011526604183018208,
-0.006965490523725748,
-0.022368814796209335,
0.03162612020969391,
-0.04254037141799927,
0.0016310594510287046,
-0.03810983523726463,
-0.012652249075472355,
-0.021144114434719086,
0.022188711911439896,
-0.0011661681346595287,
-0.012328063137829304,
-0.04790744557976723,
-0.010184834711253643,
0.007798467762768269,
-0.015200708992779255,
-0.02498031221330166,
-0.05010470747947693,
-0.046394579112529755,
-0.06653011590242386,
-0.016587503254413605,
-0.00330489338375628,
-0.08241521567106247,
-0.07866907119750977,
-0.04833969473838806,
-0.017866235226392746,
0.10467597097158432,
0.028366250917315483,
0.04254037141799927,
-0.046394579112529755,
-0.039118412882089615,
0.03573247045278549,
0.02398974448442459,
0.060046400874853134,
0.04308068007230759,
0.042936600744724274,
0.0028523842338472605,
-0.011994872242212296,
-0.013804908841848373,
-0.0061009954661130905,
-0.015380811877548695,
0.058965783566236496,
-0.020315639674663544,
0.013138527050614357,
0.0071726092137396336,
-0.05143747106194496,
-0.006992506328970194,
-0.025052353739738464,
0.00491681694984436,
-0.04163985699415207,
-0.04001892730593681,
-0.006992506328970194,
-0.09365365654230118,
0.023701578378677368,
-0.03650691732764244,
0.023557497188448906,
-0.05676852539181709,
0.008365793153643608,
0.023971734568476677,
0.03969474136829376,
-0.07679599523544312,
0.026367105543613434,
-0.028564365580677986,
-0.005141946021467447,
0.03227449208498001,
0.010518025606870651,
0.005340059287846088,
0.023827651515603065,
0.021918557584285736,
-0.022584939375519753,
0.0055967066437006,
-0.01415611058473587,
0.012670258991420269,
0.07953356951475143,
-0.022224733605980873,
0.018964866176247597,
-0.029789065942168236,
-0.00009687581768957898,
0.008275741711258888,
0.0023886184208095074,
0.032382551580667496,
0.0042211683467030525,
-0.051041241735219955,
-0.031608108431100845,
0.018046339973807335,
-0.015236729755997658,
0.034561801701784134,
-0.017181843519210815,
-0.0016153004253283143,
0.06757471710443497,
0.020639825612306595,
-0.03058152087032795,
0.019180988892912865,
-0.04646662250161171,
-0.07258158177137375,
-0.042756497859954834,
0.04009097069501877,
-0.014777466654777527,
0.013444703072309494,
0.008410818874835968,
-0.008329772390425205,
-0.024241888895630836,
0.003070759354159236,
-0.04290057718753815,
-0.05583198741078377,
-0.02667328156530857,
-0.03423761576414108,
-0.0037101255729794502,
0.022332794964313507,
0.037245336920022964,
-0.047763366252183914,
0.012886382639408112,
-0.04718703404068947,
-0.0010609203018248081,
0.031554076820611954,
0.01656949333846569,
-0.02053176239132881,
0.0008014591876417398,
0.022999176755547523,
-0.035336244851350784,
-0.018460577353835106,
0.025736745446920395,
-0.0485197976231575,
-0.03414756432175636,
-0.023377394303679466,
0.05262615159153938,
0.008113648742437363,
-0.012886382639408112,
-0.03492200747132301,
0.01633535884320736,
-0.03591257333755493,
-0.040847402065992355,
0.029158705845475197,
-0.0022006358485668898,
-0.03618273138999939,
0.049852561205625534,
0.045710187405347824,
-0.03528221324086189,
0.02170243300497532,
0.03958668187260628,
-0.040523216128349304,
-0.012589212507009506,
0.03636283427476883,
0.034021493047475815,
-0.007744437083601952,
0.009806618094444275,
-0.021324217319488525,
0.00839280802756548,
-0.017046766355633736,
0.06195549666881561,
-0.04106352478265762,
-0.03403950110077858,
-0.07067248970270157,
-0.036560945212841034,
0.05248206853866577,
0.00748778972774744,
0.07838090509176254,
0.007505800109356642,
0.019505174830555916,
0.0052725207060575485,
0.03108580969274044,
-0.047943469136953354,
0.016146250069141388,
0.023953722789883614,
-0.006200052332133055,
0.014714430086314678,
-0.0108061907812953,
0.00887458398938179,
-0.009779603220522404,
-0.11793156713247299,
0.012409109622240067,
-0.07232943922281265,
0.02998718060553074,
-0.03501205891370773,
0.02157636173069477,
-0.021828506141901016,
-0.013507738709449768,
0.02825818955898285,
0.033247046172618866,
-0.06011844426393509,
0.005970420781522989,
-0.0014250664971768856,
-0.004007295705378056,
0.011049330234527588,
-0.05712873116135597,
-0.035390276461839676,
0.030473459511995316,
-0.015723008662462234,
0.01588510163128376,
-0.006015446502715349,
0.059866297990083694,
-0.023881683126091957,
0.02362953871488571,
-0.012643243186175823,
0.012625233270227909,
-0.03785768896341324,
0.058461494743824005,
0.04506181553006172,
-0.002998718060553074,
-0.03331908956170082,
-0.017037760466337204,
-0.0012314554769545794,
-0.05039286985993385,
0.01865869015455246,
-0.049492355436086655,
-0.00124046066775918,
-0.06588174402713776,
0.01238209381699562,
-0.03459782153367996,
0.04783540591597557,
0.07701212167739868,
0.005862358491867781,
0.010283892042934895,
0.019271040335297585,
-0.01249015610665083,
0.06588174402713776,
-0.002539454959332943,
-0.01113037671893835,
0.047763366252183914,
-0.004957340192049742,
-0.006735858973115683,
0.02220672182738781,
0.030437437817454338,
0.0022490385454148054,
0.02494429051876068,
-0.0010355933336541057,
-0.043584972620010376,
0.0014250664971768856,
0.03605665639042854,
-0.029662994667887688,
-0.017542051151394844,
0.02020757645368576,
0.03803779184818268,
-0.02074788697063923,
0.0852968692779541,
0.04441344365477562,
-0.017866235226392746,
0.010950273834168911,
0.0383259579539299,
-0.003448975970968604,
0.04747520014643669,
-0.061415184289216995,
-0.03648890554904938,
0.027087518945336342,
0.006317119114100933,
0.006618792191147804,
0.05114930495619774,
-0.041387710720300674,
0.038614124059677124,
-0.02398974448442459,
-0.02498031221330166,
0.015578925609588623,
0.008086632937192917,
0.0008144041057676077,
-0.06440489739179611,
-0.07013218104839325,
-0.05374278873205185,
0.004124362953007221,
-0.017686132341623306,
0.0531664602458477,
-0.004745719023048878,
-0.012084923684597015,
0.042396288365125656,
-0.016686560586094856,
0.022945145145058632,
-0.015236729755997658,
-0.00011495648504933342,
-0.0374254435300827,
0.019307062029838562,
-0.028510333970189095,
0.03976678475737572,
-0.03717329725623131,
0.028114106506109238,
-0.0015837823739275336,
-0.007159101776778698,
-0.023359382525086403,
0.0365789569914341,
0.02056778408586979,
0.004236927255988121,
-0.008766522631049156,
0.07218535989522934,
0.0005664807977154851,
-0.031229892745614052,
0.0069519830867648125,
0.03868616372346878,
-0.02602490969002247,
0.025538630783557892,
-0.05269819125533104,
0.01040095929056406,
-0.011841784231364727,
-0.020513752475380898,
0.011679691262543201,
0.00649722246453166,
-0.0454220250248909,
0.03267071768641472,
0.06289203464984894,
-0.004777236841619015,
0.01719985343515873,
0.021180134266614914,
-0.017560061067342758,
-0.0370292142033577,
0.015119662508368492,
-0.06653011590242386,
0.04279251769185066,
-0.023413414135575294,
0.00628109835088253,
-0.05093318223953247,
-0.02011752501130104,
0.050176747143268585,
-0.02598888985812664,
-0.012751305475831032,
-0.028420282527804375,
-0.045169878751039505,
0.019469154998660088,
0.009230288676917553,
0.08378399908542633,
-0.02489026077091694,
0.016632528975605965,
0.016821637749671936,
-0.031428005546331406,
0.052590131759643555,
-0.030347386375069618,
-0.007307686842978001,
-0.001730116200633347,
-0.015002595260739326,
0.018460577353835106,
0.022188711911439896,
-0.03459782153367996,
0.0649091899394989,
0.0071861171163618565,
-0.013210568577051163,
-0.04434140399098396,
0.037749625742435455,
0.05042889341711998,
-0.0015094898408278823,
-0.02089197002351284,
0.13608597218990326,
0.0374254435300827,
-0.08428829163312912,
-0.024836229160428047,
0.055219635367393494,
-0.0017199853900820017,
0.024097805842757225,
-0.015822064131498337,
-0.0003027984930668026,
-0.07643578946590424,
0.008910604752600193,
0.002289561787620187,
-0.013273605145514011,
0.109430693089962,
-0.016812631860375404,
-0.03441771864891052,
-0.012129949405789375,
-0.017965292558073997,
-0.11173601448535919,
-0.022873103618621826,
0.005862358491867781,
0.06519735604524612,
0.02366555854678154,
0.00873950682580471,
0.0636124461889267,
-0.04538600146770477,
0.009518452920019627,
0.022152692079544067,
-0.03459782153367996,
0.014831497333943844,
-0.020351659506559372,
-0.07146494090557098,
0.01196785643696785,
-0.009608505293726921,
-0.03585854545235634,
0.008518880233168602,
0.045674167573451996,
0.008262233808636665,
0.011391526088118553,
-0.06897951662540436,
0.01656949333846569,
-0.001138026942498982,
-0.007177111692726612,
-0.025700723752379417,
0.051545530557632446,
-0.03591257333755493,
0.015002595260739326,
0.02721359208226204,
-0.007127583492547274,
0.0028546354733407497,
0.011904820799827576,
-0.01299444492906332,
-0.030599530786275864,
0.04556610435247421,
0.03339112922549248,
-0.031229892745614052,
0.027285631746053696,
0.019090937450528145,
0.022837083786725998,
-0.02557465247809887,
-0.047078970819711685,
0.00016603262338321656,
-0.05532769858837128,
-0.018307488411664963,
0.02444000169634819,
-0.03468787297606468,
0.021774474531412125,
0.007568836212158203,
-0.05892976373434067,
0.02921273745596409,
-0.0432247631251812,
-0.0037889208178967237,
0.0029604460578411818,
-0.0640086755156517,
0.017785189673304558,
-0.021540340036153793,
-0.0055516804568469524,
-0.06134314462542534,
0.04866388067603111,
-0.029554933309555054,
-0.04246833175420761,
0.06973595172166824,
0.05557984113693237,
-0.02753777615725994,
-0.013885955326259136,
-0.026799354702234268,
0.03135596588253975,
0.03782166913151741,
0.03304893523454666,
-0.0778045728802681,
0.045025795698165894,
-0.0753551721572876,
0.009860649704933167,
0.0004587002913467586,
0.03200433775782585,
0.06130712479352951,
0.06350438296794891,
-0.009752587415277958,
-0.03847004100680351,
0.01756906509399414,
-0.03828993812203407,
-0.025520620867609978,
0.03463384136557579,
-0.006879941560328007,
0.016398394480347633,
-0.033697307109832764,
-0.060370586812496185,
0.03349919244647026,
0.028006045147776604,
0.012850361876189709,
-0.018550628796219826,
0.003847454208880663,
-0.020279617980122566,
0.04751121997833252,
-0.01085121650248766,
-0.04304466024041176,
0.007469779811799526,
-0.00099844706710428,
0.0290326327085495,
-0.008068623021245003,
-0.018694709986448288,
0.05230196565389633,
0.025700723752379417,
-0.07434659451246262,
-0.009158247150480747,
0.04527794197201729,
0.04495375603437424,
0.016533471643924713,
0.012544186785817146,
-0.00950944796204567,
0.02134222723543644,
-0.034471750259399414,
0.023035196587443352,
0.03764156624674797,
0.03409353271126747,
-0.055183615535497665,
-0.07434659451246262,
0.04906010627746582,
0.05114930495619774,
0.011463567614555359,
0.006884444039314985,
-0.045169878751039505,
-0.0274837464094162,
-0.014390244148671627,
0.0037844181060791016,
0.02444000169634819,
0.01049101073294878,
-0.020585794001817703,
0.03182423114776611,
0.010887237265706062,
-0.01643441617488861,
0.053094420582056046,
-0.0748508870601654,
-0.05532769858837128,
-0.021792486310005188,
0.0015308770816773176,
0.013930981047451496,
0.05248206853866577,
-0.010364938527345657,
-0.05702066794037819,
-0.033247046172618866,
0.01169770210981369,
-0.012247016653418541,
0.02571873553097248,
-0.018082359805703163,
-0.012409109622240067,
0.0766519159078598,
-0.018874812871217728,
-0.04801550880074501,
0.005299536045640707,
0.022927135229110718,
0.05892976373434067,
0.020279617980122566,
0.022873103618621826,
0.016596509143710136,
0.04668274521827698,
-0.016137246042490005,
0.03357123211026192,
0.007645380217581987,
0.022098660469055176,
0.008307259529829025,
-0.010545041412115097,
-0.050500933080911636,
0.030887696892023087,
0.011769742704927921,
-0.013669831678271294,
0.02649317868053913,
0.01889282464981079,
-0.0036178226582705975,
0.050032664090394974,
-0.054319120943546295,
0.018586648628115654,
-0.048087552189826965,
0.007960560731589794,
0.00036921154242008924,
0.019271040335297585,
-0.03261668607592583,
0.022729022428393364,
-0.011715712025761604,
0.02121615596115589,
0.006573766469955444,
-0.009887664578855038,
0.10806190967559814,
-0.025502610951662064,
-0.10762966424226761,
-0.0052635157480835915,
-0.02170243300497532,
-0.006839418318122625,
-0.011139381676912308,
0.03463384136557579,
0.02643914707005024,
0.02521444670855999,
-0.009113221429288387,
-0.059830278158187866,
0.032976891845464706,
-0.05748893693089485,
0.01874874159693718,
0.01233706809580326,
-0.059650175273418427,
-0.0030257334001362324,
0.02998718060553074,
0.019811350852251053,
0.023467445746064186,
-0.04841173440217972,
0.008847569115459919,
0.019739309325814247,
0.014318203553557396,
-0.01733493246138096,
0.002800604561343789,
0.06469306349754333,
0.04906010627746582,
0.0010187086882069707,
0.018145395442843437,
-0.02208065055310726,
-0.001168419374153018,
0.06743063032627106,
0.03130193427205086,
0.0330309234559536,
-0.009977716021239758,
0.03252663463354111,
0.037569522857666016,
0.03072560392320156,
-0.027285631746053696,
0.023359382525086403,
0.027231601998209953,
0.042756497859954834,
0.04459355026483536,
0.023107238113880157,
-0.00684842374175787,
0.07286974787712097,
0.014219146221876144,
0.0007744436734355986,
-0.00011727812670869753,
0.04711499437689781,
-0.04113556817173958,
-0.024458011612296104,
-0.06663817912340164,
-0.023791629821062088,
0.04581825062632561,
-0.030563510954380035,
0.03376934677362442,
-0.07312189042568207,
0.05039286985993385,
-0.02362953871488571,
0.006024451460689306,
0.029879119247198105,
-0.00200815056450665,
-0.05575994774699211,
0.012003877200186253,
0.023647548630833626,
-0.010482005774974823,
0.0030392413027584553,
0.050176747143268585,
0.042576391249895096,
0.02634909562766552,
-0.04646662250161171,
-0.03481394425034523,
0.009108718484640121,
0.004727708641439676,
0.015966147184371948,
-0.02416984736919403,
-0.009153744205832481,
-0.06375652551651001,
-0.06573766469955444,
0.07614762336015701,
-0.03868616372346878,
0.023197289556264877,
0.027970025315880775,
-0.009054687805473804,
0.020603803917765617,
-0.010563052259385586,
-0.027591807767748833,
0.0031810724176466465,
0.027934003621339798,
-0.01806434988975525,
-0.020603803917765617,
-0.02444000169634819,
-0.0028884047642350197,
0.07117678225040436,
-0.04711499437689781,
-0.061054978519678116,
-0.04390915483236313,
0.08572911471128464,
-0.05392289534211159,
0.046070393174886703,
0.046538662165403366,
-0.010743155144155025,
0.026096951216459274,
0.007262661121785641,
0.006920464802533388,
-0.0008436708594672382,
0.029789065942168236,
0.035390276461839676,
-0.027285631746053696,
0.04614243656396866,
-0.020783906802535057,
0.0052950335666537285,
0.017235875129699707,
0.04315272346138954,
-0.02121615596115589,
0.0058893742971122265,
-0.01499359030276537,
0.034561801701784134,
0.04938429221510887,
-0.003484996734187007,
-0.009293324314057827,
-0.03969474136829376,
-0.0285823754966259,
0.029140695929527283,
-0.0004837459127884358,
0.01363381091505289,
-0.025088373571634293,
0.0002017718506976962,
0.018766751512885094,
-0.04181995987892151,
-0.009356360882520676,
-0.011103360913693905,
-0.028366250917315483,
0.012183980084955692,
-0.015714002773165703,
0.00937437079846859,
0.016047194600105286,
-0.009189764969050884,
0.030563510954380035,
-0.0073752254247665405,
-0.0010327792260795832,
-0.02170243300497532,
-0.014795476570725441,
0.014705425128340721,
0.0154528534039855,
-0.005020376294851303,
0.03335510939359665,
-0.00022541038924828172,
0.020729877054691315,
0.03131994232535362,
-0.004374255891889334,
0.05244604870676994,
0.017370952293276787,
-0.0055967066437006,
-0.030653562396764755,
-0.060874875634908676,
0.00867196824401617,
0.020243598148226738,
-0.0154528534039855,
0.008635947480797768,
-0.05730883404612541,
0.01442626491189003,
0.06199151650071144,
-0.07099667191505432,
-0.006699838675558567,
0.0014610871439799666,
0.07650783658027649
] |
729,682 | scs | update | Update the `b` vector, `c` vector, or both, before another solve.
After a solve we can reuse the SCS workspace in another solve if the
only problem data that has changed are the `b` and `c` vectors.
@param b New `b` vector.
@param c New `c` vector.
| def update(self, b=None, c=None):
"""Update the `b` vector, `c` vector, or both, before another solve.
After a solve we can reuse the SCS workspace in another solve if the
only problem data that has changed are the `b` and `c` vectors.
@param b New `b` vector.
@param c New `c` vector.
"""
self._solver.update(b, c)
| (self, b=None, c=None) | [
-0.029297102242708206,
-0.026761775836348534,
-0.03655095398426056,
0.05922803655266762,
-0.08429959416389465,
-0.0012621610658243299,
-0.07479212433099747,
-0.010704710148274899,
0.027061086148023605,
-0.01656765304505825,
-0.03774819150567055,
-0.046586617827415466,
-0.04415693134069443,
0.024120811372995377,
-0.09190557152032852,
-0.005035439506173134,
0.009067311882972717,
-0.017527202144265175,
-0.04204415902495384,
-0.04447384551167488,
-0.030776042491197586,
-0.050741735845804214,
0.002310844138264656,
0.09218727797269821,
-0.007583970669656992,
-0.051305141299963,
0.05489685386419296,
-0.03165636584162712,
0.03216695040464401,
0.003871214110404253,
0.03630446270108223,
-0.009164148010313511,
-0.06243240833282471,
-0.01924383081495762,
0.04887545481324196,
0.056411005556583405,
0.07775000482797623,
0.034948766231536865,
0.03403323143720627,
-0.00008693175914231688,
-0.03947361931204796,
-0.01653243973851204,
0.05067130923271179,
0.016990207135677338,
0.06306623667478561,
-0.003314410801976919,
0.02523001655936241,
0.015255972743034363,
0.02003611996769905,
0.028856942430138588,
0.02690262719988823,
-0.06172814965248108,
0.02348697930574417,
-0.03827638179063797,
0.025564538314938545,
0.01924383081495762,
0.024613792076706886,
0.06503815948963165,
0.031163383275270462,
-0.0450020395219326,
0.06595369428396225,
-0.03704393282532692,
-0.008763601072132587,
-0.008244211785495281,
-0.029209069907665253,
0.04820641130208969,
0.018698031082749367,
0.016576455906033516,
0.011743489652872086,
0.029103431850671768,
-0.027342788875102997,
0.0340508371591568,
-0.028363961726427078,
-0.05067130923271179,
0.005730893462896347,
0.028557632118463516,
-0.01520315371453762,
0.020317822694778442,
-0.0716581791639328,
-0.00951627641916275,
0.061129532754421234,
-0.03584669530391693,
-0.01704302616417408,
-0.031233809888362885,
0.020053725689649582,
-0.023363735526800156,
0.05630536749958992,
0.0014294221764430404,
0.000024483944798703305,
-0.017940953373908997,
-0.011408967897295952,
-0.03876936435699463,
0.02841678075492382,
0.06968625634908676,
0.06077740341424942,
0.02246580645442009,
0.00286984839476645,
-0.07331318408250809,
-0.043593525886535645,
-0.017333531752228737,
0.03602275997400284,
-0.009111328050494194,
0.006461560260504484,
-0.034702278673648834,
-0.003050314262509346,
-0.028716091066598892,
-0.009172950871288776,
-0.034191690385341644,
0.019331861287355423,
-0.011981177143752575,
-0.06947498023509979,
0.013248840346932411,
-0.02887454815208912,
0.016734912991523743,
-0.10225815325975418,
0.029490772634744644,
-0.006725656799972057,
0.008156179450452328,
0.026867415755987167,
0.07436956465244293,
-0.05046003311872482,
0.047783855348825455,
0.04214979708194733,
0.010423007421195507,
0.03855808451771736,
-0.0023218481801450253,
-0.025863848626613617,
0.0548616424202919,
0.023275703191757202,
-0.04468512535095215,
0.02199043333530426,
-0.10901902616024017,
-0.0033958405256271362,
0.007328676991164684,
0.0376073382794857,
0.03130423650145531,
-0.012280486524105072,
-0.050248757004737854,
0.006972147151827812,
-0.004439021460711956,
0.03361067920923233,
0.0631718784570694,
-0.022184103727340698,
-0.019155798479914665,
-0.008710782043635845,
0.04405129328370094,
0.030071785673499107,
-0.04781906679272652,
-0.09415919333696365,
0.0523967407643795,
-0.03508961945772171,
-0.0097451601177454,
-0.0019521131180226803,
-0.027976620942354202,
-0.05229110270738602,
-0.02390953339636326,
0.02790619432926178,
-0.06218591704964638,
0.005616451613605022,
0.04222022369503975,
-0.0008588637574575841,
-0.01577536202967167,
-0.007861271500587463,
0.060108356177806854,
-0.0331353060901165,
-0.02271229773759842,
-0.04338224604725838,
0.019824841991066933,
-0.05003747716546059,
0.025353262200951576,
-0.031973280012607574,
-0.012174847535789013,
-0.09662409871816635,
0.025335654616355896,
0.05063609778881073,
-0.025775816291570663,
-0.001507550710812211,
-0.07577808201313019,
0.061094317585229874,
-0.055425047874450684,
0.00963952112942934,
0.0320437066257,
-0.00964832492172718,
0.024296876043081284,
-0.001092148944735527,
0.02343416027724743,
-0.040107451379299164,
0.023610224947333336,
0.025370867922902107,
-0.02123335748910904,
0.053734831511974335,
-0.02100447379052639,
0.015836985781788826,
0.025793422013521194,
-0.016145097091794014,
0.010106091387569904,
0.022870754823088646,
-0.034226901829242706,
0.02468421682715416,
0.012403731234371662,
0.004306973423808813,
-0.0633479431271553,
0.056939199566841125,
0.01346892025321722,
0.05683356150984764,
0.03269514441490173,
0.023275703191757202,
-0.02887454815208912,
0.028293535113334656,
0.011417770758271217,
-0.010044469498097897,
0.04486118629574776,
0.017597628757357597,
-0.058946333825588226,
0.022412987425923347,
0.02713151089847088,
0.0036533346865326166,
-0.005695680622011423,
0.008354252204298973,
-0.013477723114192486,
0.011629047803580761,
0.033188123255968094,
0.0519389733672142,
-0.009472260251641273,
-0.027219543233513832,
-0.014877434819936752,
-0.0016186913708224893,
0.06905242800712585,
-0.015898607671260834,
-0.0582420751452446,
-0.013680197298526764,
0.010308565571904182,
-0.055425047874450684,
-0.05943931266665459,
0.06193942576646805,
-0.08049660921096802,
-0.032712750136852264,
0.006294299382716417,
-0.003862411016598344,
-0.05056567117571831,
-0.03109295852482319,
-0.026075124740600586,
-0.00037963868817314506,
0.024138417094945908,
-0.04574150964617729,
-0.010519842617213726,
0.020828409120440483,
-0.019191009923815727,
-0.0015801772242411971,
0.019208617508411407,
-0.002158988732844591,
-0.018020182847976685,
-0.03464945778250694,
0.014604534953832626,
-0.010687104426324368,
0.0182578694075346,
0.02422644942998886,
0.04031872749328613,
0.004722925368696451,
0.017368745058774948,
-0.05007269233465195,
0.031762003898620605,
-0.01927904225885868,
0.06144644692540169,
0.0009358918759971857,
0.013882671482861042,
0.008988083340227604,
0.000929839676246047,
0.004573270678520203,
0.025353262200951576,
0.008561127819120884,
0.026480073109269142,
-0.003219776088371873,
0.005471198819577694,
0.00655399402603507,
0.026039913296699524,
0.020617131143808365,
0.021074898540973663,
0.017095845192670822,
-0.00986840482801199,
0.08049660921096802,
0.014005916193127632,
-0.03429732844233513,
0.023328522220253944,
-0.01260620541870594,
-0.05380525439977646,
-0.05700962617993355,
-0.019948087632656097,
-0.05859420448541641,
-0.0138298524543643,
0.032483868300914764,
0.00630310270935297,
0.06736220419406891,
0.013451313599944115,
0.019314255565404892,
0.0311281718313694,
-0.06612975895404816,
0.026480073109269142,
0.06486209481954575,
0.010035665705800056,
-0.0037061539478600025,
-0.037642549723386765,
-0.031216204166412354,
0.014754190109670162,
0.034191690385341644,
-0.022324955090880394,
0.1007792130112648,
-0.0007768837967887521,
-0.008019729517400265,
0.0063251107931137085,
0.02787098102271557,
-0.0020632536616176367,
-0.056446220725774765,
0.038663722574710846,
-0.01048463024199009,
-0.04722044989466667,
-0.037184782326221466,
-0.028522418811917305,
-0.045565444976091385,
-0.017861725762486458,
-0.00752234784886241,
-0.07894723862409592,
0.03408605232834816,
-0.0009727553697302938,
-0.05563632398843765,
0.007680805865675211,
0.04074128344655037,
0.026304008439183235,
0.021867187693715096,
-0.011690670624375343,
0.03556499257683754,
-0.04563587158918381,
0.03376913443207741,
-0.020722771063447,
-0.021902401000261307,
-0.027008267119526863,
-0.0103613855317235,
-0.028363961726427078,
0.08021490275859833,
-0.03972011059522629,
0.02868087776005268,
0.07436956465244293,
-0.04070607200264931,
0.018020182847976685,
-0.01459573209285736,
0.00939303170889616,
0.02790619432926178,
-0.02390953339636326,
0.01051103975623846,
0.002788418671116233,
-0.06894678622484207,
0.035670630633831024,
0.023592619225382805,
0.02274750918149948,
-0.005387567915022373,
0.10852604359388351,
0.019895268604159355,
-0.035406533628702164,
0.06489730626344681,
-0.07310190796852112,
-0.01061667874455452,
0.06433390080928802,
-0.025863848626613617,
0.03089928813278675,
0.012359715066850185,
-0.0036225232761353254,
-0.055953241884708405,
0.019155798479914665,
0.032519079744815826,
-0.04155118018388748,
0.033980414271354675,
-0.07289062440395355,
0.052960146218538284,
0.03237822651863098,
0.024384908378124237,
0.010977610014379025,
-0.07528509944677353,
0.024032779037952423,
0.015141530893743038,
0.00247370358556509,
0.028311142697930336,
-0.0900040790438652,
-0.061622511595487595,
-0.030476734042167664,
-0.010801546275615692,
0.04327660799026489,
0.03721999749541283,
-0.016743715852499008,
0.028029439970850945,
0.05901676043868065,
0.012553385458886623,
-0.01876845583319664,
0.026603318750858307,
-0.004934202414005995,
-0.011488196440041065,
0.007051375694572926,
0.06524943560361862,
-0.004168322775512934,
0.011708277277648449,
-0.016972599551081657,
0.008107761852443218,
0.029702050611376762,
-0.017095845192670822,
0.010924790985882282,
-0.03908627852797508,
-0.04172724485397339,
-0.020071331411600113,
0.045847147703170776,
-0.03894542530179024,
0.08366576582193375,
-0.02567017823457718,
-0.017474383115768433,
-0.012051602825522423,
-0.03623403608798981,
-0.03327615559101105,
0.017051829025149345,
-0.006140243262052536,
-0.0360579714179039,
0.041445542126894,
0.030300669372081757,
0.03602275997400284,
0.03824117034673691,
0.04750215262174606,
0.07944022119045258,
0.018715636804699898,
-0.03489594906568527,
0.002808225806802511,
-0.06465081870555878,
0.015766559168696404,
0.009595504961907864,
-0.030300669372081757,
-0.008508307859301567,
-0.03972011059522629,
0.013882671482861042,
-0.02051149308681488,
-0.024772249162197113,
0.016259539872407913,
-0.016620472073554993,
0.027325181290507317,
0.016197917982935905,
0.02545890025794506,
0.0061490461230278015,
-0.04278362914919853,
-0.012615008279681206,
-0.03957925736904144,
-0.00821780227124691,
0.007143809460103512,
-0.03508961945772171,
-0.05091780051589012,
-0.016197917982935905,
0.02544129453599453,
-0.025071559473872185,
-0.013794639147818089,
0.024384908378124237,
0.028047045692801476,
-0.05109386518597603,
-0.05602366477251053,
-0.03040630742907524,
0.02369825728237629,
-0.006065415684133768,
-0.024296876043081284,
-0.009850798174738884,
0.016409194096922874,
-0.0028566436376422644,
0.006994155235588551,
-0.008147376589477062,
-0.024367300793528557,
-0.03901585191488266,
0.023328522220253944,
0.008072548545897007,
-0.0073991031385958195,
-0.0682777389883995,
-0.02200803905725479,
-0.022853149101138115,
0.0011983377626165748,
-0.0656367763876915,
-0.020722771063447,
-0.011144870892167091,
-0.018117018043994904,
-0.024015173316001892,
-0.013072775676846504,
0.06373528391122818,
-0.03435014933347702,
0.04292448237538338,
0.05584760010242462,
-0.046833109110593796,
0.06324230134487152,
-0.03655095398426056,
0.03169157728552818,
-0.050248757004737854,
-0.0008109962800517678,
-0.00003402649235795252,
0.033240944147109985,
-0.048805028200149536,
-0.07204551994800568,
-0.027765342965722084,
-0.03533610701560974,
-0.029209069907665253,
0.028751302510499954,
0.014173178002238274,
0.008103360421955585,
-0.017773693427443504,
-0.02794140763580799,
-0.0409877747297287,
0.010343778878450394,
-0.02545890025794506,
-0.022096071392297745,
-0.02542368695139885,
-0.004073688294738531,
0.04996705427765846,
-0.016708504408597946,
-0.04891066625714302,
0.07500340044498444,
0.005911359563469887,
0.0385228730738163,
-0.023839108645915985,
-0.06443954259157181,
-0.005796917714178562,
0.026304008439183235,
0.0045072464272379875,
0.03015981800854206,
-0.01459573209285736,
0.03785382956266403,
0.016294753178954124,
0.04933322221040726,
-0.022782722488045692,
0.018662817776203156,
-0.07387658953666687,
0.02813507802784443,
-0.0004277812840882689,
-0.027818161994218826,
0.0053479536436498165,
-0.024050386622548103,
0.06370007246732712,
0.00887364149093628,
0.03887500241398811,
0.05510812997817993,
-0.01047582644969225,
-0.10697668045759201,
-0.06292538344860077,
-0.02199043333530426,
0.06489730626344681,
0.06595369428396225,
0.008556725457310677,
-0.03438536077737808,
0.04348788782954216,
-0.029297102242708206,
-0.02861045114696026,
-0.03662137687206268,
0.014991876669228077,
-0.08310236036777496,
-0.0019994303584098816,
0.01481581199914217,
0.10120177268981934,
0.0303534884005785,
-0.025511719286441803,
-0.025124378502368927,
0.015881001949310303,
0.0125974016264081,
0.023610224947333336,
0.00839826837182045,
-0.026480073109269142,
0.07803170382976532,
0.029719656333327293,
0.034209296107292175,
0.06366485357284546,
0.057925160974264145,
0.005475600250065327,
0.0499318391084671,
0.013891474343836308,
0.02986050769686699,
0.02299400046467781,
-0.05060088634490967,
0.01755361258983612,
-0.01677892915904522,
-0.009304999373853207,
0.04788949340581894,
-0.012623811140656471,
-0.011593835428357124,
-0.0007185625145211816,
-0.014859828166663647,
-0.023610224947333336,
0.03736084699630737,
-0.027025872841477394,
0.031251415610313416,
0.05852377787232399,
-0.030195031315088272,
0.013055169023573399,
0.00617105420678854,
0.02839917503297329,
-0.0178001020103693,
0.003032707842066884,
-0.05711526423692703,
-0.03415647894144058,
-0.04623448848724365,
-0.002409880282357335,
-0.05489685386419296,
0.02200803905725479,
0.011408967897295952,
-0.005664869211614132,
-0.08007404953241348,
-0.011646654456853867,
0.012306896038353443,
0.030758436769247055,
-0.02993093430995941,
-0.003061318304389715,
-0.01507990900427103,
0.015757756307721138,
0.006633223034441471,
-0.01829308271408081,
0.04472033679485321,
-0.048276834189891815,
-0.0202650036662817,
0.01555528212338686,
-0.05384046956896782,
-0.00864475779235363,
0.0251948032528162,
-0.0011235104175284505,
0.02690262719988823,
0.014049932360649109,
-0.035441748797893524,
0.0021512857638299465,
-0.014859828166663647,
0.020722771063447,
-0.041375115513801575,
0.05722090229392052,
0.049016304314136505,
-0.011470590718090534,
0.0005455242935568094,
0.05303057283163071,
0.05056567117571831,
0.03584669530391693,
0.008886846713721752,
0.021603092551231384,
0.02713151089847088,
0.005748500116169453,
-0.021603092551231384,
0.04440342262387276,
-0.02276511676609516,
0.035705842077732086,
0.03383956104516983,
0.06197464093565941,
0.03753691166639328,
-0.0025507318787276745,
-0.011699473485350609,
-0.009815585799515247,
-0.0009336911025457084,
-0.056692712008953094,
0.06091825291514397,
0.021338995546102524,
-0.060883041471242905,
0.009718750603497028,
-0.015185547061264515,
-0.020669950172305107,
0.013583362102508545,
-0.010282156057655811,
0.04588236287236214,
0.008525914512574673,
0.038910213857889175,
-0.03750170022249222,
0.017298318445682526,
0.010748726315796375,
0.046797893941402435,
-0.04295969381928444,
-0.015361611731350422,
0.008156179450452328,
0.03433254361152649,
-0.004496242385357618,
-0.008745995350182056,
0.019895268604159355,
-0.025634964928030968,
-0.05229110270738602,
-0.022782722488045692,
-0.007892083376646042,
-0.018363507464528084,
-0.05796037241816521,
0.00014470286259893328,
-0.024349695071578026,
0.022677084431052208,
0.008935264311730862,
0.07584850490093231,
-0.0028390372171998024,
-0.0005744098452851176,
-0.048065558075904846,
-0.000014030125385033898,
0.016145097091794014,
-0.06352400779724121,
0.05229110270738602,
0.04707959666848183,
0.01617150753736496,
-0.035212863236665726,
0.0007884380174800754,
-0.01384745817631483,
-0.02614555135369301,
0.021920006722211838,
0.020617131143808365,
-0.013627378270030022,
-0.058136437088251114,
-0.0007768837967887521,
0.06479167193174362,
0.028223110362887383,
0.022782722488045692,
-0.05035439506173134,
0.020335428416728973,
0.006840098649263382,
0.04574150964617729,
-0.004364194348454475,
-0.05109386518597603,
0.009824388660490513,
-0.00951627641916275,
0.041903305798769,
-0.026110338047146797,
-0.008926460519433022,
-0.004236547742038965,
0.05144599452614784,
0.03361067920923233,
-0.020599525421857834,
-0.057678669691085815,
0.017069434747099876,
0.05190376192331314,
-0.036410100758075714,
0.04887545481324196,
-0.03426211699843407,
-0.01620672084391117,
0.023310916498303413,
-0.027606885880231857,
-0.007672002539038658,
-0.048312049359083176,
0.03528328984975815,
0.04049479216337204,
-0.035723451524972916,
-0.023258095607161522,
-0.0007004058570601046,
-0.03887500241398811,
-0.007645593024790287,
-0.005642861593514681,
-0.013627378270030022,
-0.026497680693864822,
-0.03433254361152649,
0.024578578770160675,
0.0125974016264081,
-0.036938294768333435,
0.04676268249750137,
-0.05781952291727066,
-0.019349468871951103,
-0.006162250880151987,
-0.022677084431052208,
0.008041737601161003,
0.005827729124575853,
0.0016550045693293214,
0.034420572221279144,
0.038170743733644485,
0.0499318391084671,
-0.0044456240721046925,
0.060354847460985184,
-0.02540608122944832,
0.0010492332512512803,
0.009304999373853207,
0.009595504961907864,
-0.019648777320981026,
0.022606657817959785,
-0.02417363040149212,
0.059615377336740494,
0.03327615559101105,
0.019701596349477768,
0.0002790894650388509,
0.000892976182512939,
0.03954404592514038
] |
729,684 | scs | _select_scs_module | null | def _select_scs_module(stgs):
if stgs.pop("gpu", False): # False by default
if not stgs.pop("use_indirect", _USE_INDIRECT_DEFAULT):
raise NotImplementedError(
"GPU direct solver not yet available, pass `use_indirect=True`."
)
import _scs_gpu
return _scs_gpu
if stgs.pop("mkl", False): # False by default
if stgs.pop("use_indirect", False):
raise NotImplementedError(
"MKL indirect solver not yet available, pass `use_indirect=False`."
)
import _scs_mkl
return _scs_mkl
if stgs.pop("use_indirect", _USE_INDIRECT_DEFAULT):
import _scs_indirect
return _scs_indirect
return _scs_direct
| (stgs) | [
0.04614492505788803,
-0.04244918376207352,
0.009878329932689667,
0.01227019727230072,
-0.016656728461384773,
0.017053933814167976,
0.015413302928209305,
0.033434346318244934,
0.02340058796107769,
-0.0156723503023386,
-0.00969699677079916,
-0.004280753433704376,
-0.0605824813246727,
0.0022817731369286776,
-0.0029639306012541056,
0.0059839878231287,
0.0145757170394063,
-0.00768938148394227,
0.04099852219223976,
-0.06054794415831566,
0.0049089426174759865,
0.04973704367876053,
0.03757910057902336,
-0.00995604321360588,
-0.00994740892201662,
0.06255123764276505,
0.05989168956875801,
-0.029963115230202675,
-0.007296493276953697,
-0.10313528776168823,
0.0038123098202049732,
-0.016553109511733055,
-0.060202546417713165,
0.02683728002011776,
-0.009662456810474396,
0.02514483779668808,
0.01992935687303543,
0.023158811032772064,
0.020464720204472542,
0.007784365210682154,
-0.051084090024232864,
-0.0011516802478581667,
0.05066961422562599,
-0.0250757597386837,
-0.027130866423249245,
0.04790644347667694,
-0.05084231123328209,
0.00802182499319315,
0.040273189544677734,
0.056714046746492386,
0.024885792285203934,
-0.0501515194773674,
-0.06376012414693832,
-0.05353640019893646,
0.008017507381737232,
0.013764035888016224,
0.017606567591428757,
0.03599027916789055,
-0.01002512313425541,
0.03471231088042259,
0.033969711512327194,
-0.006057384889572859,
-0.021328210830688477,
0.017459774389863014,
-0.011553500778973103,
0.009265251457691193,
-0.01619044318795204,
-0.014947017654776573,
-0.01748568005859852,
0.051740340888500214,
-0.06690323352813721,
-0.015352858230471611,
-0.0284951813519001,
-0.032812632620334625,
0.037337321788072586,
-0.03263993561267853,
-0.0320872999727726,
-0.03554126247763634,
-0.03291625156998634,
-0.027113595977425575,
0.010931788012385368,
-0.00002679855788301211,
-0.0228824932128191,
-0.004114531446248293,
-0.021500909700989723,
-0.00012318229710217565,
0.05294922739267349,
0.004494467284530401,
-0.007525318302214146,
-0.03806265443563461,
-0.023141540586948395,
-0.006890652701258659,
0.013729496859014034,
0.03661198914051056,
0.04396892711520195,
0.03823535144329071,
-0.03823535144329071,
-0.015879588201642036,
-0.040273189544677734,
-0.036266595125198364,
0.029341401532292366,
0.006847478449344635,
-0.0037540241610258818,
0.0019676785450428724,
0.03326164931058884,
-0.015568730421364307,
0.011588040739297867,
0.05433081090450287,
0.016984855756163597,
-0.04403800889849663,
-0.008393126539885998,
0.006972684524953365,
0.0006335860234685242,
-0.026077408343553543,
-0.04051496833562851,
-0.07474372535943985,
0.008708300068974495,
-0.01144124660640955,
-0.027182675898075104,
0.001506790635176003,
-0.11211558431386948,
0.04887355491518974,
-0.03726824373006821,
0.0898720771074295,
0.06465815752744675,
0.027579881250858307,
-0.00884214136749506,
0.03241542726755142,
0.05543607845902443,
-0.04272550344467163,
0.0801319032907486,
-0.04220740869641304,
0.009627916850149632,
0.0070806206203997135,
-0.024730363860726357,
0.015931397676467896,
-0.08724706619977951,
0.05833740904927254,
0.03291625156998634,
0.008630585856735706,
-0.03440145403146744,
-0.023797793313860893,
-0.07702333480119705,
-0.013729496859014034,
0.024281349033117294,
0.029824957251548767,
0.027579881250858307,
-0.02621556632220745,
-0.05039329454302788,
0.043070897459983826,
0.026008328422904015,
-0.00628620944917202,
-0.018167836591601372,
0.00412316620349884,
-0.10078658908605576,
-0.023141540586948395,
-0.0010696486569941044,
-0.0032251363154500723,
-0.0071626524440944195,
-0.018495963886380196,
-0.000150436200783588,
-0.011259914375841618,
-0.045419592410326004,
-0.018685931339859962,
-0.023538745939731598,
-0.04148207604885101,
-0.036922845989465714,
-0.03640475124120712,
-0.012114769779145718,
0.03319256752729416,
-0.018081488087773323,
0.05816470831632614,
-0.023279700428247452,
0.01339273527264595,
0.05650680884718895,
0.011328993365168571,
0.01688123680651188,
0.015879588201642036,
0.0366465300321579,
-0.0216563381254673,
0.041931092739105225,
0.05263837054371834,
-0.07177332043647766,
0.06331111490726471,
0.012667403556406498,
0.08358586579561234,
-0.0051161800511181355,
0.0029099625535309315,
-0.010387788526713848,
-0.023210620507597923,
0.0051636723801493645,
0.03954785689711571,
0.06002984941005707,
-0.005565195344388485,
0.01422168593853712,
0.006066019646823406,
-0.017002124339342117,
-0.003959103021770716,
-0.050013359636068344,
0.0704953521490097,
-0.022053543478250504,
0.0009072045213542879,
-0.018167836591601372,
0.06676506996154785,
-0.025352075695991516,
0.0026120583061128855,
0.038028113543987274,
-0.00939477514475584,
-0.05042783543467522,
0.0376136377453804,
-0.06179136782884598,
-0.03186279535293579,
-0.0016298380214720964,
0.04697387292981148,
0.044245246797800064,
0.009904233738780022,
0.04503965750336647,
0.017459774389863014,
-0.008410396054387093,
-0.02740718424320221,
-0.013228671625256538,
-0.020982814952731133,
0.05591963604092598,
0.03592119738459587,
-0.019566690549254417,
-0.0064459554851055145,
-0.008194522932171822,
-0.012373816221952438,
-0.0094465846195817,
-0.0032402474898844957,
0.043070897459983826,
-0.028236133977770805,
0.03479865938425064,
-0.006186908110976219,
0.03609389439225197,
-0.01832326501607895,
0.005262973718345165,
0.03300260007381439,
0.05816470831632614,
-0.023279700428247452,
0.0013891400303691626,
0.041412997990846634,
-0.01174346823245287,
0.021466370671987534,
-0.03371066227555275,
0.0075555406510829926,
-0.031621016561985016,
-0.03771725669503212,
-0.0182369165122509,
0.035679422318935394,
0.07018449157476425,
-0.04780282452702522,
-0.018979517742991447,
-0.027009977027773857,
-0.05543607845902443,
-0.06358742713928223,
-0.0605824813246727,
0.07025357335805893,
-0.010111471638083458,
-0.02737264335155487,
-0.09049379080533981,
0.020861927419900894,
-0.05256929248571396,
0.009515663608908653,
-0.01024963054805994,
-0.02443677745759487,
0.034453265368938446,
-0.002020567422732711,
0.01625952310860157,
0.04963342472910881,
0.007533953059464693,
0.06120419502258301,
-0.042414646595716476,
0.028961466625332832,
0.011527596041560173,
-0.021431829780340195,
-0.052258435636758804,
0.02348693646490574,
0.044176165014505386,
0.004369261208921671,
0.07951018959283829,
0.03578304126858711,
-0.054987065494060516,
0.07729965448379517,
-0.006204178091138601,
-0.005042783450335264,
0.014627526514232159,
-0.06120419502258301,
0.05212027579545975,
0.025455694645643234,
-0.02343512699007988,
0.0320872999727726,
0.03034305013716221,
-0.03951331973075867,
0.04099852219223976,
0.041931092739105225,
-0.02162179723381996,
-0.030602097511291504,
0.046593938022851944,
0.008773061446845531,
0.04061858728528023,
-0.03944423794746399,
-0.023245159536600113,
0.05263837054371834,
-0.0004317451675888151,
-0.03657745197415352,
0.019221294671297073,
-0.05923543870449066,
-0.023504206910729408,
0.032225459814071655,
-0.043658070266246796,
-0.026388265192508698,
0.01939399354159832,
-0.028650609776377678,
-0.014817493967711926,
-0.026578232645988464,
-0.019152216613292694,
0.023504206910729408,
-0.01402308326214552,
0.042587343603372574,
-0.047699205577373505,
0.029894035309553146,
-0.006981319282203913,
0.016397681087255478,
0.020775577053427696,
0.03132743015885353,
-0.04231102764606476,
-0.0444524809718132,
-0.03129288926720619,
0.016397681087255478,
-0.05543607845902443,
0.009636552073061466,
0.042414646595716476,
0.018582312390208244,
0.030930224806070328,
-0.00202164682559669,
0.04555774852633476,
-0.010482773184776306,
-0.02732083387672901,
-0.07356937974691391,
0.040273189544677734,
-0.0324845053255558,
-0.009541568346321583,
0.030999302864074707,
-0.04269096255302429,
0.015283779241144657,
0.014938382431864738,
0.0009924742626026273,
-0.021535448729991913,
-0.059615373611450195,
-0.007145382463932037,
-0.006338018923997879,
0.013401370495557785,
0.053985416889190674,
0.02861607074737549,
0.10603661090135574,
0.02331423945724964,
0.040169570595026016,
0.020654689520597458,
-0.0433126762509346,
0.10106290876865387,
-0.005759480409324169,
-0.004913260228931904,
-0.020136594772338867,
-0.023193350061774254,
0.003952627070248127,
-0.002115551382303238,
-0.036784689873456955,
0.06652329862117767,
-0.06030616536736488,
-0.02115551382303238,
-0.04048042744398117,
-0.001580187352374196,
-0.003417263040319085,
-0.06638513505458832,
0.019825737923383713,
-0.04966796562075615,
-0.015119715593755245,
-0.008997569791972637,
-0.04514327645301819,
0.019618500024080276,
-0.02561112307012081,
0.00099841074552387,
0.04852815717458725,
0.00936887040734291,
-0.013323656283318996,
-0.02105189487338066,
-0.02614648826420307,
0.07833584398031235,
-0.04282912239432335,
0.033365268260240555,
-0.013038704171776772,
0.023176081478595734,
0.0308611448854208,
0.040929440408945084,
-0.03127561882138252,
0.019065866246819496,
0.019618500024080276,
0.007521000690758228,
0.031672824174165726,
0.009567473083734512,
0.006087606772780418,
0.00885077565908432,
0.0364738330245018,
-0.021241862326860428,
-0.03082660585641861,
0.05519430339336395,
-0.00257536000572145,
-0.03029124066233635,
0.0018737739883363247,
-0.022364400327205658,
0.03146558627486229,
-0.10921426117420197,
-0.04372715204954147,
-0.042587343603372574,
0.01706256903707981,
-0.05643772706389427,
0.06673053652048111,
0.03602481633424759,
-0.013686321675777435,
0.02343512699007988,
-0.017960598692297935,
-0.0063121141865849495,
-0.040756743401288986,
0.02056833915412426,
0.027718039229512215,
-0.013582702726125717,
0.01770155131816864,
-0.028287943452596664,
0.04925348982214928,
-0.06728316843509674,
0.07239502668380737,
-0.02574928104877472,
-0.009351599961519241,
0.03934061899781227,
-0.010068297386169434,
-0.023089731112122536,
0.019739389419555664,
-0.03592119738459587,
-0.08489836752414703,
0.0716351568698883,
0.031016573309898376,
-0.07280950248241425,
-0.005612687207758427,
0.03317529708147049,
-0.018944978713989258,
-0.018720470368862152,
0.05142948403954506,
-0.011095850728452206,
-0.07260226458311081,
-0.07073713093996048,
-0.022122623398900032,
0.0182369165122509,
0.04586860537528992,
0.006601383443921804,
-0.02340058796107769,
-0.0027825976721942425,
0.016734443604946136,
-0.030032193288207054,
-0.007849127054214478,
-0.05308738723397255,
-0.022001734003424644,
0.02177722565829754,
0.02631918527185917,
0.05705944076180458,
0.028132515028119087,
0.027269024401903152,
0.0022601860109716654,
0.0008678077720105648,
-0.002435042755678296,
-0.004956434480845928,
0.006074654404073954,
0.02505848929286003,
-0.02049926109611988,
-0.013470449484884739,
-0.0004106975975446403,
-0.07481279969215393,
0.006316431798040867,
0.009938773699104786,
0.008457887917757034,
0.016337236389517784,
-0.0027825976721942425,
0.013185497373342514,
0.05353640019893646,
0.0021285037510097027,
-0.03937515988945961,
0.004671482834964991,
-0.029375940561294556,
0.0020410753786563873,
-0.061860449612140656,
0.022053543478250504,
-0.012140674516558647,
0.029911305755376816,
-0.009377504698932171,
0.027251755818724632,
0.03640475124120712,
0.0041512297466397285,
-0.014290764927864075,
0.05723214149475098,
0.04327813535928726,
0.04206924885511398,
0.03726824373006821,
-0.07488188147544861,
-0.007305128499865532,
0.058475565165281296,
-0.028702419251203537,
-0.006368241272866726,
0.027234485372900963,
-0.0031992318108677864,
0.03816627338528633,
0.0410330593585968,
0.05426173284649849,
0.020205674692988396,
0.004438340198248625,
0.03944423794746399,
0.02333150990307331,
-0.002045392757281661,
0.021397290751338005,
0.024212269112467766,
0.041309379041194916,
0.009740171022713184,
-0.031033841893076897,
-0.040342267602682114,
0.01140670757740736,
0.009524298831820488,
-0.004710339941084385,
-0.013289116322994232,
-0.009265251457691193,
0.026940898969769478,
0.018565041944384575,
0.030619367957115173,
0.024091379716992378,
-0.05229297652840614,
0.09001023322343826,
0.021863576024770737,
-0.01832326501607895,
0.047561049461364746,
0.007257636170834303,
0.011044041253626347,
-0.07640162855386734,
-0.056195951998233795,
-0.01454981230199337,
0.07508911937475204,
0.06928646564483643,
0.03429783508181572,
-0.04728472977876663,
-0.05118770897388458,
-0.018012408167123795,
0.0010059662163257599,
-0.0017377743497490883,
-0.014092162251472473,
0.045350514352321625,
-0.020931005477905273,
-0.0653144121170044,
0.06465815752744675,
0.00885077565908432,
-0.031672824174165726,
0.060202546417713165,
-0.05118770897388458,
-0.010793629102408886,
-0.04224194586277008,
-0.028132515028119087,
0.032190918922424316,
-0.015542825683951378,
-0.00975744053721428,
-0.04887355491518974,
0.00497802160680294,
-0.01138080283999443,
0.04870085418224335,
-0.03878798708319664,
0.017295710742473602,
-0.008764427155256271,
0.0061048767529428005,
0.07377661764621735,
0.0010950136929750443,
0.035057708621025085,
0.027528071776032448,
0.0021824717987328768,
0.006087606772780418,
0.034556884318590164,
0.0028883751947432756,
-0.013021434657275677,
0.039686016738414764,
0.05643772706389427,
-0.0040648807771503925,
-0.0054227192886173725,
-0.052776530385017395,
-0.03384882211685181,
-0.020309293642640114,
-0.032812632620334625,
0.051049549132585526,
0.004498784895986319,
0.02903054468333721,
-0.0047060223296284676,
-0.01835780404508114,
-0.0019374564290046692,
-0.061929527670145035,
0.0007755222613923252,
0.04946072772145271,
0.02789073809981346,
-0.06127327308058739,
0.023504206910729408,
0.03599027916789055,
-0.030481208115816116,
0.09318787604570389,
0.02911689504981041,
-0.006165320985019207,
-0.04611038416624069,
0.004667165223509073,
-0.018029678612947464,
0.00015880126738920808,
-0.011570770293474197,
-0.02559385448694229,
-0.006951097398996353,
-0.027096327394247055,
0.00867376010864973,
0.04220740869641304,
0.008362904191017151,
0.019808467477560043,
-0.08586548268795013,
-0.023504206910729408,
0.07515820115804672,
-0.02056833915412426,
-0.014541177079081535,
-0.002957454416900873,
0.03609389439225197,
0.0012315531494095922,
-0.010016487911343575,
-0.0008915537619031966,
0.02680274099111557,
-0.020464720204472542,
-0.03146558627486229,
0.07025357335805893,
-0.03376247361302376,
-0.0032963743433356285,
-0.04355445131659508,
0.024730363860726357,
0.010974962264299393,
0.004947799723595381,
0.0843457356095314,
-0.01083680335432291,
0.05322554334998131,
0.02785619907081127,
-0.00030330097069963813,
-0.005487481132149696,
-0.02397049218416214,
-0.003892182605341077,
0.039098843932151794,
0.03996233269572258,
0.01287464052438736,
-0.05136040598154068,
0.06034070625901222,
-0.008678077720105648,
-0.03410786762833595,
-0.030947493389248848,
-0.03937515988945961,
-0.012771022506058216,
-0.018426883965730667,
0.06590158492326736,
-0.03536856546998024,
0.006091924384236336,
0.003341707633808255,
0.07502003759145737,
0.05184395983815193,
-0.051705799996852875,
-0.04583406820893288,
0.037959035485982895,
-0.0634838119149208,
0.0023335826117545366,
-0.012330641970038414,
-0.03657745197415352,
-0.0431399792432785,
-0.05042783543467522,
-0.0628620982170105,
-0.0216563381254673,
-0.0163286030292511,
0.04410708695650101,
0.004895990248769522,
0.006592748686671257,
-0.030377591028809547,
0.027044517919421196,
0.012106134556233883,
0.005314783193171024,
0.026111947372555733,
-0.01253787986934185,
-0.007236049044877291,
-0.009273886680603027,
-0.03528221696615219,
0.004049769602715969,
-0.0434853732585907,
-0.03089568391442299,
0.03175917640328407,
0.006925192661583424,
0.01625952310860157,
0.013729496859014034,
-0.008349951356649399,
0.014308035373687744,
-0.014109431765973568,
0.007594397757202387,
0.02745899371802807,
0.07336214184761047,
-0.05723214149475098,
-0.04227648675441742,
0.0007323477184399962,
-0.012278832495212555,
-0.0019331390503793955,
-0.024920331314206123,
-0.018547773361206055,
0.01201978512108326,
-0.03405606001615524,
-0.01259832363575697,
-0.05422719195485115,
0.02733810432255268,
0.08655627071857452,
-0.0011398072820156813,
-0.04334721341729164,
-0.07778321206569672,
0.013030068948864937,
-0.022571638226509094,
0.0024846934247761965,
0.03699192777276039,
-0.06362196803092957,
0.032208189368247986,
0.045350514352321625,
0.016069555655121803,
-0.013928099535405636,
0.021949924528598785,
0.02799435704946518,
0.08282599598169327,
0.07059896737337112,
-0.03688830882310867,
-0.01714891754090786,
-0.0512913279235363,
-0.0007749825599603355,
-0.035092245787382126,
-0.028218863531947136,
0.03155193850398064,
0.007672111503779888,
-0.03074025548994541,
-0.00808658730238676,
-0.02443677745759487,
-0.00753827067092061,
-0.022640716284513474,
0.0036266595125198364,
-0.07412201166152954,
0.04096398130059242,
-0.010413693264126778,
-0.032881710678339005,
0.03472958132624626,
0.00802182499319315,
0.04566136747598648,
0.0016622189432382584,
0.02903054468333721,
-0.012011150829494,
-0.0019385358318686485,
-0.04642124101519585,
-0.0478719025850296,
0.00909255351871252,
-0.015534191392362118,
-0.03087841533124447,
-0.022450748831033707,
-0.009774710983037949,
0.016389045864343643,
-0.0042785946279764175,
0.02687181904911995,
-0.031016573309898376,
-0.07799044996500015,
-0.02277887426316738
] |
729,685 | scs | solve | null | def solve(data, cone, **settings):
solver = SCS(data, cone, **settings)
# Hack out the warm start data from old API
x = y = s = None
if "x" in data:
x = data["x"]
if "y" in data:
y = data["y"]
if "s" in data:
s = data["s"]
return solver.solve(warm_start=True, x=x, y=y, s=s)
| (data, cone, **settings) | [
0.017293576151132584,
-0.06231260672211647,
0.005333492066711187,
0.01896546222269535,
-0.015325626358389854,
0.01686689630150795,
-0.01450709905475378,
-0.06684063374996185,
0.06144183129072189,
-0.0517936535179615,
-0.035039953887462616,
0.01938343420624733,
-0.07182145863771439,
-0.017972780391573906,
-0.033089421689510345,
-0.015377873554825783,
-0.03831406682729721,
-0.008672911673784256,
-0.0027472926303744316,
0.0033611885737627745,
0.010815015994012356,
-0.0006253247265703976,
0.01260010339319706,
0.05026108771562576,
0.0035353433340787888,
0.0017796448664739728,
0.004593334160745144,
0.010301259346306324,
0.009212791919708252,
-0.08456959575414658,
-0.011354896239936352,
0.0694877877831459,
-0.062173280864953995,
-0.002033257856965065,
0.00697054760530591,
0.020637350156903267,
0.07154281437397003,
-0.0018721646629273891,
-0.024921558797359467,
-0.01936601847410202,
-0.09585482627153397,
-0.03295009583234787,
0.015229841694235802,
0.027237817645072937,
0.014689961448311806,
-0.025043467059731483,
-0.028857458382844925,
0.06447212398052216,
0.03834889829158783,
-0.014324236661195755,
0.030842823907732964,
-0.09404361993074417,
-0.01894804835319519,
-0.030424851924180984,
0.03268886357545853,
0.0209682434797287,
-0.034987710416316986,
0.09515821188688278,
0.103587307035923,
-0.06408898532390594,
0.051340848207473755,
0.0035810591652989388,
-0.03862754628062248,
0.032305724918842316,
-0.05419698730111122,
0.01300065964460373,
0.020637350156903267,
-0.019487926736474037,
-0.000941524631343782,
-0.02445134148001671,
-0.022169912233948708,
0.021978341042995453,
-0.013375092297792435,
-0.025269867852330208,
0.04134435951709747,
-0.04489712044596672,
-0.018878385424613953,
-0.03338548541069031,
-0.04583755508065224,
0.01681465096771717,
-0.026192888617515564,
-0.04834538698196411,
-0.046708330512046814,
-0.02476481907069683,
-0.030494514852762222,
0.003850999055430293,
0.079135961830616,
0.032654035836458206,
-0.05774974822998047,
-0.03692082688212395,
-0.012173423543572426,
0.019644666463136673,
-0.028909705579280853,
0.04332972690463066,
0.041274700313806534,
0.062486760318279266,
0.006517745088785887,
-0.02248339168727398,
-0.0008408413850702345,
0.002734231064096093,
0.03605005517601967,
0.09306835383176804,
-0.0227968692779541,
-0.021455876529216766,
-0.027969269081950188,
-0.06736309826374054,
0.012469487264752388,
0.030059127137064934,
0.0048066736198961735,
-0.03869720920920372,
-0.02864847332239151,
0.03470906242728233,
-0.025026051327586174,
0.016805943101644516,
-0.04838021844625473,
-0.02749904990196228,
-0.039707306772470474,
0.045907218009233475,
-0.017502563074231148,
0.009569808840751648,
-0.04639485105872154,
-0.00065362494206056,
-0.05625201761722565,
0.009038636460900307,
0.02558334730565548,
0.023145180195569992,
-0.007549612782895565,
-0.008328955620527267,
0.022222159430384636,
-0.07223942875862122,
0.026976585388183594,
-0.03019845113158226,
0.04534992203116417,
0.026854677125811577,
0.002845254959538579,
0.012164716608822346,
0.015839383006095886,
-0.010902093723416328,
-0.048206061124801636,
0.005873372312635183,
0.044339824467897415,
0.019087372347712517,
-0.05719245225191116,
-0.015691351145505905,
0.023023271933197975,
0.007001025136560202,
0.038557883352041245,
-0.010475413873791695,
0.01218213140964508,
0.07871799170970917,
0.0319051668047905,
-0.00008292763959616423,
-0.008481341414153576,
-0.0011809875722974539,
-0.015639105811715126,
-0.07788205146789551,
0.031992245465517044,
-0.07042822241783142,
-0.02211766503751278,
0.03338548541069031,
-0.04656900838017464,
0.003317649941891432,
-0.012608811259269714,
-0.03025069646537304,
-0.012547857128083706,
-0.046220697462558746,
-0.06603951752185822,
-0.011502928100526333,
-0.01608319953083992,
0.03451748937368393,
-0.04517576843500137,
0.020289039239287376,
-0.08066852390766144,
0.02713332511484623,
0.043887022882699966,
-0.03639836236834526,
-0.02675018459558487,
-0.0033503039740025997,
0.020707011222839355,
-0.06067555025219917,
-0.04684765264391899,
0.05036558210849762,
-0.0016000476898625493,
0.008202693425118923,
-0.00570792518556118,
0.026245135813951492,
0.024242354556918144,
-0.003901068586856127,
-0.013871434144675732,
-0.034238845109939575,
-0.03709498420357704,
-0.044722966849803925,
0.008794819936156273,
0.014977317303419113,
-0.004893751349300146,
0.024486171081662178,
0.0011744567891582847,
-0.001802502665668726,
-0.028091177344322205,
0.0001319767179666087,
-0.025391776114702225,
-0.023946290835738182,
0.07237875461578369,
-0.013183522038161755,
-0.035841066390275955,
0.009970365092158318,
0.016692742705345154,
0.005398800130933523,
-0.02438167855143547,
0.0417623333632946,
-0.03674667328596115,
-0.017206499353051186,
-0.02058510296046734,
-0.056356508284807205,
0.061023857444524765,
0.034691646695137024,
0.08234041184186935,
-0.03608488291501999,
0.033420316874980927,
-0.00020789734844584018,
0.015168887563049793,
-0.03202707692980766,
0.03133045881986618,
0.02899678237736225,
-0.005777587182819843,
-0.033072005957365036,
-0.012835212051868439,
0.03397761285305023,
-0.00261667650192976,
-0.09815367311239243,
-0.02166486345231533,
-0.047021809965372086,
0.011537758633494377,
-0.06502941995859146,
0.0543363131582737,
-0.07830002158880234,
0.020846335217356682,
0.016370555385947227,
0.009630762971937656,
-0.025653008371591568,
-0.013949803076684475,
-0.04231962934136391,
-0.033838286995887756,
0.00130833825096488,
-0.06771140545606613,
-0.023824382573366165,
0.06412381678819656,
-0.021421046927571297,
-0.0015140586765483022,
0.012068931013345718,
0.055172257125377655,
-0.04841504618525505,
-0.012121177278459072,
0.008672911673784256,
-0.005329138599336147,
-0.09564584493637085,
0.04082189500331879,
0.03524894267320633,
0.04113537445664406,
-0.023092932999134064,
-0.04040392488241196,
0.009021220728754997,
-0.0006606999668292701,
0.024590665474534035,
-0.0227968692779541,
-0.00965688657015562,
-0.09076950699090958,
-0.006713669281452894,
0.01785087212920189,
0.03016361966729164,
0.06617884337902069,
0.023023271933197975,
0.026819847524166107,
0.041588179767131805,
-0.012425948865711689,
0.027359725907444954,
0.0018961109453812242,
-0.0031456719152629375,
0.04726562649011612,
0.04517576843500137,
-0.010109689086675644,
0.033141668885946274,
-0.030076542869210243,
-0.01048412173986435,
0.014489683322608471,
-0.07460793852806091,
-0.020776674151420593,
0.0032153339125216007,
0.05994410067796707,
-0.006583053153008223,
-0.04071740433573723,
0.0060257576406002045,
0.019104786217212677,
-0.057958733290433884,
0.04458364099264145,
0.03376862406730652,
0.032758526504039764,
-0.023336749523878098,
0.04346904903650284,
-0.022291820496320724,
0.06663164496421814,
-0.04639485105872154,
0.0030607713852077723,
-0.009569808840751648,
0.01177286822348833,
-0.017824748530983925,
0.03526635840535164,
-0.03378603979945183,
0.004667350091040134,
-0.0643676295876503,
-0.019836237654089928,
0.0239811223000288,
-0.012156008742749691,
-0.012060223147273064,
-0.05200263857841492,
0.007183887530118227,
-0.03591072931885719,
-0.009064760059118271,
0.027760282158851624,
0.0386623777449131,
-0.0025557223707437515,
-0.0534307062625885,
0.04792741313576698,
-0.01940084993839264,
0.025008635595440865,
0.002038700273260474,
-0.000294974772259593,
-0.039637643843889236,
0.052037470042705536,
-0.04994761198759079,
0.0274468045681715,
-0.043120741844177246,
0.007506073918193579,
0.0009720017551444471,
0.006848639342933893,
-0.05990926921367645,
0.036607347428798676,
0.015090517699718475,
0.010640861466526985,
-0.012913581915199757,
0.09968623518943787,
0.034674230962991714,
0.00859018787741661,
0.013732110150158405,
0.03615454584360123,
-0.01698009856045246,
0.04608137160539627,
-0.08038987964391708,
0.002725523430854082,
-0.0034199657384306192,
-0.034621983766555786,
0.01758093200623989,
0.012547857128083706,
0.012173423543572426,
0.0337337926030159,
0.08707742393016815,
0.029972050338983536,
-0.008237523958086967,
0.007218718528747559,
-0.04761393740773201,
0.013305430300533772,
0.0015978707233443856,
-0.04604654386639595,
0.017162960022687912,
-0.08874931186437607,
-0.01552590448409319,
-0.02318000979721546,
0.007658459711819887,
0.08965491503477097,
0.026854677125811577,
-0.006099773570895195,
-0.04608137160539627,
0.010910801589488983,
0.013105152174830437,
-0.0030890717171132565,
0.07830002158880234,
-0.01237370166927576,
0.0021344854030758142,
-0.0020136653911322355,
-0.04096122086048126,
0.03382087126374245,
-0.026175472885370255,
-0.01785087212920189,
-0.012103761546313763,
0.0018710761796683073,
-0.006247805431485176,
-0.008285417221486568,
0.008942851796746254,
0.07662813365459442,
0.015996122732758522,
-0.025774918496608734,
-0.04416567087173462,
0.09460091590881348,
0.015761014074087143,
0.0063914828933775425,
0.006043173372745514,
0.08888863772153854,
0.03706015273928642,
-0.029205767437815666,
0.025844579562544823,
-0.010109689086675644,
-0.009439192712306976,
0.06283506751060486,
-0.00639583682641387,
-0.009456608444452286,
-0.07307537645101547,
0.028961950913071632,
-0.013453462161123753,
-0.005141921807080507,
0.08909761905670166,
-0.042807262390851974,
-0.002607968868687749,
0.026541199535131454,
-0.0023010210134088993,
-0.10505020618438721,
-0.017955364659428596,
0.00591691117733717,
0.03127821162343025,
0.0050766137428581715,
-0.013348969630897045,
0.032723695039749146,
-0.05656549334526062,
0.0019320303108543158,
0.011825114488601685,
0.012852627784013748,
0.01936601847410202,
-0.0017687601502984762,
-0.06119801476597786,
-0.012164716608822346,
0.021055322140455246,
-0.05687897279858589,
-0.031504612416028976,
0.005559893324971199,
-0.06203395873308182,
-0.013610201887786388,
-0.021490707993507385,
-0.009639470838010311,
0.000039967177144717425,
0.016919143497943878,
0.02163003198802471,
0.03921967372298241,
0.016893019899725914,
-0.013653740286827087,
-0.009526270441710949,
-0.026802431792020798,
-0.025444023311138153,
0.003857529954984784,
0.0005562070291489363,
0.001340992283076048,
0.012713303789496422,
0.02553110010921955,
-0.009325992316007614,
-0.005686155986040831,
0.0119905611500144,
0.02250080555677414,
-0.006117188837379217,
-0.03333323821425438,
0.030006879940629005,
-0.03098214790225029,
-0.011781575158238411,
-0.009709132835268974,
-0.04601171240210533,
0.05649583414196968,
0.011293942108750343,
0.020341286435723305,
-0.02053285576403141,
-0.027951853349804878,
0.019940730184316635,
-0.02988497167825699,
-0.08247973769903183,
-0.014541929587721825,
-0.02946699969470501,
-0.0026515075005590916,
-0.03474389389157295,
0.029327675700187683,
0.0018395106308162212,
-0.03726913779973984,
0.021995756775140762,
0.041274700313806534,
-0.007153410464525223,
-0.02551368623971939,
-0.031138887628912926,
-0.003763921558856964,
0.05496327206492424,
0.009526270441710949,
-0.06628333777189255,
0.056391339749097824,
-0.06934846192598343,
-0.02208283543586731,
-0.03862754628062248,
0.00323492637835443,
0.05067906156182289,
0.040787067264318466,
-0.01162483636289835,
0.004671704024076462,
0.025827163830399513,
-0.044688135385513306,
-0.019940730184316635,
0.035039953887462616,
-0.005964803509414196,
0.033420316874980927,
-0.02396370656788349,
-0.040508419275283813,
-0.040508419275283813,
0.031243380159139633,
0.003389488672837615,
-0.026854677125811577,
0.014837993308901787,
0.007210010662674904,
0.02716815657913685,
0.0056600323878228664,
-0.012695888057351112,
0.02553110010921955,
-0.008847066201269627,
0.05294307321310043,
0.03065125271677971,
0.010527661070227623,
0.03521411120891571,
-0.04493195191025734,
-0.03862754628062248,
-0.017406776547431946,
0.014393898658454418,
0.036955658346414566,
0.0787876546382904,
0.03960281237959862,
0.03692082688212395,
0.0007129464065656066,
-0.046325188130140305,
-0.012634933926165104,
0.03761744871735573,
0.0317310132086277,
-0.05353520065546036,
-0.02793443761765957,
0.06168564781546593,
0.023040685802698135,
-0.011389726772904396,
0.05259476602077484,
-0.05656549334526062,
0.0028430779930204153,
-0.028578810393810272,
-0.027951853349804878,
0.02124689146876335,
0.04141402244567871,
0.012286624871194363,
0.0322708934545517,
-0.005559893324971199,
0.005102736875414848,
0.052141960710287094,
-0.0844302698969841,
-0.01901770941913128,
0.009770086966454983,
0.026436705142259598,
0.05691380426287651,
0.03495287895202637,
0.009021220728754997,
-0.07621016353368759,
-0.0353708490729332,
-0.0154997818171978,
-0.052908241748809814,
0.0014618122950196266,
-0.0029845787212252617,
-0.04911166802048683,
0.036259040236473083,
0.03338548541069031,
-0.03225347772240639,
0.011720621027052402,
0.031939998269081116,
0.02593165636062622,
-0.008690327405929565,
0.004177539609372616,
0.022013172507286072,
0.0344652459025383,
0.01891321688890457,
0.012957120314240456,
0.02283170074224472,
0.020794089883565903,
0.003809637390077114,
-0.060153085738420486,
-0.005664386320859194,
0.0018449529306963086,
0.03639836236834526,
-0.08463925868272781,
-0.01603095419704914,
0.02859622612595558,
0.027986684814095497,
0.04604654386639595,
-0.046325188130140305,
0.038557883352041245,
-0.024869311600923538,
0.036955658346414566,
0.03404727205634117,
-0.007471242919564247,
-0.013636324554681778,
0.036990489810705185,
-0.019104786217212677,
0.002320613246411085,
0.012852627784013748,
0.010597322136163712,
0.09258072078227997,
0.0071229333989322186,
-0.1305464804172516,
-0.002320613246411085,
-0.01758093200623989,
0.001904818695038557,
-0.016858190298080444,
0.01690172776579857,
0.02824791707098484,
0.0077455369755625725,
0.003907599486410618,
-0.03901068493723869,
0.0486936941742897,
-0.02283170074224472,
-0.017328407615423203,
-0.03554500639438629,
-0.047892581671476364,
-0.01105883251875639,
0.03126079589128494,
0.03566691279411316,
-0.010745353996753693,
-0.020689595490694046,
0.06489009410142899,
0.04496678337454796,
0.002129042986780405,
-0.005154983606189489,
-0.020672179758548737,
0.09822333604097366,
0.06513391435146332,
0.003363365540280938,
-0.02784736081957817,
-0.0565306656062603,
0.005455400794744492,
0.04190165549516678,
-0.029362507164478302,
0.02055027149617672,
-0.019853653386235237,
0.05235094577074051,
0.030146203935146332,
0.05809805914759636,
-0.027603544294834137,
0.046255528926849365,
0.03535343334078789,
0.027220403775572777,
0.023162594065070152,
0.0455937385559082,
-0.0009758113883435726,
0.0353708490729332,
0.016570834442973137,
-0.028840042650699615,
-0.007201302796602249,
0.07133382558822632,
-0.008655495941638947,
0.012277917005121708,
-0.0131748141720891,
0.013261891901493073,
0.07175179570913315,
-0.00968300923705101,
0.04263310879468918,
-0.056704819202423096,
0.06516874581575394,
-0.03221864625811577,
0.018042441457509995,
0.04872852563858032,
0.02051544189453125,
-0.02910127490758896,
0.013601494021713734,
-0.023824382573366165,
0.02446875534951687,
0.018460413441061974,
0.04068257287144661,
0.06927879899740219,
0.016475047916173935,
-0.049808286130428314,
-0.03448266163468361,
0.030041711404919624,
0.04660383611917496,
-0.016623079776763916,
-0.012852627784013748,
-0.02438167855143547,
-0.016562126576900482,
-0.008176569826900959,
0.055590227246284485,
-0.00026613037334755063,
0.04423533007502556,
-0.01005744282156229,
-0.008868835866451263,
0.018042441457509995,
0.01583067514002323,
-0.046220697462558746,
0.06771140545606613,
-0.013888848945498466,
-0.017136836424469948,
0.015787137672305107,
-0.042807262390851974,
-0.04521059989929199,
0.05931714177131653,
-0.049738623201847076,
-0.08394263684749603,
-0.010579907335340977,
0.058725014328956604,
-0.00630005169659853,
0.06506425142288208,
0.04496678337454796,
0.016553418710827827,
-0.014837993308901787,
0.02782994508743286,
-0.01739806868135929,
0.019139617681503296,
0.003498335601761937,
0.03268886357545853,
-0.04528025910258293,
0.026401875540614128,
-0.020358702167868614,
-0.007131641265004873,
0.04517576843500137,
0.008368140086531639,
-0.009717840701341629,
-0.06032723933458328,
0.03254954144358635,
-0.019244110211730003,
0.04179716482758522,
-0.023458657786250114,
0.000941524631343782,
-0.005398800130933523,
0.025478854775428772,
-0.013375092297792435,
0.012016684748232365,
0.007553966715931892,
-0.0450364425778389,
0.008024184964597225,
0.026819847524166107,
-0.048136401921510696,
-0.01891321688890457,
0.008402971550822258,
-0.002225916599854827,
-0.011180741712450981,
0.0017176022520288825,
-0.026227720081806183,
-0.015543320216238499,
-0.02859622612595558,
0.004911166615784168,
-0.008542295545339584,
0.00465864222496748,
-0.04876335710287094,
-0.039672475308179855,
0.001929853460751474,
0.006822516210377216,
0.0001666716270847246,
0.01699751242995262,
-0.02321484126150608,
0.008690327405929565,
0.0005943034193478525,
0.03305459022521973,
0.03331582248210907,
0.019871069118380547,
-0.05928231030702591,
-0.011859945021569729,
-0.06078004091978073,
0.018390752375125885,
-0.010736646130681038,
-0.03517927974462509,
0.014045588672161102,
-0.0154997818171978,
0.026976585388183594,
0.05660032480955124,
-0.037721939384937286,
-0.012338871136307716,
0.004092638846486807,
0.05273408815264702
] |
729,687 | aiconfig_extension_groq.groq | GroqParser | null | class GroqParser(DefaultOpenAIParser):
def __init__(self, model: str):
super().__init__(model_id = model)
# "Model" field is a custom name for the specific model they want to use
# when registering the Groq model parser. See the cookbook for reference:
# https://github.com/lastmile-ai/aiconfig/blob/main/cookbooks/Groq/aiconfig_model_registry.py#L15
self.model = model
async def deserialize(self, *args, **kwargs):
# Logic doesn't depend on input, pass it forward to the openai model parser deserialize
openai_deserialized_params = await super().deserialize(*args, **kwargs)
openai_deserialized_params["model"] = self.model
return openai_deserialized_params
def initialize_openai_client(self) -> None:
# Initialize Groq Client
self.client = Groq(
api_key=os.getenv("GROQ_API_KEY"),
)
| (model: str) | [
-0.009592128917574883,
-0.03497662395238876,
-0.14245952665805817,
-0.022466735914349556,
0.005092399660497904,
0.009355061687529087,
0.016011197119951248,
0.045261722058057785,
0.009619483724236488,
-0.04048389196395874,
0.03433836251497269,
0.028046948835253716,
-0.004337885417044163,
0.05930343270301819,
-0.0122181111946702,
0.016932114958763123,
0.005903901066631079,
-0.001438363455235958,
0.021244924515485764,
-0.024272099137306213,
0.001150576863437891,
-0.01417848002165556,
-0.04121332988142967,
-0.009245645254850388,
0.03508603945374489,
0.056896280497312546,
0.012436943128705025,
-0.006802023388445377,
-0.028940511867403984,
0.004597748164087534,
-0.007987362332642078,
-0.03229593485593796,
-0.0008730479166842997,
0.07680997997522354,
-0.014032592065632343,
-0.017023293301463127,
-0.02932346798479557,
0.04978424683213234,
-0.11780447512865067,
-0.025639798492193222,
-0.0339554101228714,
-0.01153426244854927,
0.01361316442489624,
-0.02113550901412964,
-0.029888782650232315,
-0.0033098317217081785,
-0.04216160252690315,
0.046611182391643524,
-0.015227049589157104,
-0.029469355940818787,
0.03997328504920006,
-0.009765371680259705,
-0.014999100007116795,
0.09891199320554733,
-0.030417626723647118,
0.03326243907213211,
-0.0073399851098656654,
0.0631694570183754,
0.03287948668003082,
-0.011443082243204117,
-0.03450248762965202,
0.015062925405800343,
0.017123593017458916,
0.008233548142015934,
0.05303025245666504,
-0.027645757421851158,
-0.013202854432165623,
-0.005712423007935286,
-0.000185921584488824,
-0.03608901798725128,
0.010649817064404488,
-0.015537060797214508,
0.010722760111093521,
0.02139081247150898,
0.07549698650836945,
-0.01707800291478634,
-0.07542404532432556,
0.022010836750268936,
0.0036836694926023483,
-0.0006496570422314107,
0.02928699553012848,
0.018254224210977554,
-0.02673395723104477,
-0.10175681114196777,
-0.04183335602283478,
-0.0636071264743805,
0.06025170162320137,
-0.022156724706292152,
0.02467329055070877,
-0.05262906104326248,
-0.021700825542211533,
0.011908099986612797,
-0.027262801304459572,
0.056203313171863556,
0.003916178364306688,
0.016239147633314133,
-0.03067293018102646,
-0.0332077331840992,
-0.016157085075974464,
-0.030527042225003242,
-0.0912528783082962,
0.08366671204566956,
-0.05627625808119774,
0.007727499585598707,
-0.02791929617524147,
-0.048945389688014984,
0.007508667651563883,
-0.01705976575613022,
0.07341808825731277,
-0.0302717387676239,
-0.06171058118343353,
-0.0036927873734384775,
-0.034083060920238495,
0.07680997997522354,
-0.013421686366200447,
0.005552858114242554,
0.018783066421747208,
0.029359940439462662,
0.05117018148303032,
-0.012409589253365993,
-0.05346791446208954,
0.017178300768136978,
-0.03752966225147247,
0.016275618225336075,
0.04489700123667717,
0.039900340139865875,
-0.0037839673459529877,
0.006209353916347027,
0.0014121492858976126,
-0.03752966225147247,
0.01116042397916317,
0.019457798451185226,
-0.008228989318013191,
-0.027773408219218254,
0.0258403941988945,
0.03960856422781944,
0.029414648190140724,
0.032496530562639236,
-0.028284016996622086,
0.06327887624502182,
-0.014971745200455189,
-0.0000086994923549355,
0.014561436139047146,
-0.08162427693605423,
-0.013631400652229786,
0.006843054201453924,
-0.020807260647416115,
-0.028521083295345306,
-0.011452199891209602,
-0.03162120282649994,
0.03678198531270027,
0.02394385077059269,
0.044787585735321045,
0.03725612163543701,
0.03884265199303627,
-0.01818127930164337,
-0.0525561161339283,
-0.015555297024548054,
0.0012012956431135535,
-0.00855723675340414,
-0.02469152770936489,
0.028028711676597595,
0.03329891338944435,
-0.032897721976041794,
0.003624402452260256,
-0.006833936087787151,
0.012281937524676323,
-0.009391533210873604,
-0.00644642161205411,
0.05879282206296921,
-0.04551702365279198,
-0.02863050065934658,
-0.09497302025556564,
-0.03333538398146629,
-0.01371346227824688,
0.04938305541872978,
0.010585990734398365,
0.05561976134777069,
0.00634156446903944,
-0.020807260647416115,
0.02252144366502762,
0.0031662234105169773,
-0.03304360806941986,
-0.0391344279050827,
0.03466661274433136,
0.013987001962959766,
0.03982739523053169,
-0.005548299290239811,
0.0010793424444273114,
0.0326424166560173,
0.01488056592643261,
0.0035218249540776014,
0.011588970199227333,
-0.040155645459890366,
0.017816560342907906,
-0.004178320523351431,
0.013412568718194962,
0.015281757339835167,
-0.014287896454334259,
0.041505105793476105,
0.02558509074151516,
0.005534622352570295,
-0.027828115969896317,
-0.0028083419892936945,
-0.06240354850888252,
-0.014233187772333622,
-0.01758860982954502,
-0.014169362373650074,
-0.02748163230717182,
-0.025202134624123573,
-0.08235371857881546,
0.014515846036374569,
-0.024764470756053925,
0.01743360422551632,
0.03742024675011635,
0.008652975782752037,
0.006569514516741037,
0.052191395312547684,
0.055802121758461,
0.01828157715499401,
0.1051122322678566,
-0.007955449633300304,
0.017150945961475372,
-0.04168746620416641,
-0.0006866988842375576,
0.00698894215747714,
0.013877586461603642,
0.027627520263195038,
-0.0311470665037632,
-0.01951250620186329,
0.03468484804034233,
-0.04416755959391594,
0.016375916078686714,
-0.0072715999558568,
-0.008078542537987232,
0.024563875049352646,
0.04890891909599304,
0.04537113755941391,
-0.06794729083776474,
-0.003945811651647091,
0.025074481964111328,
0.0214090496301651,
-0.09023166447877884,
-0.0036449178587645292,
-0.03442954272031784,
-0.04679354280233383,
0.012208993546664715,
-0.04248984903097153,
0.011570733971893787,
0.0038979423698037863,
0.026478653773665428,
-0.01933014579117298,
-0.034083060920238495,
0.03517721965909004,
-0.014260541647672653,
-0.03703729063272476,
-0.04599115997552872,
-0.06240354850888252,
0.037091996520757675,
-0.036891400814056396,
-0.02232084795832634,
0.01818127930164337,
-0.05117018148303032,
0.04796064645051956,
-0.034320127218961716,
0.03800379857420921,
0.042927514761686325,
-0.04026506096124649,
0.025858629494905472,
-0.035049568861722946,
0.10343451797962189,
0.016394153237342834,
-0.024928594008088112,
-0.020825497806072235,
-0.01753390207886696,
0.007189537864178419,
-0.03891559690237045,
0.03207710012793541,
-0.001061676419340074,
0.007353662047535181,
0.002372957766056061,
-0.01980428211390972,
0.04263573884963989,
-0.005589330103248358,
0.03235064074397087,
0.00205040886066854,
-0.03207710012793541,
0.07505932450294495,
-0.014926156029105186,
0.0016207234002649784,
0.0004336745769251138,
0.01199016161262989,
-0.025931574404239655,
-0.007572493515908718,
0.06433656066656113,
-0.004492891486734152,
-0.009838314726948738,
0.07465813308954239,
0.0258403941988945,
-0.06568602472543716,
0.045225247740745544,
0.009810960851609707,
0.006669812370091677,
-0.012765191495418549,
-0.040119171142578125,
0.01106924470514059,
0.03163943812251091,
-0.029651716351509094,
-0.03858735039830208,
-0.02044254168868065,
-0.039900340139865875,
0.019202494993805885,
0.024089738726615906,
0.014989981427788734,
-0.034046586602926254,
0.06076230853796005,
0.04854419827461243,
0.013667872175574303,
0.0335177443921566,
-0.007663673721253872,
-0.04438639432191849,
0.03587018698453903,
0.010321568697690964,
-0.020570194348692894,
-0.0033007136080414057,
-0.001943272422067821,
-0.04996660351753235,
0.04869008809328079,
-0.010722760111093521,
-0.030800582841038704,
-0.012655775062739849,
0.018710123375058174,
-0.023323828354477882,
-0.0043561216443777084,
0.001362000359222293,
0.012810780666768551,
0.024600347504019737,
-0.005242846440523863,
0.017050648108124733,
-0.0456264391541481,
0.02301381528377533,
-0.0018349962774664164,
0.014725559391081333,
0.04653824120759964,
-0.01083217654377222,
-0.0032733597327023745,
0.001799663994461298,
-0.06346123665571213,
0.05915754288434982,
-0.05981403961777687,
-0.015126751735806465,
0.01824510470032692,
0.050112493336200714,
0.04810653626918793,
0.04551702365279198,
-0.04766887053847313,
-0.01996840536594391,
-0.002794665051624179,
-0.00022695255756843835,
-0.010485692881047726,
-0.03421071171760559,
-0.07239686697721481,
-0.018108336254954338,
0.031748853623867035,
-0.042891040444374084,
-0.052264340221881866,
0.027645757421851158,
-0.006724520120769739,
0.042672209441661835,
0.026369238272309303,
-0.01790773868560791,
0.0012696805642917752,
-0.0605434775352478,
-0.006879526190459728,
-0.043839313089847565,
0.056677449494600296,
0.017561255022883415,
0.003968606702983379,
-0.0469394326210022,
-0.009177261032164097,
0.03074587509036064,
0.06707195937633514,
0.000850822776556015,
0.0014440622180700302,
0.011278958059847355,
-0.08169722557067871,
0.008233548142015934,
0.04879950359463692,
0.006514806300401688,
-0.030289974063634872,
0.04683001711964607,
-0.055255040526390076,
-0.012373117730021477,
0.01729683391749859,
-0.019457798451185226,
-0.0720321536064148,
-0.03623490780591965,
-0.0011614044196903706,
-0.02166435308754444,
-0.008247225545346737,
-0.014287896454334259,
-0.061528220772743225,
0.044094618409872055,
0.0006411089561879635,
0.006683489307761192,
0.00853900145739317,
0.04646529629826546,
0.07753942161798477,
0.0013961928198114038,
0.01753390207886696,
-0.007645437493920326,
-0.039462678134441376,
-0.043401651084423065,
-0.0021632439456880093,
-0.04905480518937111,
0.0024800943210721016,
0.05510915443301201,
0.012044869363307953,
-0.06568602472543716,
0.08315610140562057,
-0.008383994922041893,
0.0627317950129509,
0.017187418416142464,
0.019184257835149765,
0.019421325996518135,
0.04332870617508888,
-0.0015819718828424811,
0.024983301758766174,
0.033608924597501755,
-0.0408850833773613,
-0.011716621927917004,
0.046866487711668015,
-0.02441798709332943,
-0.06849437206983566,
0.0004960758378729224,
0.022703804075717926,
-0.03752966225147247,
-0.01397788431495428,
0.01974957436323166,
0.026168642565608025,
0.047814760357141495,
-0.037566132843494415,
0.02047901414334774,
0.02910463511943817,
0.05306672304868698,
-0.04103097319602966,
-0.028502847999334335,
0.0689685046672821,
0.0432557612657547,
-0.016585631296038628,
-0.0030317329801619053,
0.04555349797010422,
0.032915957272052765,
-0.0020207753404974937,
-0.00013634249626193196,
-0.033627159893512726,
0.08541736751794815,
0.03138413280248642,
-0.014588790014386177,
-0.06812965124845505,
0.010959828272461891,
0.049674831330776215,
0.001821319223381579,
-0.02582215890288353,
-0.0077867666259408,
0.10686288774013519,
0.026606306433677673,
0.007116593886166811,
-0.12480709701776505,
-0.021974364295601845,
-0.011935453861951828,
-0.011971925385296345,
0.026168642565608025,
-0.025876866653561592,
-0.023998558521270752,
-0.008520765230059624,
0.052191395312547684,
0.026861609891057014,
-0.016813579946756363,
-0.03752966225147247,
0.0668531283736229,
-0.07644525915384293,
-0.00085709139239043,
0.07556993514299393,
0.025056246668100357,
0.03649020940065384,
-0.0041236127726733685,
-0.036435503512620926,
-0.04157805070281029,
-0.022156724706292152,
-0.05678686499595642,
0.046173520386219025,
-0.006765551399439573,
-0.011716621927917004,
0.062002357095479965,
0.021099036559462547,
0.08023834228515625,
0.03975445404648781,
0.010713642463088036,
-0.04580879956483841,
0.025895101949572563,
-0.01822686940431595,
-0.01858247071504593,
-0.031311191618442535,
0.03714670613408089,
-0.035724300891160965,
-0.031220009550452232,
0.012929314747452736,
-0.06269532442092896,
0.019384855404496193,
-0.06006934121251106,
0.009810960851609707,
0.05474443361163139,
-0.04208865761756897,
-0.035687826573848724,
-0.0028904040809720755,
0.007130270823836327,
-0.0027809881139546633,
-0.05157137289643288,
-0.003332626773044467,
0.02906816452741623,
0.005042250733822584,
-0.005571094341576099,
-0.0032118132803589106,
-0.016530921682715416,
0.011406609788537025,
0.01056775450706482,
0.021354341879487038,
0.028448140248656273,
-0.03909795731306076,
0.07972773909568787,
0.009345943108201027,
0.007599847856909037,
0.04704884812235832,
0.031748853623867035,
0.05138901248574257,
0.02162788063287735,
0.008981224149465561,
-0.011114833876490593,
0.008365759626030922,
0.00990214105695486,
0.0683484822511673,
-0.07936301827430725,
0.03142060711979866,
0.011379255913197994,
0.0030408508609980345,
0.013503748923540115,
0.08461498469114304,
0.027153385803103447,
0.014534082263708115,
-0.054562073200941086,
0.015081161633133888,
0.005739776883274317,
-0.021080801263451576,
-0.0123275276273489,
-0.005753453820943832,
0.013731698505580425,
-0.05091487616300583,
0.04759592562913895,
-0.0166038665920496,
0.03512251004576683,
0.0027103235479444265,
-0.06240354850888252,
0.049930132925510406,
0.006460098549723625,
0.03278830647468567,
-0.003109235782176256,
0.05375969037413597,
-0.006318769417703152,
0.017205653712153435,
0.028065184131264687,
-0.07629936933517456,
-0.012847253121435642,
0.0067108431831002235,
-0.0404474213719368,
-0.0002644218038767576,
-0.0419427715241909,
0.021719060838222504,
0.005110635422170162,
0.00593125494197011,
0.05467148870229721,
0.02817459963262081,
-0.007663673721253872,
-0.04095802828669548,
-0.012126931920647621,
-0.012810780666768551,
0.03800379857420921,
0.06477423012256622,
0.03749319165945053,
0.02416268363595009,
0.0014178480487316847,
0.011342784389853477,
0.001616164343431592,
-0.018573353067040443,
-0.012528123334050179,
-0.008871807716786861,
0.02976113185286522,
-0.07465813308954239,
-0.015318229794502258,
-0.042453378438949585,
-0.009865669533610344,
0.01974957436323166,
0.008780627511441708,
-0.004185159225016832,
-0.015783246606588364,
0.025293314829468727,
-0.06116349995136261,
0.008694007061421871,
0.012309291400015354,
-0.01903836987912655,
-0.021500229835510254,
-0.031256482005119324,
-0.025293314829468727,
-0.013512866571545601,
-0.06167411059141159,
-0.019147787243127823,
-0.010221270844340324,
0.050148963928222656,
0.05777160823345184,
-0.045006416738033295,
0.031220009550452232,
-0.034520722925662994,
-0.029013456776738167,
0.023834435269236565,
-0.04062977805733681,
-0.007066444959491491,
0.011215132661163807,
-0.08716802299022675,
-0.028065184131264687,
-0.009938613511621952,
0.07104741036891937,
-0.025968046858906746,
-0.01162544172257185,
-0.05182667449116707,
0.01153426244854927,
-0.04372989758849144,
0.023560896515846252,
0.0652848333120346,
-0.03355421498417854,
-0.03672727942466736,
-0.04602763056755066,
-0.020059585571289062,
-0.025475675240159035,
0.01790773868560791,
-0.017661552876234055,
-0.02117198146879673,
-0.0642271488904953,
0.0027103235479444265,
0.04332870617508888,
-0.013676990754902363,
0.03563312068581581,
0.03650844842195511,
-0.02491035871207714,
-0.04073919728398323,
-0.031092358753085136,
-0.020169002935290337,
0.006519365590065718,
0.018573353067040443,
-0.014926156029105186,
0.013822878710925579,
-0.0188195388764143,
0.05489032343029976,
0.05047721415758133,
0.04300045967102051,
-0.048033591359853745,
-0.02323264814913273,
0.018135689198970795,
-0.037347301840782166,
0.019384855404496193,
0.03811321407556534,
-0.029013456776738167,
-0.0014167082263156772,
0.01173485815525055,
0.03433836251497269,
-0.020588429644703865,
0.002158684888854623,
0.06681665778160095,
-0.009756253100931644,
0.0469394326210022,
0.0214090496301651,
0.0034511606208980083,
0.03658138960599899,
-0.018965426832437515,
0.0005405260599218309,
0.024727998301386833,
-0.00425354391336441,
0.041067443788051605,
0.0044290656223893166,
0.06426361948251724,
-0.04303693026304245,
-0.008456938900053501,
0.038952067494392395,
-0.020004877820611,
-0.017269479110836983,
0.029633479192852974,
-0.07644525915384293,
-0.05726100131869316,
-0.07367338985204697,
-0.03185826912522316,
0.013458158820867538,
0.07188626378774643,
-0.04683001711964607,
-0.019457798451185226,
-0.011406609788537025,
0.006090819835662842,
0.019001899287104607,
-0.04905480518937111,
0.05788102373480797,
-0.03227769583463669,
-0.03866029158234596,
0.018609825521707535,
-0.009564775042235851,
-0.037110235542058945,
-0.028466375544667244,
0.07980068027973175,
0.013531102798879147,
0.0028334164526313543,
0.07268864661455154,
-0.031274717301130295,
0.021336104720830917,
-0.026916317641735077,
0.01996840536594391,
0.024345044046640396,
-0.00686129042878747,
0.01850041002035141,
-0.02257615141570568,
-0.026898080483078957,
-0.018536880612373352,
0.04599115997552872,
0.0031206333078444004,
-0.007353662047535181,
-0.008032952435314655,
-0.06543072313070297,
-0.051753733307123184,
0.01149778999388218,
-0.04216160252690315,
-0.0006866988842375576,
-0.02467329055070877,
0.06812965124845505,
-0.017287716269493103,
0.00884445384144783,
0.017679790034890175,
-0.021336104720830917,
-0.0011072664055973291,
-0.005671392194926739,
0.0036289615090936422,
0.024290334433317184,
-0.010184799320995808,
-0.05656803399324417,
0.009975085034966469,
0.030180558562278748,
0.04263573884963989,
0.05007602274417877,
0.03156649321317673,
-0.028794623911380768,
-0.0297428946942091,
0.02301381528377533,
0.051024291664361954,
-0.014032592065632343,
-0.005019455682486296,
-0.007745735812932253,
-0.014944391325116158,
0.019166022539138794,
-0.03342656418681145,
0.020132530480623245,
-0.03240535035729408,
-0.0026282616890966892,
-0.036854930222034454
] |
729,688 | aiconfig_extension_groq.groq | __init__ | null | def __init__(self, model: str):
super().__init__(model_id = model)
# "Model" field is a custom name for the specific model they want to use
# when registering the Groq model parser. See the cookbook for reference:
# https://github.com/lastmile-ai/aiconfig/blob/main/cookbooks/Groq/aiconfig_model_registry.py#L15
self.model = model
| (self, model: str) | [
0.013730534352362156,
0.010530184023082256,
-0.02055356837809086,
0.003730613272637129,
0.007099896669387817,
-0.0021409967448562384,
0.027798935770988464,
0.0389673113822937,
0.021060368046164513,
-0.008789231069386005,
-0.010990058071911335,
0.051092978566884995,
0.018732840195298195,
0.06967565417289734,
0.0015215741004794836,
0.014753519557416439,
0.009328879415988922,
-0.0007731050718575716,
0.05953964963555336,
-0.026766564697027206,
-0.013721149414777756,
-0.02736721560359001,
-0.01572958007454872,
0.04028123989701271,
0.06325618922710419,
0.08626867085695267,
-0.025433866307139397,
0.007189056370407343,
0.021604709327220917,
-0.036940112709999084,
-0.023594370111823082,
-0.030858507379889488,
-0.030314166098833084,
0.07162777334451675,
0.005814125761389732,
-0.07342973351478577,
-0.023012487217783928,
0.06828664988279343,
-0.14610865712165833,
-0.01948365569114685,
0.04527416080236435,
0.005748429335653782,
0.03461258485913277,
-0.01922086998820305,
-0.020985286682844162,
0.0018570945831015706,
0.0018653066363185644,
0.018085261806845665,
-0.025302475318312645,
-0.007301678415387869,
-0.056311145424842834,
0.030558181926608086,
-0.015814047306776047,
0.051092978566884995,
-0.06070341542363167,
0.029112862423062325,
-0.008460749872028828,
0.08183886110782623,
0.011224688030779362,
0.050079379230737686,
-0.05833834782242775,
0.0195587370544672,
0.029094090685248375,
-0.0009971765102818608,
0.017860017716884613,
0.0007871828856877983,
0.007254752330482006,
0.005401177331805229,
-0.005401177331805229,
-0.005785970017313957,
0.0015250934520736337,
-0.03603913262486458,
0.013477133587002754,
0.04752660542726517,
0.08356574177742004,
-0.023800844326615334,
-0.08964734524488449,
0.02714197151362896,
0.01818849891424179,
0.04148254171013832,
0.045949894934892654,
0.010145391337573528,
-0.02971351332962513,
-0.053833454847335815,
-0.060140304267406464,
-0.04658808559179306,
0.012275829911231995,
-0.014246719889342785,
0.032942019402980804,
-0.01093374751508236,
-0.05586065724492073,
0.021004056558012962,
-0.028193112462759018,
0.03641454130411148,
-0.0059595960192382336,
-0.017953870818018913,
0.015213394537568092,
-0.029394418001174927,
0.01687457226216793,
-0.0033622446935623884,
-0.03510061278939247,
-0.003329396480694413,
-0.058788836002349854,
-0.056386224925518036,
-0.047376442700624466,
-0.04118221625685692,
-0.028230654075741768,
-0.035513561218976974,
-0.003993398509919643,
-0.0058235106989741325,
-0.0012329794699326158,
0.07609512656927109,
-0.030802195891737938,
0.0652083083987236,
-0.039417799562215805,
-0.006649407558143139,
0.012829556129872799,
-0.015701424330472946,
0.07647053152322769,
-0.01861083321273327,
-0.06201734021306038,
0.029131632298231125,
-0.07643299549818039,
0.04152008518576622,
0.08574310690164566,
0.03787862882018089,
-0.016452239826321602,
-0.015964210033416748,
0.011928577907383442,
-0.05807556211948395,
0.03485659882426262,
-0.023819614201784134,
-0.00772870471701026,
-0.0652458444237709,
0.020234471186995506,
-0.02074127085506916,
0.03793494030833244,
0.03656470403075218,
-0.026316074654459953,
0.10684101283550262,
-0.04024369642138481,
0.0519939586520195,
0.0388546884059906,
-0.05807556211948395,
-0.01761600375175476,
0.017015350982546806,
-0.014396882615983486,
-0.020309552550315857,
-0.021097909659147263,
0.0036813411861658096,
0.0012599618639796972,
0.04959134757518768,
0.058826375752687454,
0.04106959328055382,
-0.022993717342615128,
0.01567326858639717,
-0.02442026697099209,
-0.03130899742245674,
0.05488459765911102,
-0.0129703339189291,
0.018732840195298195,
0.013927623629570007,
0.05601081997156143,
-0.019821522757411003,
-0.023594370111823082,
0.02860606089234352,
-0.06607174128293991,
-0.04504891484975815,
-0.01420917920768261,
0.03506307303905487,
-0.04133237898349762,
-0.0650956854224205,
-0.06866205483675003,
-0.013448978774249554,
-0.02083512395620346,
0.07958641648292542,
0.02995752915740013,
0.06794878095388412,
0.009460272267460823,
0.007273522671312094,
0.064682736992836,
0.02980736643075943,
-0.012519844807684422,
0.03380545601248741,
0.021623479202389717,
-0.029413187876343727,
0.010727273300290108,
0.023744532838463783,
0.03532585874199867,
0.04016861692070961,
0.05683671683073044,
-0.013280045241117477,
0.020215701311826706,
-0.04944118484854698,
-0.014368726871907711,
-0.017306292429566383,
0.044635966420173645,
-0.06802386045455933,
-0.04790201410651207,
0.07530677318572998,
0.036771178245544434,
0.004054402466863394,
-0.025959437713027,
-0.008249582722783089,
0.0021855763625353575,
0.01870468445122242,
0.026560090482234955,
-0.00273578311316669,
-0.014471963979303837,
-0.04497383534908295,
-0.006930963601917028,
-0.0010259186383336782,
-0.010746043175458908,
0.039605505764484406,
0.05586065724492073,
-0.026203453540802002,
-0.02729213424026966,
0.0385919064283371,
0.036865029484033585,
0.02184872329235077,
0.08649391680955887,
0.00028962112264707685,
-0.0007895291782915592,
-0.030332935974001884,
-0.012228903360664845,
-0.023894695565104485,
0.047451525926589966,
-0.018563907593488693,
-0.008765768259763718,
0.005560725461691618,
-0.015250935219228268,
-0.02338789589703083,
0.016414698213338852,
-0.0066071744076907635,
-0.029450729489326477,
0.0014852064196020365,
-0.006954426411539316,
0.04001845419406891,
-0.08296508342027664,
-0.04260876774787903,
0.042158275842666626,
0.038329120725393295,
-0.04489875212311745,
0.012106896378099918,
0.01225705910474062,
-0.030107691884040833,
-0.009873220697045326,
0.01959627866744995,
-0.012463533319532871,
-0.053870994597673416,
0.050980355590581894,
-0.024101169779896736,
-0.021060368046164513,
0.06066587194800377,
0.000566337606869638,
-0.03506307303905487,
-0.011909807100892067,
-0.05323280394077301,
0.011506243608891964,
-0.03343005105853081,
-0.05548524856567383,
-0.016902728006243706,
-0.013111111707985401,
0.04579973220825195,
-0.02736721560359001,
-0.005776585079729557,
-0.01232275553047657,
0.008610912598669529,
0.013815000653266907,
0.00518531771376729,
0.13950148224830627,
0.002644277410581708,
0.0005334894522093236,
0.015147698111832142,
-0.026316074654459953,
-0.07594496756792068,
-0.049816593527793884,
0.021792413666844368,
-0.0656963363289833,
-0.004847451113164425,
0.015663882717490196,
-0.0518062524497509,
0.08506736904382706,
0.035720035433769226,
-0.013815000653266907,
-0.0521065779030323,
-0.01172210369259119,
0.02990121766924858,
-0.043584827333688736,
-0.02732967585325241,
-0.026597630232572556,
0.02725459448993206,
-0.02854975126683712,
0.021510858088731766,
0.015448024496436119,
-0.05398361757397652,
0.021285612136125565,
0.07350481301546097,
-0.0006933309487067163,
-0.030351707711815834,
0.026522548869252205,
-0.004291378427296877,
0.024326413869857788,
0.033167265355587006,
-0.0390048548579216,
0.021529627963900566,
0.014762905426323414,
-0.025527719408273697,
0.011525014415383339,
-0.010220472700893879,
-0.006029984913766384,
0.09625452011823654,
-0.020459715276956558,
0.04182041063904762,
-0.02719828300178051,
0.08123821020126343,
0.004059094935655594,
-0.03239767998456955,
0.03502553328871727,
0.01668686978518963,
-0.011815954931080341,
-0.005401177331805229,
0.009211564436554909,
-0.036808717995882034,
0.014847371727228165,
0.03100867010653019,
-0.012932793237268925,
-0.0077756308019161224,
-0.03587019816040993,
0.017728624865412712,
-0.015663882717490196,
0.05281985551118851,
-0.002123399404808879,
-0.01481921598315239,
-0.044711049646139145,
-0.05931440740823746,
0.014256104826927185,
0.014622127637267113,
-0.025527719408273697,
-0.03491291031241417,
0.05698687955737114,
-0.029507039114832878,
-0.022336754947900772,
0.014059015549719334,
0.0020072576589882374,
-0.003721228102222085,
-0.02721705287694931,
-0.07023876905441284,
0.026597630232572556,
-0.04309679567813873,
-0.00846544187515974,
-0.023031258955597878,
0.018770381808280945,
0.000567804032471031,
0.03496922180056572,
-0.004969458561390638,
-0.047001034021377563,
0.03511938452720642,
-0.021341923624277115,
-0.018770381808280945,
-0.029300564900040627,
-0.05818818137049675,
-0.00481929536908865,
0.0034537501633167267,
-0.031646862626075745,
0.00480991043150425,
0.01933349296450615,
0.039605505764484406,
0.03515692427754402,
-0.005724966526031494,
-0.00273812934756279,
-0.016555476933717728,
-0.0002680645266082138,
0.0035569872707128525,
0.0016822954639792442,
0.050980355590581894,
0.0006903980975039303,
0.005997136700898409,
-0.056198522448539734,
-0.04257122427225113,
0.009009783156216145,
0.021698560565710068,
0.059051621705293655,
-0.0008646107162348926,
-0.008479519747197628,
-0.048577748239040375,
0.000516772095579654,
0.057812776416540146,
0.010220472700893879,
-0.030107691884040833,
0.03710904344916344,
-0.05030462145805359,
0.0022348484490066767,
0.0014312416315078735,
0.009000398218631744,
-0.05604835972189903,
-0.029356876388192177,
-0.004631591495126486,
-0.03125268593430519,
0.01042694691568613,
-0.01107452530413866,
-0.07226596772670746,
0.040994513779878616,
0.014612741768360138,
0.00011746153177227825,
0.0097605986520648,
0.006682255771011114,
0.06314356625080109,
0.01225705910474062,
-0.018423128873109818,
0.024213792756199837,
-0.015429253689944744,
-0.06002768129110336,
-0.03220997378230095,
-0.016602402552962303,
0.008967549540102482,
0.0518062524497509,
-0.05683671683073044,
-0.015147698111832142,
0.004080211743712425,
-0.0003199763596057892,
0.07511907070875168,
0.024326413869857788,
0.02716074138879776,
0.035476021468639374,
0.06892484426498413,
0.014856756664812565,
0.02853097952902317,
0.06231766566634178,
-0.00873292051255703,
-0.05045478418469429,
0.0650581419467926,
0.005358944181352854,
-0.021585939452052116,
0.008451364003121853,
0.003003261052072048,
0.006250537000596523,
-0.047301363199949265,
-0.02079758234322071,
-0.0008253102423623204,
0.0037329597398638725,
-0.06971319764852524,
0.024363955482840538,
0.011318540200591087,
0.0031745408196002245,
-0.0322287455201149,
-0.0328669399023056,
0.057925399392843246,
-0.027461068704724312,
-0.056386224925518036,
0.015269705094397068,
0.0389297716319561,
0.003308279672637582,
-0.012613696046173573,
0.011130835860967636,
-0.07515660673379898,
0.0015696731861680746,
-0.0046902489848434925,
0.033204805105924606,
-0.016564860939979553,
-0.05709950253367424,
0.038141414523124695,
-0.005973673891276121,
-0.03525077551603317,
-0.01700596511363983,
0.08919685333967209,
0.0390799343585968,
-0.008601527661085129,
-0.05788785591721535,
-0.014425038360059261,
-0.025340015068650246,
0.0195399671792984,
0.01358037069439888,
0.01681826263666153,
-0.06828664988279343,
0.01499753538519144,
0.006541477981954813,
-0.047001034021377563,
-0.025020917877554893,
-0.04959134757518768,
0.051430847495794296,
-0.03356144204735756,
0.02984490618109703,
0.06723550707101822,
0.03716535493731499,
0.009188101626932621,
-0.02051602676510811,
-0.06385684013366699,
0.00029490029555745423,
-0.00422802846878767,
-0.0640820860862732,
0.06205487996339798,
-0.03395561873912811,
0.02712320163846016,
0.05086773261427879,
0.03605790436267853,
0.04411039501428604,
0.04422301799058914,
0.0028906387742608786,
-0.0006422990118153393,
0.027705082669854164,
-0.04152008518576622,
-0.04778939113020897,
-0.04298417270183563,
0.018423128873109818,
-0.030558181926608086,
-0.0516185499727726,
0.014603356830775738,
-0.02338789589703083,
-0.00933357235044241,
-0.018883004784584045,
-0.0017022390384227037,
0.031909648329019547,
0.0028882925398647785,
0.007841327227652073,
-0.030351707711815834,
-0.02714197151362896,
-0.014725364744663239,
-0.03157178312540054,
0.06231766566634178,
0.00873292051255703,
-0.010136006399989128,
0.015175853855907917,
-0.020497256889939308,
-0.0030783426482230425,
0.014396882615983486,
-0.0008599181310273707,
0.0036086058244109154,
0.06190471723675728,
0.037146586924791336,
0.044786129146814346,
-0.013411438092589378,
-0.02832450531423092,
0.0914492979645729,
-0.01108391024172306,
0.07365497946739197,
-0.021191760897636414,
-0.014312416315078735,
0.02464551106095314,
-0.004502545110881329,
-0.013467748649418354,
0.015898512676358223,
0.006640022620558739,
0.024345185607671738,
0.026597630232572556,
-0.030295396223664284,
-0.028042949736118317,
0.0644950345158577,
-0.005063310265541077,
-0.010567724704742432,
0.004300763830542564,
-0.017071662470698357,
-0.029244255274534225,
-0.0323038250207901,
0.0004384643689263612,
0.02196134626865387,
0.0036015668883919716,
-0.04572464898228645,
0.04170778766274452,
0.0160205215215683,
0.010858666151762009,
-0.01232275553047657,
0.034255947917699814,
0.04549940675497055,
0.042233359068632126,
0.029544580727815628,
-0.025527719408273697,
-0.04636284336447716,
-0.06288077682256699,
-0.005748429335653782,
0.006428855936974287,
-0.08221427351236343,
-0.00005147190677234903,
0.064682736992836,
-0.08086280524730682,
-0.008366897702217102,
-0.03157178312540054,
0.03367406502366066,
-0.033110953867435455,
-0.0016646982403472066,
-0.03365529328584671,
0.04899069666862488,
-0.031740713864564896,
0.012745088897645473,
-0.015279090963304043,
-0.043397121131420135,
0.047188740223646164,
0.0516560897231102,
-0.005405869800597429,
-0.014453194104135036,
0.011637636460363865,
0.016405314207077026,
-0.026747792959213257,
-0.0006399527192115784,
0.00045371532905846834,
-0.03654593229293823,
-0.030445558950304985,
-0.13379527628421783,
-0.007038893178105354,
-0.03757830336689949,
-0.0003651425940915942,
0.03526954725384712,
-0.0022512725554406643,
0.01420917920768261,
0.005912670399993658,
-0.006536785513162613,
-0.03157178312540054,
0.051918875426054,
-0.01553249079734087,
-0.006860574707388878,
-0.013355126604437828,
0.005415255203843117,
-0.029544580727815628,
-0.011506243608891964,
-0.021079137921333313,
-0.04238352179527283,
-0.01415286771953106,
0.04230843856930733,
0.033148493617773056,
-0.06366913765668869,
0.015100771561264992,
0.031759485602378845,
0.03140284866094589,
0.04106959328055382,
-0.07072679698467255,
0.030126461759209633,
0.008427901193499565,
-0.07883559912443161,
-0.008230811916291714,
-0.009948302060365677,
0.06081603467464447,
-0.0391174741089344,
0.00970428716391325,
-0.061416689306497574,
0.039267636835575104,
-0.04121975973248482,
-0.0014230295782908797,
0.03650839254260063,
0.029112862423062325,
0.01546679437160492,
-0.04009353369474411,
-0.014622127637267113,
0.01664932817220688,
0.03727797791361809,
-0.039567966014146805,
0.021172991022467613,
-0.06625944375991821,
-0.02320019155740738,
-0.0027944406028836966,
0.006335003767162561,
0.022862324491143227,
-0.00517124030739069,
-0.02853097952902317,
-0.010896206833422184,
0.006156685296446085,
0.02866237238049507,
-0.026897957548499107,
0.004350035917013884,
-0.0056311143562197685,
-0.033204805105924606,
-0.030727114528417587,
0.03136530891060829,
0.024363955482840538,
0.038366660475730896,
-0.005204088520258665,
0.005781277548521757,
0.017813092097640038,
-0.061679475009441376,
-0.0520314984023571,
0.05353312939405441,
-0.020947745069861412,
0.001552075962536037,
-0.0326041541993618,
-0.01693088375031948,
-0.037033963948488235,
-0.02190503478050232,
0.018423128873109818,
0.011280999518930912,
0.0518062524497509,
0.002014296595007181,
0.013777459971606731,
-0.02308756858110428,
0.01034248061478138,
-0.02186749503016472,
0.03269800543785095,
0.04643792286515236,
-0.010624036192893982,
0.06228012591600418,
0.028812535107135773,
-0.057925399392843246,
-0.03232259675860405,
0.026766564697027206,
-0.03145916014909744,
-0.027423527091741562,
0.009976457804441452,
-0.0648328959941864,
-0.04944118484854698,
-0.07466857880353928,
0.002817903645336628,
0.026616401970386505,
0.05706195905804634,
-0.001458224025554955,
-0.03596404939889908,
0.005635807290673256,
-0.017221825197339058,
0.021642250940203667,
-0.03511938452720642,
0.033035870641469955,
-0.04039386287331581,
-0.0518813356757164,
0.04790201410651207,
0.036865029484033585,
-0.0077756308019161224,
-0.05064249038696289,
0.0519939586520195,
0.02218659035861492,
0.012472918257117271,
0.05465935170650482,
-0.04778939113020897,
-0.010774198919534683,
0.03784108906984329,
-0.006231766659766436,
-0.002273562364280224,
-0.0015450370265170932,
0.040656644850969315,
-0.0030384554993361235,
-0.047376442700624466,
0.03453750163316727,
0.05398361757397652,
-0.031834568828344345,
0.025096001103520393,
0.002970412839204073,
-0.04260876774787903,
-0.009788754396140575,
0.028962699696421623,
-0.02744229882955551,
0.013420823030173779,
-0.02701057866215706,
0.044786129146814346,
-0.025490177795290947,
0.02455165982246399,
-0.004913147538900375,
-0.03620806708931923,
0.01226644404232502,
-0.01683703251183033,
0.03983074799180031,
0.026203453540802002,
0.01567326858639717,
0.000847013492602855,
0.022899866104125977,
0.0008693033014424145,
0.017203055322170258,
0.039530422538518906,
0.037127815186977386,
-0.03645208105444908,
-0.03750322386622429,
0.039455343037843704,
0.04399777576327324,
0.016123758628964424,
0.016733795404434204,
-0.026916727423667908,
-0.04647546634078026,
0.01159071084111929,
-0.030708344653248787,
0.05841342732310295,
-0.014415653422474861,
0.040881890803575516,
-0.009540046565234661
] |
729,690 | aiconfig.model_parser | get_model_settings |
Extracts the AI model's settings from the configuration. If both prompt and config level settings are defined, merge them with prompt settings taking precedence.
Args:
prompt: The prompt object.
Returns:
dict: The settings of the model used by the prompt.
| def get_model_settings(
self, prompt: Prompt, aiconfig: "AIConfigRuntime"
) -> Dict[str, Any]:
"""
Extracts the AI model's settings from the configuration. If both prompt and config level settings are defined, merge them with prompt settings taking precedence.
Args:
prompt: The prompt object.
Returns:
dict: The settings of the model used by the prompt.
"""
if not prompt:
return aiconfig.get_global_settings(self.id())
# Check if the prompt exists in the config
if (
prompt.name not in aiconfig.prompt_index
or aiconfig.prompt_index[prompt.name] != prompt
):
raise IndexError(f"Prompt '{prompt.name}' not in config.")
model_metadata = prompt.metadata.model if prompt.metadata else None
if model_metadata is None:
# Use Default Model
default_model = aiconfig.get_default_model()
if not default_model:
raise KeyError(
f"No default model specified in AIConfigMetadata, and prompt `{prompt.name}` does not specify a model."
)
return aiconfig.get_global_settings(default_model)
elif isinstance(model_metadata, str):
# Use Global settings
return aiconfig.get_global_settings(model_metadata)
else:
# Merge config and prompt settings with prompt settings taking precedent
model_settings = {}
global_settings = aiconfig.get_global_settings(model_metadata.name)
prompt_settings = (
prompt.metadata.model.settings
if prompt.metadata.model.settings is not None
else {}
)
model_settings.update(global_settings)
model_settings.update(prompt_settings)
return model_settings
| (self, prompt: aiconfig.schema.Prompt, aiconfig: 'AIConfigRuntime') -> Dict[str, Any] | [
-0.024231255054473877,
-0.027353648096323013,
-0.045657966285943985,
-0.057810988277196884,
0.014434050768613815,
0.00012905281619168818,
-0.012498915195465088,
-0.04087154567241669,
0.07101104408502579,
-0.015696095302700996,
-0.02079101651906967,
-0.009787856601178646,
-0.04393784701824188,
0.04745287448167801,
-0.057474445551633835,
-0.0081565473228693,
0.04502227157354355,
0.04214293882250786,
-0.007287138607352972,
-0.01827627420425415,
0.07561048865318298,
-0.08443545550107956,
-0.04962172359228134,
0.009484031237661839,
0.0297094639390707,
-0.0038071677554398775,
0.024848254397511482,
0.010573129169642925,
0.06207389384508133,
0.04259166866540909,
-0.011610809713602066,
-0.005782033782452345,
0.010881628841161728,
0.06304613500833511,
-0.0007934520835988224,
-0.039974093437194824,
0.005188405513763428,
0.07572267204523087,
-0.09812162816524506,
-0.041993364691734314,
-0.07037534564733505,
-0.01545303501188755,
0.04876166209578514,
0.019276563078165054,
-0.05242626741528511,
-0.04304039478302002,
0.013667475432157516,
0.029073767364025116,
0.046480633318424225,
-0.034738946706056595,
-0.0004948850837536156,
-0.011087295599281788,
-0.0024142444599419832,
0.10948937386274338,
-0.02877461537718773,
-0.06263480335474014,
-0.032308340072631836,
-0.007006684318184853,
-0.04988348111510277,
-0.015724141150712967,
-0.040796760469675064,
-0.0076704262755811214,
0.006179343909025192,
-0.020024441182613373,
-0.0015202963259071112,
-0.058297108858823776,
-0.04049760848283768,
0.016780517995357513,
-0.012826112098991871,
-0.008123827166855335,
-0.04550839215517044,
-0.08099521696567535,
0.02681143581867218,
0.008525812067091465,
0.0000953836934058927,
-0.07168412953615189,
0.025895284488797188,
0.009787856601178646,
0.03343015909194946,
-0.019201774150133133,
-0.0095447963103652,
0.047752026468515396,
-0.026306618005037308,
-0.026605769991874695,
-0.03367321938276291,
-0.00831547100096941,
0.028699828311800957,
0.011152734979987144,
0.08346321433782578,
-0.052912387996912,
0.01175103709101677,
0.0017715366557240486,
0.03281315788626671,
0.07078667730093002,
0.01336832344532013,
0.043638695031404495,
-0.015312807634472847,
-0.03453327715396881,
0.0021431385539472103,
-0.06360704451799393,
-0.09445702284574509,
0.017154457047581673,
-0.02969076670706272,
-0.0032065280247479677,
-0.015537170693278313,
-0.058297108858823776,
0.010769447311758995,
0.021838044747710228,
0.030606918036937714,
-0.009105417877435684,
-0.07437649369239807,
0.04741548001766205,
-0.05231408402323723,
-0.0035757930018007755,
0.05078093335032463,
0.006394359283149242,
-0.009437289088964462,
-0.015995245426893234,
0.08406151831150055,
-0.022959861904382706,
-0.09221339225769043,
0.05926935374736786,
-0.015303459018468857,
-0.014434050768613815,
0.06959006935358047,
0.024642588570713997,
-0.01780885085463524,
-0.03844094276428223,
-0.01950092613697052,
-0.019220471382141113,
-0.051416631788015366,
-0.024997830390930176,
-0.01863151788711548,
-0.02037968300282955,
0.0006205052486620843,
0.007474108599126339,
-0.027110587805509567,
0.014751899056136608,
-0.007174957077950239,
0.06689771264791489,
0.02148280292749405,
0.07362861186265945,
-0.007030055858194828,
-0.029335524886846542,
-0.03290664404630661,
-0.026979709044098854,
0.04577014967799187,
-0.037599578499794006,
0.03859051689505577,
-0.04431178793311119,
0.018379108980298042,
0.0243060439825058,
-0.05882062390446663,
0.037188246846199036,
-0.026287920773029327,
0.026493586599826813,
-0.024044286459684372,
-0.00991873536258936,
0.013097218237817287,
-0.02032359130680561,
-0.04543360322713852,
-0.014368611387908459,
0.0407593660056591,
-0.016088731586933136,
-0.012199764139950275,
-0.006871131714433432,
-0.02554004266858101,
0.03223355486989021,
0.047378089278936386,
0.004636845085769892,
-0.030962159857153893,
-0.04823814705014229,
-0.06704728305339813,
-0.03666473180055618,
-0.00974111445248127,
0.02806413173675537,
0.014779943972826004,
-0.055455174297094345,
0.04962172359228134,
0.020099228248000145,
0.02714798040688038,
-0.021202348172664642,
-0.05639002099633217,
0.008577228523790836,
0.013966626487672329,
0.008390258997678757,
0.021800652146339417,
0.008731478825211525,
-0.046929359436035156,
0.005342655349522829,
0.03558030724525452,
0.012003445997834206,
0.004372750874608755,
0.03139219060540199,
-0.05560474842786789,
0.014321868307888508,
0.06083989515900612,
-0.007389971986413002,
-0.026717951521277428,
-0.010760098695755005,
0.033486250787973404,
-0.052575841546058655,
-0.023838618770241737,
0.014677111059427261,
0.01336832344532013,
-0.014013368636369705,
0.0227728933095932,
-0.056726567447185516,
-0.06992661952972412,
0.030176887288689613,
-0.07815327495336533,
-0.033504944294691086,
0.04464833065867424,
-0.012657839804887772,
0.0279893446713686,
0.04909820854663849,
0.056689172983169556,
0.0616251677274704,
0.01748165488243103,
0.01539694331586361,
-0.002178195398300886,
-0.02593267895281315,
0.07344164699316025,
0.03159785643219948,
0.012452173046767712,
-0.007366600912064314,
-0.018911970779299736,
0.00788076687604189,
0.01665898784995079,
-0.009399894624948502,
0.021370621398091316,
-0.0016710404306650162,
-0.018968062475323677,
-0.016406578943133354,
0.00992808397859335,
0.04221772775053978,
0.039600152522325516,
-0.036402974277734756,
-0.04457354545593262,
0.0053987461142241955,
-0.0020835420582443476,
0.0043844361789524555,
-0.02148280292749405,
0.03404715657234192,
-0.05022002384066582,
-0.016518760472536087,
0.06790734827518463,
-0.06742122769355774,
-0.02471737563610077,
-0.08600600063800812,
0.07131019234657288,
0.030289068818092346,
0.006123253144323826,
0.061550382524728775,
-0.0243060439825058,
-0.013349627144634724,
-0.030158190056681633,
-0.008020994253456593,
0.00506220106035471,
-0.012685884721577168,
-0.008516463451087475,
0.014434050768613815,
-0.01864086650311947,
0.01576153375208378,
0.004361065104603767,
0.02916725166141987,
-0.01628504879772663,
0.06035377457737923,
-0.007179631385952234,
-0.014359262771904469,
0.1400775909423828,
0.05493165925145149,
-0.015312807634472847,
-0.011938006617128849,
0.018192138522863388,
0.00952609907835722,
-0.026194436475634575,
0.05235147848725319,
-0.04270384833216667,
-0.044461362063884735,
-0.013648778200149536,
-0.01702357828617096,
0.016780517995357513,
0.011283612810075283,
0.010825538076460361,
-0.027073193341493607,
-0.007974252104759216,
0.0025778429117053747,
0.036290790885686874,
0.03657124564051628,
-0.008399607613682747,
0.023333800956606865,
-0.007273116149008274,
-0.01398532371968031,
-0.0027811722829937935,
0.026456193998456,
-0.02881200984120369,
-0.028961585834622383,
0.041619423776865005,
-0.017752761021256447,
0.06865522265434265,
-0.008810941129922867,
-0.03745000436902046,
0.039936698973178864,
-0.011311658658087254,
0.027035798877477646,
0.04827554151415825,
-0.009437289088964462,
0.04105851799249649,
-0.01378900557756424,
-0.0074320402927696705,
-0.023782528936862946,
0.09168987721204758,
0.066785529255867,
-0.05403420329093933,
0.010311371646821499,
0.021651076152920723,
0.001919943722896278,
0.010423553176224232,
0.031074341386556625,
-0.044386573135852814,
0.08735217899084091,
0.013947929255664349,
-0.031149130314588547,
-0.00294009642675519,
-0.04188118129968643,
-0.015742836520075798,
0.024904346093535423,
-0.02516610361635685,
-0.01119012851268053,
-0.06596286594867706,
0.051790568977594376,
0.007006684318184853,
0.0023043998517096043,
-0.0007239227998070419,
0.03945057839155197,
0.004071262199431658,
0.028531555086374283,
0.06083989515900612,
-0.021632378920912743,
0.03565509617328644,
-0.034290216863155365,
0.0019573376048356295,
0.0035547588486224413,
0.028980283066630363,
0.014807989820837975,
0.039562761783599854,
0.007586290128529072,
0.006815040484070778,
-0.06409316509962082,
-0.031186522915959358,
0.04980869218707085,
0.014256428927183151,
0.018818486481904984,
-0.027391040697693825,
0.027914555743336678,
-0.05773620307445526,
-0.02595137618482113,
-0.01628504879772663,
-0.026998404413461685,
-0.03657124564051628,
-0.039263609796762466,
-0.030139494687318802,
0.03322449326515198,
-0.012835460714995861,
-0.0027531269006431103,
-0.01398532371968031,
0.057063110172748566,
0.07755497843027115,
-0.02926073782145977,
0.005389397498220205,
0.006506540812551975,
0.042030759155750275,
-0.053398508578538895,
-0.008212638087570667,
0.07673230767250061,
-0.04786420986056328,
0.008787569589912891,
-0.003816516138613224,
0.033131007105112076,
0.08892272412776947,
0.0260261632502079,
-0.018472593277692795,
0.03335537016391754,
0.038403548300266266,
-0.06166256219148636,
0.02604486048221588,
-0.02034228853881359,
0.0032766417134553194,
0.0023885362315922976,
-0.00011546831228770316,
-0.0356924906373024,
-0.004129690118134022,
0.02152019739151001,
0.017734063789248466,
-0.024997830390930176,
-0.02716667763888836,
0.04760245233774185,
-0.045358818024396896,
0.028325889259576797,
-0.037562184035778046,
-0.048462510108947754,
0.08136915415525436,
-0.015752185136079788,
0.00014256429858505726,
0.019332652911543846,
0.03862791135907173,
0.07718103379011154,
-0.005936283618211746,
-0.01318135391920805,
-0.043302152305841446,
0.004571405705064535,
-0.00871745590120554,
0.01357399020344019,
-0.006992661859840155,
0.04883645102381706,
0.018566077575087547,
0.02105277217924595,
-0.03410324826836586,
0.030943462625145912,
0.025801800191402435,
-0.0053800493478775024,
-0.01280741486698389,
0.026157042011618614,
0.017734063789248466,
0.04352651536464691,
-0.03896445780992508,
0.07553570717573166,
-0.00045340118231251836,
-0.04419960454106331,
-0.0381791852414608,
-0.01301308162510395,
0.0462188757956028,
-0.08944623917341232,
-0.035972945392131805,
-0.012377385050058365,
0.03296273574233055,
-0.04842511564493179,
-0.033972371369600296,
0.020099228248000145,
0.05070614442229271,
0.0158363226801157,
-0.00794153194874525,
0.04625627025961876,
-0.01503235287964344,
-0.0032298993319272995,
-0.03438370302319527,
0.06973964720964432,
-0.05997983738780022,
0.02881200984120369,
0.0030803235713392496,
0.013321581296622753,
0.07314249128103256,
-0.03249530866742134,
0.02030489407479763,
-0.012227809987962246,
0.00792750995606184,
0.03978712484240532,
-0.055380385369062424,
0.029073767364025116,
0.00992808397859335,
0.019968349486589432,
0.00992808397859335,
-0.04984608665108681,
-0.003919349517673254,
0.02797064743936062,
0.023240316659212112,
0.023689044639468193,
-0.0886983647942543,
0.01989356242120266,
-0.030625615268945694,
-0.008259380236268044,
0.011994097381830215,
-0.007408669218420982,
-0.01711706444621086,
-0.02393210493028164,
0.06375662237405777,
0.025390466675162315,
-0.020417075604200363,
-0.008666039444506168,
0.04677978530526161,
-0.06723425537347794,
-0.035056792199611664,
0.03322449326515198,
0.02673664689064026,
-0.009694372303783894,
0.0005375375039875507,
-0.009900038130581379,
-0.044872697442770004,
-0.009091394953429699,
-0.02808282896876335,
0.004412481561303139,
-0.014864080585539341,
0.022511135786771774,
0.009881341829895973,
0.016453322023153305,
0.07299292087554932,
0.010582477785646915,
0.020529258996248245,
0.009455985389649868,
0.004805117845535278,
-0.05560474842786789,
-0.031055644154548645,
-0.015275413170456886,
0.004996761679649353,
0.0388522744178772,
-0.1263914257287979,
-0.009778507985174656,
-0.02724146656692028,
0.009212925098836422,
-0.02314683236181736,
0.02355816587805748,
0.027110587805509567,
-0.020547954365611076,
-0.005076223518699408,
-0.05848408117890358,
-0.0008022162946872413,
-0.05351068824529648,
-0.007488131057471037,
-0.02595137618482113,
-0.021819347515702248,
-0.03524376451969147,
-0.006319571286439896,
-0.017939729616045952,
0.024081679061055183,
0.07082407176494598,
0.0366460345685482,
-0.01953831873834133,
-0.01993095502257347,
-0.008881053887307644,
0.031934402883052826,
0.0496591180562973,
-0.005015458445996046,
0.07475043088197708,
0.008712781593203545,
-0.05975547432899475,
-0.02516610361635685,
-0.030999554321169853,
0.02067883312702179,
0.022473741322755814,
-0.004982738755643368,
-0.001446677022613585,
-0.031074341386556625,
0.04577014967799187,
0.08982017636299133,
-0.018136048689484596,
-0.021426713094115257,
0.040422819554805756,
-0.05474468693137169,
-0.023801226168870926,
-0.027877161279320717,
-0.008782895281910896,
0.02037968300282955,
-0.044050030410289764,
-0.04700414836406708,
-0.028905494138598442,
0.012629793956875801,
-0.029915129765868187,
0.01911763846874237,
0.02965337224304676,
0.00023794798471499234,
-0.05347329378128052,
-0.015312807634472847,
0.003942720592021942,
0.018771745264530182,
0.0030569524969905615,
-0.05190275236964226,
0.05078093335032463,
-0.049322571605443954,
-0.007389971986413002,
0.008371562696993351,
0.0133963692933321,
0.0022798602003604174,
-0.027783676981925964,
-0.011283612810075283,
-0.01586436852812767,
0.005562344565987587,
0.029092464596033096,
-0.008843660354614258,
0.0462188757956028,
0.004153061658143997,
0.022623317316174507,
0.035785973072052,
-0.0012830786872655153,
0.036720823496580124,
0.0048144664615392685,
0.047078937292099,
0.057063110172748566,
-0.018005169928073883,
0.02032359130680561,
-0.035524215549230576,
0.10402986407279968,
0.008937145583331585,
-0.03692648932337761,
0.03341146185994148,
0.009091394953429699,
-0.012928945012390614,
-0.04603190720081329,
0.007044078316539526,
-0.04060978814959526,
-0.11053640395402908,
-0.03851573169231415,
-0.011442537419497967,
0.012854157947003841,
0.003769773757085204,
-0.047378089278936386,
-0.012947642244398594,
-0.012068885378539562,
0.006057813763618469,
0.009390546008944511,
-0.02032359130680561,
-0.040460214018821716,
0.01134905219078064,
-0.030195584520697594,
0.020622743293642998,
-0.01156406756490469,
0.020211409777402878,
0.003192505333572626,
0.03739391267299652,
-0.03163525089621544,
0.0006958773592486978,
-0.005216450896114111,
-0.04348912090063095,
0.002678339136764407,
-0.04715372249484062,
0.04094633460044861,
-0.008983887732028961,
-0.021763257682323456,
-0.007992949336767197,
0.005188405513763428,
0.051790568977594376,
-0.03464546054601669,
-0.0026876875199377537,
0.009993523359298706,
0.017294684424996376,
0.012283900752663612,
0.017659274861216545,
0.0030733123421669006,
-0.03419673442840576,
0.017294684424996376,
0.030737796798348427,
-0.022268075495958328,
0.019220471382141113,
0.037225641310214996,
-0.003007872961461544,
0.026213133707642555,
-0.01666833646595478,
0.002853622892871499,
0.04378827288746834,
0.02107146941125393,
-0.02763410098850727,
-0.012059536762535572,
-0.044536150991916656,
-0.022604620084166527,
-0.015696095302700996,
-0.032682280987501144,
0.00458542862907052,
0.019388744607567787,
-0.029055070132017136,
-0.040011487901210785,
-0.04476051405072212,
0.015985898673534393,
-0.00435872795060277,
-0.015724141150712967,
0.050593964755535126,
0.010638568550348282,
-0.0732920691370964,
0.01541564054787159,
0.03206527978181839,
0.022155893966555595,
0.047078937292099,
-0.02763410098850727,
-0.006618722807615995,
0.03647776320576668,
-0.03528115525841713,
0.052164509892463684,
0.020417075604200363,
0.029541190713644028,
0.01194735523313284,
-0.03171003982424736,
-0.014751899056136608,
-0.016537457704544067,
-0.015387595631182194,
0.04513445124030113,
0.03414064273238182,
-0.051827963441610336,
0.04053500294685364,
0.0033210469409823418,
0.006034442689269781,
0.03126130998134613,
-0.06091468408703804,
0.007249745074659586,
0.011433188803493977,
0.025913981720805168,
0.04397524148225784,
-0.1195109486579895,
-0.04820075258612633,
0.01950092613697052,
-0.03531854972243309,
-0.009030629880726337,
0.04195597022771835,
-0.012910248711705208,
-0.018117351457476616,
-0.017350776121020317,
0.011292961426079273,
-0.006955267861485481,
-0.04876166209578514,
0.016434624791145325,
-0.07149716466665268,
-0.03819788247346878,
-0.002559145912528038,
0.06435492634773254,
0.02155758999288082,
-0.028924191370606422,
0.026998404413461685,
0.06865522265434265,
0.011227522045373917,
0.012414779514074326,
-0.03402845934033394,
0.012966339476406574,
-0.01577088236808777,
0.005323958583176136,
0.020529258996248245,
-0.01705162413418293,
0.01624765433371067,
-0.007544221822172403,
-0.06020420044660568,
0.017210548743605614,
0.04053500294685364,
0.0026502935215830803,
-0.04375087842345238,
-0.04924778267741203,
-0.06644898653030396,
0.07366600632667542,
-0.006394359283149242,
0.03681430593132973,
0.045284029096364975,
0.0037323799915611744,
-0.007848047651350498,
-0.0340658538043499,
0.039151426404714584,
0.003066300880163908,
-0.050556570291519165,
0.010816189460456371,
-0.030289068818092346,
0.02518480084836483,
-0.007871418260037899,
-0.05470729619264603,
-0.00004593900666804984,
0.009647629223763943,
0.06282177567481995,
0.011825825087726116,
0.04591972380876541,
-0.033953674137592316,
0.021613681688904762,
-0.01357399020344019,
0.0028863425832241774,
0.016135472804307938,
0.016789866611361504,
0.05399680882692337,
-0.009694372303783894,
-0.028325889259576797,
0.06428013741970062,
0.0414324551820755,
0.023763831704854965,
-0.03524376451969147,
-0.008768872357904911,
-0.029111161828041077
] |
729,691 | aiconfig.default_parsers.openai | get_output_text | null | def get_output_text(
self,
prompt: Prompt,
aiconfig: "AIConfigRuntime",
output: Optional[Output] = None,
) -> str:
if not output:
output = aiconfig.get_latest_output(prompt)
if not output:
return ""
if output.output_type == "execute_result":
output_data = output.data
if isinstance(output_data, str):
return output_data
if isinstance(output_data, OutputDataWithValue):
if isinstance(output_data.value, str):
return output_data.value
# If we get here that means it must be of kind tool_calls
return output_data.model_dump_json(exclude_none=True, indent=2)
# Doing this to be backwards-compatible with old output format
# where we used to save the ChatCompletionMessage in output.data
if isinstance(output_data, ChatCompletionMessage):
if (
hasattr(output_data, "content")
and output_data.content is not None
):
return output_data.content
elif output_data.function_call is not None:
return str(output_data.function_call)
return ""
| (self, prompt: aiconfig.schema.Prompt, aiconfig: 'AIConfigRuntime', output: Union[aiconfig.schema.ExecuteResult, aiconfig.schema.Error, NoneType] = None) -> str | [
0.015308971516788006,
-0.051072556525468826,
0.012164919637143612,
-0.04818441718816757,
0.03911785036325455,
-0.007686474360525608,
-0.014267046935856342,
0.028790006414055824,
0.07567659020423889,
-0.08189157396554947,
0.051255349069833755,
0.0420059897005558,
-0.03937375918030739,
-0.007686474360525608,
0.012338574044406414,
-0.00846334733068943,
-0.0006723380065523088,
-0.03665013611316681,
-0.0031280568800866604,
0.040945786982774734,
0.033432964235544205,
-0.010071932338178158,
-0.03805764392018318,
-0.021405139937996864,
-0.002714486327022314,
-0.03080073557794094,
0.05165749788284302,
-0.06145523861050606,
-0.0197234395891428,
0.049793001264333725,
-0.026450246572494507,
-0.08613238483667374,
0.0008037210209295154,
0.012941792607307434,
-0.03047170676290989,
0.05480154603719711,
-0.0009345327271148562,
0.016689063981175423,
-0.01928473450243473,
-0.03580928221344948,
-0.02507929317653179,
-0.027345934882760048,
-0.003562191966921091,
0.03264695405960083,
-0.04719733074307442,
-0.02347070910036564,
-0.06544014066457748,
0.03513294830918312,
-0.03908129036426544,
-0.06068750470876694,
0.05860365554690361,
-0.041896313428878784,
-0.037947967648506165,
0.08488938957452774,
-0.02995988540351391,
0.003406817326322198,
0.01685357838869095,
-0.009587529115378857,
-0.0026962067931890488,
-0.014979942701756954,
-0.04185975342988968,
0.00854103546589613,
0.033871669322252274,
0.01764873042702675,
0.0098617197945714,
-0.0031440514139831066,
0.006562293507158756,
-0.007736742962151766,
-0.018937425687909126,
0.021021274849772453,
0.027985714375972748,
-0.04445542395114899,
-0.0327749066054821,
-0.011717075482010841,
0.041640400886535645,
-0.046356480568647385,
0.02698034793138504,
0.004101433325558901,
0.0187729112803936,
-0.012329434044659138,
-0.016944974660873413,
0.04167696088552475,
0.003932349383831024,
-0.04339522123336792,
-0.00009453861275687814,
-0.05377790331840515,
0.03696088492870331,
-0.014897685497999191,
-0.06503799557685852,
0.029192151501774788,
0.019577203318476677,
-0.0769926980137825,
-0.010181608609855175,
0.11559873074293137,
-0.045844655483961105,
0.001034497981891036,
-0.014020276255905628,
-0.06057782843708992,
0.00037215652992017567,
-0.02926526963710785,
-0.02533520571887493,
0.03262867406010628,
-0.010254725813865662,
0.023306194692850113,
0.018919147551059723,
-0.0353340208530426,
-0.01954064518213272,
0.004151701461523771,
0.04467477649450302,
-0.014294466003775597,
-0.026742717251181602,
0.016716482117772102,
0.022245991975069046,
-0.05432628467679024,
0.07808946073055267,
-0.011643958278000355,
-0.09088502079248428,
-0.00679078558459878,
0.018681515008211136,
-0.030270634219050407,
-0.005767141003161669,
0.013252542354166508,
0.01215578056871891,
-0.06273479014635086,
-0.026322290301322937,
0.04822097346186638,
-0.03105664812028408,
-0.01921161636710167,
0.011159555055201054,
-0.042152225971221924,
0.054180048406124115,
-0.0012738434597849846,
0.010839665308594704,
0.026139497756958008,
-0.024640589952468872,
0.0686938688158989,
-0.012969211675226688,
-0.00023534687352366745,
-0.027309376746416092,
0.06697560846805573,
0.05355855077505112,
0.02964913658797741,
0.00674508698284626,
-0.04142104834318161,
0.0061190188862383366,
-0.007215780671685934,
0.06712184101343155,
0.00022706403979100287,
0.03072761930525303,
-0.07088739424943924,
0.035023272037506104,
-0.04639303684234619,
-0.12195994704961777,
-0.023708341643214226,
0.007339166477322578,
0.021021274849772453,
-0.025371763855218887,
0.0032011745497584343,
-0.00669481884688139,
-0.06324661523103714,
-0.017374539747834206,
-0.06412402540445328,
0.052278995513916016,
0.004624680150300264,
0.04430919140577316,
-0.02387285605072975,
0.03984902426600456,
0.050487615168094635,
0.020783642306923866,
0.007919536903500557,
-0.03644905984401703,
0.0012578490423038602,
-0.07026589661836624,
0.030526544898748398,
0.005607196129858494,
0.051949966698884964,
0.015345529653131962,
0.004766345489770174,
0.037509266287088394,
0.006763366516679525,
-0.021405139937996864,
-0.030892133712768555,
-0.0731905922293663,
0.06324661523103714,
0.005872247274965048,
0.007339166477322578,
0.043431781232357025,
0.012969211675226688,
-0.00046069722156971693,
-0.029027637094259262,
-0.009368176572024822,
0.0020290098618716,
-0.026962069794535637,
0.022629858925938606,
-0.0002656220749486238,
-0.04624680429697037,
-0.018023457378149033,
0.019120220094919205,
0.012329434044659138,
-0.09622259438037872,
-0.005694023333489895,
0.011141275055706501,
0.00796523503959179,
0.0299050472676754,
0.015235853381454945,
0.0069552999921143055,
0.01450467947870493,
0.0067953551188111305,
-0.06463585048913956,
0.010985900647938251,
-0.02774808183312416,
-0.02677927538752556,
-0.016524549573659897,
-0.022812651470303535,
-0.007896686904132366,
0.02836957946419716,
0.03516950458288193,
0.04917150363326073,
-0.029996443539857864,
0.04076299071311951,
-0.015062199905514717,
-0.02889968268573284,
0.10901815444231033,
0.05001235380768776,
-0.034712519496679306,
-0.01250308845192194,
0.04449198395013809,
0.04924461990594864,
0.02921043150126934,
-0.05816495046019554,
0.025152411311864853,
-0.02900935895740986,
0.026176055893301964,
0.01059289462864399,
-0.034365214407444,
0.049975793808698654,
-0.02328791655600071,
-0.046283360570669174,
-0.03672325238585472,
0.006356650497764349,
-0.030380310490727425,
0.006151007488369942,
-0.004530998412519693,
0.03904473036527634,
-0.03399962559342384,
-0.0004047166439704597,
0.007691044360399246,
-0.00008068627357715741,
-0.027528729289770126,
-0.027272818610072136,
0.099220409989357,
0.014011136256158352,
-0.0015400368720293045,
-0.01667078398168087,
-0.010638592764735222,
0.005058815237134695,
-0.02315996028482914,
-0.0534488745033741,
0.060102563351392746,
0.03659529611468315,
0.005223329644650221,
0.012996630743145943,
-0.02666959911584854,
0.00722492067143321,
0.005949934478849173,
-0.04602745175361633,
-0.07626152783632278,
0.03164158761501312,
-0.03213512897491455,
0.00805206224322319,
0.099220409989357,
0.05966385826468468,
-0.031221162527799606,
-0.02851581573486328,
-0.03612003102898598,
0.033195335417985916,
0.04544251039624214,
0.00420653959736228,
-0.01721002534031868,
-0.03379855304956436,
0.025152411311864853,
0.014212208800017834,
-0.01921161636710167,
-0.017374539747834206,
0.01314286608248949,
-0.038715701550245285,
0.0044510262086987495,
-0.023945972323417664,
0.024914778769016266,
0.020893318578600883,
0.04887903109192848,
0.01620466075837612,
-0.010839665308594704,
0.008509046398103237,
-0.0023763179779052734,
0.0737755298614502,
-0.014093393459916115,
-0.04701453819870949,
0.01979655586183071,
-0.027766361832618713,
0.017200885340571404,
-0.02016214281320572,
0.020655686035752296,
-0.010007954202592373,
-0.06262511759996414,
0.01941268891096115,
0.01664336584508419,
-0.0400683768093586,
0.01314286608248949,
-0.030782457441091537,
0.0286254920065403,
-0.002796743530780077,
0.044821012765169144,
0.026048099622130394,
-0.06902289390563965,
0.07161856442689896,
0.04065331444144249,
-0.013161145150661469,
0.03984902426600456,
0.003797538811340928,
-0.03372543677687645,
0.0065897125750780106,
0.08028298616409302,
-0.0057397219352424145,
0.032921142876148224,
-0.09395595639944077,
-0.04233501851558685,
0.040251169353723526,
0.04525971785187721,
-0.03621143102645874,
-0.04449198395013809,
-0.01695411466062069,
-0.0027693244628608227,
-0.022940607741475105,
0.025920145213603973,
0.01715518720448017,
-0.008504476398229599,
-0.0432855449616909,
0.012877815403044224,
-0.015729397535324097,
0.025353483855724335,
0.02297716587781906,
0.004462450742721558,
0.06704872101545334,
0.039410319179296494,
0.07713893800973892,
0.02018042281270027,
0.019193336367607117,
0.031202882528305054,
-0.06993686407804489,
-0.03105664812028408,
0.015811653807759285,
-0.016972394660115242,
0.009349897503852844,
-0.00025848171208053827,
0.022282550111413002,
-0.013700386509299278,
-0.016049286350607872,
-0.017392819747328758,
0.015729397535324097,
-0.019010543823242188,
-0.038203880190849304,
0.022702975198626518,
0.04273716360330582,
-0.0352974608540535,
-0.043870486319065094,
-0.001040210365317762,
0.04855000227689743,
0.09373660385608673,
0.016478851437568665,
-0.05425316467881203,
0.028168506920337677,
0.01094020251184702,
-0.059590741991996765,
-0.024019090458750725,
0.06957127898931503,
-0.01081224624067545,
-0.014705752022564411,
-0.012228897772729397,
-0.03577272593975067,
-0.004802904091775417,
0.025865307077765465,
-0.0795518159866333,
0.022812651470303535,
0.005428972654044628,
0.01726486347615719,
-0.05301016941666603,
-0.023269636556506157,
0.02805883064866066,
0.00513650244101882,
0.009359036572277546,
0.02793087624013424,
0.016469711437821388,
-0.017246583476662636,
0.0041654109954833984,
-0.00022535034804604948,
-0.022922327741980553,
0.02188040502369404,
-0.05037793889641762,
0.03875226154923439,
-0.013956298120319843,
0.005177631042897701,
0.015619720332324505,
-0.01275899913161993,
-0.02475026436150074,
0.012960072606801987,
0.012283735908567905,
0.040433961898088455,
-0.05893268436193466,
-0.04306619241833687,
-0.04664894938468933,
-0.02926526963710785,
-0.02997816540300846,
-0.0033771132584661245,
-0.03028891421854496,
0.08328080177307129,
-0.021587934345006943,
0.034511446952819824,
-0.051511261612176895,
0.010602033697068691,
-0.045844655483961105,
0.008732968010008335,
0.028972798958420753,
0.04493068903684616,
0.03641250357031822,
-0.015967028215527534,
-0.027071744203567505,
0.0025796759873628616,
0.049208059906959534,
-0.010729989036917686,
-0.011059017851948738,
-0.021204067394137383,
-0.029100755229592323,
-0.027583567425608635,
0.012439110316336155,
0.0026436536572873592,
0.01352673303335905,
-0.012009545229375362,
-0.004706937354058027,
0.017374539747834206,
-0.0038500919472426176,
0.04522315785288811,
0.024293281137943268,
0.09103125333786011,
0.024220163002610207,
0.03981246426701546,
-0.04990267753601074,
-0.014778869226574898,
-0.040945786982774734,
0.014358444139361382,
0.0871560275554657,
0.048842474818229675,
0.051694054156541824,
0.02889968268573284,
0.00473892642185092,
-0.041457608342170715,
-0.0098617197945714,
0.035096388310194016,
-0.028662050142884254,
0.02995988540351391,
-0.10872568190097809,
0.07432391494512558,
0.016268638893961906,
0.007640776224434376,
0.022575020790100098,
-0.014650913886725903,
0.009550970047712326,
0.02818678691983223,
-0.07264221459627151,
0.029740532860159874,
0.0027213410940021276,
-0.0019684594590216875,
0.0185992568731308,
0.04204254969954491,
0.04621024429798126,
-0.017785826697945595,
-0.010867084376513958,
-0.027272818610072136,
-0.04032428562641144,
-0.017986899241805077,
-0.03549853339791298,
-0.048842474818229675,
-0.029155593365430832,
0.004076299257576466,
-0.029685694724321365,
0.034785639494657516,
0.02018042281270027,
-0.017356259748339653,
-0.015171876177191734,
-0.009199092164635658,
-0.04990267753601074,
0.08313456922769547,
-0.01104073878377676,
-0.08474315702915192,
-0.02665131911635399,
-0.00038358112215064466,
0.048403769731521606,
0.0005155352992005646,
-0.021734168753027916,
0.03425553813576698,
-0.013718666508793831,
0.01826108992099762,
0.003982617519795895,
-0.07092395424842834,
0.01644229143857956,
-0.005351284984499216,
-0.010455799289047718,
0.01851700060069561,
-0.014102532528340816,
0.034145861864089966,
-0.06664657592773438,
0.011214392259716988,
0.03332328796386719,
-0.04167696088552475,
-0.02418360486626625,
-0.021350301802158356,
0.0821109265089035,
-0.012055243365466595,
-0.023269636556506157,
-0.01954064518213272,
-0.059590741991996765,
0.06386811286211014,
-0.06558637320995331,
-0.015372948721051216,
0.017785826697945595,
0.0400683768093586,
0.02092987671494484,
0.014230488799512386,
-0.06522078812122345,
-0.023763179779052734,
-0.02836957946419716,
0.02328791655600071,
-0.0035576221998780966,
0.019449248909950256,
-0.021423419937491417,
0.005968214012682438,
-0.060358475893735886,
0.031659867614507675,
-0.04968332499265671,
-0.009112264961004257,
-0.022191153839230537,
0.01636003516614437,
-0.045515626668930054,
-0.04569842293858528,
0.05165749788284302,
-0.015062199905514717,
0.049719881266355515,
0.07224006205797195,
0.07801634818315506,
0.0276749636977911,
-0.04277372360229492,
-0.0098617197945714,
0.019120220094919205,
0.004400758072733879,
-0.04741668328642845,
0.039995260536670685,
0.015537463128566742,
0.029356665909290314,
-0.0006317806546576321,
-0.01915677823126316,
-0.006466326769441366,
0.028460977599024773,
-0.024165324866771698,
-0.02825990319252014,
0.07417767494916916,
0.034785639494657516,
0.008193726651370525,
0.01173535455018282,
-0.05988321080803871,
-0.03155019134283066,
0.015436926856637001,
-0.0019707444589585066,
0.022538460791110992,
-0.07501853257417679,
-0.013453615829348564,
0.011059017851948738,
0.041896313428878784,
0.025042735040187836,
0.06913257390260696,
0.05973697826266289,
-0.004048880189657211,
-0.005648324731737375,
0.04365113377571106,
0.034200698137283325,
0.057177864015102386,
0.03398134559392929,
-0.020948156714439392,
-0.006699388846755028,
-0.011122995987534523,
-0.00722492067143321,
-0.04822097346186638,
0.01764873042702675,
0.026304012164473534,
-0.003363403957337141,
0.06006600707769394,
0.027327656745910645,
0.016990672796964645,
0.026066379621624947,
0.035224344581365585,
-0.06335629522800446,
-0.03864258527755737,
0.034785639494657516,
-0.006416058633476496,
0.02582874894142151,
0.04844032600522041,
0.011104716919362545,
-0.022757813334465027,
-0.00561633612960577,
-0.03142223507165909,
0.05626389756798744,
-0.02900935895740986,
0.02659648098051548,
-0.020216980949044228,
-0.06715840101242065,
-0.030873853713274002,
-0.05045105889439583,
0.04467477649450302,
0.013133726082742214,
-0.002979537006467581,
0.021807286888360977,
0.07896687090396881,
0.04079955071210861,
-0.06503799557685852,
0.03672325238585472,
0.0027990282978862524,
0.05403381213545799,
-0.04924461990594864,
-0.02359866537153721,
0.03092869184911251,
0.010318703949451447,
0.0059453644789755344,
-0.00027447615866549313,
-0.023013725876808167,
0.00337254349142313,
0.02677927538752556,
-0.023744899779558182,
0.001065915683284402,
-0.018937425687909126,
-0.027528729289770126,
-0.01620466075837612,
-0.01933957263827324,
0.027784639969468117,
0.022319110110402107,
-0.014998221769928932,
0.026706157252192497,
-0.02475026436150074,
-0.026048099622130394,
0.0061190188862383366,
0.03282974660396576,
-0.027345934882760048,
-0.019997630268335342,
0.01884602941572666,
0.01723744533956051,
0.022812651470303535,
0.021661052480340004,
0.0037427006755024195,
0.007106104400008917,
0.009139684028923512,
-0.04427263140678406,
-0.010711709968745708,
-0.05586175248026848,
-0.0007500253268517554,
-0.04511348158121109,
-0.037070561200380325,
0.004044310189783573,
-0.03147707134485245,
-0.040872666984796524,
0.027729801833629608,
0.011241811327636242,
-0.024348119273781776,
0.004862312227487564,
0.013215983286499977,
0.0006317806546576321,
-0.018809471279382706,
-0.007279758807271719,
-0.025682512670755386,
0.015281552448868752,
0.0744701474905014,
0.04003181681036949,
-0.03951999545097351,
0.027784639969468117,
-0.028917960822582245,
-0.010556335560977459,
0.005045105703175068,
-0.007115244399756193,
-0.031349118798971176,
0.047233887016773224,
-0.0015171875711530447,
0.03275663033127785,
-0.04434574767947197,
-0.08452380448579788,
-0.016844438388943672,
-0.01954064518213272,
-0.04942741245031357,
0.07282500714063644,
-0.035608209669589996,
-0.03652217984199524,
0.003927779383957386,
-0.031129764392971992,
-0.021240627393126488,
0.07107018679380417,
-0.010291284881532192,
0.011168694123625755,
0.001420078449882567,
0.0037564102094620466,
-0.002006160793825984,
-0.021935243159532547,
-0.030380310490727425,
-0.05779936537146568,
0.002185527002438903,
0.004565272480249405,
0.0413479320704937,
-0.041896313428878784,
-0.016113262623548508,
-0.019741717725992203,
-0.017584752291440964,
-0.031202882528305054,
0.05860365554690361,
-0.007403144147247076,
-0.006338370963931084,
-0.039995260536670685,
-0.006132728420197964,
0.070594921708107,
0.01959548331797123,
0.002680212492123246,
0.049281179904937744,
-0.007933245971798897,
-0.02405564859509468,
0.06843795627355576,
0.05904236063361168,
-0.060797180980443954,
-0.013088027946650982,
-0.031221162527799606,
0.032921142876148224,
0.003422811860218644,
0.026048099622130394,
0.011662237346172333,
-0.06288103014230728,
0.03409102186560631,
-0.04993923380970955,
-0.02202663943171501,
0.015455205924808979,
0.016012726351618767,
-0.011945567093789577,
0.020893318578600883,
0.009843439795076847,
-0.030325472354888916,
-0.008920331485569477,
0.007407714147120714,
0.008495336398482323,
0.013353078626096249,
0.011022459715604782,
-0.03036203235387802,
0.023635223507881165,
0.10068276524543762,
0.0036193151026964188,
0.029411504045128822,
0.04401671886444092,
-0.00900258868932724,
0.02016214281320572,
0.00488516129553318,
0.0629541426897049,
0.03951999545097351,
-0.01383748184889555,
-0.022447064518928528,
-0.0013252542121335864,
-0.05655636638402939,
-0.04906182736158371
] |
729,692 | aiconfig.default_parsers.openai | get_prompt_template |
Returns a template for a prompt.
| def get_prompt_template(
self, prompt: Prompt, aiconfig: "AIConfigRuntime"
) -> str:
"""
Returns a template for a prompt.
"""
if isinstance(prompt.input, str):
return prompt.input
elif isinstance(prompt.input, PromptInput) and isinstance(
prompt.input.data, str
):
return prompt.input.data
else:
message = prompt.input
return message.content or ""
| (self, prompt: aiconfig.schema.Prompt, aiconfig: 'AIConfigRuntime') -> str | [
0.03799542784690857,
-0.028407461941242218,
0.04954375699162483,
-0.10493296384811401,
0.035429131239652634,
0.0032657890114933252,
0.013392853550612926,
-0.0017999709816649556,
0.07884228974580765,
-0.04220129922032356,
0.040739938616752625,
0.049472469836473465,
-0.0758482813835144,
0.01426610630005598,
-0.06536924093961716,
-0.019193749874830246,
0.05585256591439247,
0.008719166740775108,
-0.03161533176898956,
-0.0006599522312171757,
0.05175362154841423,
-0.014052248559892178,
-0.03400341048836708,
-0.003615535795688629,
0.028193604201078415,
0.025787703692913055,
0.012778012081980705,
-0.011681989766657352,
-0.02220558188855648,
0.03459152206778526,
-0.011503774672746658,
-0.05813371762633324,
0.030724257230758667,
0.04084686562418938,
-0.014096802100539207,
0.018979892134666443,
-0.045017097145318985,
0.04729824885725975,
-0.07281862944364548,
-0.062375232577323914,
-0.003965282812714577,
0.004221466835588217,
-0.02546691708266735,
0.003390539437532425,
-0.06843454390764236,
-0.02936982363462448,
0.0200670026242733,
-0.020566005259752274,
-0.000015054290088301059,
-0.02423723228275776,
0.0366053506731987,
0.01633339934051037,
-0.019657108932733536,
0.07556314021348953,
-0.0568862110376358,
0.01049686037003994,
-0.014978966675698757,
-0.009276088327169418,
-0.034787558019161224,
-0.01840960420668125,
-0.07378099113702774,
0.0038338489830493927,
-0.024415448307991028,
-0.021207578480243683,
-0.008723622187972069,
-0.029779717326164246,
0.004350672475993633,
0.0004903695662505925,
-0.011655258014798164,
-0.05510406196117401,
-0.005885548889636993,
-0.0168145801872015,
-0.057171355932950974,
-0.023185765370726585,
0.0219382606446743,
-0.09652121365070343,
0.02500355802476406,
-0.005956834647804499,
0.04441116377711296,
-0.02945893071591854,
0.0015259655192494392,
0.011673078872263432,
-0.021902617067098618,
-0.015005698427557945,
0.02070857770740986,
-0.02573423832654953,
0.019461072981357574,
0.007814725860953331,
0.005680601578205824,
-0.025965917855501175,
0.038886502385139465,
-0.09538064152002335,
0.008131057024002075,
0.0822640210390091,
-0.03710435330867767,
0.01509480644017458,
0.0071998839266598225,
-0.040918152779340744,
0.04776160791516304,
0.005515752825886011,
-0.02127886563539505,
0.026963921263813972,
-0.041951797902584076,
0.018463069573044777,
-0.01402551680803299,
-0.001508143963292241,
0.0366053506731987,
0.028015390038490295,
0.0485101081430912,
-0.015932416543364525,
-0.03296976536512375,
0.017955156043171883,
-0.02584116719663143,
-0.000215389474760741,
0.06059308350086212,
0.030813364312052727,
-0.01735813543200493,
0.009267177432775497,
0.07706014066934586,
-0.03799542784690857,
-0.05139718949794769,
0.0010002313647419214,
-0.010826557874679565,
-0.02928071655333042,
0.026981743052601814,
0.04754775017499924,
-0.02730252966284752,
-0.05841885879635811,
-0.04526659846305847,
-0.020405611023306847,
-0.008812729269266129,
-0.009552321396768093,
-0.01300969161093235,
0.024397626519203186,
-0.026161953806877136,
0.040276579558849335,
0.01151268556714058,
0.015549254603683949,
0.02480752021074295,
0.1040775328874588,
0.034609343856573105,
0.03874392807483673,
-0.056244637817144394,
-0.024967914447188377,
-0.02851439267396927,
-0.04113201051950455,
0.06629595905542374,
0.007912743836641312,
0.049579400569200516,
-0.06027229502797127,
0.01402551680803299,
-0.02935200184583664,
-0.08283431082963943,
0.03977757692337036,
0.04205872863531113,
0.05642285197973251,
-0.023274872452020645,
-0.0009701576200313866,
0.028353998437523842,
-0.05856143310666084,
0.006077129859477282,
-0.03425291180610657,
0.037959784269332886,
0.021795688197016716,
0.015210646204650402,
0.01104932650923729,
0.04312801733613014,
0.04266465827822685,
0.06822068244218826,
0.0032657890114933252,
-0.020227396860718727,
-0.04394780471920967,
-0.060414869338274,
-0.034894488751888275,
0.01049686037003994,
0.035072702914476395,
0.0038984520360827446,
0.002735599409788847,
0.026554027572274208,
-0.02758767455816269,
-0.022971907630562782,
-0.031722262501716614,
-0.0482962504029274,
0.049757614731788635,
0.02322140708565712,
-0.022187761962413788,
0.062197018414735794,
0.006776623427867889,
-0.008812729269266129,
-0.019817503169178963,
-0.06822068244218826,
0.013936408795416355,
-0.05442684516310692,
0.05677928403019905,
-0.012795832939445972,
-0.037674639374017715,
0.02785499580204487,
0.005346448626369238,
-0.025110486894845963,
-0.07470770925283432,
0.0008665701607242227,
0.025502558797597885,
-0.00132435979321599,
-0.0005736293387599289,
0.04262901470065117,
0.00989092979580164,
0.042700301855802536,
-0.02890646457672119,
-0.05945250764489174,
-0.024932270869612694,
-0.0804818719625473,
-0.027106493711471558,
0.014417589642107487,
-0.018240300938487053,
-0.009004310704767704,
0.05991586670279503,
0.05414170026779175,
0.017055170610547066,
-0.044838882982730865,
0.012769101187586784,
0.02423723228275776,
-0.03149058297276497,
0.04843882471323013,
0.00019965643878094852,
0.02908467873930931,
0.0039296397008001804,
0.004094488453119993,
0.03885085880756378,
-0.01193149108439684,
0.022187761962413788,
0.019568001851439476,
-0.009097873233258724,
0.058668360114097595,
0.020031360909342766,
-0.062197018414735794,
0.03856571391224861,
-0.0031254447530955076,
-0.06508409976959229,
-0.007672153413295746,
0.05524663254618645,
-0.02992228977382183,
0.05574563518166542,
0.021973902359604836,
0.022169940173625946,
-0.024415448307991028,
-0.01059487834572792,
-0.002662085695192218,
-0.004326167982071638,
-0.05742085725069046,
-0.0555674210190773,
0.013508693315088749,
0.021314507350325584,
-0.0017810356803238392,
-0.023952089250087738,
0.005693967454135418,
0.022544190287590027,
0.024112483486533165,
-0.020566005259752274,
0.050399187952280045,
0.013597800396382809,
0.00010296090476913378,
0.04922296851873398,
-0.056529782712459564,
0.02806885354220867,
0.007444929331541061,
-0.03899342939257622,
-0.1036498174071312,
0.08561446517705917,
-0.014034426771104336,
-0.030706435441970825,
0.12368117272853851,
0.09580835700035095,
0.01922939345240593,
-0.017768030986189842,
0.02423723228275776,
-0.027159959077835083,
0.033201444894075394,
0.07171369343996048,
-0.02546691708266735,
-0.07153548300266266,
-0.03621327877044678,
0.016315579414367676,
0.03892214596271515,
0.010764182545244694,
-0.001093237311579287,
-0.014604714699089527,
0.015620539896190166,
-0.03949243202805519,
0.029245072975754738,
0.02407683990895748,
0.0075340368784964085,
0.05118333175778389,
-0.043912164866924286,
0.015620539896190166,
-0.018151191994547844,
0.03576774150133133,
-0.00423037726432085,
-0.04376959055662155,
-0.02184915356338024,
-0.030991580337285995,
0.06743653863668442,
-0.03633802756667137,
-0.03580338507890701,
-0.023185765370726585,
-0.09816079586744308,
0.009178069420158863,
0.006206335499882698,
-0.017901692539453506,
0.01949671469628811,
-0.042878516018390656,
0.013936408795416355,
0.012786922976374626,
0.049365539103746414,
0.029957933351397514,
-0.014907680451869965,
0.06540488451719284,
0.03806671127676964,
-0.019674930721521378,
0.041844870895147324,
-0.0017520757392048836,
-0.022080833092331886,
0.049579400569200516,
0.030332183465361595,
-0.0034573699813336134,
-0.04070429503917694,
-0.0366053506731987,
-0.05364270135760307,
-0.024219412356615067,
0.02165311574935913,
0.014399767853319645,
-0.03355787321925163,
0.039884503930807114,
-0.022063011303544044,
-0.03029654175043106,
0.005818718113005161,
0.04683488979935646,
0.02407683990895748,
0.009962216019630432,
-0.017678922042250633,
-0.0687909722328186,
0.04868832230567932,
-0.025769881904125214,
0.042130015790462494,
0.039242930710315704,
0.04886654019355774,
-0.012359206564724445,
0.030403470620512962,
-0.009249355643987656,
0.03466280922293663,
-0.023114478215575218,
-0.042522087693214417,
0.014702733606100082,
0.03756771236658096,
-0.016966063529253006,
-0.00010038513573817909,
0.005943468771874905,
-0.028870820999145508,
0.020102646201848984,
-0.050755616277456284,
0.035250917077064514,
-0.023096658289432526,
-0.013847301714122295,
0.022508548572659492,
0.011833472177386284,
-0.043805234134197235,
0.00396751007065177,
0.03029654175043106,
0.08233530819416046,
0.052537765353918076,
0.04512402415275574,
-0.006870186422020197,
0.006282077170908451,
-0.02471841312944889,
-0.05317934229969978,
-0.062482159584760666,
0.019835323095321655,
-0.0022700128611177206,
-0.019158106297254562,
-0.04209437221288681,
-0.032114334404468536,
0.045195311307907104,
0.017955156043171883,
-0.024593662470579147,
0.031526222825050354,
-0.041203297674655914,
-0.025484737008810043,
-0.04330623149871826,
0.026892635971307755,
0.015629451721906662,
-0.0015515838749706745,
0.002802430186420679,
-0.052822910249233246,
0.04815367981791496,
0.007841457612812519,
0.0070884996093809605,
-0.04954375699162483,
-0.016591811552643776,
0.01951453648507595,
-0.049294255673885345,
0.04098943993449211,
-0.00027651162235997617,
-0.009712714701890945,
0.05157540738582611,
-0.04056172072887421,
0.019710572436451912,
-0.003334847278892994,
0.03835185617208481,
0.03168661892414093,
-0.01747397519648075,
-0.019621465355157852,
-0.005141501314938068,
0.010318645276129246,
-0.006669694557785988,
-0.023560015484690666,
0.0029093590565025806,
0.032470762729644775,
-0.07435127347707748,
-0.006914739962667227,
-0.07591956853866577,
0.02897774986922741,
-0.025377808138728142,
0.01039884239435196,
-0.01922939345240593,
0.030617328360676765,
0.019746216014027596,
0.06094951182603836,
-0.033575695008039474,
0.04041915014386177,
0.0005098618566989899,
-0.020298682153224945,
-0.059309933334589005,
0.015175002627074718,
0.029405467212200165,
-0.0403478629887104,
0.006464747246354818,
-0.03213215619325638,
0.0016139590879902244,
0.0039051349740475416,
-0.029298538342118263,
0.02127886563539505,
0.08454517275094986,
0.02163529396057129,
0.037674639374017715,
0.06996718794107437,
-0.015549254603683949,
0.03421727195382118,
-0.07919872552156448,
-0.006219701841473579,
-0.03995579108595848,
0.03354005515575409,
0.04302109032869339,
0.019015535712242126,
0.05816935747861862,
0.00790383294224739,
0.0011216403217986226,
-0.016431419178843498,
-0.003575437469407916,
0.027462923899292946,
-0.08568574488162994,
-0.018712569028139114,
-0.052644696086645126,
0.07264041155576706,
0.0253599863499403,
-0.01421264186501503,
0.0485101081430912,
-0.05303676798939705,
-0.018427425995469093,
0.03419945016503334,
-0.06012972444295883,
0.03576774150133133,
-0.037781570106744766,
0.012323563918471336,
-0.026268882676959038,
0.04833189398050308,
0.021795688197016716,
-0.02136797271668911,
0.03336183726787567,
0.04312801733613014,
-0.028924286365509033,
0.013740372844040394,
-0.017331404611468315,
-0.07385227829217911,
-0.026892635971307755,
0.04815367981791496,
0.01458689384162426,
-0.0030920293647795916,
-0.00883500650525093,
0.0032279181759804487,
-0.04312801733613014,
-0.00759641220793128,
-0.032862838357686996,
0.05980893597006798,
-0.007636510767042637,
0.0050434828735888,
0.02869260683655739,
-0.011797829531133175,
0.04833189398050308,
0.034520234912633896,
0.00989984069019556,
0.012653261423110962,
-0.0168145801872015,
-0.008848371915519238,
0.01035428885370493,
-0.021118471398949623,
0.03689049556851387,
-0.012261188589036465,
-0.015344306826591492,
0.01054141391068697,
0.0037113262806087732,
0.024415448307991028,
-0.0035397943574935198,
-0.019282856956124306,
0.045943815261125565,
-0.021973902359604836,
-0.005662779789417982,
-0.04280723258852959,
0.04024093598127365,
-0.025413451716303825,
-0.009374106302857399,
-0.014765108935534954,
-0.008630058728158474,
0.013749283738434315,
-0.07349584251642227,
-0.02806885354220867,
0.034342020750045776,
0.0312054380774498,
0.056993141770362854,
-0.02070857770740986,
-0.02593027427792549,
0.034235090017318726,
0.038137998431921005,
0.02935200184583664,
0.06533359736204147,
0.007752350065857172,
-0.045195311307907104,
0.00571178924292326,
-0.09616478532552719,
-0.0047850715927779675,
-0.004615767393261194,
-0.026055024936795235,
-0.030153969302773476,
0.03138365224003792,
-0.03343312442302704,
-0.016297757625579834,
0.056066423654556274,
0.006536033470183611,
0.012831476517021656,
0.03323708847165108,
-0.023096658289432526,
-0.022276869043707848,
-0.021118471398949623,
-0.07349584251642227,
-0.019995717331767082,
-0.03788849711418152,
-0.11256056278944016,
-0.0033949948847293854,
0.007703341078013182,
0.03574991971254349,
0.03574991971254349,
0.030350005254149437,
-0.01914028637111187,
-0.03075990080833435,
-0.019282856956124306,
0.0008008534205146134,
0.03332619369029999,
0.016556167975068092,
-0.03364698216319084,
0.01737595722079277,
-0.037033066153526306,
0.024825341999530792,
0.03298758715391159,
-0.00396751007065177,
0.07862843573093414,
-0.02099372074007988,
-0.01422155275940895,
-0.03177572414278984,
0.026411455124616623,
0.025413451716303825,
0.049116041511297226,
0.04754775017499924,
-0.017874959856271744,
0.012876030057668686,
0.023934267461299896,
-0.036926139146089554,
-0.002361348131671548,
0.012608707882463932,
0.004350672475993633,
-0.005685057025402784,
-0.035090524703264236,
0.02398773282766342,
-0.07898486405611038,
0.03713999688625336,
0.010675075463950634,
0.0056761461310088634,
0.06611774861812592,
0.0377102829515934,
0.06515538692474365,
-0.013259191997349262,
-0.04230822995305061,
-0.05538920685648918,
-0.07499285042285919,
0.04651410132646561,
-0.03220343962311745,
0.06344452500343323,
0.05111204832792282,
-0.09003419429063797,
-0.02582334540784359,
-0.017340313643217087,
-0.016885867342352867,
0.02562730945646763,
0.019568001851439476,
0.0017687833169475198,
-0.0007880442426539958,
0.006705337669700384,
-0.004842991009354591,
0.0034595977049320936,
0.004731606692075729,
-0.004392998293042183,
0.031080687418580055,
0.009632517583668232,
-0.009445392526686192,
0.01193149108439684,
-0.07000283151865005,
0.011441399343311787,
-0.004348444752395153,
0.035161808133125305,
-0.01211861614137888,
-0.016128452494740486,
-0.03459152206778526,
-0.03291629999876022,
0.043341875076293945,
-0.01633339934051037,
-0.007881555706262589,
-0.0015504700131714344,
0.009329552762210369,
0.023649124428629875,
0.0015449008205905557,
0.019371964037418365,
-0.050755616277456284,
0.004722696263343096,
-0.040739938616752625,
-0.04141715541481972,
0.003909590654075146,
-0.010648342780768871,
0.03984886407852173,
-0.007391464896500111,
-0.004417503252625465,
-0.04412602260708809,
-0.0027823809068650007,
0.001483639469370246,
0.003996470011770725,
0.0005023434059694409,
-0.018142281100153923,
0.031829189509153366,
0.012510688975453377,
0.031062865629792213,
-0.008487487211823463,
0.012305742129683495,
-0.022437261417508125,
-0.022971907630562782,
-0.01580766588449478,
0.010737450793385506,
-0.00272891647182405,
0.000052315834182081744,
0.020084824413061142,
-0.0024148125667124987,
-0.03984886407852173,
-0.030225254595279694,
-0.015166091732680798,
-0.012261188589036465,
0.008429567329585552,
-0.013464139774441719,
0.0218313317745924,
-0.030350005254149437,
-0.006553854793310165,
0.011530507355928421,
-0.00891074724495411,
0.010559235699474812,
0.04198744148015976,
-0.019817503169178963,
-0.004927643109112978,
-0.07217705249786377,
-0.007467206567525864,
-0.024967914447188377,
0.014435410499572754,
-0.03149058297276497,
0.06323066353797913,
-0.000418805138906464,
-0.0219382606446743,
-0.00729344692081213,
-0.07748785614967346,
0.013980962336063385,
0.000893859367351979,
-0.022223403677344322,
0.0542486310005188,
-0.09060447663068771,
-0.05724264308810234,
0.036177635192871094,
-0.011093880981206894,
-0.01773238740861416,
0.061911873519420624,
-0.0030318817589432,
0.036569707095623016,
-0.004602401051670313,
-0.017696743831038475,
-0.0055424850434064865,
-0.014827483333647251,
-0.021688759326934814,
-0.06668803095817566,
0.03576774150133133,
0.014337392523884773,
0.04173794016242027,
0.04052608087658882,
0.0023323881905525923,
-0.006442470476031303,
0.007872645743191242,
-0.02593027427792549,
0.058026786893606186,
0.005979111418128014,
-0.017411600798368454,
-0.00550238648429513,
0.0008203457109630108,
0.011084970086812973,
-0.008941935375332832,
0.056993141770362854,
0.04683488979935646,
-0.07499285042285919,
-0.037959784269332886,
0.06059308350086212,
0.0242550540715456,
-0.043805234134197235,
-0.00729790236800909,
-0.09224405884742737,
0.034787558019161224,
0.04690617322921753,
0.02974407561123371,
0.020672934129834175,
-0.000590337032917887,
-0.000009894062714010943,
-0.028389642015099525,
-0.004174685105681419,
0.012893851846456528,
-0.006709792651236057,
0.006041486747562885,
0.07199884206056595,
0.0022143207024782896,
0.0058989147655665874,
-0.019550180062651634,
-0.01811555027961731,
0.02683917060494423,
0.046122029423713684,
0.0007668812177143991,
-0.02860349975526333,
-0.02341744489967823,
0.041773583739995956,
-0.025769881904125214,
0.05991586670279503,
0.008344914764165878,
-0.006968204397708178,
0.05916736274957657,
0.002769014798104763,
-0.006170692387968302,
0.0945964977145195,
0.0016095037572085857,
-0.014693822711706161,
-0.049294255673885345,
-0.03874392807483673,
-0.033664803951978683
] |
729,693 | aiconfig.default_parsers.openai | id | null | def id(self) -> str:
return self.model_id
| (self) -> str | [
-0.014817651361227036,
0.009814174845814705,
0.033403243869543076,
0.028443582355976105,
0.048404913395643234,
-0.024868417531251907,
0.05313674733042717,
0.06274061650037766,
0.0007513977470807731,
-0.002567458199337125,
-0.08005562424659729,
-0.03617224469780922,
-0.0008888619486242533,
0.042481355369091034,
0.032562028616666794,
-0.011216199956834316,
-0.02830337919294834,
-0.014747550711035728,
0.036452651023864746,
-0.027900297194719315,
0.008749512024223804,
0.022888056933879852,
0.03764437139034271,
-0.05492432788014412,
0.0019321657018736005,
0.07269499450922012,
-0.006383595056831837,
0.009656446985900402,
0.019663400948047638,
-0.023816898465156555,
-0.005669438745826483,
-0.036242347210645676,
0.022905582562088966,
0.006247773766517639,
-0.04808945581316948,
-0.027286911383271217,
-0.04833481088280678,
0.09029041230678558,
-0.0403432697057724,
-0.05338210240006447,
0.010681677609682083,
0.03522587940096855,
0.05748302489519119,
-0.016990790143609047,
-0.056361403316259384,
-0.02863636054098606,
-0.01666657254099846,
-0.053452201187610626,
0.006041851360350847,
0.0026967073790729046,
-0.07146822661161423,
0.02704155631363392,
-0.023816898465156555,
-0.039782457053661346,
-0.046231772750616074,
-0.025026146322488785,
-0.01605318672955036,
-0.0315806120634079,
-0.009454905986785889,
0.006576373241841793,
-0.001770056551322341,
0.0011632426176220179,
0.01721861958503723,
-0.0017755331937223673,
0.03151051327586174,
-0.009936852380633354,
0.008823994547128677,
0.06049737706780434,
-0.011049709282815456,
0.047949254512786865,
-0.00722919125109911,
-0.06543951481580734,
0.030984751880168915,
0.05222542956471443,
0.021118002012372017,
-0.06554466485977173,
-0.01738511025905609,
0.021661285310983658,
0.028951816260814667,
0.0634065791964531,
0.011873398907482624,
0.009419855661690235,
-0.014992904849350452,
0.010261069983243942,
-0.023694222792983055,
-0.05226048082113266,
0.004626682493835688,
0.0027580459136515856,
-0.09197283536195755,
-0.06789305806159973,
0.016079474240541458,
0.030827024951577187,
-0.03918659687042236,
0.02092522196471691,
-0.011882161721587181,
-0.04672248288989067,
0.029372423887252808,
0.016368642449378967,
0.04865026846528053,
-0.015851644799113274,
-0.012407921254634857,
0.026498273015022278,
-0.02888171374797821,
-0.021766437217593193,
-0.026393121108412743,
-0.027900297194719315,
-0.025411702692508698,
-0.010927031747996807,
-0.032491929829120636,
0.0147124994546175,
0.018191274255514145,
0.0766206681728363,
-0.056361403316259384,
0.0031370308715850115,
0.0009852511575445533,
-0.05422331765294075,
0.003154556266963482,
0.011557943187654018,
0.012302769348025322,
-0.01941804587841034,
-0.059235554188489914,
-0.015650104731321335,
-0.09414597600698471,
-0.016684098169207573,
0.062249910086393356,
0.032824911177158356,
-0.046231772750616074,
-0.0159129835665226,
0.0019036870216950774,
-0.07914430648088455,
-0.01043632347136736,
-0.007500833831727505,
-0.0066552371717989445,
-0.02204684354364872,
0.05201512575149536,
-0.0002768451813608408,
0.0652642622590065,
0.06607042998075485,
0.005923555698245764,
0.13908088207244873,
-0.013143984600901604,
0.04759874939918518,
0.019488146528601646,
0.02117057703435421,
-0.03841548413038254,
-0.010488899424672127,
-0.016403691843152046,
0.001952977036125958,
-0.002788715297356248,
-0.025972513481974602,
0.026691051200032234,
0.029407473281025887,
0.08881828188896179,
0.04703793674707413,
-0.0719238817691803,
0.024360183626413345,
-0.03964225575327873,
-0.0027952874079346657,
0.04493490234017372,
-0.0647735521197319,
0.024517912417650223,
-0.013389338739216328,
0.04956158250570297,
-0.01692068949341774,
-0.034069206565618515,
0.020995324477553368,
-0.0023702983744442463,
0.015772780403494835,
0.0116280447691679,
-0.012942442670464516,
-0.025148823857307434,
-0.0005076864035800099,
-0.0640374943614006,
-0.01667533442378044,
-0.06754255294799805,
0.03638254851102829,
0.02395710162818432,
0.052786242216825485,
0.04164014011621475,
0.07104761898517609,
0.0524357333779335,
0.02567458339035511,
0.022099418565630913,
0.03592688962817192,
0.055870696902275085,
-0.009183263406157494,
0.027654942125082016,
0.007286148611456156,
0.06768275797367096,
-0.027164233848452568,
-0.007198521867394447,
-0.04672248288989067,
0.013932622969150543,
0.018892286345362663,
-0.042866915464401245,
-0.00394976744428277,
0.05050795152783394,
-0.05506453290581703,
-0.005577430594712496,
0.010865693911910057,
0.04237620532512665,
-0.007684849202632904,
-0.010033241473138332,
0.0056782010942697525,
0.007246716413646936,
-0.01106723491102457,
0.018681982532143593,
0.006896210368722677,
0.020820070058107376,
-0.030616721138358116,
0.02591993659734726,
-0.01783200539648533,
0.0108569310978055,
0.07125791907310486,
0.0894491970539093,
-0.06435294449329376,
-0.0536625050008297,
-0.03457744047045708,
0.028110601007938385,
0.008359573781490326,
0.020890172570943832,
-0.043322570621967316,
-0.006247773766517639,
-0.038906194269657135,
-0.028040500357747078,
-0.05846444144845009,
0.006834871601313353,
-0.0006593898870050907,
-0.00325094535946846,
-0.012407921254634857,
0.025972513481974602,
-0.0183840524405241,
-0.014589822851121426,
0.02570963278412819,
-0.035488758236169815,
0.001615614746697247,
-0.047493595629930496,
-0.007895153015851974,
-0.0624251626431942,
0.0007634464418515563,
-0.010962083004415035,
0.02458801306784153,
0.0526810884475708,
0.04581116512417793,
0.024780791252851486,
0.005314550828188658,
-0.01431818027049303,
0.011610519140958786,
-0.014984142035245895,
-0.08867807686328888,
0.05138421431183815,
-0.05373260751366615,
-0.013608405366539955,
0.046617329120635986,
0.028443582355976105,
-0.014721262268722057,
-0.06431789696216583,
0.011566706001758575,
-0.026235392317175865,
0.005967368837445974,
-0.060532428324222565,
0.008758274838328362,
-0.018524255603551865,
0.008683792315423489,
-0.027059081941843033,
-0.03841548413038254,
-0.08271947503089905,
0.05310169607400894,
0.01141774095594883,
0.005226924549788237,
0.13655723631381989,
-0.010208494029939175,
-0.08152775466442108,
-0.007448257878422737,
-0.007097751367837191,
-0.07052185386419296,
-0.031405359506607056,
0.04535550996661186,
-0.12786467373371124,
-0.05867474526166916,
-0.048369862139225006,
-0.02570963278412819,
0.029810555279254913,
-0.025324076414108276,
-0.049035824835300446,
-0.026533322408795357,
0.012591936625540257,
-0.020434513688087463,
-0.025516854599118233,
0.005998038221150637,
-0.014449619688093662,
0.03168576583266258,
-0.06084788590669632,
0.010848168283700943,
-0.006659618578851223,
-0.009744073264300823,
0.0073781562969088554,
0.036312445998191833,
0.04496994987130165,
-0.006567610893398523,
-0.024325134232640266,
0.04742349684238434,
0.027847720310091972,
-0.04093912988901138,
-0.06922498345375061,
0.03901134431362152,
-0.015360936522483826,
-0.04258650913834572,
0.03620729595422745,
-0.021994266659021378,
-0.043357621878385544,
0.03771447017788887,
-0.04149993881583214,
0.06743740290403366,
-0.02625291794538498,
0.04808945581316948,
-0.01799849607050419,
0.015781544148921967,
0.032947588711977005,
0.10122620314359665,
-0.004313417710363865,
0.03405168280005455,
0.015474850311875343,
0.029722929000854492,
0.043322570621967316,
0.00902553554624319,
-0.012223904952406883,
0.018436629325151443,
-0.04682763293385506,
0.05166462063789368,
-0.006335400510579348,
0.0014502195408567786,
0.0006035279366187751,
-0.02020668424665928,
0.010821880772709846,
-0.04384833201766014,
0.03620729595422745,
0.03767942264676094,
-0.006896210368722677,
0.006834871601313353,
0.0640374943614006,
-0.042691659182310104,
0.019155167043209076,
0.013468202203512192,
-0.015071768313646317,
0.025096246972680092,
-0.009568820707499981,
-0.0018872570944949985,
0.01725367084145546,
-0.025026146322488785,
0.00384899671189487,
-0.04784410074353218,
-0.015474850311875343,
-0.044654496014118195,
-0.031037328764796257,
-0.00898172240704298,
-0.020679868757724762,
0.04584621638059616,
-0.02267775498330593,
0.047318343073129654,
-0.010997133329510689,
-0.11861131340265274,
0.03778457269072533,
-0.02779514528810978,
-0.04339267313480377,
0.04475964605808258,
-0.03359602391719818,
0.040238115936517715,
0.033736225217580795,
-0.030599195510149002,
-0.047738950699567795,
0.041990648955106735,
-0.016850586980581284,
-0.007776857353746891,
0.013476965017616749,
0.05159451812505722,
0.013363050296902657,
0.011303826235234737,
-0.038906194269657135,
-0.05762322619557381,
0.006217104382812977,
-0.028513683006167412,
0.050402797758579254,
-0.001274966518394649,
-0.0001312344684265554,
0.007947728969156742,
-0.0039212885312736034,
-0.016657808795571327,
-0.06554466485977173,
-0.0030143538024276495,
0.019698450341820717,
-0.03329809382557869,
-0.03771447017788887,
-0.004819460678845644,
-0.013757370412349701,
-0.05352230370044708,
0.06638588011264801,
-0.02404472790658474,
-0.03280738368630409,
-0.005927937105298042,
-0.005748302210122347,
0.014598584733903408,
0.05930565670132637,
0.04209579899907112,
-0.021573659032583237,
0.013485727831721306,
0.0022410491947084665,
0.039151549339294434,
-0.02537665143609047,
-0.06747245043516159,
-0.008030974306166172,
0.013862522318959236,
-0.007365012541413307,
-0.02884666435420513,
0.09050071239471436,
0.013757370412349701,
-0.03371870145201683,
-0.008372717536985874,
0.001705431961454451,
0.004609157331287861,
-0.008390243165194988,
0.1027684286236763,
0.026287969201803207,
0.031738340854644775,
-0.0524357333779335,
0.05050795152783394,
0.022642703726887703,
0.04889561980962753,
0.03384137898683548,
0.04171024262905121,
-0.04363802820444107,
-0.0332455188035965,
0.06589517742395401,
0.03200121968984604,
-0.011189911514520645,
0.020066482946276665,
0.061408694833517075,
-0.01908506453037262,
-0.011312589049339294,
0.04188549518585205,
0.04865026846528053,
-0.059410806745290756,
-0.015720205381512642,
-0.021275728940963745,
0.006821727845817804,
-0.08615443855524063,
-0.0020384129602462053,
0.021748913452029228,
0.01633359119296074,
0.04570601508021355,
0.018646933138370514,
0.04766884818673134,
0.04100923240184784,
-0.06000667065382004,
-0.0011873398907482624,
-0.042866915464401245,
-0.03526092693209648,
-0.032947588711977005,
0.014248078688979149,
-0.023483918979763985,
-0.07584954798221588,
0.03384137898683548,
0.01579030603170395,
-0.014984142035245895,
-0.012837291695177555,
-0.025096246972680092,
0.0015696107875555754,
-0.006975074298679829,
-0.02583231031894684,
0.003787658177316189,
0.01129506342113018,
0.004674877040088177,
-0.015527426265180111,
0.02341381646692753,
-0.06042727828025818,
0.05271613970398903,
-0.009744073264300823,
-0.0232560895383358,
-0.016894400119781494,
-0.036733053624629974,
0.038906194269657135,
-0.03522587940096855,
0.013599642552435398,
0.04591631889343262,
0.016806773841381073,
0.020907698199152946,
-0.011111048050224781,
-0.008666266687214375,
-0.03526092693209648,
-0.029319847002625465,
0.026077665388584137,
0.03000333532691002,
-0.053241897374391556,
0.023992152884602547,
0.027654942125082016,
-0.004609157331287861,
0.018804660066962242,
-0.030476517975330353,
-0.04402358457446098,
0.012811003252863884,
0.020311836153268814,
-0.04055357351899147,
0.019978856667876244,
-0.054118163883686066,
0.00760598573833704,
-0.028653886169195175,
-0.033578500151634216,
-0.01567639224231243,
-0.013696031644940376,
-0.0009551295079290867,
0.013065120205283165,
-0.045075103640556335,
0.02159118466079235,
0.018787134438753128,
-0.013599642552435398,
0.020101532340049744,
0.01666657254099846,
-0.019856179133057594,
0.0023045786656439304,
0.04125458374619484,
0.01600937359035015,
-0.03045899234712124,
-0.042481355369091034,
-0.02863636054098606,
-0.015562477521598339,
0.05888504907488823,
-0.08299987763166428,
-0.016438743099570274,
-0.003472202457487583,
0.09526759386062622,
-0.035190828144550323,
0.02900439128279686,
-0.021538609638810158,
0.08145765215158463,
-0.03259707987308502,
0.0147124994546175,
-0.04777400195598602,
-0.059866465628147125,
-0.014730025082826614,
0.00817117653787136,
-0.03610214218497276,
-0.0017328152898699045,
-0.019610824063420296,
-0.016762960702180862,
0.04121953621506691,
-0.02879408746957779,
-0.042271051555871964,
0.0719238817691803,
-0.05877989903092384,
-0.0054328469559550285,
0.04139478877186775,
-0.008092313073575497,
0.0015750874299556017,
-0.061829302459955215,
-0.004688021261245012,
0.030038384720683098,
0.00011432528117438778,
0.011330114677548409,
-0.0027054701931774616,
0.02038193866610527,
-0.00010528878920013085,
-0.022940633818507195,
0.08096694201231003,
0.0015312741743400693,
0.03042394295334816,
0.06701679527759552,
-0.0030910270288586617,
-0.06547456979751587,
-0.023150937631726265,
-0.02863636054098606,
-0.03683820739388466,
-0.03180844336748123,
0.0263405442237854,
0.0379948765039444,
-0.052120279520750046,
-0.009770361706614494,
-0.02830337919294834,
0.0021731387823820114,
-0.029705403372645378,
0.02041698805987835,
-0.004164452198892832,
0.03566401079297066,
0.020522139966487885,
0.028951816260814667,
-0.015685154125094414,
-0.02150355838239193,
-0.01637740433216095,
0.032649654895067215,
0.0251663476228714,
-0.06372203677892685,
-0.03191359341144562,
0.02259012684226036,
-0.01866445690393448,
0.023992152884602547,
0.05078835412859917,
0.0026331781409680843,
0.00927089061588049,
-0.06081283465027809,
-0.0070101250894367695,
-0.017350059002637863,
0.066491037607193,
0.027619892731308937,
0.028408531099557877,
0.046862684190273285,
0.030143536627292633,
-0.000918435922358185,
-0.024658113718032837,
-0.0029442524537444115,
-0.02329114079475403,
-0.012714614160358906,
-0.02842605672776699,
-0.04584621638059616,
-0.014721262268722057,
-0.030739396810531616,
-0.03722376376390457,
-0.030914651229977608,
0.041534990072250366,
0.016701621934771538,
0.011338877491652966,
-0.02450038678944111,
0.019803602248430252,
0.033981580287218094,
-0.0057614464312791824,
0.004473336040973663,
-0.004197312518954277,
0.07865360379219055,
-0.018261374905705452,
-0.012302769348025322,
0.02192416600883007,
-0.032772332429885864,
-0.008114219643175602,
-0.014730025082826614,
0.019698450341820717,
0.004937756806612015,
0.044444192200899124,
0.0026485128328204155,
-0.009840463288128376,
-0.016526369377970695,
-0.021766437217593193,
0.04721319302916527,
-0.014589822851121426,
0.025481803342700005,
-0.06288082152605057,
0.0021753294859081507,
-0.00846034474670887,
0.06084788590669632,
-0.0349104218184948,
-0.017683040350675583,
-0.02008400857448578,
-0.02558695524930954,
-0.06610547751188278,
-0.023431342095136642,
-0.007496452424675226,
-0.00893790926784277,
0.027234334498643875,
-0.011873398907482624,
-0.03599699214100838,
-0.011049709282815456,
-0.05818403512239456,
-0.05597584694623947,
0.01584288291633129,
-0.01883971132338047,
-0.007588460110127926,
-0.05352230370044708,
0.028899239376187325,
0.019312893971800804,
-0.0030077816918492317,
-0.03922164812684059,
0.0019146404229104519,
0.015571240335702896,
-0.02709413319826126,
0.006782295648008585,
-0.022362299263477325,
-0.014090350829064846,
-0.04454934224486351,
-0.03904639557003975,
0.007829433307051659,
0.027392063289880753,
0.03964225575327873,
0.013827471062541008,
0.018138697370886803,
-0.0567469596862793,
0.04591631889343262,
0.004284938797354698,
0.0377495214343071,
0.014931566081941128,
0.0012826337479054928,
0.033981580287218094,
0.03883609175682068,
-0.05913040414452553,
-0.04412873461842537,
0.005367126781493425,
-0.03308779001235962,
-0.015071768313646317,
0.011987313628196716,
-0.001130382646806538,
0.026480747386813164,
0.02083759568631649,
0.029319847002625465,
0.03263213112950325,
-0.020434513688087463,
0.00796087272465229,
0.014510958455502987,
-0.030108487233519554,
0.01563257910311222,
0.019891228526830673,
0.05085845664143562,
0.011452791281044483,
-0.01605318672955036,
-0.015623816289007664,
0.02846110798418522,
0.02737453766167164,
0.04472459852695465,
-0.0125831738114357,
0.08454210311174393,
-0.0028829139191657305,
-0.017867056652903557,
0.07563924789428711,
-0.02833843044936657,
0.06484365463256836,
0.004836986307054758,
0.0027164234779775143,
0.001384499715641141,
-0.004247697535902262,
0.02292310819029808,
0.0377495214343071,
0.006975074298679829,
0.02096027322113514,
0.01875208504498005,
0.027619892731308937,
0.05863969400525093,
0.003272852161899209,
-0.017139755189418793,
-0.0014940329128876328,
0.059200506657361984,
0.03210637345910072,
0.03901134431362152,
-0.074026919901371,
-0.02283548191189766,
-0.03617224469780922,
0.007373775355517864,
0.03236925229430199,
-0.035856787115335464,
0.030827024951577187,
-0.02858378365635872,
0.0405886247754097,
0.044409140944480896,
0.030476517975330353,
-0.0015115581918507814,
-0.007176615297794342,
0.042271051555871964,
0.04142984002828598,
0.02646322175860405,
-0.0398525595664978,
-0.014817651361227036,
0.0037569887936115265,
0.011312589049339294,
0.038906194269657135,
0.03166823834180832,
0.04654723033308983,
0.01950567215681076,
-0.026077665388584137,
-0.01799849607050419,
-0.009489956311881542,
-0.00021495891269296408,
0.03087959997355938,
0.010077054612338543,
0.028198227286338806
] |
729,694 | aiconfig_extension_groq.groq | initialize_openai_client | null | def initialize_openai_client(self) -> None:
# Initialize Groq Client
self.client = Groq(
api_key=os.getenv("GROQ_API_KEY"),
)
| (self) -> NoneType | [
-0.06803854554891586,
-0.061305757611989975,
-0.09268802404403687,
-0.017916692420840263,
-0.00826636515557766,
0.008359876461327076,
0.003151318058371544,
0.07088127732276917,
0.022087279707193375,
-0.02270445041358471,
0.006629924289882183,
0.016719752922654152,
0.02016095444560051,
0.031775008887052536,
-0.016130633652210236,
0.007120856549590826,
0.005311420187354088,
-0.006489657796919346,
-0.002198675414547324,
-0.08408501744270325,
0.0198243148624897,
-0.0039999294094741344,
-0.029549449682235718,
-0.005096345208585262,
0.014400681480765343,
0.07630491256713867,
-0.009496034123003483,
0.043239448219537735,
0.012296685948967934,
-0.013446870259940624,
-0.00438098656013608,
0.019338058307766914,
0.004222018178552389,
0.041144803166389465,
0.01217512134462595,
-0.024518562480807304,
0.01388637162744999,
-0.0208155307918787,
-0.061081331223249435,
0.003679654560983181,
0.010043072514235973,
-0.0024967414792627096,
0.02236781269311905,
-0.027997169643640518,
0.0053301225416362286,
0.01762680895626545,
-0.009986965917050838,
0.038601309061050415,
0.014035988599061966,
-0.00677019078284502,
-0.00043920910684391856,
0.0002511644852347672,
-0.012474356219172478,
0.05487220734357834,
-0.08692774921655655,
0.05442335456609726,
0.006442902144044638,
-0.0052319359965622425,
-0.06336300075054169,
-0.008724568411707878,
-0.05764013156294823,
-0.01806630939245224,
-0.01007112581282854,
-0.029474642127752304,
0.05838821828365326,
-0.02665061131119728,
-0.0555080808699131,
0.02025446482002735,
0.055358465760946274,
-0.021507510915398598,
0.038937948644161224,
0.0648217722773552,
-0.007401389069855213,
-0.045446306467056274,
0.025528481230139732,
0.04626920446753502,
-0.07952168583869934,
0.026164354756474495,
-0.04039671644568443,
-0.027791446074843407,
0.0036819924134761095,
0.03824596479535103,
-0.04106999561190605,
-0.047765377908945084,
-0.008303769864141941,
-0.02775404043495655,
0.006695381831377745,
0.004661519546061754,
0.07129272818565369,
-0.042005106806755066,
-0.010463871993124485,
0.04282800108194351,
-0.014035988599061966,
-0.003852649824693799,
0.0478401854634285,
-0.007275149691849947,
-0.03280363231897354,
-0.017477190122008324,
-0.00841598305851221,
0.012614622712135315,
-0.05120657756924629,
0.03613261878490448,
0.024312838912010193,
0.018589971587061882,
-0.011137150228023529,
-0.03781581670045853,
0.026183057576417923,
-0.03480476513504982,
0.06388665735721588,
0.0042968266643583775,
-0.04436158016324043,
-0.028782660141587257,
0.029474642127752304,
0.03665627911686897,
-0.01872088573873043,
-0.006882403511554003,
0.028894873335957527,
0.022498726844787598,
0.09328649193048477,
0.012296685948967934,
-0.05202947556972504,
0.0026019413489848375,
-0.016990933567285538,
0.0041472092270851135,
0.05135619640350342,
0.018552565947175026,
-0.01852451264858246,
0.026837633922696114,
0.028782660141587257,
-0.04185548797249794,
0.08116747438907623,
-0.011773024685680866,
-0.02248002588748932,
-0.0004912245203740895,
0.02401360496878624,
0.018197225406765938,
0.04507226496934891,
0.0467180535197258,
-0.004081751685589552,
0.038489095866680145,
-0.03130745515227318,
-0.02896968275308609,
-0.0018035918474197388,
-0.011464438401162624,
0.03325248137116432,
0.04174327477812767,
-0.04395013302564621,
-0.020123550668358803,
-0.005788325797766447,
-0.012923208996653557,
0.04926155135035515,
0.004018631763756275,
0.028707852587103844,
-0.029100598767399788,
-0.02696854993700981,
-0.05494701489806175,
-0.03890054300427437,
-0.07166676968336105,
0.05685463920235634,
0.003609521547332406,
-0.012801644392311573,
0.0679263323545456,
0.027379997074604034,
-0.04099518805742264,
-0.014971097931265831,
-0.000048508791223866865,
-0.040359314531087875,
-0.02554718405008316,
0.02092774398624897,
0.022760557010769844,
-0.026631910353899002,
-0.08468348532915115,
-0.05857523903250694,
-0.08902239799499512,
0.02775404043495655,
0.001774369738996029,
0.00012412112846504897,
0.011314821429550648,
-0.010342307388782501,
0.008439360186457634,
0.005091669503599405,
-0.0027001278940588236,
-0.04032190889120102,
-0.04798980429768562,
0.01684131659567356,
0.022442620247602463,
0.07623010128736496,
-0.00589586328715086,
0.027398699894547462,
0.002362319501116872,
-0.06190422922372818,
0.01206290815025568,
-0.004278124775737524,
-0.008799377828836441,
0.05356305465102196,
0.011960046365857124,
0.033645227551460266,
-0.0015768278390169144,
-0.044885240495204926,
0.06545764207839966,
-0.009827997535467148,
0.053263820707798004,
-0.0168506670743227,
-0.019693398848176003,
-0.0048859454691410065,
-0.02347123995423317,
-0.05475999414920807,
-0.029792578890919685,
0.031457073986530304,
-0.02304108999669552,
-0.05064551532268524,
-0.022835366427898407,
-0.048962317407131195,
-0.02135789394378662,
-0.00489997211843729,
0.007981156930327415,
0.0016446233494207263,
0.006340040359646082,
0.03615131974220276,
0.04582035169005394,
0.06437291949987411,
-0.011099746450781822,
0.0014295481378212571,
-0.08423463255167007,
-0.016691699624061584,
0.04043412208557129,
0.004923349712044001,
0.03213035315275192,
-0.03272882103919983,
-0.03811505064368248,
0.025154437869787216,
0.051281388849020004,
-0.010931426659226418,
-0.007120856549590826,
-0.044660814106464386,
-0.021638426929712296,
0.017103146761655807,
0.05685463920235634,
-0.08483310788869858,
-0.03798413649201393,
0.02171323634684086,
0.04769057035446167,
-0.03517880663275719,
0.022554833441972733,
-0.05719127878546715,
-0.0024406348820775747,
-0.04062114283442497,
-0.026145653799176216,
0.013512328267097473,
0.03388835862278938,
-0.0011653798865154386,
-0.07570643723011017,
-0.032223861664533615,
-0.013718051835894585,
-0.02059110440313816,
-0.00445813313126564,
0.03104562498629093,
-0.022087279707193375,
-0.029979601502418518,
-0.0034412017557770014,
0.004708274733275175,
0.04039671644568443,
-0.05509663373231888,
0.06261491030454636,
-0.029979601502418518,
0.030652878805994987,
0.07376141101121902,
0.011165203526616096,
0.027267783880233765,
-0.02281666360795498,
0.17430435121059418,
0.03192462772130966,
0.012885804288089275,
-0.04234174266457558,
-0.007457495667040348,
-0.03875092417001724,
-0.01201615296304226,
0.04106999561190605,
0.0016411166870966554,
0.0011349887354299426,
0.03373873978853226,
0.0035627661272883415,
0.05202947556972504,
0.026145653799176216,
-0.012483707629144192,
-0.02579031139612198,
-0.030147921293973923,
0.03901275619864464,
-0.015429302118718624,
-0.016448570415377617,
-0.00880405306816101,
0.018103713169693947,
0.0051337494514882565,
0.018309438601136208,
0.03358912095427513,
-0.0002872538461815566,
0.03600170463323593,
0.0648217722773552,
0.03779711201786995,
-0.020647211000323296,
0.04761575907468796,
0.04683026671409607,
-0.02466818131506443,
-0.010987533256411552,
-0.021881554275751114,
-0.016672996804118156,
0.012455654330551624,
-0.01537319552153349,
-0.045109666883945465,
-0.007106829900294542,
-0.05057070404291153,
-0.03631963953375816,
0.04881269857287407,
-0.009159394539892673,
-0.014353926293551922,
0.0038129077292978764,
0.04372570663690567,
-0.04548371210694313,
0.015363844111561775,
-0.014840182848274708,
-0.024481158703565598,
0.009809295646846294,
0.021956363692879677,
-0.009182772599160671,
-0.054909612983465195,
0.002681425539776683,
0.019880421459674835,
0.04469821974635124,
0.0025364835746586323,
-0.019880421459674835,
-0.027697933837771416,
0.0015324101550504565,
-0.006742137484252453,
0.007817513309419155,
0.04271578788757324,
0.0033593797124922276,
0.011529896408319473,
-0.02696854993700981,
-0.037741005420684814,
-0.04798980429768562,
-0.0337013341486454,
0.02620176039636135,
-0.013315955176949501,
0.0526653490960598,
0.0018784005660563707,
-0.008444036357104778,
-0.01354038156569004,
-0.08640409260988235,
0.017486542463302612,
-0.12478096783161163,
0.0015861790161579847,
0.05416152626276016,
0.03575857728719711,
0.01002437062561512,
0.05404931306838989,
-0.03366393223404884,
-0.009697082452476025,
0.0036890057381242514,
0.013091528788208961,
0.04297761991620064,
-0.037497878074645996,
-0.027941063046455383,
-0.018000852316617966,
0.039947863668203354,
-0.07892321795225143,
-0.01530773751437664,
0.020983850583434105,
-0.049523383378982544,
-0.01492434274405241,
0.03830207139253616,
0.00627925805747509,
-0.07795070111751556,
-0.04305242747068405,
0.06571947783231735,
-0.02113346755504608,
0.040695950388908386,
0.010173987597227097,
-0.019300654530525208,
-0.010314254090189934,
0.006985265761613846,
0.01696288026869297,
0.04503485932946205,
0.008364551700651646,
-0.020404081791639328,
-0.03510399907827377,
-0.055021826177835464,
-0.008196231909096241,
0.013493625447154045,
0.01696288026869297,
-0.022872770205140114,
0.030877305194735527,
-0.040920376777648926,
0.021002553403377533,
0.007817513309419155,
0.0396486297249794,
-0.04020969569683075,
0.004726977087557316,
-0.00564805930480361,
0.012567867524921894,
-0.007565033156424761,
0.009949562139809132,
-0.023882688954472542,
0.036057811230421066,
0.024873904883861542,
0.014054691419005394,
0.01618674024939537,
0.01730887033045292,
-0.00903315469622612,
0.06684160232543945,
-0.010454520583152771,
-0.051505815237760544,
-0.0034014596603810787,
-0.07982092350721359,
0.060632478445768356,
-0.04937376454472542,
0.00011783836816903204,
-0.006115613970905542,
0.032859738916158676,
0.006368093658238649,
0.06272712349891663,
-0.013241145759820938,
0.003602508222684264,
0.003871351946145296,
0.040695950388908386,
-0.0012518774019554257,
0.04271578788757324,
0.0013781171292066574,
0.012193824164569378,
0.060969118028879166,
-0.04750354588031769,
0.008556249551475048,
0.0770529955625534,
-0.009986965917050838,
-0.030540665611624718,
-0.018776992335915565,
0.08079343289136887,
-0.030821198597550392,
0.020441487431526184,
0.02491130866110325,
0.030783794820308685,
0.017234062775969505,
-0.08640409260988235,
0.0035627661272883415,
0.011819779872894287,
0.04746614396572113,
0.026463590562343597,
-0.022966282442212105,
0.06321337819099426,
0.08176594972610474,
0.008285067044198513,
0.014961747452616692,
0.04073335602879524,
0.014391330070793629,
0.00008525565499439836,
0.00018146962975151837,
-0.0037825165782123804,
-0.028782660141587257,
0.05715387314558029,
-0.0006300298264250159,
-0.09927119314670563,
0.01392377633601427,
0.026594504714012146,
0.010202040895819664,
-0.028389915823936462,
-0.014391330070793629,
0.08909720182418823,
0.047204311937093735,
0.0012086286442354321,
-0.05300198867917061,
-0.02586512081325054,
0.007462171372026205,
-0.01393312681466341,
0.030708985403180122,
-0.0227979626506567,
0.03946160897612572,
-0.012240579351782799,
0.0025668747257441282,
0.05101955682039261,
-0.00528336688876152,
-0.011202608235180378,
0.00627925805747509,
-0.0043459199368953705,
0.01827203296124935,
0.009697082452476025,
-0.006765515077859163,
-0.0005064200959168375,
-0.06493398547172546,
-0.0321490541100502,
-0.011754322797060013,
-0.007985832169651985,
-0.00550779327750206,
0.05629357323050499,
-0.04937376454472542,
-0.02126438356935978,
0.039947863668203354,
0.03317767381668091,
0.0515432171523571,
0.00564805930480361,
-0.015055257827043533,
0.02004874125123024,
-0.0014050016179680824,
0.03401927277445793,
-0.054236333817243576,
0.060632478445768356,
0.020198358222842216,
-0.03162539377808571,
-0.033102866262197495,
-0.015812696889042854,
-0.05356305465102196,
0.009117314592003822,
-0.02214338630437851,
0.0049841320142149925,
0.034973084926605225,
-0.061417970806360245,
-0.015485407784581184,
-0.009117314592003822,
-0.04353868588805199,
-0.00393914757296443,
-0.07862398028373718,
-0.04039671644568443,
0.005704165901988745,
0.01683196611702442,
-0.007915698923170567,
0.010473223403096199,
-0.035403233021497726,
-0.01404534000903368,
0.02248002588748932,
0.006545764394104481,
0.016270900145173073,
0.01128676813095808,
0.018964014947414398,
-0.01576594077050686,
-0.01332530565559864,
0.02092774398624897,
0.0040513607673347,
0.03504789248108864,
-0.007064749952405691,
-0.03334599360823631,
0.01228733453899622,
-0.027361294254660606,
0.038283370435237885,
0.047092098742723465,
-0.05318900942802429,
-0.021993767470121384,
0.0067468127235770226,
0.01300736889243126,
0.01641116663813591,
0.026837633922696114,
-0.010314254090189934,
-0.0021858178079128265,
0.03349561244249344,
-0.002079449128359556,
0.014886938035488129,
-0.003981227520853281,
-0.05670502036809921,
-0.04065854847431183,
0.048962317407131195,
-0.0940345823764801,
0.027379997074604034,
-0.01730887033045292,
0.03532842546701431,
-0.01091272383928299,
-0.12418249994516373,
0.02599603496491909,
-0.01608387753367424,
0.009089261293411255,
-0.0011139488779008389,
0.09440862387418747,
0.015681780874729156,
0.014035988599061966,
0.035982999950647354,
-0.06874922662973404,
-0.0013301927829161286,
0.03095211461186409,
-0.0504210889339447,
0.007434118073433638,
-0.06497138738632202,
0.001042646705172956,
0.01596231386065483,
0.01595296338200569,
0.024088412523269653,
-0.0022337420377880335,
-0.02092774398624897,
-0.006985265761613846,
-0.00043541021295823157,
0.03007311187684536,
0.021189574152231216,
0.025266651064157486,
0.02973647229373455,
-0.035421937704086304,
-0.024368945509195328,
0.003992916084825993,
-0.0009649157873354852,
-0.04903712496161461,
-0.029680365696549416,
-0.0002960205019917339,
0.06205384433269501,
-0.05217909440398216,
0.025958631187677383,
-0.009173421189188957,
0.019861718639731407,
0.032859738916158676,
0.010501276701688766,
0.025640694424510002,
-0.027997169643640518,
0.017926042899489403,
-0.06972174346446991,
0.04798980429768562,
0.03471125289797783,
-0.0076398421078920364,
-0.024836501106619835,
-0.04211731627583504,
-0.050271470099687576,
-0.03923718258738518,
-0.07099349051713943,
-0.018646078184247017,
0.003717059036716819,
0.0436134934425354,
0.053039394319057465,
0.0045493063516914845,
0.028389915823936462,
-0.07005838304758072,
-0.002123866695910692,
0.0341314859688282,
-0.03261660784482956,
-0.03603910654783249,
0.04406234622001648,
-0.08430944383144379,
-0.0424913614988327,
0.036731090396642685,
0.04810201749205589,
-0.013072826899588108,
-0.011595354415476322,
-0.019805612042546272,
0.03162539377808571,
0.0003725825808942318,
0.04241655394434929,
0.04877529665827751,
0.00919212307780981,
0.0010853110579773784,
-0.044548600912094116,
0.02070331759750843,
0.03790932521224022,
0.03295324742794037,
0.006120289675891399,
-0.0014763036742806435,
-0.08386059105396271,
0.010108530521392822,
-0.004231369122862816,
-0.06643015891313553,
0.014952396042644978,
0.027024656534194946,
-0.004369297530502081,
0.005428309086710215,
-0.06044545769691467,
-0.018421651795506477,
-0.014727969653904438,
-0.018795695155858994,
-0.006246529519557953,
0.001935675973072648,
-0.0008901070686988533,
0.073948435485363,
0.037834517657756805,
0.04623179882764816,
-0.047204311937093735,
-0.05184245482087135,
0.035403233021497726,
-0.048401251435279846,
0.023639559745788574,
0.061754610389471054,
0.0032798955217003822,
0.01948767527937889,
-0.007448144722729921,
0.05311420187354088,
0.012642676010727882,
0.035403233021497726,
0.04398753494024277,
0.029343726113438606,
0.044660814106464386,
0.0042009782046079636,
-0.01040776539593935,
0.05191726237535477,
-0.043688300997018814,
-0.03328988701105118,
0.02347123995423317,
-0.02853953279554844,
0.016327006742358208,
0.005615330766886473,
-0.0004216757952235639,
0.00020937679801136255,
-0.0067468127235770226,
0.022517429664731026,
-0.00666265282779932,
0.013914424926042557,
0.012044206261634827,
-0.05629357323050499,
-0.03136356174945831,
-0.07147974520921707,
-0.059547752141952515,
0.03759139031171799,
0.0478401854634285,
-0.019786911085247993,
-0.03018532507121563,
0.023639559745788574,
-0.0407707616686821,
0.015214226208627224,
-0.03517880663275719,
0.03886313736438751,
-0.028801362961530685,
-0.04144404083490372,
0.039386797696352005,
-0.0405089296400547,
-0.0478401854634285,
-0.04716690629720688,
0.024088412523269653,
0.01675715669989586,
0.009388496167957783,
0.05651799961924553,
-0.06313857436180115,
-0.0023740085307508707,
0.0022746531758457422,
0.03566506505012512,
0.0065644667483866215,
-0.03863871097564697,
0.10735053569078445,
-0.0041518849320709705,
-0.015232929028570652,
-0.023751772940158844,
-0.043015021830797195,
-0.0013068150728940964,
-0.011099746450781822,
-0.06874922662973404,
-0.038171157240867615,
-0.019020121544599533,
0.020983850583434105,
-0.02259223721921444,
0.01239954773336649,
-0.0009894623653963208,
0.04032190889120102,
-0.014886938035488129,
-0.012633325532078743,
-0.004236044827848673,
0.001271748449653387,
-0.022629642859101295,
0.0032822333741933107,
0.00415656017139554,
0.02466818131506443,
-0.08842392265796661,
-0.03385095298290253,
0.034299805760383606,
-0.013577785342931747,
0.041369229555130005,
0.07690338045358658,
0.018103713169693947,
-0.014410032890737057,
-0.01289515569806099,
-0.04806461185216904,
0.0566302128136158,
-0.004359946586191654,
-0.008060641586780548,
-0.007420091424137354,
-0.012493059039115906,
0.026164354756474495,
-0.021731937304139137,
0.052814967930316925,
0.003992916084825993,
0.043463874608278275,
-0.04679286479949951
] |
729,695 | aiconfig.default_parsers.parameterized_model_parser | resolve_prompt_template |
Resolves a templated string with the provided parameters (applied from the AIConfig as well as passed in params).
Args:
prompt_template (str): The template string to resolve.
prompt (Prompt): The prompt object that the template string belongs to (if any).
ai_config (AIConfigRuntime): The AIConfig that the template string belongs to (if any).
params (dict): Optional parameters resolve the template string with.
Returns:
str: The resolved string.
| def resolve_prompt_template(
prompt_template: str,
prompt: Prompt,
ai_config: "AIConfigRuntime",
params: Optional[JSONObject] = {},
):
"""
Resolves a templated string with the provided parameters (applied from the AIConfig as well as passed in params).
Args:
prompt_template (str): The template string to resolve.
prompt (Prompt): The prompt object that the template string belongs to (if any).
ai_config (AIConfigRuntime): The AIConfig that the template string belongs to (if any).
params (dict): Optional parameters resolve the template string with.
Returns:
str: The resolved string.
"""
return resolve_prompt_string(
prompt, params, ai_config, prompt_template
)
| (prompt_template: str, prompt: aiconfig.schema.Prompt, ai_config: 'AIConfigRuntime', params: Optional[Dict[str, Any]] = {}) | [
0.034879740327596664,
-0.013875006698071957,
0.003842275822535157,
-0.11330672353506088,
0.02221049554646015,
-0.0029357695020735264,
0.0015814710641279817,
0.007522909436374903,
0.0494537390768528,
-0.07444272935390472,
0.033901147544384,
0.05703780800104141,
-0.08073366433382034,
0.01352551020681858,
-0.09121855348348618,
-0.01252070814371109,
0.054451536387205124,
0.06210550665855408,
-0.046762615442276,
-0.03217114135622978,
0.03288760781288147,
-0.03267791122198105,
-0.0389338955283165,
0.022909488528966904,
0.02278716489672661,
-0.04969838634133339,
0.044386040419340134,
-0.03430306911468506,
-0.03363902494311333,
0.03708156570792198,
0.009436402469873428,
-0.0042420122772455215,
0.045189883559942245,
0.05291375145316124,
-0.019414523616433144,
-0.014547786675393581,
-0.006854497827589512,
0.03697671741247177,
-0.06937503069639206,
-0.08059386163949966,
-0.038165003061294556,
0.03645247220993042,
0.003180416999384761,
-0.007238943595439196,
-0.030580934137105942,
-0.01628653146326542,
-0.0139711182564497,
-0.03568357974290848,
-0.019798969849944115,
0.007671445608139038,
0.03489721193909645,
-0.038304802030324936,
-0.025093840435147285,
0.040926024317741394,
-0.02497151680290699,
0.030318811535835266,
-0.03379629924893379,
-0.003682818030938506,
-0.005591941997408867,
-0.06965462863445282,
-0.019344624131917953,
-0.014399250969290733,
-0.05340304598212242,
0.012276059947907925,
-0.03341185301542282,
-0.051026470959186554,
0.015229304321110249,
-0.02193089760839939,
-0.010650902055203915,
-0.0975094884634018,
-0.028798501938581467,
0.00357141625136137,
-0.01843593455851078,
-0.07028371840715408,
0.058295994997024536,
-0.051445867866277695,
0.01267798151820898,
-0.00484052486717701,
0.01729133352637291,
-0.025653034448623657,
-0.003455645404756069,
-0.02451717108488083,
-0.04054158180952072,
-0.04938383772969246,
-0.007789400406181812,
-0.012503232806921005,
-0.0002084691368509084,
-0.00408037006855011,
0.0538923405110836,
-0.007457378786057234,
0.04354725033044815,
-0.07059826701879501,
0.006024444010108709,
0.0406813770532608,
0.018488358706235886,
0.05095657333731651,
0.045294731855392456,
-0.02310171164572239,
0.061266716569662094,
-0.004635195713490248,
0.019257251173257828,
-0.01476622186601162,
-0.07507181912660599,
0.014102178625762463,
-0.022437667474150658,
-0.01791168935596943,
0.033464279025793076,
0.03026638738811016,
0.06451702862977982,
0.0015727337449789047,
-0.05200506001710892,
-0.038339752703905106,
-0.04697231203317642,
-0.01649622991681099,
0.03938824310898781,
0.04969838634133339,
0.004014839883893728,
-0.008064628578722477,
0.07402333617210388,
-0.02334635891020298,
-0.029375171288847923,
-0.013761419802904129,
-0.007771925535053015,
-0.025495760142803192,
0.042009465396404266,
0.013639096170663834,
-0.05280890315771103,
-0.06420248746871948,
-0.04064643010497093,
-0.018418459221720695,
-0.013630358502268791,
-0.0018610681872814894,
-0.02331140823662281,
0.02479676902294159,
-0.022367767989635468,
0.04061147943139076,
-0.048335351049900055,
0.0017999063711613417,
0.028990725055336952,
0.07248555123806,
0.054870933294296265,
0.04043672978878021,
-0.03722136467695236,
-0.013813844881951809,
-0.0009540158789604902,
-0.024919092655181885,
0.05577962100505829,
0.011218833737075329,
0.00792046170681715,
-0.002872423268854618,
0.007977254688739777,
-0.03561368212103844,
-0.09170784801244736,
0.03938824310898781,
0.01628653146326542,
0.019239775836467743,
0.020567862316966057,
-0.0057535842061042786,
0.02462201938033104,
-0.029252847656607628,
0.03248568996787071,
-0.01757092960178852,
0.014809909276664257,
0.04966343566775322,
-0.0012811226770281792,
-0.03175174444913864,
0.029899414628744125,
0.028588803485035896,
0.029217896983027458,
-0.051131319254636765,
-0.03479236364364624,
-0.009366502985358238,
-0.0542418397963047,
-0.04242886230349541,
0.057666901499032974,
-0.0071559385396540165,
0.018173811957240105,
-0.038269855082035065,
-0.020760085433721542,
-0.029794566333293915,
-0.034844789654016495,
-0.029584867879748344,
-0.01843593455851078,
0.0034141428768634796,
0.002431184286251664,
0.017789365723729134,
0.04291815683245659,
0.05008283257484436,
-0.02137170359492302,
-0.005648735444992781,
-0.05976388230919838,
-0.021983321756124496,
-0.03119255229830742,
0.061266716569662094,
0.004897317849099636,
-0.04976828396320343,
0.022437667474150658,
0.026054956018924713,
-0.05556992441415787,
-0.02539091184735298,
-0.0047706253826618195,
-0.017885476350784302,
0.0073306867852807045,
-0.0006629509734921157,
0.0419745147228241,
-0.0031236237846314907,
0.025338487699627876,
-0.04239391162991524,
-0.038199953734874725,
-0.044980183243751526,
-0.04683251678943634,
-0.026718998327851295,
0.02539091184735298,
-0.034460343420505524,
-0.042044416069984436,
0.07297484576702118,
0.0342506468296051,
0.027208292856812477,
-0.008567029610276222,
-0.0177107285708189,
0.031384773552417755,
-0.029794566333293915,
0.08269084244966507,
-0.013499298132956028,
0.012345959432423115,
-0.016898149624466896,
-0.028833450749516487,
0.04885959252715111,
-0.007946673780679703,
0.021738674491643906,
0.027959709987044334,
-0.03108770214021206,
0.07409323006868362,
0.009357765316963196,
0.01805148832499981,
-0.02790728583931923,
0.014600211754441261,
-0.04389674589037895,
0.013796369545161724,
0.07290494441986084,
-0.04864989593625069,
0.0674528032541275,
0.010109182447195053,
0.0028374737594276667,
-0.0066316938027739525,
-0.011411056853830814,
-0.011044085957109928,
-0.019239775836467743,
-0.02058533765375614,
-0.07549121975898743,
0.020882409065961838,
0.04697231203317642,
0.009226704016327858,
-0.000847528746817261,
-0.012704193592071533,
0.012013938277959824,
0.057282455265522,
-0.005674947518855333,
0.021913422271609306,
0.025530710816383362,
-0.02383565343916416,
0.03701166808605194,
-0.055255379527807236,
-0.002570982789620757,
-0.013840056955814362,
-0.05875034257769585,
-0.10701578855514526,
0.0749320238828659,
-0.061057016253471375,
0.0037243207916617393,
0.07688920199871063,
0.06339864432811737,
0.051480818539857864,
-0.02030573971569538,
0.0166010782122612,
-0.007064195815473795,
0.06413258612155914,
0.05245940759778023,
0.014713797718286514,
-0.026194753125309944,
-0.04924403876066208,
0.00546524953097105,
0.0158409234136343,
0.009497564285993576,
0.04277835786342621,
-0.02327645942568779,
-0.01437303889542818,
-0.013394448906183243,
0.01950189843773842,
0.04316280409693718,
0.015203092247247696,
0.0115159060806036,
-0.01400606706738472,
0.024062825366854668,
-0.05036242678761482,
0.0011162040755152702,
-0.008444705978035927,
-0.028990725055336952,
0.02261241525411606,
-0.05081677436828613,
0.055255379527807236,
-0.02462201938033104,
-0.03206629306077957,
0.003586706705391407,
-0.0589250884950161,
0.0011413241736590862,
-0.01953684724867344,
-0.0419745147228241,
0.029375171288847923,
-0.006793336011469364,
0.02306676097214222,
-0.018698057159781456,
0.04305795580148697,
-0.0029030044097453356,
0.011795503087341785,
0.046762615442276,
-0.0004827418888453394,
-0.025128789246082306,
0.05039737746119499,
-0.033883675932884216,
-0.0025382174644619226,
0.05937943607568741,
0.009654837660491467,
0.016400117427110672,
-0.051166269928216934,
-0.01757092960178852,
-0.048160601407289505,
0.009523776359856129,
0.03377882391214371,
0.0099955964833498,
-0.029899414628744125,
0.04117067530751228,
0.004025761503726244,
-0.03236336633563042,
0.022804638370871544,
0.024324947968125343,
0.0030537245329469442,
-0.011288733221590519,
-0.010441204532980919,
-0.045294731855392456,
0.04889454320073128,
-0.001897110021673143,
0.05686306208372116,
0.01618168316781521,
0.04047168046236038,
0.004613352008163929,
-0.0011850111186504364,
0.010283931158483028,
0.02511131577193737,
-0.04697231203317642,
-0.07304474711418152,
-0.005412825383245945,
0.051690515130758286,
-0.020323215052485466,
-0.013840056955814362,
0.020008668303489685,
-0.00883788987994194,
0.0281169842928648,
-0.025722933933138847,
-0.010336355306208134,
-0.07905608415603638,
-0.014809909276664257,
-0.004975954536348581,
-0.041834715753793716,
-0.020043617114424706,
0.008208796381950378,
0.021913422271609306,
0.061686109751462936,
-0.00868061650544405,
0.02292696200311184,
-0.02458707056939602,
-0.029060624539852142,
-0.009086905978620052,
-0.014521574601531029,
-0.03384872525930405,
-0.0068457601591944695,
-0.008999532088637352,
-0.01939704827964306,
-0.04613352194428444,
-0.009602413512766361,
0.06283944845199585,
0.0044670007191598415,
0.008501499891281128,
0.009069430641829967,
-0.005875907838344574,
-0.038339752703905106,
-0.021074632182717323,
0.033044882118701935,
0.008942738175392151,
-0.020358163863420486,
0.0026277760043740273,
-0.07605041563510895,
0.06248995289206505,
-0.011909089051187038,
0.011384844779968262,
-0.029794566333293915,
0.018837854266166687,
0.020777558907866478,
-0.02327645942568779,
0.05368264392018318,
0.0033442433923482895,
-0.033883675932884216,
0.06325884163379669,
-0.014469150453805923,
0.012118786573410034,
0.033429328352212906,
0.07975507527589798,
0.05633881688117981,
-0.04707716405391693,
-0.006788967177271843,
-0.030144061893224716,
0.00378329842351377,
-0.027330616489052773,
-0.04260360822081566,
-0.03938824310898781,
0.07744839787483215,
-0.07688920199871063,
0.01843593455851078,
-0.04966343566775322,
0.009086905978620052,
-0.0034884107299149036,
-0.06273460388183594,
-0.025600610300898552,
0.06011337786912918,
0.023224035277962685,
0.04274340718984604,
0.0035320979077368975,
0.011009136214852333,
-0.031419724225997925,
-0.040960974991321564,
-0.035264186561107635,
0.00756659684702754,
0.03129740059375763,
-0.05235455930233002,
0.027417991310358047,
-0.006972452625632286,
0.023381307721138,
0.0336739756166935,
-0.010511104017496109,
0.017335020005702972,
0.07514172047376633,
0.030004264786839485,
0.0430230051279068,
0.04581897705793381,
-0.06717320531606674,
0.041345421224832535,
-0.06650916486978531,
-0.05067697539925575,
-0.09653089940547943,
0.04658786579966545,
0.0433725006878376,
0.006815179251134396,
0.019030077382922173,
0.010808175429701805,
-0.022507566958665848,
-0.051690515130758286,
0.021004732698202133,
0.048020802438259125,
-0.07094776630401611,
0.015893347561359406,
-0.033149730414152145,
0.06262975186109543,
0.08073366433382034,
-0.0006001508445478976,
-0.015552588738501072,
-0.05071192607283592,
-0.04634321853518486,
0.014084704220294952,
-0.04386179521679878,
0.03991248831152916,
-0.04022703319787979,
-0.007199625484645367,
-0.01868058182299137,
0.07702900469303131,
0.016024408861994743,
-0.029252847656607628,
0.027522839605808258,
0.032520636916160583,
-0.0037876670248806477,
0.03400599956512451,
-0.03175174444913864,
-0.06706835329532623,
0.004678882658481598,
0.07653971016407013,
0.03596317768096924,
-0.03204881772398949,
0.027330616489052773,
-0.010414992459118366,
-0.06402773410081863,
0.002717334311455488,
-0.028309207409620285,
0.08045406639575958,
0.04379189759492874,
0.016994262114167213,
-0.007448641583323479,
-0.011148934252560139,
0.028781026601791382,
0.002337257144972682,
0.029375171288847923,
-0.030947905033826828,
0.007815612480044365,
-0.02684132196009159,
0.030720731243491173,
0.015893347561359406,
0.03540398180484772,
0.008890314027667046,
0.03236336633563042,
0.0419745147228241,
-0.014652635902166367,
0.028064560145139694,
-0.02888587675988674,
-0.02773253805935383,
0.05885519087314606,
-0.027155868709087372,
-0.010039283894002438,
-0.011323682963848114,
0.016767088323831558,
-0.06297925114631653,
-0.03419822081923485,
-0.007208362687379122,
-0.012957578524947166,
0.026229703798890114,
-0.025513235479593277,
-0.037710659205913544,
0.05654851347208023,
-0.001589116407558322,
0.07542131841182709,
0.0033879305701702833,
-0.012083837762475014,
0.02476181834936142,
0.017308808863162994,
0.04382684454321861,
0.025198688730597496,
-0.03900379687547684,
0.01384879369288683,
0.012503232806921005,
-0.05703780800104141,
-0.024080300703644753,
-0.011926564387977123,
0.0048317876644432545,
-0.03217114135622978,
0.0433725006878376,
-0.018925229087471962,
0.016819512471556664,
0.07905608415603638,
-0.041450269520282745,
-0.002370022237300873,
0.041135724633932114,
-0.018121387809515,
-0.011079035699367523,
-0.011821715161204338,
-0.048090703785419464,
-0.019065028056502342,
0.01497592031955719,
-0.10631679743528366,
-0.028623754158616066,
-0.0033639026805758476,
0.0037155833560973406,
-0.010729539208114147,
0.04588887467980385,
0.0057929023168981075,
0.0006427456974051893,
-0.0232065599411726,
0.014154603704810143,
0.041869666427373886,
0.017203958705067635,
0.011009136214852333,
-0.00568805355578661,
-0.0011784581001847982,
0.03970278799533844,
0.024884141981601715,
0.005089540965855122,
0.02528606355190277,
-0.019327150657773018,
-0.030580934137105942,
-0.024220099672675133,
0.0392833948135376,
-0.00930534116923809,
0.06329379230737686,
0.051061421632766724,
0.0142332399263978,
-0.0009458246058784425,
0.0061074490658938885,
-0.02383565343916416,
0.023503631353378296,
0.06608976423740387,
0.03722136467695236,
0.03430306911468506,
-0.002389681525528431,
-0.016819512471556664,
-0.06238510459661484,
0.021738674491643906,
0.030773155391216278,
0.031384773552417755,
0.03743106126785278,
0.05008283257484436,
0.03030133619904518,
0.03556125611066818,
-0.023433731868863106,
-0.09429412335157394,
-0.07877648621797562,
0.01670592650771141,
-0.017212696373462677,
0.0643073320388794,
0.047636356204748154,
-0.07339423894882202,
-0.029829515144228935,
-0.004327202215790749,
-0.0016054989537224174,
0.02691122144460678,
0.06262975186109543,
-0.01649622991681099,
-0.0028112614527344704,
0.029147997498512268,
0.027784962207078934,
0.015072030946612358,
-0.007933568209409714,
0.012407121248543262,
-0.0031214396003633738,
-0.01322843786329031,
-0.027994660660624504,
0.014294401742517948,
-0.041240572929382324,
0.015517638996243477,
-0.024849193170666695,
0.07584071159362793,
-0.016103046014904976,
-0.038234904408454895,
-0.04700726270675659,
-0.005342925898730755,
0.020620286464691162,
-0.02161635085940361,
-0.02458707056939602,
0.04864989593625069,
-0.019414523616433144,
0.023154135793447495,
0.045119982212781906,
-0.005172546487301588,
-0.0332021564245224,
0.020165940746665,
-0.03563115745782852,
-0.018173811957240105,
-0.01684572547674179,
0.009331553243100643,
0.005862801801413298,
-0.00805589184165001,
0.014757485128939152,
-0.044910285621881485,
0.0017999063711613417,
0.051480818539857864,
0.009899484924972057,
0.0177107285708189,
-0.0041175042279064655,
0.022297868505120277,
0.04428119212388992,
0.04040178284049034,
0.0007890972774475813,
-0.011175146326422691,
0.009812111034989357,
0.026858797296881676,
0.007671445608139038,
-0.004792469087988138,
-0.006950609385967255,
0.00899079442024231,
-0.0032131823245435953,
-0.012031412683427334,
-0.05343799665570259,
-0.04368704929947853,
-0.019012603908777237,
0.00890342053025961,
0.014940970577299595,
-0.058505695313215256,
0.027540314942598343,
-0.026509299874305725,
0.013307075016200542,
0.004139347933232784,
-0.031000329181551933,
0.02348615601658821,
0.00048683752538636327,
0.006710330490022898,
0.04662281647324562,
-0.051550716161727905,
-0.006618587765842676,
0.00698555912822485,
0.007514172233641148,
-0.03274781256914139,
0.06074247136712074,
0.01826118677854538,
-0.020969782024621964,
0.009270391426980495,
-0.01632148027420044,
0.02635202743113041,
-0.02504141628742218,
0.003171679563820362,
0.03419822081923485,
-0.09205734729766846,
-0.051970113068819046,
0.026858797296881676,
0.015185617841780186,
-0.011664441786706448,
0.04616847261786461,
0.024324947968125343,
-0.0007060919306240976,
-0.02670152299106121,
-0.023923026397824287,
-0.002158140065148473,
0.015473952516913414,
-0.00037652775063179433,
-0.04235896095633507,
0.014338089153170586,
0.0029204790480434895,
-0.030685782432556152,
0.06259480118751526,
-0.011716865934431553,
0.02009604126214981,
0.044211290776729584,
-0.00859324261546135,
0.03725631535053253,
0.014477887190878391,
-0.022175544872879982,
0.02376575395464897,
-0.005299238953739405,
-0.0019768388010561466,
-0.02666657418012619,
0.05745720490813255,
0.012651768513023853,
-0.058226097375154495,
-0.022280395030975342,
0.058505695313215256,
0.017422394827008247,
-0.029095573350787163,
0.00468762032687664,
-0.07486212253570557,
0.00041584609425626695,
0.04721695929765701,
0.014084704220294952,
0.015203092247247696,
0.00018635256856214255,
-0.01712532341480255,
0.017448605969548225,
-0.02289201319217682,
0.047881003469228745,
-0.038234904408454895,
-0.033883675932884216,
0.04560927674174309,
0.017553456127643585,
0.004569665063172579,
-0.04728686064481735,
0.0024814242497086525,
-0.025513235479593277,
0.03105275332927704,
0.04333755001425743,
0.014521574601531029,
-0.01978149451315403,
0.06200065836310387,
-0.0437219962477684,
0.05217980965971947,
0.055045679211616516,
-0.05759700387716293,
0.03535155951976776,
-0.031210027635097504,
-0.0005321628414094448,
0.09722989052534103,
-0.0143206138163805,
-0.04218421131372452,
-0.08010456711053848,
-0.027435466647148132,
-0.020428063347935677
] |
729,696 | aiconfig.default_parsers.parameterized_model_parser | run | null | @abstractmethod
async def run_inference(self) -> List[Output]:
pass
| (self, prompt: aiconfig.schema.Prompt, aiconfig: aiconfig.schema.AIConfig, options: Optional[aiconfig.model_parser.InferenceOptions] = None, parameters: Dict = {}, run_with_dependencies: Optional[bool] = False) -> List[Union[aiconfig.schema.ExecuteResult, aiconfig.schema.Error]] | [
0.007228159345686436,
-0.07212400436401367,
-0.06545569002628326,
0.017699245363473892,
-0.03851700574159622,
0.022576075047254562,
-0.0342705138027668,
-0.04037484526634216,
0.01635562814772129,
-0.003578830510377884,
0.04697681590914726,
0.027369966730475426,
-0.008468101732432842,
0.028813108801841736,
-0.0023927984293550253,
0.009720484726130962,
0.017997825518250465,
0.06658366322517395,
-0.034734975546598434,
-0.004553366918116808,
-0.058455612510442734,
0.022841481491923332,
0.007734088692814112,
-0.011793967336416245,
0.021945735439658165,
0.03378946706652641,
0.0224101971834898,
-0.06140825152397156,
-0.013461046852171421,
0.009654133580625057,
-0.07099603116512299,
-0.011744203977286816,
-0.0061623891815543175,
0.04953134432435036,
0.0006940981838852167,
0.01925850287079811,
-0.029592739418148994,
0.09076876193284988,
-0.12620042264461517,
0.004810479003936052,
0.0025648975279182196,
-0.08751753717660904,
0.04598154127597809,
0.024301212280988693,
-0.051223304122686386,
-0.031450580805540085,
0.003860824042931199,
-0.0323297344148159,
-0.011727615259587765,
-0.029692266136407852,
-0.026938682422041893,
-0.025213545188307762,
0.005888689775019884,
0.07630414515733719,
0.020618706941604614,
0.05722811073064804,
0.005337143316864967,
-0.034734975546598434,
0.02083434909582138,
0.007335980422794819,
-0.0015862139407545328,
-0.017865123227238655,
0.02426803670823574,
0.01601557619869709,
0.014083091169595718,
0.005515462718904018,
-0.034237340092659,
0.019407793879508972,
-0.00915649812668562,
0.03189845010638237,
0.016786912456154823,
-0.034071460366249084,
0.019606849178671837,
0.03662599250674248,
0.06794386357069016,
-0.00556937325745821,
0.019076036289334297,
0.0021045845933258533,
0.026059525087475777,
-0.03775396570563316,
-0.010964574292302132,
0.058853719383478165,
-0.05606696009635925,
-0.04103836044669151,
-0.026822566986083984,
-0.023272765800356865,
0.02529648318886757,
-0.045019447803497314,
-0.04498627036809921,
-0.027784662321209908,
-0.05726128816604614,
0.019042860716581345,
-0.03339136019349098,
0.08459807932376862,
-0.006249475758522749,
0.016629327088594437,
-0.02927757054567337,
-0.09647498279809952,
-0.0843326672911644,
-0.047408100217580795,
-0.009222849272191525,
0.1027783676981926,
0.026142464950680733,
-0.018628165125846863,
0.009355551563203335,
-0.03126811236143112,
-0.025346247479319572,
0.01016006339341402,
-0.03443639352917671,
0.039213698357343674,
-0.06900548934936523,
0.08207672089338303,
-0.046711407601833344,
0.024632969871163368,
-0.029061928391456604,
0.042929377406835556,
-0.015294005163013935,
-0.02345523051917553,
-0.004586542956531048,
0.042630795389413834,
-0.0012492730747908354,
0.05049344152212143,
-0.026208816096186638,
-0.04156917333602905,
-0.01060793548822403,
0.053081147372722626,
0.023952867835760117,
0.03848383203148842,
-0.0014752825954928994,
-0.05722811073064804,
-0.007174248807132244,
0.0007842946797609329,
-0.002432194771245122,
0.0803515836596489,
0.01628098264336586,
0.06101014092564583,
0.025246720761060715,
-0.045948367565870285,
-0.018230056390166283,
-0.0001689888013061136,
0.0033901433926075697,
0.006087744142860174,
0.09846552461385727,
0.02730361372232437,
-0.027071384713053703,
0.018263231962919235,
-0.0382184237241745,
-0.04229903966188431,
0.007240599952638149,
-0.0027826132718473673,
0.008733507245779037,
0.0008750095148570836,
-0.012416011653840542,
-0.02149786427617073,
-0.00014164476306177676,
0.035398490726947784,
0.035929299890995026,
-0.008741801604628563,
-0.0057684276252985,
-0.04273032397031784,
-0.10125228762626648,
-0.053976889699697495,
0.037223152816295624,
-0.005100766196846962,
-0.001581030199304223,
0.02493155002593994,
-0.024234861135482788,
-0.008799858391284943,
-0.027204087004065514,
0.060578856617212296,
0.00034678992233239114,
-0.031566694378852844,
-0.03984403610229492,
-0.02096705324947834,
0.054640404880046844,
0.014265557751059532,
0.020486004650592804,
0.05510486289858818,
0.0013519104104489088,
0.07617144286632538,
0.0098863635212183,
-0.05994851887226105,
-0.09017159789800644,
-0.03349088504910469,
0.02187938429415226,
0.060711562633514404,
-0.01035911776125431,
0.0263581071048975,
0.02070164680480957,
0.004868536256253719,
-0.028896048665046692,
0.021696917712688446,
0.03005719929933548,
0.00948825478553772,
0.01871110312640667,
-0.05848878622055054,
-0.031085645779967308,
0.0882474035024643,
-0.0032325589563697577,
-0.041336942464113235,
0.037355855107307434,
0.019606849178671837,
0.061773184686899185,
0.017865123227238655,
-0.04591519013047218,
0.028315473347902298,
-0.008799858391284943,
0.015368650667369366,
-0.04057390242815018,
-0.0408724807202816,
0.0030770476441830397,
-0.011520267464220524,
0.03136764094233513,
0.022907832637429237,
0.04505262151360512,
-0.028033480048179626,
0.059550411999225616,
-0.007953877560794353,
0.005063443910330534,
-0.008061698637902737,
0.08459807932376862,
-0.0005043745622970164,
-0.023654285818338394,
-0.011122158728539944,
-0.0001490315335104242,
-0.006195565219968557,
0.012067667208611965,
-0.01694449782371521,
-0.027983715757727623,
-0.08220942318439484,
-0.0015022378647699952,
-0.04243174195289612,
0.011951551772654057,
-0.00032812857534736395,
-0.019042860716581345,
0.05838926136493683,
-0.009654133580625057,
-0.012606772594153881,
-0.06880643218755722,
0.001876501482911408,
-0.025478949770331383,
0.01964002475142479,
-0.03347429633140564,
-0.01054158341139555,
-0.0316496342420578,
-0.015617468394339085,
0.03357382491230965,
0.015144714154303074,
0.005453258287161589,
0.0230571236461401,
0.015493059530854225,
-0.07238941639661789,
-0.04389147087931633,
-0.013411283493041992,
0.02385333925485611,
-0.0065729389898478985,
-0.03977768495678902,
-0.040275320410728455,
0.10901540517807007,
0.03218044340610504,
0.04654553160071373,
0.04243174195289612,
-0.026922093704342842,
0.05739399045705795,
-0.05414276942610741,
-0.0068300506100058556,
-0.06907184422016144,
0.0008216173737309873,
-0.0421995110809803,
-0.008907679468393326,
0.04017579182982445,
0.02400263026356697,
-0.018279818817973137,
-0.026208816096186638,
-0.05653142184019089,
0.018661340698599815,
-0.004142817575484514,
0.042896199971437454,
-0.03347429633140564,
-0.017699245363473892,
0.052284929901361465,
-0.059251829981803894,
-0.040142618119716644,
-0.019540496170520782,
-0.01806417666375637,
-0.017035730183124542,
0.038682885468006134,
0.022095026448369026,
-0.009139909408986568,
-0.07205765694379807,
0.0514223612844944,
0.0063407085835933685,
0.03246243670582771,
-0.008733507245779037,
0.040673427283763885,
-0.009737072512507439,
-0.04677775874733925,
-0.024035805836319923,
0.036062002182006836,
-0.0513891838490963,
0.005320555530488491,
-0.017085494473576546,
0.011395858600735664,
-0.028796521946787834,
0.01331175584346056,
-0.0006728449952788651,
0.0007796293357387185,
0.0022269198670983315,
-0.046877287328243256,
-0.04644600301980972,
-0.03476814925670624,
0.022111615166068077,
-0.003106076503172517,
0.02609270066022873,
0.003361114766448736,
0.004375047516077757,
-0.006788581144064665,
0.04249809309840202,
0.028531115502119064,
0.04365924373269081,
-0.04644600301980972,
0.06223764270544052,
0.04538438096642494,
0.02030353806912899,
-0.002558677224442363,
-0.040540724992752075,
0.023820163682103157,
-0.00442066416144371,
0.01502859964966774,
-0.010019066743552685,
0.0065522040240466595,
-0.004173920024186373,
0.028415000066161156,
0.027651960030198097,
-0.03748856112360954,
0.025097429752349854,
0.02252631075680256,
-0.0148378387093544,
0.07033251971006393,
-0.023040534928441048,
0.029061928391456604,
-0.020137660205364227,
0.009620958007872105,
0.057924799621105194,
0.0409056581556797,
0.04863559827208519,
-0.004217463079839945,
0.010309353470802307,
0.08386821299791336,
-0.015459883958101273,
0.015376944094896317,
0.013801097869873047,
-0.017765596508979797,
0.03073730133473873,
0.03400510922074318,
0.03141740337014198,
-0.04797208681702614,
-0.010367411188781261,
-0.04538438096642494,
-0.06339879333972931,
-0.015086657367646694,
-0.022725366055965424,
-0.0037447090726345778,
0.03266149386763573,
-0.009513136930763721,
-0.06638460606336594,
0.02992449700832367,
0.018611576408147812,
0.04203363135457039,
0.0316164568066597,
-0.05828973278403282,
-0.033822644501924515,
-0.05527074262499809,
-0.021149519830942154,
-0.02032012678682804,
0.04123741388320923,
-0.008455661125481129,
0.008600804023444653,
-0.028813108801841736,
0.09780201315879822,
-0.008177814073860645,
0.010790402069687843,
-0.024185096845030785,
-0.029045339673757553,
0.03070412576198578,
-0.028315473347902298,
-0.012673123739659786,
0.03310936316847801,
-0.0021999645978212357,
0.017483603209257126,
0.036990921944379807,
-0.015202771872282028,
-0.06376373022794724,
-0.028696995228528976,
-0.013170759193599224,
-0.01846228539943695,
-0.007829468697309494,
0.0408724807202816,
-0.07948901504278183,
-0.0070208110846579075,
-0.009007207117974758,
-0.012565302662551403,
0.0554034449160099,
0.04044119641184807,
0.011636382900178432,
-0.010533289983868599,
0.042000457644462585,
0.0005971628706902266,
-0.02282489277422428,
-0.012374541722238064,
0.034469570964574814,
-0.032628316432237625,
-0.04123741388320923,
0.017068905755877495,
-0.030687537044286728,
0.07418090105056763,
-0.007584798149764538,
-0.010259590111672878,
0.0217300932854414,
0.04070660471916199,
0.0632329136133194,
0.05125648155808449,
0.07338468730449677,
0.08738483488559723,
0.04193410649895668,
0.03140081465244293,
0.03878241404891014,
0.038981467485427856,
0.013875743374228477,
-0.007356714922934771,
-0.011362683027982712,
0.002336814533919096,
-0.10370729118585587,
0.00534129049628973,
0.006357296835631132,
-0.017483603209257126,
-0.022111615166068077,
-0.06223764270544052,
0.028564291074872017,
0.038948290050029755,
-0.02952638827264309,
0.030654361471533775,
0.034104637801647186,
-0.010782107710838318,
0.03193162754178047,
-0.023007359355688095,
-0.0567304752767086,
0.015849698334932327,
-0.0342705138027668,
-0.02584388293325901,
0.024433914572000504,
0.007493564859032631,
0.07338468730449677,
0.004984651226550341,
0.011113865301012993,
-0.016504919156432152,
0.013850861229002476,
-0.008165373466908932,
-0.019573671743273735,
-0.024981314316391945,
0.028265710920095444,
0.014962248504161835,
-0.027220675721764565,
-0.06678272038698196,
0.03218044340610504,
-0.028912637382745743,
-0.004120009485632181,
-0.003867044346407056,
-0.06562156975269318,
-0.03456909582018852,
0.0778302326798439,
-0.014398260973393917,
0.020502593368291855,
-0.025495538488030434,
0.012963411398231983,
0.024068981409072876,
0.017334312200546265,
-0.023007359355688095,
0.0009652060107327998,
-0.03861653432250023,
0.006349002476781607,
-0.039744507521390915,
-0.013104408048093319,
0.0514555349946022,
-0.023521583527326584,
-0.0171186700463295,
0.027353378012776375,
-0.003835942130535841,
0.00397071847692132,
-0.06409548223018646,
-0.042000457644462585,
0.02280830405652523,
0.045019447803497314,
-0.04143647104501724,
0.031019294634461403,
-0.035796597599983215,
0.03728950396180153,
0.018230056390166283,
0.007464536000043154,
-0.027121147140860558,
0.03994356095790863,
-0.013336637988686562,
0.01061622891575098,
-0.044223230332136154,
-0.0017137330723926425,
0.042763497680425644,
-0.01715184561908245,
-0.045284852385520935,
-0.046877287328243256,
0.05324702337384224,
-0.00037944724317640066,
0.011088983155786991,
-0.010466938838362694,
-0.028962399810552597,
0.031715985387563705,
-0.018512049689888954,
0.018777456134557724,
-0.0237206369638443,
-0.04010944068431854,
-0.00275358441285789,
-0.0073484210297465324,
-0.0151530085131526,
-0.014671960845589638,
0.0005567299667745829,
0.041602347046136856,
-0.006946165580302477,
-0.0395454540848732,
-0.008932561613619328,
0.02322300150990486,
0.01152856182307005,
0.014638785272836685,
-0.010823577642440796,
0.03728950396180153,
0.0098863635212183,
0.021531039848923683,
-0.013801097869873047,
0.018760867416858673,
0.01068258099257946,
-0.05550297349691391,
0.026839153841137886,
-0.015517941676080227,
0.00633241469040513,
-0.057792097330093384,
-0.010898223146796227,
0.009786835871636868,
-0.012681417167186737,
-0.011171922087669373,
0.0230571236461401,
0.03871605917811394,
0.0017220269655808806,
-0.03596247732639313,
-0.012308190576732159,
0.019822491332888603,
0.05168776586651802,
-0.011719321832060814,
-0.000803474395070225,
0.06416183710098267,
-0.010068830102682114,
-0.021265633404254913,
0.02348840795457363,
-0.022708777338266373,
0.003427466144785285,
0.013145877979695797,
0.004727539606392384,
0.03589612618088722,
0.06505758315324783,
0.0022911978885531425,
0.05324702337384224,
-0.031218349933624268,
-0.08141320943832397,
0.03748856112360954,
-0.01245748158544302,
0.04724222049117088,
-0.04790573567152023,
-0.007481124252080917,
0.034602273255586624,
0.01652980037033558,
-0.015534529462456703,
-0.0038981465622782707,
-0.08645591884851456,
-0.02924439311027527,
0.00015758465451654047,
0.050294384360313416,
-0.044754039496183395,
0.014713429845869541,
0.006270210258662701,
-0.014049915596842766,
-0.022509723901748657,
0.0051546767354011536,
0.00904038269072771,
-0.037223152816295624,
0.013485928997397423,
0.02174668200314045,
0.027734898030757904,
-0.0171186700463295,
-0.0026727186050266027,
-0.03417098894715309,
-0.008190254680812359,
0.0012254280736669898,
-0.05128965899348259,
-0.050161682069301605,
0.053081147372722626,
0.037090450525283813,
-0.03835112974047661,
0.006577085703611374,
-0.007734088692814112,
-0.07272116839885712,
0.01458072755485773,
0.0006956533179618418,
0.04787255823612213,
0.008799858391284943,
-0.005955040920525789,
0.05377783626317978,
-0.03669234365224838,
0.039744507521390915,
-0.0034253927879035473,
-0.006274357438087463,
0.07305292785167694,
0.050692494958639145,
0.04445546120405197,
0.038284774869680405,
0.0204196535050869,
-0.02688891813158989,
-0.019341442734003067,
-0.016703972592949867,
0.07822833955287933,
-0.032628316432237625,
-0.07550793141126633,
0.02294100821018219,
-0.042630795389413834,
0.027651960030198097,
0.0014089312171563506,
0.02030353806912899,
-0.020137660205364227,
0.039346400648355484,
-0.08074969053268433,
0.003844236023724079,
-0.003487597219645977,
-0.02373722568154335,
-0.042796675115823746,
-0.025545300915837288,
0.033673353493213654,
0.006523175165057182,
-0.026573749259114265,
0.01390062551945448,
-0.05510486289858818,
-0.06233717128634453,
-0.008551040664315224,
0.08406726270914078,
0.04389147087931633,
-0.011777379550039768,
0.040673427283763885,
-0.005594254937022924,
0.05208587273955345,
0.04893418028950691,
0.015144714154303074,
-0.03795301914215088,
-0.013245404697954655,
0.0076262676157057285,
-0.021713506430387497,
-0.04299572855234146,
0.03476814925670624,
-0.02410215698182583,
-0.0010439982870593667,
-0.02279171720147133,
-0.007746529765427113,
-0.042000457644462585,
-0.04773985594511032,
-0.003587124403566122,
-0.0171352569013834,
0.03325865417718887,
0.02411874569952488,
0.05653142184019089,
0.0038857057224959135,
-0.009670721367001534,
0.028531115502119064,
0.003904367098584771,
-0.027369966730475426,
0.022211141884326935,
-0.005395201034843922,
-0.021696917712688446,
-0.04641282558441162,
-0.027369966730475426,
-0.01068258099257946,
-0.014613903127610683,
-0.0006775103393010795,
-0.026938682422041893,
0.029592739418148994,
0.03017331473529339,
-0.056332364678382874,
-0.04332748427987099,
0.009380433708429337,
0.009048677049577236,
-0.020917288959026337,
0.048834655433893204,
0.0053661721758544445,
-0.054242294281721115,
-0.09163133054971695,
0.020237186923623085,
-0.008799858391284943,
0.02161397971212864,
-0.034237340092659,
-0.04143647104501724,
-0.012001315131783485,
0.023504994809627533,
0.057427164167165756,
-0.07039886713027954,
0.03296007588505745,
-0.004057804588228464,
-0.042763497680425644,
0.03629423305392265,
-0.003336232854053378,
-0.012324778363108635,
-0.0342705138027668,
-0.004362606909126043,
0.010989456437528133,
0.031566694378852844,
0.08380185812711716,
-0.002014388097450137,
0.004665335174649954,
-0.01740066334605217,
0.012357953935861588,
0.06475900113582611,
0.020237186923623085,
-0.014547551982104778,
0.0243675634264946,
-0.04190092906355858,
-0.04229903966188431,
0.06784433871507645,
0.06101014092564583,
0.02028695121407509,
-0.007323539350181818,
-0.04229903966188431,
-0.021912559866905212,
-0.022891243919730186,
-0.031185172498226166,
-0.016388803720474243,
-0.035929299890995026,
-0.020933877676725388,
-0.03612835332751274,
0.021149519830942154,
-0.03397193178534508,
-0.03347429633140564,
-0.0022994917817413807,
0.024201685562729836,
-0.021580804139375687,
0.05032756179571152,
-0.010400586761534214,
0.03536531329154968,
-0.04176822677254677,
0.04717586934566498,
0.05288209021091461,
-0.02504766546189785,
0.055303920060396194,
0.0369245707988739,
0.020469417795538902,
0.11425716429948807,
-0.028033480048179626,
-0.017981238663196564,
-0.03997673839330673,
-0.027320202440023422,
0.013170759193599224,
0.03629423305392265,
-0.010259590111672878,
-0.037521734833717346,
0.021016815677285194,
0.023388879373669624,
0.02174668200314045
] |
729,697 | aiconfig.model_parser | run_batch |
Concurrently runs inference on multiple parameter sets, one set at a time.
Default implementation for the run_batch method. Model Parsers may choose to override this method if they need to implement custom batch execution logic.
For each dictionary of parameters in `params_list``, the `run` method is invoked. All iterations are separate as we use a deep copy of `aiconfig` in each iteration.
Args:
prompt (Prompt): The prompt for running the inference
aiconfig (AIConfigRuntime): The AIConfig object containing all necessary configurations (prompts and parameters) for running the inference.
parameters_list (list[dict[str, Any]]): A List of dictionaries, where each dictionary is a set of parameters that directly influence the behaviour of inference.
options (InferenceOptions, optional): Options to tune the execution of inference, like setting timeout limits, number of retries, etc.
**kwargs: Additional arguments like metadata or custom configuration that could be used to modify the inference behaviour.
Returns:
list[AIConfigRuntime]: A list of AIConfigRuntime objects. Each object contains the state of the AIConfigRuntime after each run using the corresponding parameter set from params_list.
| @abstractmethod
async def run(
self,
prompt: Prompt,
aiconfig: AIConfig,
options: Optional["InferenceOptions"] = None,
parameters: Dict = {},
run_with_dependencies: Optional[bool] = False,
) -> ExecuteResult:
"""
Execute model inference based on completion data to be constructed in deserialize(), which includes the input prompt and
model-specific inference settings. Saves the response or output in prompt.outputs.
Args:
prompt (Prompt): The prompt to be used for inference.
aiconfig (AIConfig): The AIConfig object containing all prompts and parameters.
options (InferenceOptions, optional): Options that determine how to run inference for the prompt
parameters (dict, optional): Optional parameters to include in the serialization.
Returns:
ExecuteResult: The response generated by the model.
"""
| (self, prompt: aiconfig.schema.Prompt, aiconfig: 'AIConfigRuntime', parameters_list: list[dict[str, typing.Any]], options: Optional[ForwardRef('InferenceOptions')] = None, **kwargs: Any) -> list['AIConfigRuntime'] | [
0.020260704681277275,
-0.031360045075416565,
-0.0735023096203804,
-0.021828705444931984,
0.019696928560733795,
-0.0006964617059566081,
-0.04348123073577881,
-0.045524921268224716,
0.03178287670016289,
-0.020771626383066177,
0.043269816786050797,
0.009593002498149872,
-0.021722998470067978,
0.04933040961623192,
-0.03749110922217369,
0.00034960726043209434,
0.02461235038936138,
0.06920351833105087,
-0.03837200999259949,
0.019274095073342323,
0.01159264612942934,
0.007655022200196981,
-0.05236070603132248,
0.008262843824923038,
0.043586939573287964,
-0.0039464328438043594,
0.05820988118648529,
-0.019961196929216385,
0.0003988826065324247,
0.07491175085306168,
-0.006324863061308861,
0.002310160780325532,
0.00006451905210269615,
0.0537349097430706,
-0.021476345136761665,
-0.004164455458521843,
-0.027836445719003677,
0.07470033317804337,
-0.06754742562770844,
-0.022462954744696617,
-0.07022535800933838,
-0.047004833817481995,
0.06916828453540802,
0.033703241497278214,
-0.06902733445167542,
-0.06250867247581482,
-0.0005984615418128669,
-0.027818826958537102,
0.0007559224613942206,
-0.028224041685461998,
0.0010031251003965735,
-0.045842044055461884,
0.042670805007219315,
0.07822393625974655,
0.006818167399615049,
0.07942195981740952,
-0.01456127967685461,
-0.008676867000758648,
-0.002587644150480628,
-0.06289627403020859,
-0.009487294591963291,
-0.04217749834060669,
0.007377538830041885,
0.037702526897192,
0.0031404090113937855,
0.00461591687053442,
-0.031870968639850616,
0.004276770167052746,
-0.0198026355355978,
0.009954172186553478,
0.03217047452926636,
-0.019644074141979218,
0.02956300973892212,
0.006126660853624344,
0.05609572306275368,
-0.013310401700437069,
0.004611512180417776,
-0.02951015532016754,
0.023555269464850426,
-0.004195286892354488,
0.011381230317056179,
0.03678639233112335,
-0.05352349579334259,
-0.03773776441812515,
-0.04288221895694733,
-0.0047656698152422905,
0.03657497465610504,
-0.035694073885679245,
-0.01389179565012455,
-0.04189561307430267,
-0.005985716823488474,
0.012473545968532562,
-0.010412240400910378,
0.08069045841693878,
-0.005034344270825386,
0.020472120493650436,
-0.010200823657214642,
-0.08047904074192047,
-0.04954182356595993,
-0.04030999168753624,
-0.032135237008333206,
0.06536278873682022,
0.006624369416385889,
0.00668603228405118,
0.00023701720056124032,
-0.04319934546947479,
-0.010429858230054379,
0.024348080158233643,
0.022762460634112358,
-0.002475329441949725,
-0.05993644893169403,
0.09386872500181198,
-0.06465807557106018,
0.01828748732805252,
-0.054897699505090714,
0.033438969403505325,
-0.0036645447835326195,
-0.02470044046640396,
0.00923183374106884,
0.01994358003139496,
-0.050775084644556046,
0.03402036428451538,
-0.019221242517232895,
-0.055109113454818726,
0.01635831594467163,
0.03245236352086067,
-0.016825193539261818,
0.004708411172032356,
-0.007941314950585365,
-0.10197300463914871,
0.03030296601355076,
-0.050211310386657715,
-0.0032351058907806873,
0.047780025750398636,
0.00968990195542574,
0.08435499668121338,
0.04489067196846008,
-0.010993634350597858,
-0.050986502319574356,
0.04725148528814316,
0.03490126505494118,
0.03636355698108673,
0.029897751286625862,
0.0036337131168693304,
-0.03914720192551613,
-0.01347777247428894,
-0.0014578897971659899,
-0.0904155895113945,
0.03773776441812515,
-0.008218798786401749,
0.07001394778490067,
0.0005423041875474155,
-0.04577157273888588,
0.024541879072785378,
-0.022903405129909515,
0.0008924619760364294,
-0.0007812483236193657,
-0.0019853287376463413,
-0.006443784572184086,
-0.019608838483691216,
-0.07258617132902145,
-0.005734660197049379,
0.04432689771056175,
0.02861163765192032,
0.005998929962515831,
-0.006593537516891956,
-0.018956972286105156,
0.07892865687608719,
0.007007560692727566,
0.051832165569067,
0.004197489470243454,
-0.021212076768279076,
-0.05422821268439293,
-0.028153568506240845,
-0.016499260440468788,
0.02410142868757248,
0.028981614857912064,
-0.031835731118917465,
0.00032675889087840915,
0.020190231502056122,
-0.00853592250496149,
-0.05221976339817047,
-0.049436118453741074,
-0.032610923051834106,
0.022868167608976364,
0.012218085117638111,
0.0006777425878681242,
0.02618035301566124,
0.03581739962100983,
-0.027854062616825104,
-0.013689188286662102,
0.0334918238222599,
0.0028387007769197226,
0.010764599777758121,
-0.02526421658694744,
-0.032135237008333206,
-0.030109167098999023,
0.0452430322766304,
0.010676509700715542,
-0.04763907939195633,
0.013380873948335648,
0.0014006312703713775,
0.051832165569067,
-0.00871210265904665,
-0.03451366722583771,
0.015776921063661575,
-0.013530626893043518,
-0.02431284449994564,
0.0044155120849609375,
-0.04601822420954704,
-0.0583508275449276,
-0.01510743796825409,
0.0306024719029665,
0.012015478685498238,
0.03883007913827896,
0.017494676634669304,
0.05105697363615036,
-0.000050445298256818205,
0.06529232114553452,
0.01417368371039629,
0.0527130663394928,
0.01183048915117979,
0.03752634674310684,
0.022938640788197517,
0.015873821452260017,
-0.022163448855280876,
0.05789275839924812,
-0.012499973177909851,
-0.01709827221930027,
-0.025845611467957497,
-0.031131012365221977,
-0.016261417418718338,
-0.033315643668174744,
-0.023291001096367836,
-0.014526044018566608,
0.06046498566865921,
-0.01157502830028534,
-0.012817097827792168,
-0.08047904074192047,
0.008747338317334652,
-0.009178979322314262,
0.04319934546947479,
-0.07307947427034378,
-0.0183755774050951,
-0.06479901820421219,
-0.024506643414497375,
0.022744841873645782,
-0.017935127019882202,
-0.03595834597945213,
-0.035306479781866074,
0.04295269027352333,
-0.04601822420954704,
-0.007840011268854141,
0.03442557901144028,
-0.010412240400910378,
0.008152730762958527,
0.020701153203845024,
-0.06973205506801605,
0.08978134393692017,
0.058527007699012756,
0.024242373183369637,
0.013213502243161201,
-0.04704006761312485,
0.07773063331842422,
-0.010024643503129482,
-0.0024819362442940474,
-0.06081734597682953,
-0.01139884814620018,
0.0030060717836022377,
-0.02609226293861866,
0.05232546851038933,
0.0537349097430706,
0.009830845519900322,
-0.01703660935163498,
-0.03431987017393112,
0.022181065753102303,
-0.014552470296621323,
0.028224041685461998,
-0.026814600452780724,
-0.006606751121580601,
0.00975156482309103,
-0.030232492834329605,
-0.04393929988145828,
-0.02050735615193844,
-0.013010895811021328,
-0.0442916601896286,
0.010103925131261349,
0.0555671826004982,
-0.021476345136761665,
-0.017758946865797043,
0.04319934546947479,
0.05155027657747269,
0.03650450333952904,
-0.014103211462497711,
0.018692702054977417,
0.023819539695978165,
-0.06923875212669373,
0.008698889054358006,
0.041543252766132355,
-0.0451725609600544,
0.031870968639850616,
-0.047392427921295166,
0.012693771161139011,
-0.03225856274366379,
-0.018093690276145935,
0.011363612487912178,
0.0240133386105299,
0.012359029613435268,
-0.03724445775151253,
-0.00814832653850317,
-0.0004030118288937956,
0.00574346911162138,
0.03801964968442917,
0.07427750527858734,
-0.025986554101109505,
-0.0040323203429579735,
0.04940088093280792,
0.0004390736867208034,
0.017618002369999886,
0.01046509388834238,
-0.06388287991285324,
0.06275533139705658,
0.02951015532016754,
0.018569376319646835,
-0.01597071997821331,
-0.024418553337454796,
-0.005866795312613249,
0.04256509616971016,
0.020595446228981018,
-0.03146575391292572,
0.027114106342196465,
0.031395282596349716,
-0.0032945666462183,
0.01153098326176405,
-0.07300900667905807,
0.011037679389119148,
0.010059880092740059,
-0.010024643503129482,
0.09252975136041641,
0.007381943520158529,
0.013750851154327393,
0.00014576145622413605,
0.03215285763144493,
0.042318444699048996,
0.013830132782459259,
0.02757217548787594,
0.01994358003139496,
-0.015662405639886856,
0.0386538989841938,
-0.0216701440513134,
-0.05281877517700195,
0.039076730608940125,
0.02149396389722824,
0.020613063126802444,
-0.014526044018566608,
-0.02692030929028988,
-0.01549503393471241,
-0.010614846833050251,
-0.0291754137724638,
-0.0942210778594017,
-0.0828750878572464,
-0.05105697363615036,
-0.029880134388804436,
0.02470044046640396,
-0.031060539186000824,
-0.0735727846622467,
-0.00438688276335597,
-0.00654508825391531,
0.06948540359735489,
0.024330463260412216,
-0.008121899329125881,
-0.016067618504166603,
-0.02084209769964218,
-0.03461937606334686,
-0.008121899329125881,
0.04108518362045288,
-0.0074788425117731094,
-0.0000836855178931728,
0.01206833217293024,
0.05683567747473717,
0.006095828954130411,
-0.010526756756007671,
-0.036997806280851364,
-0.006364503875374794,
0.015873821452260017,
-0.05331207811832428,
-0.014297009445726871,
-0.0006034165853634477,
0.010236060246825218,
-0.003816500073298812,
0.018974589183926582,
-0.03875960782170296,
0.009918935596942902,
-0.020190231502056122,
-0.00249735196121037,
-0.033527061343193054,
-0.027166960760951042,
0.014851977117359638,
-0.08252272754907608,
-0.0010565295815467834,
-0.03324517235159874,
-0.017952745780348778,
0.12501734495162964,
0.03844248503446579,
0.051761694252491,
0.01441152673214674,
0.0677940770983696,
0.0405566431581974,
0.005924053490161896,
0.006848998833447695,
0.004226118326187134,
-0.02241010032594204,
-0.07688497006893158,
0.007086841855198145,
-0.06906257569789886,
0.06536278873682022,
0.004792097024619579,
-0.006051783915609121,
-0.010782217606902122,
0.022603897377848625,
0.028858289122581482,
0.05704709514975548,
0.03780823573470116,
0.06536278873682022,
0.026374150067567825,
0.033262789249420166,
0.04633534699678421,
0.05331207811832428,
0.01445557177066803,
-0.04763907939195633,
-0.06067640334367752,
-0.0004872478893958032,
-0.027942152693867683,
-0.024911856278777122,
-0.003173442790284753,
0.0008561248541809618,
-0.007470033597201109,
-0.05630713701248169,
0.017300879582762718,
0.035253625363111496,
-0.003083150601014495,
-0.00592845818027854,
0.02855878323316574,
-0.03742063790559769,
-0.019309330731630325,
0.010976015590131283,
-0.005298614501953125,
0.024823766201734543,
-0.05525005981326103,
0.023079583421349525,
0.07061295956373215,
0.038125358521938324,
0.061874426901340485,
-0.028682108968496323,
-0.03419654443860054,
-0.03636355698108673,
0.02461235038936138,
0.032011911273002625,
-0.048132386058568954,
-0.012975659221410751,
0.02205774001777172,
0.0016913283616304398,
-0.0385834276676178,
-0.06247343868017197,
0.037209223955869675,
-0.0063909306190907955,
-0.019785016775131226,
0.03241712599992752,
-0.1017615869641304,
-0.030091550201177597,
0.02790691703557968,
-0.03003869578242302,
0.06427047401666641,
0.02366097830235958,
0.022181065753102303,
0.014314627274870872,
0.06638463586568832,
-0.018393196165561676,
-0.027589792385697365,
-0.04767431691288948,
0.04319934546947479,
-0.06155730411410332,
-0.029069704934954643,
0.06807596236467361,
0.0122445123270154,
-0.008258438669145107,
0.01111696008592844,
0.003860544878989458,
-0.0008489675237797201,
-0.03562360256910324,
-0.01819939725100994,
0.020225467160344124,
0.02626844309270382,
0.023502416908740997,
0.03875960782170296,
-0.027448849752545357,
0.04027475416660309,
-0.015072201378643513,
0.0009221923537552357,
-0.051832165569067,
0.04122612625360489,
-0.019520748406648636,
0.03752634674310684,
-0.036856863647699356,
-0.0043428377248346806,
0.05687091499567032,
-0.05630713701248169,
-0.012790670618414879,
-0.04182513803243637,
0.02107113227248192,
-0.04404500871896744,
0.013468963094055653,
0.03678639233112335,
-0.06279056519269943,
0.027554556727409363,
0.0000804509618319571,
0.037209223955869675,
-0.017979172989726067,
-0.015935484319925308,
-0.029333975166082382,
-0.00080161914229393,
-0.016437597572803497,
0.011539791710674763,
-0.0041336240246891975,
0.014913639985024929,
0.02093018777668476,
0.01855175755918026,
-0.00631605414673686,
0.04478496313095093,
0.0005824952386319637,
0.028541164472699165,
0.008531518280506134,
0.05447486788034439,
-0.0014292604755610228,
0.03225856274366379,
-0.04450307786464691,
-0.011143387295305729,
0.00523254694417119,
-0.01674591191112995,
-0.0005568940541706979,
0.0034487240482121706,
0.05334731563925743,
-0.08555302023887634,
0.00512683903798461,
0.028664492070674896,
-0.02769550122320652,
-0.003138206899166107,
0.054333921521902084,
0.04556015506386757,
0.002664722967892885,
-0.05976026877760887,
0.0207187719643116,
0.03195905685424805,
0.0433402881026268,
-0.06472854316234589,
-0.0024378912057727575,
0.022727224975824356,
-0.029915370047092438,
0.0070560104213654995,
0.011909769847989082,
-0.0037394212558865547,
-0.0007718887645751238,
-0.011495747603476048,
-0.030267730355262756,
0.08421405404806137,
0.04372788593173027,
0.038336776196956635,
0.004362658131867647,
-0.0014182492159307003,
-0.03731493279337883,
0.03384418413043022,
0.014684605412185192,
0.019538365304470062,
-0.027977388352155685,
-0.019732164219021797,
0.01733611524105072,
0.0011958220275118947,
-0.005606929771602154,
-0.0026757342275232077,
-0.014182493090629578,
-0.014341054484248161,
-0.00994536280632019,
0.023132437840104103,
-0.00710886437445879,
-0.002042587148025632,
0.013944649137556553,
0.0035984772257506847,
-0.000787855067756027,
0.008967563509941101,
0.0015823169378563762,
-0.03689209744334221,
0.0023453966714441776,
0.01337206456810236,
0.01315183937549591,
0.023678597062826157,
-0.005303019192069769,
0.02223392017185688,
-0.017503486946225166,
-0.004955063574016094,
-0.09570099413394928,
-0.08238178491592407,
-0.0003779612306971103,
0.021053513512015343,
-0.008782574906945229,
-0.005338254850357771,
0.0021295761689543724,
-0.09154314547777176,
0.0489780493080616,
-0.0221105944365263,
0.035130299627780914,
-0.0039464328438043594,
-0.03481317311525345,
0.014719842001795769,
-0.042494624853134155,
-0.012464737519621849,
-0.0216701440513134,
0.00122445123270154,
0.05789275839924812,
0.05299495533108711,
0.014763887040317059,
0.037632055580616,
-0.03564121946692467,
-0.029527774080634117,
-0.00023109864559955895,
-0.03661021217703819,
0.0789991244673729,
-0.03518315404653549,
-0.07998573780059814,
-0.0027704311069101095,
-0.0016825193306431174,
0.04108518362045288,
0.016490451991558075,
-0.02279769629240036,
-0.008258438669145107,
0.07300900667905807,
-0.05859747901558876,
0.04256509616971016,
0.04274127632379532,
-0.02244533598423004,
-0.057575635612010956,
-0.0006105739157646894,
0.005827154498547316,
-0.02101827785372734,
0.019873106852173805,
0.03164193406701088,
-0.032487597316503525,
-0.03784346953034401,
-0.007412774953991175,
0.08618727326393127,
0.042670805007219315,
-0.025105655193328857,
0.04101471230387688,
-0.019133152440190315,
0.03558836504817009,
0.03992239385843277,
0.020648300647735596,
0.004695198033004999,
-0.0174242053180933,
-0.007923697121441364,
-0.007553718984127045,
-0.049999892711639404,
0.0198026355355978,
-0.04189561307430267,
-0.020524973049759865,
0.01263210829347372,
-0.02315005660057068,
-0.038125358521938324,
-0.04365741088986397,
0.005386704578995705,
0.008390573784708977,
-0.01408559363335371,
0.0012288556899875402,
0.06458760052919388,
0.0221458300948143,
-0.004452950321137905,
0.05063414201140404,
-0.014244155958294868,
-0.013143029995262623,
0.03537695109844208,
-0.014534852467477322,
-0.0404861718416214,
-0.05902031064033508,
-0.0005692817503586411,
0.0012993277050554752,
0.008113090880215168,
-0.04668770730495453,
0.028030242770910263,
0.014851977117359638,
0.004188680090010166,
-0.031835731118917465,
-0.02288578636944294,
0.040239520370960236,
-0.015310044400393963,
-0.03611690551042557,
0.07212810218334198,
-0.08400263637304306,
-0.07582788914442062,
-0.059830740094184875,
-0.005012321751564741,
-0.01501934789121151,
0.0754755288362503,
-0.01352181751281023,
0.010579611174762249,
-0.023784304037690163,
0.007663831580430269,
0.06715983152389526,
-0.094150610268116,
0.030655326321721077,
-0.026550330221652985,
-0.03713875263929367,
0.02665603905916214,
0.0254403967410326,
-0.009804419241845608,
-0.01430581882596016,
-0.02315005660057068,
0.046053461730480194,
0.008267248049378395,
0.042388916015625,
-0.041930846869945526,
0.024911856278777122,
-0.03197667747735977,
-0.0012376647209748626,
0.07033106684684753,
-0.022691987454891205,
0.0025546103715896606,
0.0010730464709922671,
-0.06980253010988235,
-0.018234632909297943,
0.08794907480478287,
0.053770147264003754,
0.01876317337155342,
-0.01584739424288273,
-0.06381240487098694,
0.019538365304470062,
-0.0240133386105299,
-0.03116624802350998,
0.0291754137724638,
-0.029756806790828705,
0.010606038384139538,
-0.042107027024030685,
0.0325404517352581,
-0.0353240966796875,
-0.019626455381512642,
-0.016305461525917053,
0.01007749792188406,
0.003512589493766427,
0.0038759608287364244,
-0.005457176361232996,
0.0174242053180933,
-0.03423178195953369,
0.025986554101109505,
0.04393929988145828,
0.018974589183926582,
0.048872340470552444,
0.03678639233112335,
0.020384030416607857,
0.05722327530384064,
0.027078870683908463,
0.004270163364708424,
-0.047392427921295166,
-0.00649223430082202,
-0.017943935468792915,
0.04365741088986397,
-0.01482554990798235,
0.0008875069324858487,
-0.011795253492891788,
0.022815315052866936,
-0.001551485387608409
] |
729,698 | aiconfig.default_parsers.openai | run_inference |
Invoked to run a prompt in the .aiconfig. This method should perform
the actual model inference based on the provided prompt and inference settings.
Args:
prompt (str): The input prompt.
inference_settings (dict): Model-specific inference settings.
Returns:
ExecuteResult: The response from the model.
| @abstractmethod
def id(self) -> str:
"""
Returns an identifier for the model (e.g. gpt-3.5, gpt-4, etc.).
"""
return self.id
| (self, prompt: aiconfig.schema.Prompt, aiconfig: 'AIConfigRuntime', options: aiconfig.model_parser.InferenceOptions, parameters) -> List[Union[aiconfig.schema.ExecuteResult, aiconfig.schema.Error]] | [
0.012052255682647228,
-0.038461651653051376,
0.007213759236037731,
0.03598082438111305,
0.0004898977931588888,
-0.07090597599744797,
0.015940647572278976,
0.013363048434257507,
0.014251573011279106,
-0.0016648827586323023,
-0.03140624240040779,
-0.008256235159933567,
0.01692594215273857,
0.08783191442489624,
-0.014629855751991272,
-0.004512998275458813,
-0.003331964835524559,
0.036455873399972916,
-0.015738310292363167,
-0.0703781396150589,
0.005410319194197655,
0.027605824172496796,
0.031353458762168884,
-0.01506092119961977,
0.022943273186683655,
0.10810081660747528,
0.03888392075896263,
0.0162485521286726,
0.029576411470770836,
-0.015016934834420681,
-0.03534742072224617,
-0.035488177090883255,
0.00448220781981945,
0.07868275791406631,
-0.03687814250588417,
-0.023136813193559647,
-0.013899682089686394,
0.08522792160511017,
-0.08909872174263,
0.020919902250170708,
-0.003540900070220232,
0.031670160591602325,
0.07945691794157028,
-0.05088339373469353,
-0.06699998676776886,
-0.04162866994738579,
-0.011885108426213264,
-0.04176942631602287,
-0.005361934192478657,
0.022943273186683655,
-0.06453675031661987,
0.0012239197967574,
-0.019758662208914757,
-0.024227673187851906,
-0.018034398555755615,
0.05239652469754219,
0.01764731854200363,
0.01882615126669407,
0.022503409534692764,
0.020497633144259453,
-0.02324238047003746,
-0.01676759123802185,
0.034678827971220016,
-0.04757561907172203,
0.02111344039440155,
-0.020726362243294716,
-0.029822735115885735,
0.029857924208045006,
-0.013538993895053864,
0.054789379239082336,
0.007314927875995636,
-0.03677257522940636,
0.050848204642534256,
0.06911133229732513,
0.08719851076602936,
-0.01138366386294365,
-0.03068486787378788,
-0.03466123342514038,
0.07854200154542923,
0.023735027760267258,
-0.014629855751991272,
-0.0363503098487854,
0.003985161893069744,
-0.01118132658302784,
-0.03100156970322132,
-0.03747635707259178,
0.02581118233501911,
-0.028661496937274933,
-0.02508980594575405,
-0.027676202356815338,
-0.03409820795059204,
0.026655718684196472,
-0.05454305559396744,
0.031916484236717224,
-0.013072739355266094,
-0.02927730605006218,
0.0160022284835577,
-0.017339413985610008,
-0.012580092065036297,
-0.002887703012675047,
-0.018008006736636162,
0.03905986621975899,
-0.03181091696023941,
-0.04025629535317421,
-0.030332976952195168,
-0.042367637157440186,
-0.036983709782361984,
0.01057431474328041,
-0.04729411005973816,
0.0039433748461306095,
-0.05257247015833855,
0.060384441167116165,
-0.07797897607088089,
-0.019758662208914757,
-0.0024456402752548456,
-0.05088339373469353,
0.030420949682593346,
-0.0008665308123454452,
0.005595061928033829,
-0.03115992061793804,
-0.04651995003223419,
-0.015386420302093029,
-0.079808808863163,
0.015949444845318794,
0.049405451864004135,
0.02280251681804657,
-0.02223949134349823,
-0.005260765552520752,
-0.002621585736051202,
-0.08938023447990417,
-0.024685131385922432,
0.010688679292798042,
-0.008933625183999538,
-0.001102957408875227,
0.03165256604552269,
-0.00792193878442049,
0.05320587009191513,
0.03365834429860115,
-0.0106183011084795,
0.08698737621307373,
-0.016864361241459846,
0.03443250432610512,
0.05380408465862274,
0.03165256604552269,
-0.049651775509119034,
0.005973344203084707,
-0.02642699144780636,
-0.0047373282723128796,
-0.014453910291194916,
-0.0005811694427393377,
0.04176942631602287,
0.028063282370567322,
0.048525724560022354,
0.012659267522394657,
-0.021447736769914627,
-0.014295559376478195,
-0.012738442979753017,
-0.021007873117923737,
0.014066830277442932,
-0.06439599394798279,
0.011717960238456726,
-0.04556984454393387,
0.05102415010333061,
-0.02380540408194065,
-0.019441960379481316,
0.018280720338225365,
-0.030790435150265694,
-0.03355277702212334,
0.009976101107895374,
0.02183481678366661,
-0.01870298944413662,
-0.0071521783247590065,
-0.058378666639328,
-0.009043591096997261,
-0.027165960520505905,
0.03230356425046921,
0.0281512551009655,
0.04085450991988182,
0.02389337681233883,
0.09311027824878693,
0.07762708514928818,
-0.030350571498274803,
-0.04370482265949249,
0.07361552864313126,
0.06513496488332748,
-0.0026017918717116117,
0.022221896797418594,
0.005265164189040661,
0.049123939126729965,
0.014717827551066875,
-0.025476885959506035,
-0.029981086030602455,
-0.017594534903764725,
0.0076932101510465145,
-0.008946821093559265,
-0.028379984200000763,
0.03793381527066231,
-0.015835080295801163,
-0.04725892096757889,
0.0683019831776619,
0.022608976811170578,
0.008014310151338577,
-0.0028129261918365955,
0.009571426548063755,
0.000829692289698869,
0.005471900105476379,
0.013846898451447487,
-0.04673108458518982,
-0.032233186066150665,
-0.03772268071770668,
0.045147575438022614,
0.019565122202038765,
-0.00373443984426558,
0.07854200154542923,
0.08607245981693268,
-0.06407929211854935,
0.008119877427816391,
-0.0061932760290801525,
0.025001833215355873,
0.022257085889577866,
0.038989488035440445,
-0.024034133180975914,
0.00120412593241781,
0.003169215517118573,
0.002947084605693817,
-0.055352404713630676,
0.018685394898056984,
-0.005595061928033829,
-0.029294900596141815,
-0.02896060422062874,
0.019758662208914757,
-0.038707975298166275,
0.02223949134349823,
0.009096373803913593,
-0.014418721199035645,
0.003178012790158391,
-0.058449044823646545,
-0.017084293067455292,
-0.06787971407175064,
-0.0030504523310810328,
-0.05070744827389717,
0.044549360871315,
0.005894169211387634,
0.05718223750591278,
-0.003254988929256797,
-0.026550153270363808,
-0.02899579331278801,
0.04282509535551071,
-0.03511869162321091,
-0.06594431400299072,
0.05721742659807205,
-0.0654868558049202,
-0.031177515164017677,
0.05243171378970146,
0.02452678047120571,
-0.02867909148335457,
-0.08170901983976364,
0.014876178465783596,
0.019283609464764595,
-0.006844273768365383,
-0.04366963356733322,
-0.013336656615138054,
-0.043493688106536865,
0.015043326653540134,
-0.003380349837243557,
-0.023101624101400375,
-0.02505461685359478,
0.043212175369262695,
-0.014797003008425236,
0.01737460307776928,
0.08037183433771133,
0.02449159137904644,
-0.06671847403049469,
0.009377886541187763,
-0.008938023820519447,
-0.05134085193276405,
-0.030420949682593346,
0.02827441692352295,
-0.11851678043603897,
-0.08952099084854126,
-0.022732138633728027,
0.01035438384860754,
0.030262598767876625,
0.02143014222383499,
-0.030104247853159904,
-0.023998944088816643,
0.02674369141459465,
0.003226397791877389,
-0.021465331315994263,
0.011885108426213264,
-0.007424893323332071,
0.010987786576151848,
-0.06196795031428337,
0.026075100526213646,
0.03744116798043251,
0.011603595688939095,
-0.0008395891636610031,
0.018439071252942085,
0.014568274840712547,
-0.05088339373469353,
0.0010292802471667528,
0.018368693068623543,
-0.0007664618897251785,
-0.028133660554885864,
-0.0746712014079094,
0.010635895654559135,
-0.013222292996942997,
-0.01576470211148262,
0.01882615126669407,
-0.0281512551009655,
-0.01684676669538021,
0.032197996973991394,
-0.05904725566506386,
0.06601469218730927,
0.008669706992805004,
0.025600047782063484,
-0.05179831013083458,
0.01656525395810604,
0.05003885552287102,
0.08044221252202988,
-0.040150728076696396,
0.0537337064743042,
0.011761946603655815,
0.016820374876260757,
0.03068486787378788,
-0.008269431069493294,
-0.037265222519636154,
0.014216383919119835,
-0.04877204820513725,
0.05514127016067505,
-0.03330645337700844,
0.05204463377594948,
0.056408077478408813,
-0.010609503835439682,
-0.039517324417829514,
-0.0450420081615448,
0.03905986621975899,
-0.02505461685359478,
0.020814334973692894,
0.005823791027069092,
0.0928991436958313,
-0.0419805571436882,
0.009237130172550678,
0.0355585552752018,
0.02014574222266674,
0.029981086030602455,
-0.02299605682492256,
-0.015615149401128292,
0.05271322652697563,
-0.021782033145427704,
0.012157822959125042,
-0.06108822301030159,
0.011885108426213264,
-0.030544111505150795,
0.0013778719585388899,
-0.0049704560078680515,
-0.006584754679352045,
0.04613287001848221,
-0.03230356425046921,
-0.009113968349993229,
0.0044096303172409534,
-0.13399997353553772,
0.009061185643076897,
0.003815814619883895,
-0.056724779307842255,
-0.009738574735820293,
0.0020640587899833918,
0.017154671251773834,
0.060701142996549606,
-0.03962289169430733,
-0.04732929915189743,
0.0008236441644839942,
-0.020339282229542732,
-0.03687814250588417,
0.005863378755748272,
0.022872895002365112,
0.03765230253338814,
0.01685556396842003,
-0.05778045207262039,
-0.016741199418902397,
0.00848496425896883,
-0.04863129183650017,
0.038672786206007004,
0.022133924067020416,
0.006650733761489391,
-0.024034133180975914,
0.05032036826014519,
0.034766800701618195,
-0.07164494693279266,
-0.007825168780982494,
0.007438089232891798,
-0.020409660413861275,
-0.056196942925453186,
-0.0040841312147676945,
-0.013371845707297325,
-0.06562761217355728,
0.014304356649518013,
-0.04103045538067818,
-0.08072372525930405,
0.004185299854725599,
-0.0005105164018459618,
-0.03040335513651371,
0.06024368479847908,
0.035048313438892365,
0.015870269387960434,
-0.012826415710151196,
0.05851942300796509,
-0.013099131174385548,
-0.03582247346639633,
-0.049088750034570694,
0.008335410617291927,
0.034889962524175644,
-0.04792750999331474,
-0.04792750999331474,
0.07797897607088089,
0.0003466673078946769,
0.01889652945101261,
-0.005247569642961025,
-0.0013745729811489582,
0.015456798486411572,
0.01482339482754469,
0.07607876509428024,
0.01448030211031437,
0.07041332870721817,
-0.06562761217355728,
0.047716375440359116,
0.028802253305912018,
0.0529947392642498,
0.019195636734366417,
0.04592173546552658,
-0.01415480300784111,
-0.013072739355266094,
-0.013934871181845665,
-0.009052388370037079,
0.012720848433673382,
-0.024421213194727898,
0.030614489689469337,
-0.03369353339076042,
-0.02903098240494728,
0.03751154616475105,
0.04694221913814545,
-0.013063942082226276,
-0.029066171497106552,
-0.010644692927598953,
0.049651775509119034,
-0.09515123814344406,
0.00828262697905302,
0.01826312579214573,
0.0027249534614384174,
-0.01057431474328041,
0.012096242047846317,
0.058976877480745316,
0.04497162997722626,
-0.024122105911374092,
0.005691831931471825,
-0.04792750999331474,
-0.004957260098308325,
-0.026039911434054375,
0.01309033390134573,
0.001910106628201902,
-0.01741858944296837,
0.07586763054132462,
-0.01648607850074768,
0.001267906161956489,
0.024755509570240974,
-0.0022048151586204767,
-0.039517324417829514,
-0.019617905840277672,
-0.04680146276950836,
0.01572951301932335,
0.05229095742106438,
-0.02429805137217045,
-0.00012343665002845228,
-0.008251836523413658,
-0.07748632878065109,
0.06840755045413971,
-0.0032154012005776167,
-0.00221141311340034,
-0.0030152632389217615,
-0.03631512075662613,
0.056302510201931,
-0.031511809676885605,
-0.0055114878341555595,
0.028767064213752747,
0.015535973943769932,
0.022028356790542603,
-0.005625852383673191,
0.010310397483408451,
-0.04732929915189743,
-0.030772840604186058,
-0.021236602216959,
0.028731875121593475,
-0.018650205805897713,
0.031071947887539864,
0.033605560660362244,
-0.008317816071212292,
0.008542146533727646,
0.0010281805880367756,
-0.02211632952094078,
-0.017198657616972923,
0.035206664353609085,
-0.043458499014377594,
0.05155198648571968,
-0.03825051710009575,
0.038743164390325546,
-0.017541751265525818,
-0.022626571357250214,
0.032796211540699005,
0.00010914109589066356,
0.009245927445590496,
0.009905722923576832,
-0.05806196480989456,
0.039798837155103683,
0.0222746804356575,
0.0070993946865201,
0.0038927907589823008,
-0.00045278435572981834,
0.0056302510201931,
-0.020251309499144554,
0.05806196480989456,
0.04423265904188156,
-0.058132342994213104,
-0.023031245917081833,
-0.015535973943769932,
-0.01141885295510292,
0.05327624827623367,
-0.08009032160043716,
-0.000042543033487163484,
0.01170036569237709,
0.05134085193276405,
-0.004205093719065189,
0.04585135728120804,
0.01506092119961977,
0.05890649929642677,
-0.026726096868515015,
0.04057299718260765,
-0.05851942300796509,
-0.06105303391814232,
0.01901969127357006,
0.004768118727952242,
-0.0018782165134325624,
0.011110948398709297,
-0.005405920557677746,
-0.00935149472206831,
0.038426462560892105,
-0.02135976403951645,
-0.04641438275575638,
0.02352389320731163,
-0.014964151196181774,
-0.00021415847004391253,
0.022380247712135315,
0.013503804802894592,
0.005449906922876835,
-0.04176942631602287,
0.03853202983736992,
0.02674369141459465,
0.017603332176804543,
-0.004013753030449152,
-0.007776784244924784,
0.02046244405210018,
-0.020198525860905647,
-0.01448030211031437,
0.09972582012414932,
0.028133660554885864,
0.020321687683463097,
0.06355145573616028,
-0.004165505990386009,
-0.028573524206876755,
-0.008863246999680996,
-0.05155198648571968,
-0.041241589933633804,
-0.023189596831798553,
0.028731875121593475,
0.02574080415070057,
-0.052255768328905106,
0.007438089232891798,
-0.038707975298166275,
-0.01745377853512764,
-0.034960340708494186,
-0.021905194967985153,
-0.013319062069058418,
0.017110684886574745,
0.02493145503103733,
-0.00461416644975543,
0.0009611014393158257,
-0.002524815732613206,
0.006356025580316782,
0.04817383363842964,
0.03177572786808014,
-0.03052651695907116,
-0.0139524657279253,
0.007297333329916,
-0.003145023016259074,
-0.02461475320160389,
-0.0002251550613436848,
0.02890782058238983,
-0.012465727515518665,
-0.0647478848695755,
-0.04134715721011162,
-0.03680776432156563,
0.004825301002711058,
0.054507866501808167,
0.028520740568637848,
0.029066171497106552,
0.05176312103867531,
0.003699250752106309,
-0.04388076812028885,
0.047997888177633286,
-0.038426462560892105,
-0.02530094049870968,
-0.016785185784101486,
-0.01942436583340168,
0.03793381527066231,
-0.060067739337682724,
-0.03649106249213219,
-0.017198657616972923,
0.014629855751991272,
0.030772840604186058,
0.002070656744763255,
-0.04764599725604057,
-0.05120009556412697,
0.03371112793684006,
-0.003859800985082984,
0.029347684234380722,
-0.029981086030602455,
0.06608507037162781,
-0.006232863757759333,
-0.030878407880663872,
0.016679618507623672,
-0.06932246685028076,
0.016618037596344948,
-0.012298579327762127,
0.007745993789285421,
-0.018192747607827187,
0.03121270425617695,
-0.015940647572278976,
0.00669472012668848,
0.014744219370186329,
-0.03905986621975899,
0.061510492116212845,
-0.02429805137217045,
0.05602099746465683,
-0.05295955017209053,
0.006290046032518148,
0.007248948328197002,
0.05693591386079788,
-0.07298212498426437,
-0.03409820795059204,
0.033042535185813904,
-0.026039911434054375,
-0.05355776101350784,
0.001824333332479,
-0.006263654213398695,
-0.0000852922530611977,
0.036737386137247086,
0.0073721096850931644,
-0.04507719725370407,
-0.0252129677683115,
-0.03413339704275131,
-0.04673108458518982,
0.009377886541187763,
0.005634649656713009,
-0.01565033756196499,
-0.033957451581954956,
0.0089644156396389,
0.020902307704091072,
-0.011031772941350937,
-0.08382036536931992,
0.016028620302677155,
0.004609767813235521,
-0.008348606526851654,
0.030948786064982414,
0.0370892770588398,
-0.02107825130224228,
-0.03281380608677864,
-0.026479775086045265,
0.023858187720179558,
-0.010723868384957314,
0.023946160450577736,
0.02051522769033909,
0.045147575438022614,
-0.051657553762197495,
0.02058560587465763,
-0.029488438740372658,
0.014119613915681839,
-0.0020541618578135967,
-0.0091491574421525,
0.04145272448658943,
0.017277833074331284,
-0.08170901983976364,
-0.03371112793684006,
0.0023466709535568953,
-0.009219535626471043,
0.028819847851991653,
0.06886500865221024,
-0.020620794966816902,
-0.013239887543022633,
0.02171165496110916,
0.03575209528207779,
0.0097913583740592,
-0.02903098240494728,
0.003206603927537799,
0.008353005163371563,
0.007323725149035454,
0.01620456576347351,
0.0391654334962368,
-0.027095582336187363,
0.038109760731458664,
-0.0018012404907494783,
-0.05369851738214493,
0.020092958584427834,
0.02577599324285984,
0.012773632071912289,
-0.04556984454393387,
0.0624254085123539,
-0.02883744239807129,
0.023576676845550537,
0.07058927416801453,
-0.011594798415899277,
0.051376041024923325,
-0.003384748473763466,
-0.033236075192689896,
0.052220579236745834,
-0.009263521991670132,
-0.023717433214187622,
0.04870167002081871,
-0.02943565510213375,
-0.004798909183591604,
0.02271454408764839,
0.05211501196026802,
0.02320719137787819,
0.024561969563364983,
-0.02874946966767311,
-0.015958242118358612,
0.03972845897078514,
-0.010064073838293552,
0.013134320266544819,
-0.0678093358874321,
-0.00908757746219635,
-0.02890782058238983,
0.005705027841031551,
0.0075084674172103405,
-0.025600047782063484,
0.006479187402874231,
-0.005982141476124525,
0.03474920615553856,
0.04704778641462326,
0.05792120844125748,
-0.019688284024596214,
-0.015703121200203896,
0.04081932082772255,
0.0689001977443695,
0.03015703149139881,
-0.0057930005714297295,
-0.002674369141459465,
-0.009923317469656467,
0.04877204820513725,
0.027799364179372787,
0.06256616115570068,
0.020902307704091072,
-0.04363444447517395,
-0.042613960802555084,
-0.019441960379481316,
0.005014442373067141,
-0.006215269211679697,
0.027394689619541168,
0.005568670108914375,
0.04789232090115547
] |
729,699 | aiconfig.default_parsers.parameterized_model_parser | run_with_dependencies |
Executes the AI model with the resolved dependencies and prompt references and returns the API response.
Args:
prompt: The prompt to be used.
aiconfig: The AIConfig object containing all prompts and parameters.
parameters (dict): The resolved parameters to use for inference.
Returns:
ExecuteResult: An Object containing the response from the AI model.
| @abstractmethod
async def run_inference(self) -> List[Output]:
pass
| (self, prompt: aiconfig.schema.Prompt, aiconfig: aiconfig.schema.AIConfig, options=None, parameters: Dict = {}) -> List[Union[aiconfig.schema.ExecuteResult, aiconfig.schema.Error]] | [
0.007228159345686436,
-0.07212400436401367,
-0.06545569002628326,
0.017699245363473892,
-0.03851700574159622,
0.022576075047254562,
-0.0342705138027668,
-0.04037484526634216,
0.01635562814772129,
-0.003578830510377884,
0.04697681590914726,
0.027369966730475426,
-0.008468101732432842,
0.028813108801841736,
-0.0023927984293550253,
0.009720484726130962,
0.017997825518250465,
0.06658366322517395,
-0.034734975546598434,
-0.004553366918116808,
-0.058455612510442734,
0.022841481491923332,
0.007734088692814112,
-0.011793967336416245,
0.021945735439658165,
0.03378946706652641,
0.0224101971834898,
-0.06140825152397156,
-0.013461046852171421,
0.009654133580625057,
-0.07099603116512299,
-0.011744203977286816,
-0.0061623891815543175,
0.04953134432435036,
0.0006940981838852167,
0.01925850287079811,
-0.029592739418148994,
0.09076876193284988,
-0.12620042264461517,
0.004810479003936052,
0.0025648975279182196,
-0.08751753717660904,
0.04598154127597809,
0.024301212280988693,
-0.051223304122686386,
-0.031450580805540085,
0.003860824042931199,
-0.0323297344148159,
-0.011727615259587765,
-0.029692266136407852,
-0.026938682422041893,
-0.025213545188307762,
0.005888689775019884,
0.07630414515733719,
0.020618706941604614,
0.05722811073064804,
0.005337143316864967,
-0.034734975546598434,
0.02083434909582138,
0.007335980422794819,
-0.0015862139407545328,
-0.017865123227238655,
0.02426803670823574,
0.01601557619869709,
0.014083091169595718,
0.005515462718904018,
-0.034237340092659,
0.019407793879508972,
-0.00915649812668562,
0.03189845010638237,
0.016786912456154823,
-0.034071460366249084,
0.019606849178671837,
0.03662599250674248,
0.06794386357069016,
-0.00556937325745821,
0.019076036289334297,
0.0021045845933258533,
0.026059525087475777,
-0.03775396570563316,
-0.010964574292302132,
0.058853719383478165,
-0.05606696009635925,
-0.04103836044669151,
-0.026822566986083984,
-0.023272765800356865,
0.02529648318886757,
-0.045019447803497314,
-0.04498627036809921,
-0.027784662321209908,
-0.05726128816604614,
0.019042860716581345,
-0.03339136019349098,
0.08459807932376862,
-0.006249475758522749,
0.016629327088594437,
-0.02927757054567337,
-0.09647498279809952,
-0.0843326672911644,
-0.047408100217580795,
-0.009222849272191525,
0.1027783676981926,
0.026142464950680733,
-0.018628165125846863,
0.009355551563203335,
-0.03126811236143112,
-0.025346247479319572,
0.01016006339341402,
-0.03443639352917671,
0.039213698357343674,
-0.06900548934936523,
0.08207672089338303,
-0.046711407601833344,
0.024632969871163368,
-0.029061928391456604,
0.042929377406835556,
-0.015294005163013935,
-0.02345523051917553,
-0.004586542956531048,
0.042630795389413834,
-0.0012492730747908354,
0.05049344152212143,
-0.026208816096186638,
-0.04156917333602905,
-0.01060793548822403,
0.053081147372722626,
0.023952867835760117,
0.03848383203148842,
-0.0014752825954928994,
-0.05722811073064804,
-0.007174248807132244,
0.0007842946797609329,
-0.002432194771245122,
0.0803515836596489,
0.01628098264336586,
0.06101014092564583,
0.025246720761060715,
-0.045948367565870285,
-0.018230056390166283,
-0.0001689888013061136,
0.0033901433926075697,
0.006087744142860174,
0.09846552461385727,
0.02730361372232437,
-0.027071384713053703,
0.018263231962919235,
-0.0382184237241745,
-0.04229903966188431,
0.007240599952638149,
-0.0027826132718473673,
0.008733507245779037,
0.0008750095148570836,
-0.012416011653840542,
-0.02149786427617073,
-0.00014164476306177676,
0.035398490726947784,
0.035929299890995026,
-0.008741801604628563,
-0.0057684276252985,
-0.04273032397031784,
-0.10125228762626648,
-0.053976889699697495,
0.037223152816295624,
-0.005100766196846962,
-0.001581030199304223,
0.02493155002593994,
-0.024234861135482788,
-0.008799858391284943,
-0.027204087004065514,
0.060578856617212296,
0.00034678992233239114,
-0.031566694378852844,
-0.03984403610229492,
-0.02096705324947834,
0.054640404880046844,
0.014265557751059532,
0.020486004650592804,
0.05510486289858818,
0.0013519104104489088,
0.07617144286632538,
0.0098863635212183,
-0.05994851887226105,
-0.09017159789800644,
-0.03349088504910469,
0.02187938429415226,
0.060711562633514404,
-0.01035911776125431,
0.0263581071048975,
0.02070164680480957,
0.004868536256253719,
-0.028896048665046692,
0.021696917712688446,
0.03005719929933548,
0.00948825478553772,
0.01871110312640667,
-0.05848878622055054,
-0.031085645779967308,
0.0882474035024643,
-0.0032325589563697577,
-0.041336942464113235,
0.037355855107307434,
0.019606849178671837,
0.061773184686899185,
0.017865123227238655,
-0.04591519013047218,
0.028315473347902298,
-0.008799858391284943,
0.015368650667369366,
-0.04057390242815018,
-0.0408724807202816,
0.0030770476441830397,
-0.011520267464220524,
0.03136764094233513,
0.022907832637429237,
0.04505262151360512,
-0.028033480048179626,
0.059550411999225616,
-0.007953877560794353,
0.005063443910330534,
-0.008061698637902737,
0.08459807932376862,
-0.0005043745622970164,
-0.023654285818338394,
-0.011122158728539944,
-0.0001490315335104242,
-0.006195565219968557,
0.012067667208611965,
-0.01694449782371521,
-0.027983715757727623,
-0.08220942318439484,
-0.0015022378647699952,
-0.04243174195289612,
0.011951551772654057,
-0.00032812857534736395,
-0.019042860716581345,
0.05838926136493683,
-0.009654133580625057,
-0.012606772594153881,
-0.06880643218755722,
0.001876501482911408,
-0.025478949770331383,
0.01964002475142479,
-0.03347429633140564,
-0.01054158341139555,
-0.0316496342420578,
-0.015617468394339085,
0.03357382491230965,
0.015144714154303074,
0.005453258287161589,
0.0230571236461401,
0.015493059530854225,
-0.07238941639661789,
-0.04389147087931633,
-0.013411283493041992,
0.02385333925485611,
-0.0065729389898478985,
-0.03977768495678902,
-0.040275320410728455,
0.10901540517807007,
0.03218044340610504,
0.04654553160071373,
0.04243174195289612,
-0.026922093704342842,
0.05739399045705795,
-0.05414276942610741,
-0.0068300506100058556,
-0.06907184422016144,
0.0008216173737309873,
-0.0421995110809803,
-0.008907679468393326,
0.04017579182982445,
0.02400263026356697,
-0.018279818817973137,
-0.026208816096186638,
-0.05653142184019089,
0.018661340698599815,
-0.004142817575484514,
0.042896199971437454,
-0.03347429633140564,
-0.017699245363473892,
0.052284929901361465,
-0.059251829981803894,
-0.040142618119716644,
-0.019540496170520782,
-0.01806417666375637,
-0.017035730183124542,
0.038682885468006134,
0.022095026448369026,
-0.009139909408986568,
-0.07205765694379807,
0.0514223612844944,
0.0063407085835933685,
0.03246243670582771,
-0.008733507245779037,
0.040673427283763885,
-0.009737072512507439,
-0.04677775874733925,
-0.024035805836319923,
0.036062002182006836,
-0.0513891838490963,
0.005320555530488491,
-0.017085494473576546,
0.011395858600735664,
-0.028796521946787834,
0.01331175584346056,
-0.0006728449952788651,
0.0007796293357387185,
0.0022269198670983315,
-0.046877287328243256,
-0.04644600301980972,
-0.03476814925670624,
0.022111615166068077,
-0.003106076503172517,
0.02609270066022873,
0.003361114766448736,
0.004375047516077757,
-0.006788581144064665,
0.04249809309840202,
0.028531115502119064,
0.04365924373269081,
-0.04644600301980972,
0.06223764270544052,
0.04538438096642494,
0.02030353806912899,
-0.002558677224442363,
-0.040540724992752075,
0.023820163682103157,
-0.00442066416144371,
0.01502859964966774,
-0.010019066743552685,
0.0065522040240466595,
-0.004173920024186373,
0.028415000066161156,
0.027651960030198097,
-0.03748856112360954,
0.025097429752349854,
0.02252631075680256,
-0.0148378387093544,
0.07033251971006393,
-0.023040534928441048,
0.029061928391456604,
-0.020137660205364227,
0.009620958007872105,
0.057924799621105194,
0.0409056581556797,
0.04863559827208519,
-0.004217463079839945,
0.010309353470802307,
0.08386821299791336,
-0.015459883958101273,
0.015376944094896317,
0.013801097869873047,
-0.017765596508979797,
0.03073730133473873,
0.03400510922074318,
0.03141740337014198,
-0.04797208681702614,
-0.010367411188781261,
-0.04538438096642494,
-0.06339879333972931,
-0.015086657367646694,
-0.022725366055965424,
-0.0037447090726345778,
0.03266149386763573,
-0.009513136930763721,
-0.06638460606336594,
0.02992449700832367,
0.018611576408147812,
0.04203363135457039,
0.0316164568066597,
-0.05828973278403282,
-0.033822644501924515,
-0.05527074262499809,
-0.021149519830942154,
-0.02032012678682804,
0.04123741388320923,
-0.008455661125481129,
0.008600804023444653,
-0.028813108801841736,
0.09780201315879822,
-0.008177814073860645,
0.010790402069687843,
-0.024185096845030785,
-0.029045339673757553,
0.03070412576198578,
-0.028315473347902298,
-0.012673123739659786,
0.03310936316847801,
-0.0021999645978212357,
0.017483603209257126,
0.036990921944379807,
-0.015202771872282028,
-0.06376373022794724,
-0.028696995228528976,
-0.013170759193599224,
-0.01846228539943695,
-0.007829468697309494,
0.0408724807202816,
-0.07948901504278183,
-0.0070208110846579075,
-0.009007207117974758,
-0.012565302662551403,
0.0554034449160099,
0.04044119641184807,
0.011636382900178432,
-0.010533289983868599,
0.042000457644462585,
0.0005971628706902266,
-0.02282489277422428,
-0.012374541722238064,
0.034469570964574814,
-0.032628316432237625,
-0.04123741388320923,
0.017068905755877495,
-0.030687537044286728,
0.07418090105056763,
-0.007584798149764538,
-0.010259590111672878,
0.0217300932854414,
0.04070660471916199,
0.0632329136133194,
0.05125648155808449,
0.07338468730449677,
0.08738483488559723,
0.04193410649895668,
0.03140081465244293,
0.03878241404891014,
0.038981467485427856,
0.013875743374228477,
-0.007356714922934771,
-0.011362683027982712,
0.002336814533919096,
-0.10370729118585587,
0.00534129049628973,
0.006357296835631132,
-0.017483603209257126,
-0.022111615166068077,
-0.06223764270544052,
0.028564291074872017,
0.038948290050029755,
-0.02952638827264309,
0.030654361471533775,
0.034104637801647186,
-0.010782107710838318,
0.03193162754178047,
-0.023007359355688095,
-0.0567304752767086,
0.015849698334932327,
-0.0342705138027668,
-0.02584388293325901,
0.024433914572000504,
0.007493564859032631,
0.07338468730449677,
0.004984651226550341,
0.011113865301012993,
-0.016504919156432152,
0.013850861229002476,
-0.008165373466908932,
-0.019573671743273735,
-0.024981314316391945,
0.028265710920095444,
0.014962248504161835,
-0.027220675721764565,
-0.06678272038698196,
0.03218044340610504,
-0.028912637382745743,
-0.004120009485632181,
-0.003867044346407056,
-0.06562156975269318,
-0.03456909582018852,
0.0778302326798439,
-0.014398260973393917,
0.020502593368291855,
-0.025495538488030434,
0.012963411398231983,
0.024068981409072876,
0.017334312200546265,
-0.023007359355688095,
0.0009652060107327998,
-0.03861653432250023,
0.006349002476781607,
-0.039744507521390915,
-0.013104408048093319,
0.0514555349946022,
-0.023521583527326584,
-0.0171186700463295,
0.027353378012776375,
-0.003835942130535841,
0.00397071847692132,
-0.06409548223018646,
-0.042000457644462585,
0.02280830405652523,
0.045019447803497314,
-0.04143647104501724,
0.031019294634461403,
-0.035796597599983215,
0.03728950396180153,
0.018230056390166283,
0.007464536000043154,
-0.027121147140860558,
0.03994356095790863,
-0.013336637988686562,
0.01061622891575098,
-0.044223230332136154,
-0.0017137330723926425,
0.042763497680425644,
-0.01715184561908245,
-0.045284852385520935,
-0.046877287328243256,
0.05324702337384224,
-0.00037944724317640066,
0.011088983155786991,
-0.010466938838362694,
-0.028962399810552597,
0.031715985387563705,
-0.018512049689888954,
0.018777456134557724,
-0.0237206369638443,
-0.04010944068431854,
-0.00275358441285789,
-0.0073484210297465324,
-0.0151530085131526,
-0.014671960845589638,
0.0005567299667745829,
0.041602347046136856,
-0.006946165580302477,
-0.0395454540848732,
-0.008932561613619328,
0.02322300150990486,
0.01152856182307005,
0.014638785272836685,
-0.010823577642440796,
0.03728950396180153,
0.0098863635212183,
0.021531039848923683,
-0.013801097869873047,
0.018760867416858673,
0.01068258099257946,
-0.05550297349691391,
0.026839153841137886,
-0.015517941676080227,
0.00633241469040513,
-0.057792097330093384,
-0.010898223146796227,
0.009786835871636868,
-0.012681417167186737,
-0.011171922087669373,
0.0230571236461401,
0.03871605917811394,
0.0017220269655808806,
-0.03596247732639313,
-0.012308190576732159,
0.019822491332888603,
0.05168776586651802,
-0.011719321832060814,
-0.000803474395070225,
0.06416183710098267,
-0.010068830102682114,
-0.021265633404254913,
0.02348840795457363,
-0.022708777338266373,
0.003427466144785285,
0.013145877979695797,
0.004727539606392384,
0.03589612618088722,
0.06505758315324783,
0.0022911978885531425,
0.05324702337384224,
-0.031218349933624268,
-0.08141320943832397,
0.03748856112360954,
-0.01245748158544302,
0.04724222049117088,
-0.04790573567152023,
-0.007481124252080917,
0.034602273255586624,
0.01652980037033558,
-0.015534529462456703,
-0.0038981465622782707,
-0.08645591884851456,
-0.02924439311027527,
0.00015758465451654047,
0.050294384360313416,
-0.044754039496183395,
0.014713429845869541,
0.006270210258662701,
-0.014049915596842766,
-0.022509723901748657,
0.0051546767354011536,
0.00904038269072771,
-0.037223152816295624,
0.013485928997397423,
0.02174668200314045,
0.027734898030757904,
-0.0171186700463295,
-0.0026727186050266027,
-0.03417098894715309,
-0.008190254680812359,
0.0012254280736669898,
-0.05128965899348259,
-0.050161682069301605,
0.053081147372722626,
0.037090450525283813,
-0.03835112974047661,
0.006577085703611374,
-0.007734088692814112,
-0.07272116839885712,
0.01458072755485773,
0.0006956533179618418,
0.04787255823612213,
0.008799858391284943,
-0.005955040920525789,
0.05377783626317978,
-0.03669234365224838,
0.039744507521390915,
-0.0034253927879035473,
-0.006274357438087463,
0.07305292785167694,
0.050692494958639145,
0.04445546120405197,
0.038284774869680405,
0.0204196535050869,
-0.02688891813158989,
-0.019341442734003067,
-0.016703972592949867,
0.07822833955287933,
-0.032628316432237625,
-0.07550793141126633,
0.02294100821018219,
-0.042630795389413834,
0.027651960030198097,
0.0014089312171563506,
0.02030353806912899,
-0.020137660205364227,
0.039346400648355484,
-0.08074969053268433,
0.003844236023724079,
-0.003487597219645977,
-0.02373722568154335,
-0.042796675115823746,
-0.025545300915837288,
0.033673353493213654,
0.006523175165057182,
-0.026573749259114265,
0.01390062551945448,
-0.05510486289858818,
-0.06233717128634453,
-0.008551040664315224,
0.08406726270914078,
0.04389147087931633,
-0.011777379550039768,
0.040673427283763885,
-0.005594254937022924,
0.05208587273955345,
0.04893418028950691,
0.015144714154303074,
-0.03795301914215088,
-0.013245404697954655,
0.0076262676157057285,
-0.021713506430387497,
-0.04299572855234146,
0.03476814925670624,
-0.02410215698182583,
-0.0010439982870593667,
-0.02279171720147133,
-0.007746529765427113,
-0.042000457644462585,
-0.04773985594511032,
-0.003587124403566122,
-0.0171352569013834,
0.03325865417718887,
0.02411874569952488,
0.05653142184019089,
0.0038857057224959135,
-0.009670721367001534,
0.028531115502119064,
0.003904367098584771,
-0.027369966730475426,
0.022211141884326935,
-0.005395201034843922,
-0.021696917712688446,
-0.04641282558441162,
-0.027369966730475426,
-0.01068258099257946,
-0.014613903127610683,
-0.0006775103393010795,
-0.026938682422041893,
0.029592739418148994,
0.03017331473529339,
-0.056332364678382874,
-0.04332748427987099,
0.009380433708429337,
0.009048677049577236,
-0.020917288959026337,
0.048834655433893204,
0.0053661721758544445,
-0.054242294281721115,
-0.09163133054971695,
0.020237186923623085,
-0.008799858391284943,
0.02161397971212864,
-0.034237340092659,
-0.04143647104501724,
-0.012001315131783485,
0.023504994809627533,
0.057427164167165756,
-0.07039886713027954,
0.03296007588505745,
-0.004057804588228464,
-0.042763497680425644,
0.03629423305392265,
-0.003336232854053378,
-0.012324778363108635,
-0.0342705138027668,
-0.004362606909126043,
0.010989456437528133,
0.031566694378852844,
0.08380185812711716,
-0.002014388097450137,
0.004665335174649954,
-0.01740066334605217,
0.012357953935861588,
0.06475900113582611,
0.020237186923623085,
-0.014547551982104778,
0.0243675634264946,
-0.04190092906355858,
-0.04229903966188431,
0.06784433871507645,
0.06101014092564583,
0.02028695121407509,
-0.007323539350181818,
-0.04229903966188431,
-0.021912559866905212,
-0.022891243919730186,
-0.031185172498226166,
-0.016388803720474243,
-0.035929299890995026,
-0.020933877676725388,
-0.03612835332751274,
0.021149519830942154,
-0.03397193178534508,
-0.03347429633140564,
-0.0022994917817413807,
0.024201685562729836,
-0.021580804139375687,
0.05032756179571152,
-0.010400586761534214,
0.03536531329154968,
-0.04176822677254677,
0.04717586934566498,
0.05288209021091461,
-0.02504766546189785,
0.055303920060396194,
0.0369245707988739,
0.020469417795538902,
0.11425716429948807,
-0.028033480048179626,
-0.017981238663196564,
-0.03997673839330673,
-0.027320202440023422,
0.013170759193599224,
0.03629423305392265,
-0.010259590111672878,
-0.037521734833717346,
0.021016815677285194,
0.023388879373669624,
0.02174668200314045
] |
729,700 | aiconfig.default_parsers.openai | serialize |
Defines how prompts and model inference settings get serialized in the .aiconfig.
Args:
prompt (str): The prompt to be serialized.
inference_settings (dict): Model-specific inference settings to be serialized.
Returns:
str: Serialized representation of the prompt and inference settings.
| @abstractmethod
def id(self) -> str:
"""
Returns an identifier for the model (e.g. gpt-3.5, gpt-4, etc.).
"""
return self.id
| (self, prompt_name: str, data: Dict, ai_config: 'AIConfigRuntime', parameters: Optional[Dict], **kwargs) -> List[aiconfig.schema.Prompt] | [
0.012052255682647228,
-0.038461651653051376,
0.007213759236037731,
0.03598082438111305,
0.0004898977931588888,
-0.07090597599744797,
0.015940647572278976,
0.013363048434257507,
0.014251573011279106,
-0.0016648827586323023,
-0.03140624240040779,
-0.008256235159933567,
0.01692594215273857,
0.08783191442489624,
-0.014629855751991272,
-0.004512998275458813,
-0.003331964835524559,
0.036455873399972916,
-0.015738310292363167,
-0.0703781396150589,
0.005410319194197655,
0.027605824172496796,
0.031353458762168884,
-0.01506092119961977,
0.022943273186683655,
0.10810081660747528,
0.03888392075896263,
0.0162485521286726,
0.029576411470770836,
-0.015016934834420681,
-0.03534742072224617,
-0.035488177090883255,
0.00448220781981945,
0.07868275791406631,
-0.03687814250588417,
-0.023136813193559647,
-0.013899682089686394,
0.08522792160511017,
-0.08909872174263,
0.020919902250170708,
-0.003540900070220232,
0.031670160591602325,
0.07945691794157028,
-0.05088339373469353,
-0.06699998676776886,
-0.04162866994738579,
-0.011885108426213264,
-0.04176942631602287,
-0.005361934192478657,
0.022943273186683655,
-0.06453675031661987,
0.0012239197967574,
-0.019758662208914757,
-0.024227673187851906,
-0.018034398555755615,
0.05239652469754219,
0.01764731854200363,
0.01882615126669407,
0.022503409534692764,
0.020497633144259453,
-0.02324238047003746,
-0.01676759123802185,
0.034678827971220016,
-0.04757561907172203,
0.02111344039440155,
-0.020726362243294716,
-0.029822735115885735,
0.029857924208045006,
-0.013538993895053864,
0.054789379239082336,
0.007314927875995636,
-0.03677257522940636,
0.050848204642534256,
0.06911133229732513,
0.08719851076602936,
-0.01138366386294365,
-0.03068486787378788,
-0.03466123342514038,
0.07854200154542923,
0.023735027760267258,
-0.014629855751991272,
-0.0363503098487854,
0.003985161893069744,
-0.01118132658302784,
-0.03100156970322132,
-0.03747635707259178,
0.02581118233501911,
-0.028661496937274933,
-0.02508980594575405,
-0.027676202356815338,
-0.03409820795059204,
0.026655718684196472,
-0.05454305559396744,
0.031916484236717224,
-0.013072739355266094,
-0.02927730605006218,
0.0160022284835577,
-0.017339413985610008,
-0.012580092065036297,
-0.002887703012675047,
-0.018008006736636162,
0.03905986621975899,
-0.03181091696023941,
-0.04025629535317421,
-0.030332976952195168,
-0.042367637157440186,
-0.036983709782361984,
0.01057431474328041,
-0.04729411005973816,
0.0039433748461306095,
-0.05257247015833855,
0.060384441167116165,
-0.07797897607088089,
-0.019758662208914757,
-0.0024456402752548456,
-0.05088339373469353,
0.030420949682593346,
-0.0008665308123454452,
0.005595061928033829,
-0.03115992061793804,
-0.04651995003223419,
-0.015386420302093029,
-0.079808808863163,
0.015949444845318794,
0.049405451864004135,
0.02280251681804657,
-0.02223949134349823,
-0.005260765552520752,
-0.002621585736051202,
-0.08938023447990417,
-0.024685131385922432,
0.010688679292798042,
-0.008933625183999538,
-0.001102957408875227,
0.03165256604552269,
-0.00792193878442049,
0.05320587009191513,
0.03365834429860115,
-0.0106183011084795,
0.08698737621307373,
-0.016864361241459846,
0.03443250432610512,
0.05380408465862274,
0.03165256604552269,
-0.049651775509119034,
0.005973344203084707,
-0.02642699144780636,
-0.0047373282723128796,
-0.014453910291194916,
-0.0005811694427393377,
0.04176942631602287,
0.028063282370567322,
0.048525724560022354,
0.012659267522394657,
-0.021447736769914627,
-0.014295559376478195,
-0.012738442979753017,
-0.021007873117923737,
0.014066830277442932,
-0.06439599394798279,
0.011717960238456726,
-0.04556984454393387,
0.05102415010333061,
-0.02380540408194065,
-0.019441960379481316,
0.018280720338225365,
-0.030790435150265694,
-0.03355277702212334,
0.009976101107895374,
0.02183481678366661,
-0.01870298944413662,
-0.0071521783247590065,
-0.058378666639328,
-0.009043591096997261,
-0.027165960520505905,
0.03230356425046921,
0.0281512551009655,
0.04085450991988182,
0.02389337681233883,
0.09311027824878693,
0.07762708514928818,
-0.030350571498274803,
-0.04370482265949249,
0.07361552864313126,
0.06513496488332748,
-0.0026017918717116117,
0.022221896797418594,
0.005265164189040661,
0.049123939126729965,
0.014717827551066875,
-0.025476885959506035,
-0.029981086030602455,
-0.017594534903764725,
0.0076932101510465145,
-0.008946821093559265,
-0.028379984200000763,
0.03793381527066231,
-0.015835080295801163,
-0.04725892096757889,
0.0683019831776619,
0.022608976811170578,
0.008014310151338577,
-0.0028129261918365955,
0.009571426548063755,
0.000829692289698869,
0.005471900105476379,
0.013846898451447487,
-0.04673108458518982,
-0.032233186066150665,
-0.03772268071770668,
0.045147575438022614,
0.019565122202038765,
-0.00373443984426558,
0.07854200154542923,
0.08607245981693268,
-0.06407929211854935,
0.008119877427816391,
-0.0061932760290801525,
0.025001833215355873,
0.022257085889577866,
0.038989488035440445,
-0.024034133180975914,
0.00120412593241781,
0.003169215517118573,
0.002947084605693817,
-0.055352404713630676,
0.018685394898056984,
-0.005595061928033829,
-0.029294900596141815,
-0.02896060422062874,
0.019758662208914757,
-0.038707975298166275,
0.02223949134349823,
0.009096373803913593,
-0.014418721199035645,
0.003178012790158391,
-0.058449044823646545,
-0.017084293067455292,
-0.06787971407175064,
-0.0030504523310810328,
-0.05070744827389717,
0.044549360871315,
0.005894169211387634,
0.05718223750591278,
-0.003254988929256797,
-0.026550153270363808,
-0.02899579331278801,
0.04282509535551071,
-0.03511869162321091,
-0.06594431400299072,
0.05721742659807205,
-0.0654868558049202,
-0.031177515164017677,
0.05243171378970146,
0.02452678047120571,
-0.02867909148335457,
-0.08170901983976364,
0.014876178465783596,
0.019283609464764595,
-0.006844273768365383,
-0.04366963356733322,
-0.013336656615138054,
-0.043493688106536865,
0.015043326653540134,
-0.003380349837243557,
-0.023101624101400375,
-0.02505461685359478,
0.043212175369262695,
-0.014797003008425236,
0.01737460307776928,
0.08037183433771133,
0.02449159137904644,
-0.06671847403049469,
0.009377886541187763,
-0.008938023820519447,
-0.05134085193276405,
-0.030420949682593346,
0.02827441692352295,
-0.11851678043603897,
-0.08952099084854126,
-0.022732138633728027,
0.01035438384860754,
0.030262598767876625,
0.02143014222383499,
-0.030104247853159904,
-0.023998944088816643,
0.02674369141459465,
0.003226397791877389,
-0.021465331315994263,
0.011885108426213264,
-0.007424893323332071,
0.010987786576151848,
-0.06196795031428337,
0.026075100526213646,
0.03744116798043251,
0.011603595688939095,
-0.0008395891636610031,
0.018439071252942085,
0.014568274840712547,
-0.05088339373469353,
0.0010292802471667528,
0.018368693068623543,
-0.0007664618897251785,
-0.028133660554885864,
-0.0746712014079094,
0.010635895654559135,
-0.013222292996942997,
-0.01576470211148262,
0.01882615126669407,
-0.0281512551009655,
-0.01684676669538021,
0.032197996973991394,
-0.05904725566506386,
0.06601469218730927,
0.008669706992805004,
0.025600047782063484,
-0.05179831013083458,
0.01656525395810604,
0.05003885552287102,
0.08044221252202988,
-0.040150728076696396,
0.0537337064743042,
0.011761946603655815,
0.016820374876260757,
0.03068486787378788,
-0.008269431069493294,
-0.037265222519636154,
0.014216383919119835,
-0.04877204820513725,
0.05514127016067505,
-0.03330645337700844,
0.05204463377594948,
0.056408077478408813,
-0.010609503835439682,
-0.039517324417829514,
-0.0450420081615448,
0.03905986621975899,
-0.02505461685359478,
0.020814334973692894,
0.005823791027069092,
0.0928991436958313,
-0.0419805571436882,
0.009237130172550678,
0.0355585552752018,
0.02014574222266674,
0.029981086030602455,
-0.02299605682492256,
-0.015615149401128292,
0.05271322652697563,
-0.021782033145427704,
0.012157822959125042,
-0.06108822301030159,
0.011885108426213264,
-0.030544111505150795,
0.0013778719585388899,
-0.0049704560078680515,
-0.006584754679352045,
0.04613287001848221,
-0.03230356425046921,
-0.009113968349993229,
0.0044096303172409534,
-0.13399997353553772,
0.009061185643076897,
0.003815814619883895,
-0.056724779307842255,
-0.009738574735820293,
0.0020640587899833918,
0.017154671251773834,
0.060701142996549606,
-0.03962289169430733,
-0.04732929915189743,
0.0008236441644839942,
-0.020339282229542732,
-0.03687814250588417,
0.005863378755748272,
0.022872895002365112,
0.03765230253338814,
0.01685556396842003,
-0.05778045207262039,
-0.016741199418902397,
0.00848496425896883,
-0.04863129183650017,
0.038672786206007004,
0.022133924067020416,
0.006650733761489391,
-0.024034133180975914,
0.05032036826014519,
0.034766800701618195,
-0.07164494693279266,
-0.007825168780982494,
0.007438089232891798,
-0.020409660413861275,
-0.056196942925453186,
-0.0040841312147676945,
-0.013371845707297325,
-0.06562761217355728,
0.014304356649518013,
-0.04103045538067818,
-0.08072372525930405,
0.004185299854725599,
-0.0005105164018459618,
-0.03040335513651371,
0.06024368479847908,
0.035048313438892365,
0.015870269387960434,
-0.012826415710151196,
0.05851942300796509,
-0.013099131174385548,
-0.03582247346639633,
-0.049088750034570694,
0.008335410617291927,
0.034889962524175644,
-0.04792750999331474,
-0.04792750999331474,
0.07797897607088089,
0.0003466673078946769,
0.01889652945101261,
-0.005247569642961025,
-0.0013745729811489582,
0.015456798486411572,
0.01482339482754469,
0.07607876509428024,
0.01448030211031437,
0.07041332870721817,
-0.06562761217355728,
0.047716375440359116,
0.028802253305912018,
0.0529947392642498,
0.019195636734366417,
0.04592173546552658,
-0.01415480300784111,
-0.013072739355266094,
-0.013934871181845665,
-0.009052388370037079,
0.012720848433673382,
-0.024421213194727898,
0.030614489689469337,
-0.03369353339076042,
-0.02903098240494728,
0.03751154616475105,
0.04694221913814545,
-0.013063942082226276,
-0.029066171497106552,
-0.010644692927598953,
0.049651775509119034,
-0.09515123814344406,
0.00828262697905302,
0.01826312579214573,
0.0027249534614384174,
-0.01057431474328041,
0.012096242047846317,
0.058976877480745316,
0.04497162997722626,
-0.024122105911374092,
0.005691831931471825,
-0.04792750999331474,
-0.004957260098308325,
-0.026039911434054375,
0.01309033390134573,
0.001910106628201902,
-0.01741858944296837,
0.07586763054132462,
-0.01648607850074768,
0.001267906161956489,
0.024755509570240974,
-0.0022048151586204767,
-0.039517324417829514,
-0.019617905840277672,
-0.04680146276950836,
0.01572951301932335,
0.05229095742106438,
-0.02429805137217045,
-0.00012343665002845228,
-0.008251836523413658,
-0.07748632878065109,
0.06840755045413971,
-0.0032154012005776167,
-0.00221141311340034,
-0.0030152632389217615,
-0.03631512075662613,
0.056302510201931,
-0.031511809676885605,
-0.0055114878341555595,
0.028767064213752747,
0.015535973943769932,
0.022028356790542603,
-0.005625852383673191,
0.010310397483408451,
-0.04732929915189743,
-0.030772840604186058,
-0.021236602216959,
0.028731875121593475,
-0.018650205805897713,
0.031071947887539864,
0.033605560660362244,
-0.008317816071212292,
0.008542146533727646,
0.0010281805880367756,
-0.02211632952094078,
-0.017198657616972923,
0.035206664353609085,
-0.043458499014377594,
0.05155198648571968,
-0.03825051710009575,
0.038743164390325546,
-0.017541751265525818,
-0.022626571357250214,
0.032796211540699005,
0.00010914109589066356,
0.009245927445590496,
0.009905722923576832,
-0.05806196480989456,
0.039798837155103683,
0.0222746804356575,
0.0070993946865201,
0.0038927907589823008,
-0.00045278435572981834,
0.0056302510201931,
-0.020251309499144554,
0.05806196480989456,
0.04423265904188156,
-0.058132342994213104,
-0.023031245917081833,
-0.015535973943769932,
-0.01141885295510292,
0.05327624827623367,
-0.08009032160043716,
-0.000042543033487163484,
0.01170036569237709,
0.05134085193276405,
-0.004205093719065189,
0.04585135728120804,
0.01506092119961977,
0.05890649929642677,
-0.026726096868515015,
0.04057299718260765,
-0.05851942300796509,
-0.06105303391814232,
0.01901969127357006,
0.004768118727952242,
-0.0018782165134325624,
0.011110948398709297,
-0.005405920557677746,
-0.00935149472206831,
0.038426462560892105,
-0.02135976403951645,
-0.04641438275575638,
0.02352389320731163,
-0.014964151196181774,
-0.00021415847004391253,
0.022380247712135315,
0.013503804802894592,
0.005449906922876835,
-0.04176942631602287,
0.03853202983736992,
0.02674369141459465,
0.017603332176804543,
-0.004013753030449152,
-0.007776784244924784,
0.02046244405210018,
-0.020198525860905647,
-0.01448030211031437,
0.09972582012414932,
0.028133660554885864,
0.020321687683463097,
0.06355145573616028,
-0.004165505990386009,
-0.028573524206876755,
-0.008863246999680996,
-0.05155198648571968,
-0.041241589933633804,
-0.023189596831798553,
0.028731875121593475,
0.02574080415070057,
-0.052255768328905106,
0.007438089232891798,
-0.038707975298166275,
-0.01745377853512764,
-0.034960340708494186,
-0.021905194967985153,
-0.013319062069058418,
0.017110684886574745,
0.02493145503103733,
-0.00461416644975543,
0.0009611014393158257,
-0.002524815732613206,
0.006356025580316782,
0.04817383363842964,
0.03177572786808014,
-0.03052651695907116,
-0.0139524657279253,
0.007297333329916,
-0.003145023016259074,
-0.02461475320160389,
-0.0002251550613436848,
0.02890782058238983,
-0.012465727515518665,
-0.0647478848695755,
-0.04134715721011162,
-0.03680776432156563,
0.004825301002711058,
0.054507866501808167,
0.028520740568637848,
0.029066171497106552,
0.05176312103867531,
0.003699250752106309,
-0.04388076812028885,
0.047997888177633286,
-0.038426462560892105,
-0.02530094049870968,
-0.016785185784101486,
-0.01942436583340168,
0.03793381527066231,
-0.060067739337682724,
-0.03649106249213219,
-0.017198657616972923,
0.014629855751991272,
0.030772840604186058,
0.002070656744763255,
-0.04764599725604057,
-0.05120009556412697,
0.03371112793684006,
-0.003859800985082984,
0.029347684234380722,
-0.029981086030602455,
0.06608507037162781,
-0.006232863757759333,
-0.030878407880663872,
0.016679618507623672,
-0.06932246685028076,
0.016618037596344948,
-0.012298579327762127,
0.007745993789285421,
-0.018192747607827187,
0.03121270425617695,
-0.015940647572278976,
0.00669472012668848,
0.014744219370186329,
-0.03905986621975899,
0.061510492116212845,
-0.02429805137217045,
0.05602099746465683,
-0.05295955017209053,
0.006290046032518148,
0.007248948328197002,
0.05693591386079788,
-0.07298212498426437,
-0.03409820795059204,
0.033042535185813904,
-0.026039911434054375,
-0.05355776101350784,
0.001824333332479,
-0.006263654213398695,
-0.0000852922530611977,
0.036737386137247086,
0.0073721096850931644,
-0.04507719725370407,
-0.0252129677683115,
-0.03413339704275131,
-0.04673108458518982,
0.009377886541187763,
0.005634649656713009,
-0.01565033756196499,
-0.033957451581954956,
0.0089644156396389,
0.020902307704091072,
-0.011031772941350937,
-0.08382036536931992,
0.016028620302677155,
0.004609767813235521,
-0.008348606526851654,
0.030948786064982414,
0.0370892770588398,
-0.02107825130224228,
-0.03281380608677864,
-0.026479775086045265,
0.023858187720179558,
-0.010723868384957314,
0.023946160450577736,
0.02051522769033909,
0.045147575438022614,
-0.051657553762197495,
0.02058560587465763,
-0.029488438740372658,
0.014119613915681839,
-0.0020541618578135967,
-0.0091491574421525,
0.04145272448658943,
0.017277833074331284,
-0.08170901983976364,
-0.03371112793684006,
0.0023466709535568953,
-0.009219535626471043,
0.028819847851991653,
0.06886500865221024,
-0.020620794966816902,
-0.013239887543022633,
0.02171165496110916,
0.03575209528207779,
0.0097913583740592,
-0.02903098240494728,
0.003206603927537799,
0.008353005163371563,
0.007323725149035454,
0.01620456576347351,
0.0391654334962368,
-0.027095582336187363,
0.038109760731458664,
-0.0018012404907494783,
-0.05369851738214493,
0.020092958584427834,
0.02577599324285984,
0.012773632071912289,
-0.04556984454393387,
0.0624254085123539,
-0.02883744239807129,
0.023576676845550537,
0.07058927416801453,
-0.011594798415899277,
0.051376041024923325,
-0.003384748473763466,
-0.033236075192689896,
0.052220579236745834,
-0.009263521991670132,
-0.023717433214187622,
0.04870167002081871,
-0.02943565510213375,
-0.004798909183591604,
0.02271454408764839,
0.05211501196026802,
0.02320719137787819,
0.024561969563364983,
-0.02874946966767311,
-0.015958242118358612,
0.03972845897078514,
-0.010064073838293552,
0.013134320266544819,
-0.0678093358874321,
-0.00908757746219635,
-0.02890782058238983,
0.005705027841031551,
0.0075084674172103405,
-0.025600047782063484,
0.006479187402874231,
-0.005982141476124525,
0.03474920615553856,
0.04704778641462326,
0.05792120844125748,
-0.019688284024596214,
-0.015703121200203896,
0.04081932082772255,
0.0689001977443695,
0.03015703149139881,
-0.0057930005714297295,
-0.002674369141459465,
-0.009923317469656467,
0.04877204820513725,
0.027799364179372787,
0.06256616115570068,
0.020902307704091072,
-0.04363444447517395,
-0.042613960802555084,
-0.019441960379481316,
0.005014442373067141,
-0.006215269211679697,
0.027394689619541168,
0.005568670108914375,
0.04789232090115547
] |
729,707 | dotchain.dot_chain | DotChain | null | class DotChain:
__slots__ = ('__chain__')
def __init__(self, data: t.Any = None,
context: t.Optional[t.Any | list[t.Any]] = [],
parent: t.Optional[Chain] = None,
pipe: t.Optional[bool] = False,
**kwargs):
if 'chain' in kwargs:
self.__chain__ = kwargs.get('chain')
else:
self.__chain__ = Chain(data=data, context=context, parent=parent, pipe=pipe)
@property
def Pipe(self) -> t.Self:
self.__chain__.pipe = True
return self
@property
def Chain(self) -> t.Self:
self.__chain__.pipe = False
return self
def With(self, *contexts: t.Any | list[t.Any], clear: bool = False) -> t.Self:
self.__chain__.set_contexts(*contexts, clear=clear)
return self
def Result(self) -> t.Any:
return self.__chain__.result_sync()
def Call(self, callable: t.Callable) -> DotChain:
attr_chain = GetAttrChain(parent=self.__chain__,
item=callable,
context=self.__chain__.contexts,
pipe=self.__chain__.pipe)
return DotChain(
chain=CallChain(parent=attr_chain,
context=attr_chain.contexts,
pipe=attr_chain.pipe))
def __getattr__(self, item: str) -> DotChain:
# https://github.com/python/cpython/issues/69718#issuecomment-1093697247
if item.startswith('__'):
raise AttributeError(item)
return DotChain(
chain=GetAttrChain(self.__chain__,
item,
context=self.__chain__.contexts,
pipe=self.__chain__.pipe))
def __call__(self, *args, **kwargs) -> DotChain:
return DotChain(
chain=CallChain(self.__chain__,
args=args,
kwargs=kwargs,
context=self.__chain__.contexts,
pipe=self.__chain__.pipe))
def __await__(self):
return self.__chain__.__await__()
def __aiter__(self):
self.__chain__.__aiter__()
return self
def __iter__(self):
self.__chain__.__iter__()
return self
async def __anext__(self):
return await self.__chain__.__anext__()
def __next__(self):
return self.__chain__.__next__()
| (data: 't.Any' = None, context: 't.Optional[t.Any | list[t.Any]]' = [], parent: 't.Optional[Chain]' = None, pipe: 't.Optional[bool]' = False, **kwargs) | [
0.0009013913222588599,
-0.03246867284178734,
0.02155905030667782,
0.024309687316417694,
-0.007935960777103901,
-0.0003275674534961581,
-0.04375000298023224,
-0.046017419546842575,
0.06661003082990646,
-0.014013382606208324,
0.03310057520866394,
0.021744903177022934,
0.012628771364688873,
0.03417852893471718,
-0.035275064408779144,
0.011030427180230618,
0.009190474636852741,
-0.001810913672670722,
0.04397302865982056,
0.05609070137143135,
0.04166844114661217,
0.04635195806622505,
0.016215750947594643,
-0.011876062490046024,
-0.011587989516556263,
0.04177995026111603,
-0.0002924294676631689,
0.023027295246720314,
0.004139895085245371,
-0.0009507587528787553,
0.0015251634176820517,
-0.02358485758304596,
-0.018780535086989403,
-0.05252230539917946,
0.045422688126564026,
-0.003628796897828579,
-0.034736089408397675,
0.06661003082990646,
-0.031000426039099693,
-0.053823281079530716,
0.01320491824299097,
-0.020518267527222633,
-0.047244057059288025,
-0.009204412810504436,
0.0031525464728474617,
-0.03523789346218109,
-0.005905507132411003,
0.07768692076206207,
-0.0005717910826206207,
-0.07181394100189209,
0.121920146048069,
0.014663871377706528,
0.04207731783390045,
-0.031316377222537994,
0.00315486965700984,
0.048322007060050964,
0.01449660211801529,
0.04170560836791992,
0.026502761989831924,
0.019124364480376244,
0.010342768393456936,
0.03010832890868187,
0.017591070383787155,
0.033453699201345444,
-0.026670031249523163,
-0.02899320423603058,
-0.06114592403173447,
-0.004455846734344959,
-0.024142418056726456,
0.027952423319220543,
-0.0329333059489727,
-0.013149161823093891,
-0.022581245750188828,
-0.015992725268006325,
-0.03406701609492302,
-0.05891567841172218,
-0.041408244520425797,
-0.008549278602004051,
0.05110981687903404,
-0.022060854360461235,
-0.0645284652709961,
-0.010575085878372192,
-0.04620327427983284,
-0.048953909426927567,
0.0188827533274889,
0.033286429941654205,
0.018557509407401085,
-0.04241185635328293,
-0.08519541472196579,
0.004053937736898661,
-0.07519648224115372,
0.05140718072652817,
-0.013836821541190147,
0.022098025307059288,
-0.004304840229451656,
-0.01660604402422905,
-0.004070200026035309,
0.006458422169089317,
0.00002858592415577732,
0.04189146310091019,
-0.013883284293115139,
0.025164615362882614,
-0.01066801231354475,
0.03451306372880936,
0.002883058274164796,
-0.007647886872291565,
-0.035851214081048965,
0.004153834190219641,
0.06263275444507599,
-0.04716971516609192,
-0.03873194754123688,
0.007257593795657158,
0.019291631877422333,
-0.016810482367873192,
0.02241397835314274,
0.027339104562997818,
-0.005617433227598667,
-0.055644650012254715,
0.017219360917806625,
0.001227797125466168,
0.03850892186164856,
0.02850998565554619,
-0.040999364107847214,
0.007252947427332401,
-0.034736089408397675,
0.010333475656807423,
0.024792907759547234,
-0.006667507812380791,
0.018845582380890846,
-0.0237892959266901,
0.04887957125902176,
0.03977273032069206,
0.005110981408506632,
0.045534200966358185,
0.04177995026111603,
0.0634133443236351,
-0.024941589683294296,
0.025592079386115074,
-0.10742354393005371,
0.04538551717996597,
-0.03739380091428757,
-0.029123302549123764,
-0.007517789490520954,
0.015686066821217537,
-0.021782074123620987,
-0.014905480667948723,
-0.0034197112545371056,
-0.04854503273963928,
0.029978230595588684,
-0.009850255213677883,
0.011838891543447971,
-0.02588944509625435,
-0.007336581591516733,
0.10556500405073166,
-0.003528900444507599,
0.05096113309264183,
-0.07136788964271545,
-0.016048481687903404,
0.009933889843523502,
-0.050180546939373016,
-0.08199872821569443,
0.000995479873381555,
-0.019328802824020386,
-0.021614806726574898,
0.02443978562951088,
0.0050273472443223,
0.017507435753941536,
-0.016141409054398537,
0.005724299233406782,
0.031632330268621445,
-0.0005987979820929468,
0.0033407234586775303,
0.025108858942985535,
0.04824766516685486,
-0.018845582380890846,
0.04709537327289581,
-0.014561651274561882,
0.04133390262722969,
-0.02412383258342743,
-0.05828377604484558,
0.009390267543494701,
-0.009701572358608246,
-0.019384559243917465,
-0.017014922574162483,
0.01748885028064251,
0.008084643632173538,
0.026000957936048508,
0.0027901313733309507,
0.01680118963122368,
-0.018984973430633545,
-0.053823281079530716,
0.010602964088320732,
0.07887638360261917,
0.04839634895324707,
0.02486724965274334,
0.03267311304807663,
-0.03888063132762909,
0.028361301869153976,
0.02899320423603058,
-0.01740521565079689,
-0.028974618762731552,
0.0008537662215530872,
0.06854291260242462,
0.008670083247125149,
-0.04096219316124916,
0.004072523210197687,
0.020499682053923607,
0.0408506840467453,
-0.026223981752991676,
0.003672937164083123,
-0.007945253513753414,
-0.025015931576490402,
0.009515718556940556,
0.03451306372880936,
-0.016457360237836838,
0.005589555483311415,
0.048953909426927567,
0.008237972855567932,
0.06304163485765457,
0.034847602248191833,
0.06415675580501556,
-0.009297340176999569,
0.03802570328116417,
0.03705926239490509,
-0.005617433227598667,
-0.0032199183478951454,
0.019421730190515518,
0.02246973291039467,
-0.015453750267624855,
-0.038100045174360275,
0.017739752307534218,
-0.008767656981945038,
0.005157445091754198,
-0.03726370260119438,
-0.03064730390906334,
-0.04728122800588608,
0.0368548221886158,
0.02577793225646019,
0.009961768053472042,
-0.014450139366090298,
-0.001137193408794701,
0.02598237246274948,
0.03311916068196297,
-0.04170560836791992,
-0.007805862929672003,
-0.004653316456824541,
0.05133284255862236,
-0.034568820148706436,
0.011996868066489697,
0.011773843318223953,
-0.03085174411535263,
0.007234361954033375,
-0.002287164330482483,
-0.002862149616703391,
-0.03415994346141815,
-0.013548747636377811,
0.02737627550959587,
-0.04177995026111603,
0.025164615362882614,
0.03560960292816162,
-0.004079492762684822,
-0.01757248491048813,
-0.08445200324058533,
0.054418016225099564,
-0.010259133763611317,
-0.03598131239414215,
0.03218989074230194,
-0.07579120993614197,
-0.05657391995191574,
0.061108753085136414,
0.11411427706480026,
-0.03369530662894249,
0.03689199313521385,
0.04226317256689072,
-0.0628557801246643,
0.004409383051097393,
-0.020685536786913872,
0.0014090046752244234,
-0.016587458550930023,
-0.01708926446735859,
0.007745460141450167,
0.01283321063965559,
-0.06233539059758186,
-0.06858008354902267,
0.019347388297319412,
0.0010802756296470761,
-0.008079997263848782,
0.025313297286629677,
0.005905507132411003,
-0.008539985865354538,
0.09865123778581619,
-0.003075881628319621,
0.06140612065792084,
-0.03406701609492302,
0.06828271597623825,
-0.024309687316417694,
-0.11188403517007828,
-0.00038390440749935806,
0.03588838502764702,
-0.04300658777356148,
0.02241397835314274,
-0.025815103203058243,
0.04817332327365875,
0.0377655066549778,
0.031372133642435074,
0.003210625844076276,
0.027450617402791977,
0.025870859622955322,
0.001284714904613793,
0.0362229198217392,
-0.024142418056726456,
0.0210200734436512,
-0.004602206405252218,
-0.03241291642189026,
0.0025880152825266123,
0.02603812888264656,
-0.0029806315433233976,
0.0056871287524700165,
0.023027295246720314,
0.03330501541495323,
-0.048210494220256805,
0.038211558014154434,
0.032115548849105835,
0.03888063132762909,
0.001512385904788971,
0.021428951993584633,
0.04263487830758095,
0.031743843108415604,
-0.02797100879251957,
0.02390080876648426,
-0.027357690036296844,
0.0005607560160569847,
-0.027450617402791977,
0.03514496982097626,
-0.034940529614686966,
0.07177677005529404,
0.042709220200777054,
-0.022321050986647606,
0.044567760080099106,
-0.03995858505368233,
0.028268374502658844,
0.003693845821544528,
-0.019756266847252846,
-0.036445945501327515,
-0.02332466095685959,
-0.03648311644792557,
0.08623620122671127,
0.06802251935005188,
0.027729397639632225,
0.0487680584192276,
0.007847679778933525,
-0.008911693468689919,
-0.003010832704603672,
0.015388701111078262,
-0.012684526853263378,
-0.037356629967689514,
-0.042226001620292664,
-0.009998939000070095,
0.018222972750663757,
0.003315168432891369,
0.04081351310014725,
0.013251380994915962,
-0.01304694265127182,
0.019012851640582085,
0.021038658916950226,
-0.04653780907392502,
-0.001470568822696805,
-0.006597812753170729,
-0.05620221421122551,
-0.013483698479831219,
0.004098077770322561,
-0.04244902729988098,
0.005645311437547207,
-0.03481043130159378,
0.03179959952831268,
-0.004184035584330559,
0.010156914591789246,
-0.013939040713012218,
0.011727379634976387,
0.04690951853990555,
-0.017163606360554695,
-0.012266355566680431,
0.034680332988500595,
0.019328802824020386,
0.036761898547410965,
0.01863185130059719,
0.044567760080099106,
-0.020443925634026527,
0.022748515009880066,
0.053823281079530716,
0.05081244930624962,
-0.03828589990735054,
-0.014524480327963829,
-0.004699780140072107,
-0.05765187367796898,
-0.026967396959662437,
0.010277719236910343,
-0.013400064781308174,
-0.021373195573687553,
-0.07579120993614197,
-0.005603494588285685,
0.008693315088748932,
0.07738955318927765,
0.026651445776224136,
0.049437131732702255,
0.01865972951054573,
0.04304375872015953,
0.00315486965700984,
0.00962723046541214,
0.018037118017673492,
-0.08185004442930222,
-0.02951359562575817,
-0.021187342703342438,
-0.015871921554207802,
0.014013382606208324,
-0.002578722545877099,
0.06025382876396179,
-0.006086714565753937,
0.026484178379178047,
0.054046306759119034,
0.0344015508890152,
-0.00841453392058611,
-0.006142470519989729,
-0.0256106648594141,
0.07463891804218292,
-0.001306785037741065,
-0.03796994686126709,
-0.014059845358133316,
0.016847653314471245,
0.026558518409729004,
-0.008888461627066135,
-0.04244902729988098,
-0.02732051908969879,
-0.0493999607861042,
-0.0037194006145000458,
-0.063339002430439,
-0.003352339379489422,
0.0024997347500175238,
0.03176242858171463,
0.05408347770571709,
-0.03375106304883957,
0.04802464321255684,
0.0035567786544561386,
-0.0542321614921093,
-0.014524480327963829,
-0.017786215990781784,
0.02748778834939003,
0.059175875037908554,
0.03951253369450569,
0.0031711317133158445,
0.029495010152459145,
0.0353865772485733,
0.06854291260242462,
-0.00231388071551919,
-0.03031276725232601,
0.0518532320857048,
0.05616504326462746,
-0.045050978660583496,
-0.08326254040002823,
0.05757753178477287,
0.0055105676874518394,
-0.023733539506793022,
0.023510515689849854,
0.004086462315171957,
-0.06988105922937393,
-0.005352591630071402,
0.07969414442777634,
0.022376807406544685,
-0.08140400052070618,
-0.029662279412150383,
0.0035614250227808952,
-0.04583156481385231,
-0.003949394915252924,
0.018761949613690376,
0.04252336546778679,
0.02085280418395996,
0.014979822561144829,
-0.06259558349847794,
-0.017386630177497864,
-0.1121070608496666,
-0.04241185635328293,
-0.04776444658637047,
0.04523683339357376,
-0.027190422639250755,
-0.0012115349527448416,
0.004228175617754459,
0.028324130922555923,
0.007917375303804874,
0.035739701241254807,
0.018492460250854492,
-0.037895604968070984,
0.06036533787846565,
-0.016392311081290245,
-0.018139338120818138,
-0.013251380994915962,
0.02310163713991642,
-0.013743894174695015,
0.006198226939886808,
0.024997346103191376,
-0.07649745792150497,
-0.01851104572415352,
-0.015212140046060085,
0.05315420776605606,
-0.021428951993584633,
0.0420401468873024,
0.03793277591466904,
-0.07055012881755829,
-0.020351000130176544,
0.0030224486254155636,
-0.02085280418395996,
0.01277745421975851,
-0.004084139131009579,
-0.031056182458996773,
-0.02401232160627842,
-0.037356629967689514,
-0.021484708413481712,
0.018594680353999138,
0.027078909799456596,
0.04096219316124916,
-0.06772515177726746,
0.03661321476101875,
0.037561070173978806,
0.013660259544849396,
-0.021856416016817093,
0.01170879416167736,
-0.05311703681945801,
0.029439253732562065,
-0.017907021567225456,
0.02122451364994049,
-0.007819801568984985,
0.044790785759687424,
0.009794499725103378,
-0.007104264572262764,
-0.004746243357658386,
0.008284436538815498,
0.004953005816787481,
-0.04073917120695114,
0.0225626602768898,
-0.01655028760433197,
-0.031743843108415604,
0.07285472005605698,
0.05672260373830795,
-0.008930278941988945,
0.016215750947594643,
0.007764045614749193,
-0.010017523542046547,
-0.005491982214152813,
0.043452635407447815,
0.009515718556940556,
-0.010602964088320732,
-0.018464582040905952,
0.0000442491946159862,
0.020295243710279465,
0.002024645684286952,
-0.027580715715885162,
-0.06177783012390137,
-0.0001716244441922754,
-0.004574328660964966,
-0.031632330268621445,
0.008642205037176609,
-0.029327742755413055,
0.0749734565615654,
-0.06419392675161362,
-0.08445200324058533,
0.055904846638441086,
-0.0105100367218256,
0.050292059779167175,
0.020889975130558014,
0.010184792801737785,
-0.04192863404750824,
-0.0017807125113904476,
0.08199872821569443,
-0.01112335454672575,
0.0012173429131507874,
0.011318501085042953,
0.06319031864404678,
-0.030015401542186737,
0.03806287422776222,
0.015602433122694492,
-0.04003292694687843,
0.05363743007183075,
-0.00281336298212409,
-0.06590378284454346,
-0.017591070383787155,
0.000018158867533202283,
-0.0724458396434784,
-0.014775383286178112,
0.05872982367873192,
-0.025945201516151428,
0.00714143505319953,
-0.06371071189641953,
-0.02759930118918419,
-0.037728335708379745,
0.01344652846455574,
0.06129460781812668,
-0.01157869677990675,
-0.05664826184511185,
0.040516145527362823,
0.02711608074605465,
-0.020239487290382385,
-0.021057244390249252,
-0.0005125501193106174,
-0.0009141687769442797,
0.01256372220814228,
-0.01802782528102398,
0.004197974223643541,
-0.056016359478235245,
0.0011592635419219732,
-0.00398191949352622,
-0.0028040704783052206,
-0.015472335740923882,
0.02689305692911148,
-0.015240018256008625,
-0.011634452268481255,
-0.0329333059489727,
-0.08608751744031906,
-0.10162489861249924,
0.03287754952907562,
-0.022544074803590775,
-0.022172367200255394,
-0.02711608074605465,
-0.04341546446084976,
-0.059696264564991,
-0.0035126383882015944,
-0.05828377604484558,
-0.012145550921559334,
0.021540464833378792,
-0.016373727470636368,
0.004493017680943012,
-0.051890403032302856,
0.02549915201961994,
-0.03209696337580681,
0.00945531576871872,
-0.02614963985979557,
0.028807351365685463,
-0.07731521129608154,
0.024532711133360863,
0.03743097186088562,
-0.009525011293590069,
0.024960175156593323,
-0.03421569988131523,
-0.029123302549123764,
-0.0755310133099556,
-0.025945201516151428,
-0.03481043130159378,
-0.0475785918533802,
-0.041854292154312134,
-0.035906970500946045,
0.05438084527850151,
0.01882699690759182,
-0.02706032432615757,
0.028212618082761765,
0.0016238982789218426,
-0.007777984719723463,
-0.010333475656807423,
-0.0065513490699231625,
0.04910259321331978,
-0.020035047084093094,
0.04360131919384003,
0.016475945711135864,
-0.027840910479426384,
-0.013465113006532192,
-0.0006690739537589252,
-0.0005180676816962659,
0.016643214970827103,
0.0010280042188242078,
-0.006704678758978844,
-0.04044180363416672,
0.018222972750663757,
0.006374788004904985,
0.02326890453696251,
0.006899825297296047,
-0.04702103137969971,
-0.015174969099462032,
-0.0350334569811821,
-0.006927703507244587,
-0.01259160041809082,
-0.024532711133360863,
0.04423322156071663,
-0.027339104562997818,
0.01170879416167736,
0.01182030700147152,
-0.018464582040905952,
-0.009878133423626423,
-0.06954652070999146,
-0.01772116683423519,
0.09359601140022278,
-0.01834377832710743,
0.014152772724628448,
-0.08935854583978653,
-0.0011296430602669716,
0.008498168550431728,
0.005129566881805658,
0.06449129432439804,
-0.05070093646645546,
-0.05244796350598335,
-0.024904418736696243,
-0.11121495813131332,
-0.007373752538114786,
-0.03865760564804077,
0.041742779314517975,
-0.019105779007077217,
-0.01200616080313921,
-0.08824341744184494,
-0.008321607485413551,
0.052113428711891174,
-0.014004089869558811,
0.0011035073548555374,
0.04207731783390045,
0.0475785918533802,
0.018390242010354996,
0.042114488780498505,
0.01589979976415634,
-0.04493946582078934,
0.05646240711212158,
-0.02042534202337265,
0.016076359897851944,
0.040999364107847214,
-0.04192863404750824,
0.040553316473960876,
-0.018380949273705482,
0.03209696337580681,
0.020518267527222633,
-0.026725787669420242,
0.006119238678365946,
0.029643693938851357,
0.018696900457143784,
0.01726582460105419,
0.0043001938611269,
0.010352061130106449,
0.003510315204039216,
0.021670561283826828,
0.0007718743872828782,
-0.0395868755877018,
0.019812023267149925,
-0.0560535304248333,
0.004846139810979366,
-0.015397993847727776,
-0.0004707330372184515,
-0.02765505760908127,
-0.028156861662864685,
0.007666472345590591,
0.0000771003178670071,
0.038211558014154434,
-0.002592661650851369,
-0.042709220200777054,
0.0150820417329669,
0.042486194521188736,
0.04843351989984512,
-0.07255735248327255,
0.03239433094859123,
0.011615867726504803,
-0.032227061688899994,
-0.017535313963890076,
0.050403572618961334,
-0.032375745475292206,
-0.0014322364004328847,
-0.03432721272110939,
-0.056239381432533264,
-0.07731521129608154,
-0.03523789346218109,
-0.008563217706978321,
0.05166737735271454,
-0.0033128452487289906,
0.04828483611345291,
-0.027469202876091003,
-0.0014798614429309964,
0.060885731130838394
] |
729,708 | dotchain.dot_chain | Call | null | def Call(self, callable: t.Callable) -> DotChain:
attr_chain = GetAttrChain(parent=self.__chain__,
item=callable,
context=self.__chain__.contexts,
pipe=self.__chain__.pipe)
return DotChain(
chain=CallChain(parent=attr_chain,
context=attr_chain.contexts,
pipe=attr_chain.pipe))
| (self, callable: Callable) -> dotchain.dot_chain.DotChain | [
0.026737909764051437,
-0.043799590319395065,
0.025491729378700256,
0.008732428774237633,
-0.02244958095252514,
-0.012498460710048676,
0.001384772709570825,
-0.02551005594432354,
0.04625530168414116,
-0.01951739192008972,
0.0023709507659077644,
0.009694553911685944,
0.04050087928771973,
0.015485629439353943,
-0.019059237092733383,
0.014715929515659809,
0.0012278546346351504,
-0.01946241222321987,
-0.0019906822126358747,
0.029890013858675957,
0.03067804127931595,
0.006853994447737932,
0.025106878951191902,
-0.040537528693675995,
0.03634083271026611,
0.0789492204785347,
-0.024593746289610863,
0.019755631685256958,
0.07755643129348755,
0.012736701406538486,
0.009337193332612514,
-0.01425777468830347,
-0.064471535384655,
-0.008581237867474556,
0.033756840974092484,
0.03995109349489212,
-0.041893668472766876,
0.023457521572709084,
0.028845421969890594,
-0.035516154021024704,
-0.01665850542485714,
-0.02457541972398758,
-0.00507177272811532,
0.016612689942121506,
-0.04057418182492256,
-0.0586804561316967,
0.00935093779116869,
0.08957841247320175,
0.00464568892493844,
-0.06311539560556412,
0.05706775188446045,
0.05226629227399826,
0.08408055454492569,
-0.041783709079027176,
-0.013882088474929333,
-0.01340560708194971,
0.024978594854474068,
0.03672568127512932,
0.053732387721538544,
0.012791680172085762,
0.058863718062639236,
0.017464857548475266,
-0.00866828765720129,
-0.04570551589131355,
-0.016786789521574974,
-0.04522903263568878,
-0.05318260192871094,
0.03652409464120865,
0.011765412986278534,
0.03419666737318039,
0.007999381050467491,
0.014541830867528915,
-0.006853994447737932,
-0.02420889586210251,
-0.01883932203054428,
-0.04460594430565834,
-0.0378619059920311,
-0.04574216902256012,
0.0322357676923275,
0.016585201025009155,
-0.04251675680279732,
-0.024190569296479225,
-0.0001842641067923978,
-0.0407574437558651,
-0.024557093158364296,
0.010033588856458664,
0.018207069486379623,
-0.06839333474636078,
-0.0707024335861206,
0.07982888072729111,
-0.026921171694993973,
0.04849109426140785,
-0.03793521225452423,
-0.009309704415500164,
0.0322357676923275,
-0.014743419364094734,
0.030568083748221397,
0.03678066283464432,
0.04105066508054733,
0.03351860120892525,
0.008544585667550564,
0.02882709540426731,
-0.015348182991147041,
-0.007628276012837887,
0.03403173387050629,
0.012709212489426136,
-0.01795966550707817,
-0.01291080005466938,
0.05985333397984505,
0.00912186037749052,
-0.03778860345482826,
0.022467907518148422,
0.03461817279458046,
0.005048864986747503,
0.010006099008023739,
0.012800843454897404,
-0.022852757945656776,
-0.04658517241477966,
0.010161872021853924,
0.010592537000775337,
-0.012819169089198112,
-0.011957838200032711,
-0.0037179256323724985,
0.00021690763242077082,
-0.06934630125761032,
0.07403780519962311,
-0.00494348956272006,
-0.03146606683731079,
0.09536948800086975,
-0.020763572305440903,
0.039914440363645554,
-0.003209373913705349,
0.01205863244831562,
0.031007912009954453,
0.02266949601471424,
0.014514341950416565,
0.03302379325032234,
0.015247389674186707,
-0.11684778332710266,
0.0826144590973854,
0.041673753410577774,
0.007609949912875891,
0.0443127267062664,
0.028882073238492012,
0.002879502484574914,
0.010473417118191719,
-0.01412949152290821,
-0.00156574381981045,
-0.013909577392041683,
-0.0439828522503376,
0.05391564965248108,
-0.03362855687737465,
-0.02080022357404232,
0.0638117864727974,
0.0015027475310489535,
0.05226629227399826,
-0.04515573009848595,
-0.03197919949889183,
0.05655461922287941,
-0.03177761286497116,
-0.06296878308057785,
0.037238817662000656,
-0.026554647833108902,
-0.006963951978832483,
0.02741597779095173,
-0.011307258158922195,
-0.006744037382304668,
-0.015522281639277935,
-0.028937052935361862,
0.011041528545320034,
0.02105679176747799,
-0.013552216812968254,
0.032364048063755035,
0.0467684343457222,
0.015027474611997604,
-0.03747705742716789,
0.0036171316169202328,
0.053475819528102875,
-0.011417215690016747,
-0.012864984571933746,
0.02908366173505783,
-0.019059237092733383,
0.020067177712917328,
0.005085517652332783,
0.01694256253540516,
0.04724491387605667,
0.047574788331985474,
0.024465462192893028,
-0.022889409214258194,
-0.019059237092733383,
-0.018857648596167564,
0.024813659489154816,
0.07748312503099442,
0.009332612156867981,
-0.036304179579019547,
-0.007948984391987324,
-0.024300526827573776,
0.011151486076414585,
-0.01855526678264141,
-0.025290140882134438,
-0.00487934798002243,
0.03679898753762245,
0.04211358353495598,
-0.006336279679089785,
-0.03837503865361214,
0.01435856893658638,
0.0013630102621391416,
0.05200972408056259,
-0.0380818210542202,
0.014175307005643845,
0.01654854789376259,
-0.025546707212924957,
0.01686009392142296,
-0.020873529836535454,
-0.015393998473882675,
-0.021808164194226265,
0.03767864406108856,
-0.01688758283853531,
0.02184481732547283,
-0.008136827498674393,
0.0613560825586319,
-0.035736069083213806,
0.06311539560556412,
-0.009103534743189812,
-0.012901636771857738,
0.009786184877157211,
0.028442244976758957,
-0.025381771847605705,
-0.053109295666217804,
-0.020635288208723068,
-0.012452645227313042,
-0.026408039033412933,
0.01918751932680607,
-0.08166150003671646,
-0.07099565863609314,
-0.04321315512061119,
0.07275497168302536,
0.03399508073925972,
-0.0785093903541565,
-0.03328035771846771,
0.021899795159697533,
0.0324007011950016,
0.06890647113323212,
0.010097729973495007,
-0.008347579278051853,
0.03892482444643974,
0.06344526261091232,
-0.011857043951749802,
-0.05039701983332634,
-0.03258396312594414,
0.027654219418764114,
0.031850915402173996,
-0.027342673391103745,
0.039767831563949585,
-0.01583382673561573,
-0.03124615177512169,
-0.03403173387050629,
-0.03958456963300705,
0.020360395312309265,
0.025674991309642792,
-0.007729070261120796,
-0.010445927269756794,
0.024337178096175194,
-0.008420883677899837,
0.01762063056230545,
0.03936465457081795,
-0.027764176949858665,
-0.037018902599811554,
-0.03859495371580124,
0.07887591421604156,
0.14206461608409882,
-0.03461817279458046,
0.05644466355443001,
0.034434910863637924,
-0.0909712016582489,
-0.02266949601471424,
-0.04226019233465195,
-0.028130700811743736,
0.00349342986010015,
-0.017758077010512352,
0.03291383385658264,
-0.02250456064939499,
-0.07095900177955627,
-0.023036019876599312,
0.011041528545320034,
-0.002540468005463481,
0.026224777102470398,
0.11875370144844055,
0.03925469517707825,
0.01588880643248558,
0.04460594430565834,
0.01037262286990881,
0.029156966134905815,
-0.041893668472766876,
0.01412949152290821,
-0.03815512731671333,
-0.05468534678220749,
0.021185074001550674,
0.06762363761663437,
-0.004189825151115656,
0.002102930098772049,
-0.06564440578222275,
-0.007206773851066828,
0.004205860197544098,
0.029248597100377083,
0.04588877782225609,
0.024227222427725792,
0.0383017361164093,
-0.03793521225452423,
0.04412946477532387,
-0.011857043951749802,
0.007751978002488613,
-0.007948984391987324,
-0.018280373886227608,
0.0045769657008349895,
0.02281610481441021,
-0.006148436572402716,
0.025290140882134438,
0.05527178570628166,
0.02386069856584072,
-0.028533875942230225,
-0.012690885923802853,
-0.0012965778587386012,
0.042296845465898514,
-0.022284645587205887,
0.008998158387839794,
0.04863770678639412,
0.0008143699960783124,
-0.009502128697931767,
0.05519847944378853,
-0.0021888341289013624,
-0.0008796570473350585,
0.022394603118300438,
0.019828936085104942,
-0.004373086616396904,
0.0381917767226696,
0.005273360759019852,
0.005946848541498184,
0.023970656096935272,
-0.042186886072158813,
-0.016447754576802254,
0.022376276552677155,
-0.031594350934028625,
-0.01265423372387886,
-0.026261428371071815,
0.015485629439353943,
0.014166143722832203,
0.059999942779541016,
0.028277309611439705,
-0.02375074103474617,
0.035937655717134476,
-0.06073299050331116,
0.000682650541421026,
0.036047615110874176,
-0.012819169089198112,
0.008191806264221668,
-0.022724473848938942,
0.008292600512504578,
0.019389107823371887,
-0.04244345426559448,
0.008205550722777843,
-0.04134388267993927,
0.006730292923748493,
-0.015962110832333565,
0.04149049147963524,
-0.017464857548475266,
-0.009813673794269562,
-0.005662792362272739,
-0.005644466262310743,
0.015009148977696896,
0.04259006306529045,
-0.013946229591965675,
-0.0006196542526595294,
-0.030384821817278862,
0.03566276282072067,
-0.021753186360001564,
0.0024282201193273067,
0.012278546579182148,
0.03599263355135918,
0.01951739192008972,
-0.034379929304122925,
-0.026151470839977264,
0.03351860120892525,
0.002377822995185852,
0.028698811307549477,
0.0021292741876095533,
0.005012212786823511,
-0.0077611408196389675,
0.03395842760801315,
0.05362242832779884,
0.06040311977267265,
-0.047574788331985474,
-0.04423942044377327,
-0.029926666989922523,
-0.038118474185466766,
0.020873529836535454,
0.0438728965818882,
-0.047684744000434875,
0.006973114795982838,
-0.04009770229458809,
-0.036047615110874176,
0.018060458824038506,
-0.011252280324697495,
0.02970675192773342,
0.03885152190923691,
0.029431859031319618,
-0.004787717014551163,
0.03932800143957138,
-0.01685093156993389,
0.014651788398623466,
-0.08122166991233826,
-0.011481357738375664,
-0.020250439643859863,
-0.0219914261251688,
-0.022889409214258194,
0.04746482893824577,
-0.0009724334231577814,
-0.005571161396801472,
0.005704026203602552,
-0.03172263130545616,
0.007069327402859926,
-0.0322357676923275,
-0.019260823726654053,
-0.02576662227511406,
0.07997548580169678,
0.006162181030958891,
-0.0025015247520059347,
-0.009932794608175755,
0.030916281044483185,
0.012663397006690502,
0.02235794998705387,
-0.05728766694664955,
-0.015339020639657974,
-0.005791075527667999,
0.007683254778385162,
-0.019425760954618454,
-0.01955404318869114,
0.03667070344090462,
0.04563220962882042,
0.038118474185466766,
-0.01122479047626257,
0.023970656096935272,
0.05131332948803902,
-0.04237014800310135,
-0.05717771127820015,
-0.020067177712917328,
-0.0010526104597374797,
0.06395839899778366,
0.012626743875443935,
-0.02298104017972946,
0.10401944816112518,
0.03641413897275925,
0.0728282779455185,
0.018023807555437088,
-0.002929899375885725,
0.017428206279873848,
-0.031594350934028625,
-0.04401950538158417,
0.0012473262613639235,
0.06802681088447571,
-0.01992056705057621,
-0.018509451299905777,
-0.020195459946990013,
-0.042186886072158813,
-0.11574821174144745,
0.015458140522241592,
0.030568083748221397,
0.059120286256074905,
-0.07033590972423553,
-0.06755033135414124,
0.03740375116467476,
-0.0739278495311737,
-0.025290140882134438,
0.011994490399956703,
0.004893092438578606,
0.05380569025874138,
0.01360719557851553,
-0.044789206236600876,
-0.01133474800735712,
-0.04889427125453949,
-0.03296881541609764,
-0.016044577583670616,
0.004728156607598066,
-0.009502128697931767,
-0.02012215554714203,
-0.014569319784641266,
0.0077611408196389675,
0.026096493005752563,
-0.017382390797138214,
0.0378619059920311,
-0.05780079960823059,
0.08869875222444534,
0.006643243599683046,
-0.020580310374498367,
-0.043799590319395065,
0.0014798397896811366,
0.023934002965688705,
-0.004732738249003887,
-0.03714718669652939,
-0.03384847193956375,
-0.034379929304122925,
-0.012370177544653416,
0.020781898871064186,
0.001453495817258954,
-0.016072068363428116,
0.027544261887669563,
-0.03866825997829437,
-0.027141086757183075,
-0.042919933795928955,
-0.031960874795913696,
0.009071463719010353,
-0.007133468985557556,
-0.06307874619960785,
-0.024043960496783257,
-0.06084294617176056,
-0.005296268500387669,
0.02679288759827614,
0.029615120962262154,
-0.036872293800115585,
-0.024722028523683548,
0.08598648011684418,
0.0645814910531044,
-0.010794125497341156,
-0.02681121416389942,
0.0351862832903862,
-0.042919933795928955,
0.026096493005752563,
0.02037872187793255,
0.004018017090857029,
-0.04515573009848595,
0.01566889137029648,
-0.04123392701148987,
-0.01713498681783676,
-0.01665850542485714,
0.03295048698782921,
-0.0102718286216259,
-0.05640801042318344,
0.03399508073925972,
-0.0233842171728611,
-0.027764176949858665,
0.02003052458167076,
0.013579705730080605,
-0.01733657531440258,
0.012553439475595951,
-0.006547030992805958,
-0.05633470416069031,
-0.019957220181822777,
0.00892485398799181,
0.0005446314462460577,
-0.004505951888859272,
-0.02803906984627247,
0.004391413182020187,
-0.0010743727907538414,
0.012397666461765766,
0.037238817662000656,
-0.0043203989043831825,
-0.001476403558626771,
-0.026041515171527863,
-0.0557849183678627,
0.021716533228754997,
-0.00021218290203250945,
0.016447754576802254,
0.004004272166639566,
-0.00349342986010015,
0.0704825222492218,
-0.014404384419322014,
0.03837503865361214,
0.08290767669677734,
-0.0024282201193273067,
-0.07843609154224396,
-0.011939512565732002,
0.07718990743160248,
-0.03870490938425064,
0.011215627193450928,
0.027764176949858665,
0.04361632838845253,
-0.0016264492878690362,
-0.03309709578752518,
-0.003232281655073166,
0.007518318947404623,
0.009208910167217255,
-0.004916000179946423,
-0.09317034482955933,
-0.022064732387661934,
-0.06912638247013092,
-0.034434910863637924,
-0.045925430953502655,
0.05156989395618439,
-0.061392731964588165,
-0.005525345914065838,
-0.06212577968835831,
-0.058643803000450134,
-0.06985943019390106,
0.022321298718452454,
0.054098911583423615,
-0.05655461922287941,
-0.025674991309642792,
0.016301145777106285,
-0.012984104454517365,
-0.008535422384738922,
-0.06003659591078758,
-0.023824045434594154,
0.025546707212924957,
0.03984113410115242,
-0.020452026277780533,
0.03634083271026611,
-0.03544284775853157,
0.0009604068472981453,
-0.03705555573105812,
0.033042117953300476,
-0.03947461023926735,
0.03575439378619194,
-0.034801434725522995,
0.02519850991666317,
0.0020914762280881405,
-0.07711660116910934,
-0.08547334372997284,
0.06509461998939514,
-0.019279150292277336,
-0.012196078896522522,
-0.008718684315681458,
-0.035369545221328735,
-0.04438602924346924,
0.053988952189683914,
-0.04878431558609009,
-0.027232717722654343,
0.07125221937894821,
-0.051203373819589615,
0.045668862760066986,
-0.019279150292277336,
0.017446530982851982,
0.03197919949889183,
-0.00022821832681074739,
-0.023622456938028336,
0.02519850991666317,
-0.03487473726272583,
0.032162461429834366,
0.07062913477420807,
-0.02721439115703106,
-0.05065358802676201,
0.008622472174465656,
-0.003635457716882229,
-0.047684744000434875,
-0.04691504314541817,
0.004508242476731539,
-0.03654241934418678,
-0.05178980901837349,
-0.003241444705054164,
0.05391564965248108,
-0.026481343433260918,
-0.012819169089198112,
-0.00929137784987688,
-0.016026252880692482,
0.023420870304107666,
-0.019444085657596588,
-0.04453263804316521,
0.021918121725320816,
-0.01821623183786869,
0.006478307768702507,
-0.011444704607129097,
-0.044569291174411774,
-0.013029919937252998,
0.03302379325032234,
-0.04929744824767113,
0.030806323513388634,
-0.011747087351977825,
-0.0125259505584836,
-0.0031498137395828962,
-0.020103828981518745,
0.02069026790559292,
-0.00021232607832644135,
-0.01699754036962986,
-0.0678068995475769,
0.002563375746831298,
-0.02508855238556862,
0.0030627644155174494,
-0.029376881197094917,
-0.009529618546366692,
0.01679595187306404,
0.01986558921635151,
-0.029816709458827972,
0.011105670593678951,
-0.028222331777215004,
0.050433672964572906,
-0.059376850724220276,
-0.03962121903896332,
0.07968226820230484,
-0.02664627879858017,
0.032419029623270035,
-0.059889987111091614,
-0.004322689957916737,
-0.02136833593249321,
0.005644466262310743,
0.022541211917996407,
-0.037330448627471924,
-0.015064127743244171,
-0.042186886072158813,
-0.08180810511112213,
-0.007110561244189739,
0.02230297215282917,
0.034948043525218964,
0.020891854539513588,
-0.008984413929283619,
-0.04948071017861366,
0.02162490226328373,
0.016576038673520088,
0.013204019516706467,
0.016356123611330986,
0.04009770229458809,
0.026921171694993973,
-0.005397062748670578,
0.010390949435532093,
-0.008452954702079296,
-0.03617589548230171,
0.010977387428283691,
-0.026921171694993973,
0.009135604836046696,
0.029743405058979988,
-0.05618809536099434,
0.015870479866862297,
-0.010858266614377499,
-0.014624298550188541,
0.029560143128037453,
-0.050836849957704544,
0.054721999913454056,
-0.014422710984945297,
0.05069023743271828,
0.043066542595624924,
-0.058753762394189835,
-0.013552216812968254,
0.008888201788067818,
-0.011426378972828388,
0.022852757945656776,
-0.06384844332933426,
0.005699444562196732,
-0.03844834491610527,
-0.03742207959294319,
-0.02096516080200672,
-0.011939512565732002,
-0.07579711824655533,
0.008081849664449692,
0.009117279201745987,
-0.004226477351039648,
0.02244958095252514,
0.026976149529218674,
0.01122479047626257,
-0.012571766041219234,
-0.011087344028055668,
0.09463644027709961,
-0.0679168552160263,
-0.026316408067941666,
0.060146551579236984,
0.033353663980960846,
0.03340864181518555,
0.048197876662015915,
-0.06274887174367905,
-0.006006408482789993,
0.03384847193956375,
-0.013066573068499565,
-0.04574216902256012,
0.012709212489426136,
-0.007545808330178261,
0.015742195770144463,
-0.022852757945656776,
0.06788020581007004,
0.008544585667550564,
0.01588880643248558,
0.035681091248989105
] |
729,709 | dotchain.dot_chain | Result | null | def Result(self) -> t.Any:
return self.__chain__.result_sync()
| (self) -> Any | [
0.008659306913614273,
-0.06037836894392967,
-0.0085366889834404,
0.05878857150673866,
0.027432411909103394,
-0.022460076957941055,
-0.027601540088653564,
-0.06179903447628021,
0.08639011532068253,
-0.008633937686681747,
0.04776148870587349,
-0.00014243670739233494,
-0.01024064514786005,
0.007010317407548428,
-0.0014735197182744741,
0.02450651302933693,
-0.03105173259973526,
0.020092297345399857,
0.0017694920534268022,
0.07089807093143463,
0.022409338504076004,
0.010088430717587471,
0.0518205389380455,
0.008202663622796535,
-0.009166687726974487,
-0.012853657826781273,
0.045664310455322266,
-0.0806397944688797,
0.02761845290660858,
0.039000704884529114,
-0.015043853782117367,
-0.0191959235817194,
-0.0026933487970381975,
-0.027381673455238342,
0.028734691441059113,
0.04045519605278969,
-0.03477252647280693,
0.047558534890413284,
0.025774966925382614,
-0.020143035799264908,
-0.03771533817052841,
-0.042586199939250946,
-0.038290370255708694,
0.002321269130334258,
-0.017098747193813324,
-0.044243644922971725,
0.008092731237411499,
0.05966803431510925,
0.02521684765815735,
-0.022155648097395897,
0.09423761069774628,
0.027263285592198372,
-0.007077968213707209,
-0.02479402907192707,
-0.001983015099540353,
0.016557540744543076,
-0.0017726632067933679,
0.022206386551260948,
-0.008904540911316872,
0.0258595310151577,
0.015728818252682686,
-0.02114088460803032,
0.058957699686288834,
0.01340332068502903,
0.04055667296051979,
0.0031478777527809143,
-0.024472689256072044,
0.02834569849073887,
0.005856025032699108,
0.09904082119464874,
-0.019754042848944664,
-0.020937932655215263,
-0.029377372935414314,
0.001822344260290265,
-0.00983473937958479,
-0.02000773325562477,
-0.007534611504524946,
-0.002536906162276864,
0.034163668751716614,
-0.019973907619714737,
-0.01404600404202938,
0.047254107892513275,
-0.03145763650536537,
-0.0022515042219311,
-0.020295249298214912,
0.008249172940850258,
-0.023035109043121338,
-0.06680519878864288,
-0.08713427186012268,
-0.007141390815377235,
-0.021631354466080666,
0.028785429894924164,
-0.038933053612709045,
0.021648265421390533,
0.013420233502984047,
0.017978208139538765,
-0.026248522102832794,
-0.03453575074672699,
-0.011559835635125637,
0.0014692915137857199,
-0.02320423536002636,
0.10783542692661285,
0.04864094778895378,
0.009268163703382015,
0.07529537379741669,
0.029546501114964485,
0.014147480018436909,
-0.0481673926115036,
0.04434512183070183,
0.06653459370136261,
-0.007796758320182562,
0.059295956045389175,
-0.0246756412088871,
-0.020041558891534805,
-0.01537365186959505,
-0.03511078283190727,
-0.017039554193615913,
-0.009285076521337032,
-0.026671340689063072,
0.05229409411549568,
0.03154220059514046,
0.02000773325562477,
0.0035791518166661263,
-0.010959435254335403,
-0.018637804314494133,
0.07888086885213852,
0.0156442541629076,
-0.04180821403861046,
0.01610935479402542,
0.008376019075512886,
0.02102249674499035,
0.024641815572977066,
-0.0020231828093528748,
0.01047742273658514,
-0.000957682088483125,
0.0672110989689827,
0.025335237383842468,
-0.01092560961842537,
-0.023931480944156647,
0.063760906457901,
-0.01813042350113392,
0.017792169004678726,
0.0506366491317749,
0.018857669085264206,
0.016363045200705528,
-0.025961006060242653,
0.014528016559779644,
0.019043710082769394,
-0.013200368732213974,
0.00006903820030856878,
0.0457996129989624,
-0.052463218569755554,
0.022104909643530846,
0.06876707077026367,
-0.04231559485197067,
0.05107637867331505,
0.01894223317503929,
-0.047017328441143036,
-0.0030464015435427427,
-0.09044916182756424,
-0.04857329651713371,
-0.061190176755189896,
0.015957139432430267,
-0.00237623555585742,
0.02142840065062046,
0.017978208139538765,
-0.00653676176443696,
0.04600256681442261,
-0.02320423536002636,
0.009784001857042313,
-0.03159293904900551,
0.0022578465286642313,
-0.03490782901644707,
0.016616735607385635,
-0.03629467263817787,
0.07529537379741669,
-0.0082914549857378,
0.07671604305505753,
0.010139168240129948,
-0.013361039571464062,
-0.013800770044326782,
-0.055947236716747284,
-0.025994831696152687,
0.0008942594286054373,
0.04072580114006996,
0.0030971397645771503,
0.040590498596429825,
0.0021753970067948103,
0.04174056276679039,
-0.008012395352125168,
-0.04414216801524162,
0.0164814330637455,
0.051854364573955536,
0.0170733779668808,
-0.038459498435258865,
0.00445649866014719,
-0.024760205298662186,
0.03531373292207718,
-0.005374012980610132,
-0.03873009979724884,
-0.07184518128633499,
-0.08855494111776352,
0.010029235854744911,
0.017690692096948624,
-0.02609630860388279,
-0.004202807787805796,
-0.018806930631399155,
0.05662374570965767,
0.010359033942222595,
-0.00938655249774456,
-0.027719927951693535,
-0.02332262508571148,
-0.04275532439351082,
0.02915750816464424,
0.005792602431029081,
-0.07434826344251633,
0.021986519917845726,
-0.06105487421154976,
0.04444659501314163,
0.039000704884529114,
0.005331731401383877,
-0.08436058461666107,
0.05425596609711647,
-0.0036658295430243015,
-0.03866245225071907,
0.028531737625598907,
-0.03585493937134743,
-0.008295683190226555,
-0.0062281046994030476,
-0.044886328279972076,
0.01360627356916666,
-0.011170843616127968,
-0.016396870836615562,
-0.07833966612815857,
-0.04414216801524162,
-0.0043803914450109005,
0.01806277222931385,
0.07475417107343674,
-0.032032668590545654,
0.031271595507860184,
0.01977095566689968,
0.03259078785777092,
0.05273382365703583,
0.024777118116617203,
-0.024996982887387276,
-0.014172849245369434,
0.047321755439043045,
0.002374121453613043,
0.02301819622516632,
-0.007716422900557518,
0.030087707564234734,
-0.025825705379247665,
0.04458189755678177,
-0.02893764339387417,
0.02981710433959961,
-0.04048902168869972,
0.03565198928117752,
-0.039880163967609406,
0.061663731932640076,
0.027060333639383316,
0.061596084386110306,
0.004786296281963587,
0.016921164467930794,
0.05249704420566559,
-0.11155622452497482,
-0.029428111389279366,
-0.04864094778895378,
0.008046220988035202,
-0.006173138506710529,
0.09464351087808609,
0.0686994194984436,
-0.03683587908744812,
-0.035685814917087555,
-0.02379618026316166,
-0.07421296089887619,
0.026451475918293,
-0.01336949598044157,
0.056589920073747635,
-0.08686366677284241,
-0.003469219198450446,
-0.025927182286977768,
0.03286139294505119,
-0.03585493937134743,
-0.08720192313194275,
-0.029715627431869507,
0.000837179075460881,
0.02656986378133297,
-0.015365195460617542,
-0.03040904924273491,
-0.039643388241529465,
0.048674773424863815,
0.015399021096527576,
0.01458721049129963,
-0.08036918938159943,
0.049385108053684235,
-0.036396145820617676,
-0.1023557111620903,
-0.020329074934124947,
0.0660272091627121,
0.02083645574748516,
-0.026840467005968094,
-0.04373626410961151,
0.0038434129673987627,
0.018198072910308838,
0.0024058327544480562,
0.028294960036873817,
0.02870086580514908,
0.032151058316230774,
-0.023288799449801445,
0.06453889608383179,
-0.0337577648460865,
0.005221798550337553,
-0.004056935664266348,
-0.013563991524279118,
0.01664210483431816,
-0.008046220988035202,
0.04143613576889038,
0.04512310400605202,
0.021326925605535507,
0.04370243847370148,
-0.04522458091378212,
-0.003722909837961197,
0.049215979874134064,
0.018925320357084274,
0.016861969605088234,
-0.026231609284877777,
-0.02856556326150894,
0.02462490275502205,
-0.014333520084619522,
0.0180120337754488,
-0.03372393921017647,
-0.05293677747249603,
-0.010950978845357895,
0.05767233297228813,
-0.0018603978678584099,
0.010139168240129948,
0.07691899687051773,
-0.03419749438762665,
0.053342681378126144,
0.003752507036551833,
0.02602865733206272,
-0.05987098813056946,
-0.006130856461822987,
-0.0181135106831789,
-0.008540917187929153,
-0.00442690122872591,
0.025335237383842468,
0.05087342485785484,
0.04492015391588211,
-0.049215979874134064,
-0.02332262508571148,
-0.03906835615634918,
0.012388559058308601,
0.03954191133379936,
0.02225712314248085,
0.004025224596261978,
-0.05949890613555908,
0.004333881661295891,
-0.002769456012174487,
0.03204958140850067,
0.05425596609711647,
0.015119960531592369,
-0.020176861435174942,
0.02728019841015339,
-0.036396145820617676,
-0.01390224602073431,
-0.046983502805233,
0.0036869703326374292,
-0.05388388782739639,
-0.04417599365115166,
-0.0336562879383564,
0.00950494222342968,
-0.04897920414805412,
-0.03443427383899689,
0.05760468170046806,
0.023576315492391586,
-0.03991398960351944,
0.012802920304238796,
-0.004295827820897102,
-0.01121312566101551,
-0.017741430550813675,
0.004875088110566139,
-0.02875160425901413,
-0.02673899196088314,
0.03531373292207718,
0.04228176921606064,
0.027652278542518616,
-0.043059755116701126,
-0.04596874117851257,
0.0307473037391901,
0.002860361710190773,
-0.055879589170217514,
-0.03944043442606926,
-0.03933895751833916,
-0.06227258965373039,
0.030628914013504982,
0.024607989937067032,
0.0017377807525917888,
-0.037647686898708344,
-0.06653459370136261,
-0.018806930631399155,
0.023813093081116676,
0.03240474686026573,
0.04319505766034126,
-0.033267296850681305,
-0.0650462731719017,
0.004185895435512066,
-0.012143324129283428,
-0.02545362524688244,
-0.01429123803973198,
-0.06579043716192245,
-0.03795211762189865,
-0.020684242248535156,
-0.0060632056556642056,
-0.016853513196110725,
0.022629203274846077,
0.0517190620303154,
0.006498707924038172,
0.028244221583008766,
0.06768465787172318,
0.007619175128638744,
-0.006464882753789425,
0.008963734842836857,
0.027314024046063423,
0.006549446377903223,
-0.026417650282382965,
0.014502647332847118,
0.03676822781562805,
-0.06291527301073074,
-0.016092441976070404,
0.029597239568829536,
-0.04674672335386276,
0.006735485978424549,
-0.02379618026316166,
0.0077248793095350266,
-0.021580616012215614,
-0.014561841264367104,
-0.04180821403861046,
0.049148328602313995,
0.04745705798268318,
0.017453914508223534,
0.08524005115032196,
-0.021123971790075302,
-0.013470971956849098,
0.058957699686288834,
-0.03954191133379936,
-0.015855664387345314,
0.039812516421079636,
0.0016415896825492382,
0.01390224602073431,
0.01410519890487194,
-0.019145185127854347,
0.05523690581321716,
-0.04065814986824989,
0.0029533817432820797,
0.0504336953163147,
-0.039643388241529465,
-0.06497862190008163,
-0.06453889608383179,
0.022206386551260948,
0.01693807728588581,
-0.038696274161338806,
-0.0022641888353973627,
-0.007170988246798515,
-0.050568997859954834,
-0.012058760970830917,
-0.020227598026394844,
0.01770760491490364,
-0.05618401616811752,
0.005999783053994179,
0.0053782411850988865,
-0.04025224596261978,
-0.05293677747249603,
-0.04650994762778282,
0.04627316817641258,
0.014663318172097206,
-0.02479402907192707,
0.002359322737902403,
0.024286648258566856,
-0.04262002557516098,
-0.0911933183670044,
-0.013716205954551697,
0.03785064071416855,
-0.03252313658595085,
-0.031373072415590286,
-0.012253256514668465,
0.07367175817489624,
-0.02119162306189537,
0.0601077638566494,
-0.015297544188797474,
-0.001281137578189373,
0.061257828027009964,
0.00606743386015296,
0.004591800272464752,
-0.02993549406528473,
-0.016616735607385635,
-0.007310518063604832,
-0.016363045200705528,
-0.020921019837260246,
0.00342482328414917,
0.03064582683146,
-0.020176861435174942,
0.012464665807783604,
0.015415932983160019,
0.036463797092437744,
-0.017157942056655884,
-0.025047721341252327,
-0.07495712488889694,
-0.0066593787632882595,
-0.0116951372474432,
-0.03954191133379936,
0.019111359491944313,
-0.051448456943035126,
-0.02332262508571148,
-0.004469183273613453,
-0.006016695871949196,
0.02261229045689106,
-0.030307572335004807,
-0.015145329758524895,
-0.01670129969716072,
0.0036510308273136616,
0.040286071598529816,
-0.03431588411331177,
0.027821404859423637,
-0.028075095266103745,
-0.005703810602426529,
-0.06112252548336983,
-0.02998623065650463,
-0.009750176221132278,
-0.03064582683146,
-0.005124550312757492,
-0.03164367750287056,
-0.01966947875916958,
0.007471188902854919,
-0.009521855041384697,
-0.008202663622796535,
-0.048742424696683884,
0.026400737464427948,
-0.03778298944234848,
-0.03873009979724884,
0.033030517399311066,
0.023424100130796432,
-0.012523860670626163,
0.001411154051311314,
0.02761845290660858,
-0.014147480018436909,
-0.014739424921572208,
0.048370346426963806,
0.010054605081677437,
-0.0058095152489840984,
-0.04505545273423195,
-0.013673924840986729,
0.03524608537554741,
0.023052021861076355,
-0.0004978678189218044,
-0.006388775538653135,
0.02922515943646431,
0.0014925465220585465,
-0.02166517823934555,
0.0023043565452098846,
0.08091039210557938,
0.041943516582250595,
-0.06298292428255081,
-0.020041558891534805,
-0.00025924009969457984,
-0.009090580977499485,
0.05303825065493584,
0.05618401616811752,
0.02361014112830162,
-0.029715627431869507,
-0.01121312566101551,
0.029242072254419327,
-0.02225712314248085,
0.0028138516936451197,
0.08091039210557938,
0.03538138419389725,
0.00422183470800519,
0.00469327624887228,
-0.009488029405474663,
-0.023880744352936745,
0.03429897129535675,
-0.04644229635596275,
0.029647978022694588,
-0.039812516421079636,
-0.003293749876320362,
-0.046983502805233,
-0.0746188685297966,
0.03377467766404152,
0.008456354029476643,
-0.0007653000648133457,
-0.014316607266664505,
-0.017961295321583748,
-0.05987098813056946,
0.01995699480175972,
0.08314286917448044,
-0.0008942594286054373,
-0.05554133281111717,
0.034383535385131836,
-0.006566358730196953,
-0.019229749217629433,
0.02839643694460392,
-0.008963734842836857,
-0.007310518063604832,
0.0016162206884473562,
0.01794438250362873,
-0.011754332110285759,
-0.08415763825178146,
0.04762618616223335,
0.03511078283190727,
0.03920365869998932,
0.008168837986886501,
-0.022595377638936043,
0.010680374689400196,
-0.029072945937514305,
-0.0021817393135279417,
-0.049215979874134064,
-0.045901089906692505,
0.05560898408293724,
-0.05083959922194481,
0.06646694242954254,
0.002985093044117093,
0.013284931890666485,
-0.023830005899071693,
0.014232044108211994,
-0.018553240224719048,
-0.022713767364621162,
0.024709466844797134,
-0.00501884613186121,
0.047964438796043396,
-0.004139385186135769,
-0.024946244433522224,
0.026468388736248016,
0.05293677747249603,
-0.015119960531592369,
0.021529877558350563,
-0.020058471709489822,
0.019551090896129608,
0.03348716348409653,
0.008498636074364185,
-0.005999783053994179,
-0.0026933487970381975,
0.03883157670497894,
-0.06436976790428162,
0.004422673024237156,
-0.026637515053153038,
-0.01723404973745346,
-0.05259852111339569,
-0.004414216615259647,
0.03835802152752876,
-0.02131001278758049,
-0.040827278047800064,
0.027533888816833496,
-0.010223732329905033,
-0.008786152116954327,
0.001988300122320652,
0.0013456173473969102,
0.0625770166516304,
-0.01463794894516468,
-0.020937932655215263,
0.03960956260561943,
-0.05686052516102791,
0.016988815739750862,
-0.025707315653562546,
-0.057469382882118225,
0.06548600643873215,
-0.004316968843340874,
-0.04420981928706169,
-0.005145691335201263,
-0.019229749217629433,
-0.011872720904648304,
0.01366546843200922,
0.005369784776121378,
-0.0037969029508531094,
0.041706737130880356,
-0.030967168509960175,
0.006452198140323162,
-0.016904251649975777,
0.009192056953907013,
0.018553240224719048,
-0.03703882917761803,
0.006401460152119398,
-0.014739424921572208,
-0.0270434208214283,
0.07840731739997864,
-0.09105802327394485,
-0.032726090401411057,
0.0009571535629220307,
0.014443452470004559,
0.0014597780536860228,
-0.0997849777340889,
-0.033267296850681305,
-0.05804441496729851,
0.012092586606740952,
0.028142746537923813,
-0.02839643694460392,
0.02981710433959961,
-0.02591026946902275,
-0.08828433603048325,
-0.03100099414587021,
0.04799826443195343,
0.06436976790428162,
-0.03507695719599724,
0.007196357473731041,
-0.0682935118675232,
0.019500352442264557,
0.06599338352680206,
0.027821404859423637,
0.005204885732382536,
-0.0039491173811256886,
0.003416367108002305,
0.03052743710577488,
0.05571046099066734,
-0.016024790704250336,
0.0038687819615006447,
0.0008419357473030686,
0.006126628257334232,
0.04718645662069321,
0.05584576353430748,
0.004896229133009911,
0.06169755756855011,
-0.04529223218560219,
-0.0015887374756857753,
0.004579115658998489,
-0.010934066027402878,
0.045427534729242325,
0.060073938220739365,
0.03984633833169937,
0.011771244928240776,
0.002308584749698639,
0.0638623833656311,
-0.02597791887819767,
-0.0270434208214283,
0.009462660178542137,
0.006917297374457121,
0.0330643430352211,
-0.029445024207234383,
0.017792169004678726,
0.017132572829723358,
0.009631787426769733,
-0.02744932472705841,
-0.007834811694920063,
-0.016396870836615562,
0.0307473037391901,
-0.01189809013158083,
-0.0026341541670262814,
-0.04316123202443123,
0.03954191133379936,
0.010494335554540157,
0.005949045065790415,
-0.04556283727288246,
0.04001546651124954,
0.025233760476112366,
0.05371475964784622,
0.008316824212670326,
0.0662301629781723,
0.0031732467468827963,
0.00422183470800519,
0.015551234595477581,
-0.012955134734511375,
-0.012168693356215954,
-0.019551090896129608,
-0.000440523202996701,
-0.02538597397506237,
0.049385108053684235,
-0.04546136036515236,
0.01770760491490364,
0.040049292147159576,
0.07691899687051773
] |
729,710 | dotchain.dot_chain | With | null | def With(self, *contexts: t.Any | list[t.Any], clear: bool = False) -> t.Self:
self.__chain__.set_contexts(*contexts, clear=clear)
return self
| (self, *contexts: 't.Any | list[t.Any]', clear: 'bool' = False) -> 't.Self' | [
-0.04054044559597969,
-0.045324284583330154,
0.04099438339471817,
-0.006586512550711632,
-0.03900402784347534,
0.015128464438021183,
-0.007490030489861965,
-0.006088923197239637,
0.03324246406555176,
0.03778187930583954,
-0.001439299201592803,
-0.04846695438027382,
-0.054857052862644196,
0.055310994386672974,
0.0007251056376844645,
-0.004875503480434418,
0.0022697062231600285,
-0.019798820838332176,
0.0503525584936142,
-0.04776858538389206,
0.04274031147360802,
0.01890839822590351,
0.028022142127156258,
0.019065530970692635,
-0.0244604479521513,
0.015014979057013988,
0.0003249062574468553,
-0.01950201392173767,
-0.01683947443962097,
0.012745273299515247,
0.010623971000313759,
0.030483899638056755,
-0.032875820994377136,
-0.040226176381111145,
0.024198560044169426,
-0.050806500017642975,
-0.06669444590806961,
0.04406721889972687,
0.04413705691695213,
-0.01425550039857626,
-0.015495109371840954,
-0.018262404948472977,
0.002274070866405964,
0.01997341401875019,
0.016752177849411964,
0.01924012415111065,
0.0503525584936142,
0.07772870361804962,
0.07751919329166412,
-0.042600639164447784,
0.036908913403749466,
-0.015835564583539963,
0.02458266355097294,
-0.017694978043437004,
-0.049025654792785645,
-0.011723904870450497,
-0.008755828253924847,
0.04776858538389206,
0.05552050471305847,
0.02482709288597107,
-0.02294149063527584,
-0.05000337213277817,
-0.001609527156688273,
0.016568854451179504,
-0.018244946375489235,
0.0309029221534729,
-0.048327282071113586,
0.06987202912569046,
0.04434656724333763,
0.03718826174736023,
-0.026293672621250153,
-0.044276729226112366,
-0.030256928876042366,
0.014185663312673569,
-0.006817847955971956,
0.0005952522624284029,
-0.08352518826723099,
-0.004375731572508812,
0.040121421217918396,
-0.014002340845763683,
0.0003328174934722483,
0.007634069304913282,
-0.047698747366666794,
0.0638660416007042,
0.01962422952055931,
0.07158304005861282,
0.006145665887743235,
-0.051050927489995956,
0.0008582326117902994,
0.002511953702196479,
-0.045813146978616714,
0.06404063105583191,
-0.020252762362360954,
-0.017162470147013664,
0.05845366418361664,
0.012745273299515247,
-0.03652480989694595,
0.023849373683333397,
-0.022731980308890343,
0.005364363081753254,
-0.05405392497777939,
-0.046057574450969696,
0.0454290434718132,
0.014526119455695152,
-0.013382536359131336,
0.022138364613056183,
-0.014892764389514923,
-0.04095946624875069,
0.0513651967048645,
0.0147880082949996,
-0.049479592591524124,
-0.012666705995798111,
0.017319604754447937,
-0.024198560044169426,
0.0014185663312673569,
0.017319604754447937,
-0.014142015017569065,
-0.019170287996530533,
0.040330931544303894,
-0.005512767005711794,
-0.03994682803750038,
0.0054996726103127,
0.006237327121198177,
-0.018349701538681984,
0.011558041907846928,
0.07249092310667038,
-0.06260897219181061,
-0.03861992433667183,
0.005578239448368549,
-0.0204622745513916,
0.039143700152635574,
0.020182926207780838,
0.020392436534166336,
-0.004844949580729008,
0.04710513353347778,
0.017328333109617233,
-0.05503164604306221,
-0.02318592183291912,
-0.030693411827087402,
0.05646330490708351,
-0.05611411854624748,
0.009122473187744617,
-0.004975894466042519,
0.027358688414096832,
-0.05992024391889572,
0.010126381181180477,
0.012247683480381966,
-0.06313274800777435,
-0.04689561948180199,
0.03837549313902855,
-0.004796936642378569,
0.009838303551077843,
0.032020315527915955,
0.014220582321286201,
-0.057685453444719315,
0.05126044154167175,
-0.03537249565124512,
0.051050927489995956,
0.04668610915541649,
-0.03446461632847786,
0.03198539838194847,
0.033225007355213165,
-0.02723647467792034,
0.057231511920690536,
0.006263515911996365,
-0.0006912783137522638,
-0.046057574450969696,
-0.010754914954304695,
0.008367358706891537,
0.018471917137503624,
0.04755907505750656,
-0.006686903536319733,
0.09337221831083298,
0.025769894942641258,
-0.01587921380996704,
-0.012038172222673893,
-0.04099438339471817,
-0.027288852259516716,
-0.010440648533403873,
-0.030099796131253242,
-0.013059539720416069,
-0.024076344445347786,
-0.04064520075917244,
0.020235303789377213,
0.03552963212132454,
-0.025001686066389084,
0.0010317341657355428,
0.017101362347602844,
-0.00165644905064255,
-0.02852846123278141,
-0.0370485894382,
0.021213022992014885,
0.0634470134973526,
0.011444556526839733,
-0.06494851410388947,
0.03477888181805611,
-0.017852112650871277,
-0.06376128643751144,
0.007136479951441288,
0.026695236563682556,
-0.08156974613666534,
-0.03673432022333145,
0.028318949043750763,
-0.06571672111749649,
0.052587345242500305,
0.01484911609441042,
-0.030099796131253242,
-0.013347618281841278,
-0.04738448187708855,
-0.001008273335173726,
0.026590481400489807,
-0.020392436534166336,
0.006102017592638731,
-0.000817858031950891,
0.020148007199168205,
0.0315139964222908,
-0.026311131194233894,
-0.001072654384188354,
0.023255757987499237,
0.01890839822590351,
0.027760252356529236,
0.001278892159461975,
-0.017092633992433548,
-0.0011905045248568058,
-0.047943178564310074,
0.04392754286527634,
0.01772116683423519,
-0.046511515974998474,
-0.02971569076180458,
0.009480387903749943,
-0.008367358706891537,
0.029401423409581184,
-0.019816281273961067,
-0.035966113209724426,
-0.06969743967056274,
-0.05394916981458664,
0.043787870556116104,
0.04459099471569061,
0.02175426110625267,
-0.019275043159723282,
0.06987202912569046,
0.013670614920556545,
0.013696803711354733,
-0.0191353689879179,
0.0015516933053731918,
0.010266055352985859,
-0.014517390169203281,
-0.026066701859235764,
0.061875682324171066,
0.05000337213277817,
0.007075372617691755,
-0.01819256693124771,
-0.0023722792975604534,
0.00477947760373354,
-0.016114912927150726,
-0.00004368229565443471,
-0.0073983692564070225,
-0.036070868372917175,
-0.024530285969376564,
-0.047244805842638016,
0.02126540057361126,
-0.004578695632517338,
0.00793960690498352,
0.08827411383390427,
-0.0380612276494503,
0.018140189349651337,
0.010519214905798435,
-0.06955776363611221,
-0.060897961258888245,
0.022400254383683205,
0.00019396166317164898,
0.033696405589580536,
0.04120389744639397,
0.039178621023893356,
0.003500585211440921,
0.06215503066778183,
0.0038803245406597853,
-0.010510485619306564,
-0.07640179991722107,
0.02887764573097229,
0.05859333649277687,
0.01598396897315979,
-0.004015633836388588,
-0.02412872202694416,
0.015556217171251774,
0.021282859146595,
-0.02828403003513813,
0.035582009702920914,
-0.013286510482430458,
-0.05346031114459038,
0.03163621202111244,
0.06438981741666794,
0.04801301658153534,
0.0008451381581835449,
0.02660793997347355,
-0.003168859053403139,
-0.09050890058279037,
0.03628037869930267,
0.020392436534166336,
0.01694422960281372,
-0.004312441684305668,
-0.06596115231513977,
0.050212882459163666,
0.04644167795777321,
0.08156974613666534,
-0.0618058443069458,
0.0295760165899992,
-0.01665615104138851,
0.04710513353347778,
0.02304624766111374,
0.022539928555488586,
0.03420272469520569,
-0.0482923649251461,
-0.02259230613708496,
-0.03411542996764183,
-0.01665615104138851,
-0.000491314975079149,
-0.04385770484805107,
-0.05621887370944023,
0.005220324266701937,
-0.01731087453663349,
-0.06397079676389694,
0.013234132900834084,
-0.024041425436735153,
-0.0040418230928480625,
0.04717496782541275,
0.028668135404586792,
-0.04787334054708481,
-0.029191913083195686,
-0.05517131835222244,
-0.039388131350278854,
-0.011077911593019962,
0.0027149177622050047,
0.006865860894322395,
-0.0658913180232048,
-0.03841041028499603,
-0.0001452666474506259,
0.013138107024133205,
0.02114318497478962,
0.01723230816423893,
-0.0015724262921139598,
0.0025927028618752956,
-0.05702200159430504,
-0.04263555631041527,
-0.027760252356529236,
-0.05524115636944771,
0.03076324798166752,
0.0004280251159798354,
0.03551217168569565,
0.08010316640138626,
-0.012823839671909809,
-0.051295358687639236,
0.06421522796154022,
-0.022731980308890343,
0.0058837765827775,
-0.023028787225484848,
-0.038096144795417786,
0.03182826563715935,
0.022662142291665077,
-0.052936531603336334,
0.05538082867860794,
0.059850405901670456,
-0.029558558017015457,
0.03507569059729576,
-0.018157649785280228,
-0.006110747344791889,
0.04424181208014488,
-0.01538162399083376,
-0.08275698125362396,
-0.051854055374860764,
0.08282681554555893,
-0.023447809740900993,
0.04305458068847656,
0.03872467949986458,
0.015041167847812176,
0.007319802418351173,
-0.031304486095905304,
0.05433327332139015,
-0.007695176638662815,
0.02212090604007244,
0.006102017592638731,
0.041273731738328934,
0.011706446297466755,
-0.020025791600346565,
0.008253873325884342,
-0.04494018107652664,
0.01319048460572958,
-0.029785528779029846,
0.04137849062681198,
0.043089497834444046,
0.039632562547922134,
-0.05656806007027626,
0.008101104758679867,
0.004587425384670496,
-0.06767216324806213,
0.04958435148000717,
0.0023919211234897375,
0.009026446379721165,
0.005194135010242462,
-0.053530145436525345,
0.047838423401117325,
-0.047698747366666794,
0.06438981741666794,
0.004441204015165567,
0.01425550039857626,
0.010711266659200191,
-0.016324425116181374,
0.05391424894332886,
-0.0038803245406597853,
-0.023936670273542404,
-0.023814454674720764,
-0.019990872591733932,
-0.019048072397708893,
0.048327282071113586,
-0.020619407296180725,
-0.10370811074972153,
0.0636565312743187,
-0.04270539432764053,
0.020986052230000496,
0.07458603382110596,
0.014875304885208607,
-0.0178084634244442,
0.009157391265034676,
0.024408070370554924,
0.05950121954083443,
-0.0015866118483245373,
-0.05796480178833008,
-0.05126044154167175,
0.008921691216528416,
-0.039981745183467865,
-0.05468245968222618,
-0.009157391265034676,
0.015241949819028378,
-0.009611332789063454,
-0.03041406162083149,
0.000806946016382426,
0.004997718147933483,
-0.02734122984111309,
-0.012038172222673893,
0.010833482258021832,
0.027253933250904083,
-0.04064520075917244,
0.000642174098175019,
-0.0012396087404340506,
-0.0601646713912487,
-0.048082850873470306,
-0.023622402921319008,
0.05779021233320236,
-0.028703052550554276,
0.034516993910074234,
0.0331551693379879,
0.014753090217709541,
-0.029855364933609962,
0.0007638434180989861,
0.026171457022428513,
0.027480904012918472,
0.024652501568198204,
0.037956468760967255,
-0.03196793794631958,
0.07221157103776932,
0.007856675423681736,
-0.049514513462781906,
0.03875959664583206,
-0.00255778431892395,
-0.03872467949986458,
-0.006219867616891861,
0.020409896969795227,
-0.006486122030764818,
-0.017590222880244255,
-0.02482709288597107,
-0.010850941762328148,
0.030256928876042366,
-0.033347222954034805,
-0.023674780502915382,
0.04480050876736641,
0.02388429269194603,
0.023151002824306488,
-0.04001666605472565,
-0.04825744405388832,
-0.05359998345375061,
-0.00797016080468893,
0.0191353689879179,
0.04940975829958916,
-0.05740610510110855,
-0.022889113053679466,
0.024652501568198204,
0.05307620391249657,
-0.032247286289930344,
0.02318592183291912,
0.05754578113555908,
0.0022500643972307444,
0.016324425116181374,
-0.0354074165225029,
0.0007174672209657729,
-0.02339543215930462,
0.012020712718367577,
-0.009925599209964275,
-0.009410550817847252,
-0.022365335375070572,
-0.025874650105834007,
-0.01444755308330059,
-0.02830149047076702,
0.017502926290035248,
0.007703906390815973,
0.0067261867225170135,
0.02042735554277897,
-0.00933198444545269,
-0.05845366418361664,
-0.014482471160590649,
-0.013365077786147594,
-0.011034264229238033,
-0.035250283777713776,
0.021213022992014885,
-0.031112434342503548,
0.01431660819798708,
-0.02889510616660118,
0.0001329905935563147,
-0.016306966543197632,
0.05304128676652908,
-0.04218161478638649,
0.016586314886808395,
0.0384802483022213,
0.040575362741947174,
0.008581235073506832,
0.008681626059114933,
-0.029872825369238853,
0.004188044462352991,
0.012972244061529636,
0.019170287996530533,
-0.0009498938452452421,
0.010519214905798435,
0.010178758762776852,
-0.027515823021531105,
0.03956272453069687,
0.039527807384729385,
-0.0244604479521513,
-0.03399321436882019,
-0.06156141310930252,
0.04137849062681198,
-0.006014721468091011,
0.013085728511214256,
0.01508481614291668,
0.04005158320069313,
0.009602602571249008,
-0.01676090620458126,
-0.02458266355097294,
-0.013906314969062805,
-0.007092831656336784,
0.025525463744997978,
0.005726643372327089,
-0.07374799251556396,
-0.06128206476569176,
-0.013635695911943913,
0.06393587589263916,
0.012771462090313435,
-0.04975894093513489,
-0.018367160111665726,
0.04193718731403351,
-0.04326409101486206,
0.019676607102155685,
0.04322917386889458,
0.06851020455360413,
0.0010481022763997316,
-0.013513481244444847,
0.049619268625974655,
-0.05513640120625496,
-0.015189572237432003,
0.03493601456284523,
0.004393191076815128,
0.025263575837016106,
0.0004681269056163728,
0.02910461649298668,
0.035110607743263245,
-0.010737456381320953,
0.017756085842847824,
0.05167946219444275,
-0.03399321436882019,
0.04026109352707863,
0.0036599012091755867,
-0.0004899509949609637,
-0.06260897219181061,
0.03053627721965313,
-0.037851713597774506,
-0.029279209673404694,
0.028074519708752632,
-0.03516298532485962,
0.02982044778764248,
0.04281014949083328,
0.016490288078784943,
0.032264746725559235,
-0.013932503759860992,
-0.022138364613056183,
0.02686982974410057,
0.009916869923472404,
0.03648989275097847,
0.005538955796509981,
-0.05241275206208229,
-0.0337662436068058,
-0.04619725048542023,
0.013068269938230515,
0.03188064321875572,
-0.001237426302395761,
0.003371823113411665,
0.0029920837841928005,
-0.024862011894583702,
-0.0031928655225783587,
-0.027847548946738243,
0.0487113855779171,
-0.05573001503944397,
0.0033740054350346327,
0.0339757539331913,
-0.03331230208277702,
0.04720988869667053,
0.015573675744235516,
-0.03160129487514496,
-0.03353927284479141,
-0.07577326893806458,
0.015014979057013988,
-0.027026962488889694,
-0.051888976246118546,
-0.05946630239486694,
-0.051504869014024734,
-0.0998670682311058,
0.004565601237118244,
-0.037956468760967255,
-0.03589627519249916,
-0.008834394626319408,
-0.001045374316163361,
-0.021701883524656296,
0.05010812729597092,
0.04707021266222,
-0.002453028690069914,
-0.03170605003833771,
0.023081164807081223,
0.05904727801680565,
-0.0030575559940189123,
0.047349561005830765,
0.03448207303881645,
0.0012603416107594967,
0.011130290105938911,
0.0009493482648395002,
-0.026468265801668167,
0.007555502466857433,
-0.03493601456284523,
-0.05957105755805969,
0.012972244061529636,
-0.04347360134124756,
0.04906057193875313,
0.025525463744997978,
-0.026293672621250153,
0.0035856992471963167,
-0.005482213106006384,
0.016053806990385056,
0.005621887743473053,
-0.03861992433667183,
0.03505823016166687,
0.03600103035569191,
-0.02779517136514187,
0.04183243215084076,
0.029436342418193817,
-0.02973315119743347,
0.05049223080277443,
0.04413705691695213,
0.023447809740900993,
-0.02316846139729023,
-0.014534848742187023,
0.04095946624875069,
-0.014866575598716736,
0.05775529146194458,
0.04518461227416992,
-0.011566772125661373,
-0.08750589936971664,
-0.05052715167403221,
0.04221653565764427,
-0.0429847426712513,
0.015564946457743645,
-0.06728805601596832,
0.016123643144965172,
0.01205563172698021,
-0.057091839611530304,
-0.017380710691213608,
-0.0060670990496873856,
0.0021267582196742296,
-0.00248358235694468,
-0.03781679645180702,
0.06798642873764038,
0.014595956541597843,
0.01669980026781559,
-0.01864650845527649,
-0.03764220327138901,
0.013923774473369122,
-0.02615399844944477,
0.02269706130027771,
0.022033609449863434,
-0.07318929582834244,
0.034412238746881485,
-0.042845066636800766,
-0.1416296660900116,
0.023220838978886604,
-0.010030355304479599,
0.02102097123861313,
0.052727021276950836,
0.01793067902326584,
-0.07402733713388443,
0.023849373683333397,
0.015276867896318436,
0.055450666695833206,
0.012169117107987404,
-0.01223022397607565,
0.05108584836125374,
0.0503525584936142,
0.015460190363228321,
0.0031448525842279196,
0.009698629379272461,
0.02959347702562809,
-0.024512827396392822,
0.05244767293334007,
-0.02472233772277832,
0.006970616988837719,
0.019292501732707024,
0.010754914954304695,
0.022557387128472328,
0.012675436213612556,
-0.09902902692556381,
0.04336884617805481,
0.03493601456284523,
0.017756085842847824,
0.04267047718167305,
0.07710017263889313,
-0.08338551223278046,
-0.00017377437325194478,
-0.03900402784347534,
0.049514513462781906,
0.011042993515729904,
0.005835763644427061,
-0.051504869014024734,
0.015914132818579674,
0.03757236525416374,
0.038550086319446564,
-0.03781679645180702,
-0.017022795975208282,
0.03624546155333519,
0.019641688093543053,
0.04916532710194588,
-0.0638660416007042,
-0.031426701694726944,
0.012142928317189217,
0.003843223676085472,
-0.0098732216283679,
-0.030868003144860268,
-0.019763903692364693,
0.026765072718262672,
0.059117116034030914,
0.01890839822590351,
0.05691724643111229,
0.02114318497478962,
-0.0591520331799984,
-0.009838303551077843,
-0.014534848742187023,
-0.023622402921319008,
-0.014045989140868187,
-0.03603595122694969,
0.0070535484701395035,
0.032125070691108704,
0.04762890934944153,
0.03799138963222504,
0.054123762995004654,
0.05454278364777565
] |
729,711 | dotchain.dot_chain | __aiter__ | null | def __aiter__(self):
self.__chain__.__aiter__()
return self
| (self) | [
-0.038104455918073654,
0.0018781159305945039,
0.010317805223166943,
0.05569377541542053,
-0.029929380863904953,
-0.02702077478170395,
-0.022735314443707466,
0.0007760943262837827,
0.06946232169866562,
0.011780713684856892,
0.052733536809682846,
0.0010052114957943559,
0.027227303013205528,
0.03689970821142197,
-0.050805941224098206,
0.030944811180233955,
-0.01965460181236267,
0.038276560604572296,
0.0024288578424602747,
0.01743442378938198,
0.005128784105181694,
-0.0037390212528407574,
0.005855935625731945,
-0.010541544295847416,
-0.025282494723796844,
0.10037270933389664,
-0.046606533229351044,
0.016221070662140846,
0.0223394688218832,
-0.008020179346203804,
-0.024955492466688156,
-0.03745044767856598,
0.010859942063689232,
-0.026160240173339844,
0.07620891183614731,
0.006028042174875736,
-0.06323205679655075,
0.05748368799686432,
-0.033543623983860016,
0.02488664910197258,
0.02283857762813568,
0.004517804831266403,
-0.03313056752085686,
-0.039033833891153336,
0.006096885073930025,
-0.009586350992321968,
0.052389323711395264,
0.05844748392701149,
0.05827537924051285,
-0.06756914407014847,
0.04691632464528084,
0.0009939169976860285,
0.04113353416323662,
-0.006522849667817354,
-0.05283680185675621,
0.07848072052001953,
0.010111276991665363,
0.0201537124812603,
0.009560535661876202,
0.03572938218712807,
-0.029154900461435318,
-0.023303266614675522,
0.08054600656032562,
-0.008317063562572002,
-0.01355341449379921,
-0.021805936470627785,
-0.06491870433092117,
0.004298368468880653,
-0.004461870063096285,
0.08027063310146332,
-0.01889733225107193,
-0.018828488886356354,
-0.01585964672267437,
0.03514421731233597,
-0.01922433450818062,
-0.03765697777271271,
-0.06354184448719025,
-0.001417730120010674,
0.05954897031188011,
-0.021134721115231514,
0.00397136528044939,
0.023320477455854416,
-0.0686362087726593,
0.030566176399588585,
-0.0004891599528491497,
-0.04402492940425873,
0.01206468977034092,
-0.07600238174200058,
-0.06856736540794373,
0.004732938017696142,
-0.08109674602746964,
0.033543623983860016,
-0.00121765595395118,
0.027227303013205528,
0.01918991282582283,
0.06657093018293381,
-0.015326114371418953,
-0.027812466025352478,
-0.010369437746703625,
0.01290801353752613,
-0.023148370906710625,
0.06546944379806519,
0.012959645129740238,
0.01617804355919361,
0.0327175110578537,
0.004272552207112312,
-0.029086057096719742,
-0.04801781103014946,
0.0012241099029779434,
0.004395178519189358,
-0.031994663178920746,
0.01667715422809124,
-0.0297916941344738,
0.008441840298473835,
-0.009285164065659046,
-0.03197745233774185,
0.017486056312918663,
-0.04894718527793884,
0.06684629619121552,
0.0025686947628855705,
0.012512167915701866,
0.002476187190040946,
-0.03342314809560776,
-0.00718546099960804,
-0.013166173361241817,
0.01814006082713604,
-0.034507423639297485,
0.00004968240682501346,
0.0481899157166481,
-0.068360835313797,
-0.0023514097556471825,
0.01523145567625761,
-0.021564988419413567,
-0.01931038871407509,
0.029430270195007324,
0.040410686284303665,
0.009371217340230942,
-0.006058161146938801,
-0.046778641641139984,
0.08302434533834457,
-0.04757033288478851,
0.008854896761476994,
0.045264098793268204,
0.013510387390851974,
-0.026074187830090523,
-0.0006765950238332152,
-0.0213240385055542,
0.04708843305706978,
0.020687242969870567,
-0.017167657613754272,
0.020670032128691673,
0.005386944394558668,
0.05321543663740158,
0.09995965659618378,
-0.006144214421510696,
0.03776024281978607,
-0.08398813754320145,
-0.004827597178518772,
0.021754305809736252,
-0.04942908510565758,
-0.029567956924438477,
-0.014069734141230583,
-0.011161128990352154,
-0.013716915622353554,
0.010722256265580654,
0.013329675421118736,
-0.004621068947017193,
-0.008751632645726204,
0.007538279984146357,
0.03841424733400345,
-0.028053415939211845,
-0.04343976825475693,
-0.006118398159742355,
0.02757151611149311,
-0.06956558674573898,
0.06725935637950897,
0.005911869928240776,
0.04784570261836052,
0.005189021583646536,
0.006088279653340578,
0.0008637612336315215,
-0.027037985622882843,
-0.04757033288478851,
-0.024232644587755203,
0.04037626460194588,
-0.020893771201372147,
0.038483090698719025,
-0.009896143339574337,
-0.004582344554364681,
0.0064023747108876705,
-0.00015771978360135108,
0.016195254400372505,
0.030187539756298065,
0.02082492783665657,
0.00997359212487936,
-0.008433235809206963,
-0.019413651898503304,
0.010033829137682915,
0.00020599037816282362,
0.02301068603992462,
-0.047914545983076096,
0.03239050880074501,
-0.0016543770907446742,
0.023957272991538048,
0.04605579003691673,
0.040995851159095764,
0.01998160406947136,
0.013432939536869526,
-0.028053415939211845,
-0.0040552676655352116,
-0.03356083482503891,
-0.01413857750594616,
-0.016935313120484352,
0.009242137894034386,
0.0009896144038066268,
-0.026091398671269417,
0.03920593857765198,
-0.0335952565073967,
0.06464333087205887,
0.05937686190009117,
0.01667715422809124,
0.013002672232687473,
-0.0032420626375824213,
-0.007056380622088909,
-0.036762021481990814,
0.0023600151762366295,
0.01495608501136303,
-0.03837982565164566,
-0.002165319165214896,
-0.01726231724023819,
0.009758458472788334,
0.007030564825981855,
-0.016840655356645584,
-0.023268844932317734,
-0.021685462445020676,
0.008261128328740597,
-0.018948962911963463,
0.01418160367757082,
-0.10140535235404968,
0.0055246297270059586,
0.0034701041877269745,
0.025506233796477318,
0.0578279010951519,
0.0235097948461771,
-0.01418160367757082,
-0.006824036594480276,
0.010515728034079075,
0.008097627200186253,
0.0009132419363595545,
0.0032915433403104544,
0.003825074527412653,
-0.028173889964818954,
-0.013045699335634708,
0.011823739856481552,
-0.03092760033905506,
-0.04784570261836052,
0.017365580424666405,
-0.0373816080391407,
0.02061839960515499,
0.005051335785537958,
0.02137567102909088,
0.013648073188960552,
0.017658162862062454,
0.01793353259563446,
-0.05655431002378464,
-0.01114391814917326,
0.009483086876571178,
-0.009362611919641495,
-0.042923446744680405,
0.05793116241693497,
0.11248903721570969,
-0.05242374539375305,
0.006841246969997883,
0.05596914514899254,
-0.06361068785190582,
0.002865578979253769,
-0.027829676866531372,
-0.0034787096083164215,
-0.13217805325984955,
-0.025506233796477318,
0.0335952565073967,
0.05913591384887695,
-0.03163323923945427,
-0.0011703264899551868,
-0.04626232013106346,
-0.034249261021614075,
0.008983977138996124,
0.057173892855644226,
-0.010653413832187653,
-0.03116855025291443,
0.07249139994382858,
0.00833857711404562,
0.02032581903040409,
-0.0012628339463844895,
0.08171632885932922,
-0.04605579003691673,
-0.07861840724945068,
0.022305047139525414,
0.043508611619472504,
-0.01403531339019537,
0.03290683031082153,
-0.09651751816272736,
-0.030101487413048744,
0.05152878910303116,
0.010980417020618916,
0.016754601150751114,
0.013166173361241817,
0.0660201832652092,
0.0022825670894235373,
0.05128784105181694,
0.003145252587273717,
0.021392880007624626,
-0.05707063153386116,
0.005997923668473959,
0.004517804831266403,
-0.014913057908415794,
0.009018398821353912,
0.012477746233344078,
0.025024335831403732,
0.07641544193029404,
-0.07235372066497803,
0.01805400848388672,
0.002036239020526409,
-0.005886054132133722,
-0.015145402401685715,
-0.00886350218206644,
0.005102967843413353,
0.05600356683135033,
-0.03318220004439354,
-0.010412463918328285,
-0.04670979827642441,
-0.01585964672267437,
0.003153858007863164,
0.008811870589852333,
-0.08591573685407639,
0.03254540264606476,
0.039825525134801865,
-0.03841424733400345,
0.0420629121363163,
-0.03896499052643776,
0.008829081431031227,
0.021840358152985573,
-0.008897923864424229,
-0.007219882216304541,
-0.039240360260009766,
0.02190920151770115,
0.011023443192243576,
0.04034184291958809,
0.021478934213519096,
0.015808014199137688,
-0.0020308608654886484,
-0.04340534657239914,
0.039240360260009766,
0.026177451014518738,
-0.0002000742097152397,
-0.0028505197260528803,
-0.039033833891153336,
0.00833857711404562,
-0.009646588936448097,
-0.0029086056165397167,
0.045642733573913574,
-0.01901780627667904,
-0.03879288211464882,
-0.002368620363995433,
0.02061839960515499,
0.0071037099696695805,
-0.023647479712963104,
-0.01324362214654684,
0.00896676629781723,
-0.07407478988170624,
-0.00497388793155551,
-0.03917151689529419,
0.0037175079341977835,
-0.0015747776487842202,
0.027089618146419525,
0.03985994681715965,
-0.003123739268630743,
0.041581012308597565,
0.012994066812098026,
0.0403074249625206,
0.037897925823926926,
0.010722256265580654,
0.001386535819619894,
-0.007004748564213514,
0.032115139067173004,
-0.030153119936585426,
0.03266587853431702,
0.003216246608644724,
0.02418101206421852,
0.02924095280468464,
0.04547062888741493,
-0.07717271149158478,
-0.02254599705338478,
-0.045642733573913574,
-0.07469437271356583,
-0.016892286017537117,
-0.012099111452698708,
-0.038070034235715866,
-0.011797924526035786,
-0.05349080637097359,
0.016814839094877243,
0.006320623680949211,
0.0686362087726593,
0.02077329531311989,
0.06818873435258865,
0.008179377764463425,
0.03844866901636124,
0.023647479712963104,
0.016229676082730293,
-0.02538575977087021,
-0.0645400658249855,
-0.01906943880021572,
-0.04154659062623978,
-0.02786409854888916,
0.037312764674425125,
-0.05321543663740158,
0.0916985273361206,
-0.03128902614116669,
0.023681901395320892,
0.034834425896406174,
0.020136501640081406,
0.01793353259563446,
-0.010532938875257969,
0.031030863523483276,
0.023027895018458366,
-0.0327175110578537,
-0.058378640562295914,
0.013028488494455814,
-0.010816914960741997,
0.007641544099897146,
0.005425668321549892,
-0.0033195107243955135,
-0.007017656695097685,
-0.017253711819648743,
0.026573296636343002,
-0.034972112625837326,
-0.04378398135304451,
-0.03025638312101364,
0.01944807358086109,
0.04275134205818176,
0.0321323461830616,
0.006832641549408436,
-0.010627597570419312,
-0.04836202412843704,
0.05610683187842369,
-0.012331455014646053,
0.022425521165132523,
0.10732582956552505,
0.01523145567625761,
-0.01114391814917326,
0.038655199110507965,
-0.006922997999936342,
0.03381899371743202,
-0.003913279622793198,
-0.041167955845594406,
-0.000209486301173456,
0.04123679921030998,
-0.056623153388500214,
0.01474955677986145,
0.06305994838476181,
-0.007779229432344437,
-0.009861722588539124,
-0.0017092360649257898,
-0.034800004214048386,
-0.03696855157613754,
0.06653650850057602,
0.004134866874665022,
-0.009216321632266045,
-0.068360835313797,
-0.007977152243256569,
0.04798338934779167,
-0.06051276624202728,
-0.02634955756366253,
-0.07324867695569992,
-0.008592434227466583,
0.01641038805246353,
0.0031301933340728283,
-0.027915731072425842,
0.002316988306120038,
-0.05269911512732506,
-0.03350920230150223,
-0.030979232862591743,
0.03225282207131386,
0.010145698674023151,
-0.030153119936585426,
0.02301068603992462,
-0.0003823998849838972,
-0.03548843041062355,
0.058722857385873795,
0.004244585055857897,
-0.020928192883729935,
0.039446890354156494,
-0.047157276421785355,
0.051769740879535675,
0.027519885450601578,
0.012925224378705025,
-0.0014424704713746905,
0.009474481455981731,
-0.0025579379871487617,
-0.0707014948129654,
-0.0185531172901392,
-0.021014245226979256,
0.011668844148516655,
0.0008965691085904837,
0.029602376744151115,
0.030944811180233955,
-0.052940066903829575,
-0.05018635466694832,
-0.0010918028419837356,
-0.018071219325065613,
0.0607537180185318,
0.0026310833636671305,
-0.03156439587473869,
-0.016659943386912346,
-0.007856677286326885,
-0.05727715790271759,
-0.045264098793268204,
0.013914838433265686,
0.04027300328016281,
-0.019413651898503304,
0.0721471905708313,
-0.01089436374604702,
0.006996143143624067,
-0.008144956082105637,
-0.007753413170576096,
-0.022064097225666046,
0.04757033288478851,
0.04226944223046303,
0.006703561637550592,
-0.025661131367087364,
-0.0012219585478305817,
-0.009655194357037544,
-0.01609198935329914,
0.028105048462748528,
-0.020480714738368988,
0.05827537924051285,
-0.0747632160782814,
0.01626409776508808,
0.003883160650730133,
-0.008407419547438622,
0.0481899157166481,
0.015300298109650612,
0.008329971693456173,
-0.01801958680152893,
-0.010257568210363388,
-0.055418405681848526,
-0.08219823241233826,
-0.00033856643131002784,
-0.0030419884715229273,
-0.00003680800728034228,
-0.05349080637097359,
-0.013716915622353554,
0.012951039709150791,
0.0627845749258995,
0.007856677286326885,
-0.018002375960350037,
-0.004741543438285589,
0.00706928875297308,
0.008579526096582413,
0.02547181397676468,
0.007929823361337185,
0.08309318125247955,
-0.043852824717760086,
-0.04103027284145355,
0.029086057096719742,
-0.010257568210363388,
0.06288783997297287,
0.04220059886574745,
0.0030484425369650126,
-0.017864691093564034,
-0.016083383932709694,
0.012305639684200287,
-0.043715137988328934,
0.042716920375823975,
-0.008192285895347595,
0.06354184448719025,
-0.021169142797589302,
0.01099762786179781,
-0.0011520402040332556,
-0.06636440008878708,
0.008897923864424229,
-0.03610801696777344,
-0.008067508228123188,
-0.06268130987882614,
-0.03893056884407997,
-0.07717271149158478,
-0.020308608189225197,
0.08095905929803848,
-0.038104455918073654,
-0.04763917624950409,
-0.04168427735567093,
-0.039033833891153336,
-0.05280238017439842,
-0.04602137207984924,
0.06560713052749634,
-0.026039766147732735,
-0.02605697698891163,
-0.03397389128804207,
-0.013407123275101185,
0.012821960262954235,
0.019086649641394615,
0.02719288133084774,
-0.00017224129987880588,
0.045057572424411774,
0.021065877750515938,
0.007181158289313316,
-0.0446789376437664,
0.022907420992851257,
-0.03555727377533913,
-0.002596661914139986,
-0.04130564257502556,
0.01877685636281967,
0.028810685500502586,
0.008218102157115936,
-0.027709202840924263,
-0.05789674445986748,
-0.05941128358244896,
0.011686054989695549,
-0.0015898370184004307,
0.037897925823926926,
-0.03590148687362671,
-0.02777804434299469,
-0.03128902614116669,
0.04109911620616913,
-0.056657575070858,
-0.014680714346468449,
0.04839644581079483,
-0.05221721529960632,
0.04863739386200905,
0.014362316578626633,
0.03758813440799713,
-0.006071068812161684,
0.029516324400901794,
-0.05300890654325485,
0.012477746233344078,
-0.009388428181409836,
0.017623741179704666,
0.06409259140491486,
-0.024955492466688156,
-0.026951931416988373,
-0.029189320281147957,
-0.027433831244707108,
-0.036555495113134384,
-0.015283088199794292,
-0.04113353416323662,
-0.03156439587473869,
-0.05125341936945915,
-0.011014837771654129,
-0.010102671571075916,
-0.03473116084933281,
-0.02882789634168148,
0.01814006082713604,
-0.021805936470627785,
0.016135016456246376,
-0.016109200194478035,
-0.030807124450802803,
0.07806766778230667,
0.007959941402077675,
0.020050447434186935,
0.009207716211676598,
-0.013269437476992607,
0.012056084349751472,
0.0055074188858270645,
0.006931603420525789,
0.08288665860891342,
-0.000837945204693824,
-0.023578638210892677,
-0.025712762027978897,
-0.03765697777271271,
0.015532642602920532,
-0.03046291135251522,
0.013845995999872684,
-0.053731758147478104,
-0.024284275248646736,
-0.04282018169760704,
-0.012228190898895264,
0.0042209201492369175,
-0.021272405982017517,
0.060099709779024124,
-0.0446789376437664,
-0.035970330238342285,
0.004836202133446932,
-0.050255198031663895,
-0.012245401740074158,
-0.03720949962735176,
0.008674184791743755,
0.015928488224744797,
0.003575519658625126,
0.020515136420726776,
-0.13472524285316467,
0.007172552868723869,
-0.05335312336683273,
-0.027502674609422684,
0.05865401402115822,
0.018948962911963463,
0.003855193266645074,
-0.057001788169145584,
-0.10388369113206863,
0.010111276991665363,
-0.000913779775146395,
0.12116321921348572,
0.0010541544761508703,
0.014319289475679398,
-0.060856979340314865,
0.0014306381344795227,
0.026865879073739052,
0.011789319105446339,
0.022993475198745728,
0.0321323461830616,
0.004212315194308758,
0.03163323923945427,
0.05380060151219368,
-0.004655490163713694,
-0.020893771201372147,
0.07620891183614731,
-0.027588726952672005,
0.039618995040655136,
0.017503265291452408,
-0.006096885073930025,
0.04918813705444336,
-0.016961129382252693,
0.0031624631956219673,
0.013992286287248135,
-0.02932700701057911,
0.038655199110507965,
0.029516324400901794,
-0.033543623983860016,
0.02593650110065937,
0.0033087541814893484,
0.01206468977034092,
0.0055504459887743,
-0.02447359263896942,
-0.031013652682304382,
0.012959645129740238,
0.0335952565073967,
-0.043474189937114716,
-0.016754601150751114,
0.03817329928278923,
0.025368548929691315,
-0.0030505938921123743,
-0.0379667691886425,
-0.03724392130970955,
-0.007009051274508238,
0.03999762982130051,
0.05090920627117157,
-0.030015433207154274,
0.01462047640234232,
0.05435134097933769,
0.027175670489668846,
-0.012099111452698708,
0.020979823544621468,
0.01437092199921608,
0.029654009267687798,
0.04140890762209892,
0.07324867695569992,
-0.048534128814935684,
0.004083234816789627,
0.02225341461598873,
-0.01305430382490158,
-0.048327602446079254,
-0.021685462445020676,
-0.03765697777271271,
0.03958457335829735,
-0.001508086221292615,
0.05497092753648758,
0.025919290259480476,
0.0747632160782814,
0.03356083482503891
] |
729,712 | dotchain.dot_chain | __anext__ | null | def __iter__(self):
self.__chain__.__iter__()
return self
| (self) | [
-0.016319777816534042,
-0.038512952625751495,
-0.031537216156721115,
0.023906966671347618,
-0.06686372309923172,
-0.006217878311872482,
-0.01757713221013546,
-0.004351222887635231,
0.1079602763056755,
0.03417249396443367,
0.03734171763062477,
-0.003916315734386444,
0.006093003787100315,
0.05745939537882805,
-0.03861629590392113,
0.029366986826062202,
-0.019876541569828987,
0.037548404186964035,
-0.02092720754444599,
0.03685944527387619,
-0.012091275304555893,
0.015949459746479988,
0.020186573266983032,
0.007522599305957556,
-0.02301131561398506,
0.059836313128471375,
-0.017602968961000443,
-0.005313616245985031,
0.014295952394604683,
-0.014175384305417538,
-0.015725547447800636,
-0.013460586778819561,
0.01848139427602291,
-0.03610158711671829,
0.05422127619385719,
0.018171360716223717,
-0.07041187584400177,
0.045368120074272156,
-0.01799912191927433,
0.03675609827041626,
0.03651496395468712,
-0.008965112268924713,
-0.035085368901491165,
-0.017465176060795784,
0.005317922215908766,
-0.020737743005156517,
0.048916272819042206,
0.052016597241163254,
0.05098315700888634,
-0.06620920449495316,
0.0644868016242981,
0.01861918717622757,
0.03978753089904785,
-0.04864068701863289,
-0.03260510787367821,
0.06431455910205841,
0.0013671581400558352,
0.01755990833044052,
0.017146531492471695,
0.05367010459303856,
-0.025749938562512398,
-0.04578149691224098,
0.048330653458833694,
-0.0036773323081433773,
-0.006463320925831795,
-0.04264672100543976,
-0.06620920449495316,
-0.012452980503439903,
0.005830337293446064,
0.05894066393375397,
-0.028385216370224953,
-0.0028548846021294594,
-0.0220467709004879,
0.030038723722100258,
-0.03393135592341423,
-0.025284890085458755,
-0.049984160810709,
0.019428716972470284,
0.05938848853111267,
-0.061903197318315506,
-0.015785831958055496,
0.03138219937682152,
-0.08191753178834915,
0.011996543034911156,
-0.0066872332245111465,
-0.02154727280139923,
-0.006932675838470459,
-0.07557908445596695,
-0.056047022342681885,
0.05267111212015152,
-0.07130752503871918,
0.03947749733924866,
-0.006467626895755529,
0.020048782229423523,
0.011307581327855587,
0.05546140670776367,
-0.019618181511759758,
-0.015243275091052055,
-0.015079646371304989,
-0.0034878680016845465,
-0.017981896176934242,
0.07048077136278152,
0.01575138419866562,
0.022253459319472313,
0.03026263788342476,
0.005038031376898289,
-0.04357681795954704,
-0.06283329427242279,
0.04188886284828186,
0.01899811439216137,
-0.03723837435245514,
0.04326678812503815,
0.000920409569516778,
-0.0004230654740240425,
-0.007212566211819649,
-0.0492263026535511,
0.020651623606681824,
-0.030159292742609978,
0.05422127619385719,
0.009817702695727348,
0.00750537496060133,
0.017043186351656914,
-0.025302113965153694,
0.03499924764037132,
-0.0289191622287035,
0.03506814315915108,
-0.002022748114541173,
0.0035309279337525368,
0.03480978310108185,
-0.05745939537882805,
0.005830337293446064,
0.014261504635214806,
-0.014373460784554482,
-0.013391690328717232,
0.042543377727270126,
0.0011443221010267735,
-0.0007912293076515198,
-0.028333544731140137,
-0.06882726401090622,
0.06958512216806412,
-0.019015340134501457,
0.0004166064609307796,
0.03148554265499115,
0.05856173485517502,
-0.06572693586349487,
-0.009516282007098198,
-0.00220467709004879,
0.053601209074258804,
0.025870507583022118,
-0.0107219647616148,
-0.019635405391454697,
0.02194342575967312,
0.0664503425359726,
0.09941715747117996,
-0.04715941846370697,
0.05277445539832115,
-0.059319593012332916,
-0.00912874098867178,
0.020978879183530807,
-0.044265780597925186,
-0.03541262447834015,
-0.0016190597089007497,
-0.03162333741784096,
-0.006308304611593485,
0.009972718544304371,
0.004805507138371468,
-0.01825748197734356,
-0.02707619033753872,
0.004672020673751831,
0.014227056875824928,
-0.006372894626110792,
-0.058010563254356384,
0.0161561481654644,
0.0018462017178535461,
-0.05294669792056084,
0.0835021436214447,
0.00003187456604791805,
0.06576137989759445,
-0.02573271468281746,
0.00874981191009283,
-0.011118117719888687,
-0.031072167679667473,
-0.060800857841968536,
-0.042818959802389145,
0.0492263026535511,
0.00968852173537016,
0.03365577384829521,
0.0019247863674536347,
0.0022025241050869226,
-0.0059638237580657005,
0.000941939651966095,
-0.008237396366894245,
0.03648051619529724,
0.026370003819465637,
-0.026662813499569893,
0.012203231453895569,
-0.029177522286772728,
0.014158160425722599,
0.0045256162993609905,
0.03734171763062477,
-0.07502791285514832,
0.00009977832087315619,
-0.017981896176934242,
0.0066743153147399426,
-0.004560064524412155,
0.03243286535143852,
0.0008165271137841046,
-0.007432173006236553,
0.004461026284843683,
-0.0014199067372828722,
-0.01685372181236744,
-0.04078652337193489,
0.03381079062819481,
-0.004430884029716253,
0.020169349387288094,
0.002600829815492034,
0.01665564626455307,
-0.07771486788988113,
0.03369022160768509,
0.02681782841682434,
0.026525020599365234,
0.0013908412074670196,
0.008099604398012161,
-0.027747927233576775,
-0.02683505229651928,
0.0036428843159228563,
-0.01476961374282837,
-0.04175107181072235,
-0.052257735282182693,
-0.006605418864637613,
0.013322794809937477,
0.0007643167627975345,
0.0045256162993609905,
-0.029659796506166458,
-0.004426578059792519,
0.019032564014196396,
0.008771342225372791,
0.021995097398757935,
-0.045505911111831665,
0.025560474023222923,
-0.0034878680016845465,
0.025026528164744377,
0.03682499751448631,
-0.017844105139374733,
-0.026180539280176163,
0.025405457243323326,
0.04202665761113167,
0.024716496467590332,
0.031778354197740555,
0.03444807976484299,
0.014407908543944359,
-0.02010045386850834,
-0.019910989329218864,
-0.0008595872204750776,
0.012074051424860954,
-0.06407342851161957,
0.00670876307412982,
-0.04064873233437538,
0.038512952625751495,
-0.00026576154050417244,
0.026266660541296005,
0.0018042181618511677,
0.010093286633491516,
0.04295675456523895,
-0.04299120232462883,
0.012823297642171383,
0.009137352928519249,
-0.004364140797406435,
-0.023080212995409966,
0.06913729012012482,
0.1236686035990715,
-0.03530928120017052,
0.01158316619694233,
0.0676560252904892,
-0.03551596775650978,
0.027713479474186897,
-0.026008298620581627,
-0.0060456376522779465,
-0.10286196321249008,
-0.010368871502578259,
0.03096882253885269,
0.04461026191711426,
-0.049536336213350296,
-0.041578829288482666,
-0.0030400429386645555,
-0.01633700169622898,
0.003634272376075387,
0.05759718641638756,
0.000048846297431737185,
-0.024837065488100052,
0.0936298742890358,
0.010833920910954475,
0.03875408694148064,
-0.03369022160768509,
0.08074629306793213,
-0.04667714610695839,
-0.06903395056724548,
0.004118698183447123,
0.0374450609087944,
-0.0013919176999479532,
0.04368016496300697,
-0.08660247176885605,
-0.003916315734386444,
0.03809957578778267,
0.0020593490917235613,
0.016181984916329384,
0.0377550944685936,
0.07054966688156128,
-0.006980041973292828,
0.04140659049153328,
0.006648479029536247,
0.02059995010495186,
-0.04653935506939888,
-0.009404325857758522,
0.0037656056229025126,
-0.05463465303182602,
0.007191036362200975,
0.016001133248209953,
0.002045354573056102,
0.06834498792886734,
-0.0794372707605362,
0.026025522500276566,
0.024664824828505516,
0.0036644143983721733,
-0.005055255722254515,
0.024561479687690735,
0.007793877739459276,
0.04777948558330536,
-0.02841966412961483,
-0.008947888389229774,
-0.004779670853167772,
-0.04309454560279846,
0.004715080838650465,
0.05387679487466812,
-0.023045765236020088,
0.022098442539572716,
0.05305004119873047,
-0.021771185100078583,
0.025560474023222923,
-0.06521021574735641,
0.0009236391051672399,
0.00249533262103796,
0.0038990918546915054,
-0.025698266923427582,
-0.05415238067507744,
0.017706312239170074,
-0.011083669029176235,
0.04616042599081993,
0.028833040967583656,
0.020186573266983032,
0.02423422411084175,
-0.018653634935617447,
0.05525471642613411,
0.01645756885409355,
-0.0007083386299200356,
-0.008159888908267021,
-0.042577825486660004,
0.02485428936779499,
-0.016905395314097404,
-0.0007029561093077064,
0.0747523307800293,
0.002372611314058304,
-0.038995224982500076,
0.006179124116897583,
0.03000427596271038,
-0.01629394106566906,
-0.04791727662086487,
-0.008422555401921272,
-0.00881870836019516,
-0.037169475108385086,
-0.006364282686263323,
-0.009171800687909126,
-0.03978753089904785,
-0.029573675245046616,
0.002424283418804407,
-0.0003479794249869883,
-0.02363138273358345,
0.05177546292543411,
0.006657090969383717,
0.02974591590464115,
0.03658385947346687,
0.0025642288383096457,
0.016440344974398613,
-0.0029819118790328503,
0.02683505229651928,
-0.0456092543900013,
0.06903395056724548,
-0.007445090916007757,
0.035688210278749466,
0.02854023315012455,
0.004084250424057245,
-0.07757706940174103,
-0.032277848571538925,
-0.015260498970746994,
-0.06937842816114426,
-0.03610158711671829,
0.017129307612776756,
-0.04113100469112396,
-0.020410487428307533,
-0.0676560252904892,
0.014227056875824928,
0.0074407849460840225,
0.046504907310009,
0.04144103825092316,
0.04540256783366203,
-0.0330701544880867,
0.03150276839733124,
0.008482838980853558,
0.016569525003433228,
0.006321222521364689,
-0.050638675689697266,
-0.035963792353868484,
-0.02376917377114296,
-0.037307269871234894,
0.01323667448014021,
-0.03270845115184784,
0.056425951421260834,
-0.00020063314877916127,
0.0421300008893013,
0.06796605885028839,
0.04585039243102074,
-0.028126856312155724,
0.017792431637644768,
0.02473372034728527,
0.0027989062946289778,
-0.052119944244623184,
-0.037651751190423965,
-0.019067011773586273,
0.0034814090467989445,
-0.016044192016124725,
-0.033001258969306946,
-0.0519477017223835,
0.004982053302228451,
-0.027231205254793167,
0.04226779192686081,
-0.06207543611526489,
-0.06572693586349487,
-0.01475238986313343,
0.012599384412169456,
0.053601209074258804,
0.04864068701863289,
0.009697133675217628,
-0.0033005564473569393,
-0.07454564422369003,
0.05608147010207176,
-0.017241263762116432,
0.0033027094323188066,
0.09934826195240021,
0.031141063198447227,
0.011677898466587067,
0.020134901627898216,
-0.006639867089688778,
0.05232663080096245,
-0.026766156777739525,
0.0007357894210144877,
0.04743500426411629,
0.05742494761943817,
-0.05759718641638756,
-0.011540106497704983,
0.05249887332320213,
0.009447385556995869,
-0.009473221376538277,
0.019790420308709145,
-0.025698266923427582,
-0.03703168407082558,
0.02621498703956604,
0.005231801886111498,
0.01627671718597412,
-0.0421300008893013,
-0.020410487428307533,
0.04836510121822357,
-0.039856426417827606,
-0.0332251712679863,
-0.08791149407625198,
-0.014941854402422905,
0.02363138273358345,
-0.011531494557857513,
-0.012780237011611462,
-0.018946442753076553,
-0.06896505504846573,
-0.0504319854080677,
-0.05463465303182602,
0.05377345159649849,
-0.025060977786779404,
-0.024061983451247215,
-0.010472215712070465,
0.029832035303115845,
-0.01873975433409214,
0.029969828203320503,
0.015940848737955093,
0.01824025809764862,
0.02156449668109417,
-0.04371461272239685,
0.027834046632051468,
0.027782374992966652,
0.003591212211176753,
0.00033640701440162957,
0.01256493665277958,
0.009249309077858925,
-0.06589917093515396,
-0.005757135339081287,
0.001982917543500662,
0.03224340081214905,
0.016707317903637886,
0.015389678999781609,
0.05287780240178108,
-0.015544695779681206,
-0.04595373570919037,
-0.008711057715117931,
-0.020548278465867043,
0.028367992490530014,
-0.03110661543905735,
-0.05160322040319443,
-0.03665275499224663,
-0.004060567356646061,
-0.0717208981513977,
-0.03086547926068306,
0.008612019941210747,
0.013400302268564701,
-0.011479821987450123,
0.08102188259363174,
-0.007970424368977547,
-0.01824025809764862,
0.014640433713793755,
-0.005778665188699961,
-0.018429722636938095,
0.00968852173537016,
-0.002714939182624221,
0.01340891420841217,
-0.03134775161743164,
0.012418532744050026,
-0.00691545195877552,
-0.012022379785776138,
0.017706312239170074,
-0.044506918638944626,
0.009654073975980282,
-0.02683505229651928,
-0.007057549897581339,
0.004633266478776932,
0.043197888880968094,
0.059836313128471375,
0.026990069076418877,
0.02178840897977352,
-0.018188584595918655,
-0.004809813108295202,
-0.012332412414252758,
-0.06527911126613617,
-0.02879859320819378,
0.007018796168267727,
-0.0019753819797188044,
-0.03747950866818428,
-0.005038031376898289,
-0.026955621317029,
0.06200654059648514,
0.011712347157299519,
-0.01970430091023445,
-0.017344607040286064,
0.003972294274717569,
-0.0194803886115551,
0.033983029425144196,
0.030038723722100258,
0.07151421159505844,
-0.06700151413679123,
-0.06000855192542076,
0.02769625559449196,
0.004461026284843683,
0.03064156509935856,
0.046987179666757584,
0.0030335839837789536,
0.010945877060294151,
0.0067001511342823505,
0.019308147951960564,
-0.050053056329488754,
0.048055071383714676,
0.04436912387609482,
0.07833492755889893,
-0.007871385663747787,
-0.006906839553266764,
0.0032445783726871014,
-0.08136636018753052,
0.0021530049853026867,
-0.03613603487610817,
0.025801610201597214,
-0.044506918638944626,
-0.044885847717523575,
-0.06669148057699203,
-0.04495474323630333,
0.04946744069457054,
-0.013960083946585655,
-0.03026263788342476,
-0.012874969281256199,
-0.04936409741640091,
-0.052981145679950714,
-0.03648051619529724,
0.029125850647687912,
-0.035688210278749466,
-0.03696278855204582,
-0.03737616539001465,
-0.034964799880981445,
0.00845700316131115,
0.012297963723540306,
0.025422681123018265,
0.02006600610911846,
0.05453130975365639,
0.014106487855315208,
-0.021822858601808548,
-0.033741891384124756,
0.03844405710697174,
0.015458575449883938,
0.029728692024946213,
-0.03944304957985878,
-0.001995835453271866,
0.03258788213133812,
-0.021598944440484047,
-0.023080212995409966,
-0.05246442183852196,
-0.04250892996788025,
0.05070757120847702,
-0.019135907292366028,
0.024595927447080612,
-0.03944304957985878,
-0.02228790707886219,
-0.05070757120847702,
0.04371461272239685,
-0.07723259180784225,
-0.03479256108403206,
0.043197888880968094,
-0.035447072237730026,
0.056391503661870956,
-0.002602983033284545,
0.01725848764181137,
-0.012168783694505692,
0.03425861522555351,
-0.05442796275019646,
-0.013908411376178265,
-0.015785831958055496,
0.03267400339245796,
0.040097564458847046,
-0.05025974661111832,
-0.0035804470535367727,
-0.0022929501719772816,
-0.02020379714667797,
-0.04554035887122154,
-0.014330401085317135,
-0.06858612596988678,
-0.010549724102020264,
-0.045264776796102524,
0.0036644143983721733,
0.025198768824338913,
-0.02986648492515087,
-0.015889177098870277,
0.02647334896028042,
-0.014950466342270374,
0.02326967753469944,
-0.038891881704330444,
-0.04106210917234421,
0.06662258505821228,
0.004187594633549452,
0.04099321365356445,
0.024458136409521103,
0.014562925323843956,
0.01126452162861824,
0.03145109489560127,
-0.019997108727693558,
0.04836510121822357,
-0.005158599931746721,
-0.011746794916689396,
-0.03108939155936241,
-0.010808085091412067,
0.007539823185652494,
-0.03150276839733124,
0.014847122132778168,
-0.08550012856721878,
-0.012702728621661663,
-0.06128313019871712,
0.020048782229423523,
-0.018808651715517044,
-0.018309153616428375,
0.036446068435907364,
-0.029728692024946213,
-0.050500884652137756,
0.007203954271972179,
-0.041578829288482666,
0.02964257076382637,
-0.05635705590248108,
-0.0041230046190321445,
0.016931230202317238,
-0.013675887137651443,
0.01982486993074417,
-0.11712346971035004,
0.011953483335673809,
-0.05342897027730942,
-0.00456437049433589,
0.038891881704330444,
-0.01627671718597412,
0.05680488049983978,
-0.044644709676504135,
-0.10961378365755081,
0.01641451008617878,
-0.002852731617167592,
0.08074629306793213,
0.013985919766128063,
0.018291929736733437,
-0.025922179222106934,
0.019997108727693558,
0.02104777656495571,
0.010765024460852146,
0.023441918194293976,
0.053325626999139786,
0.03048655018210411,
0.02733455039560795,
0.06331557035446167,
-0.02571549080312252,
-0.03343186154961586,
0.045884840190410614,
-0.028746921569108963,
0.07633694261312485,
0.03160611167550087,
0.026128867641091347,
0.03377633914351463,
0.022236235439777374,
-0.02423422411084175,
-0.01133341807872057,
0.010782248340547085,
0.011118117719888687,
0.02721398137509823,
-0.026249436661601067,
0.04898516833782196,
-0.018894771113991737,
0.02142670564353466,
0.002411365509033203,
-0.0440935418009758,
-0.024285895749926567,
-0.0010958794737234712,
-0.004469638224691153,
-0.06393563747406006,
-0.0023510814644396305,
0.07254765182733536,
-0.0034814090467989445,
0.00005799657083116472,
-0.04226779192686081,
-0.004814119078218937,
-0.0034814090467989445,
0.05277445539832115,
-0.0016158302314579487,
-0.025526026263833046,
0.04750389978289604,
0.029556451365351677,
0.027765151113271713,
-0.025164321064949036,
0.029711468145251274,
-0.0006109151290729642,
0.04970857873558998,
0.02671448513865471,
0.04419688507914543,
-0.022150114178657532,
-0.02178840897977352,
-0.02497485652565956,
-0.055805888026952744,
-0.03837515786290169,
-0.02326967753469944,
-0.025060977786779404,
0.06014634668827057,
-0.0009855380048975348,
0.04808951914310455,
0.027403445914387703,
0.08405331522226334,
0.016302553936839104
] |
729,713 | dotchain.dot_chain | __await__ | null | def __await__(self):
return self.__chain__.__await__()
| (self) | [
0.019938072189688683,
-0.01822333224117756,
-0.0360431931912899,
0.07907984405755997,
0.01333968061953783,
-0.020425597205758095,
0.005430014804005623,
-0.016130337491631508,
0.05978059768676758,
-0.004404532257467508,
0.04582730680704117,
0.004259535577148199,
0.02387189120054245,
0.025906046852469444,
-0.00574942771345377,
0.024308983236551285,
-0.0010165517451241612,
0.0026246472261846066,
-0.00451380480080843,
-0.0001803263003239408,
0.010649889707565308,
0.04878607764840126,
0.04454965889453888,
-0.019769961014389992,
-0.015197317115962505,
0.06458859890699387,
-0.00534595875069499,
-0.008296323008835316,
0.011171036399900913,
0.024662017822265625,
-0.006476511713117361,
-0.024140870198607445,
0.012011596001684666,
0.005463637411594391,
0.05282076448202133,
0.03074766881763935,
-0.05551055446267128,
0.08358524739742279,
-0.07786943763494492,
-0.038598496466875076,
-0.006165504455566406,
-0.028057878836989403,
-0.0360431931912899,
-0.007905462756752968,
0.014373568817973137,
-0.04135553166270256,
0.011103792116045952,
0.006905196700245142,
0.029470019042491913,
-0.028225990012288094,
0.1016068384051323,
0.039506301283836365,
0.0006682448438368738,
0.005455231759697199,
-0.026628926396369934,
0.08351799845695496,
0.003998962230980396,
0.03024333342909813,
-0.00045180076267570257,
0.0353035032749176,
-0.015861358493566513,
0.014894715510308743,
0.0017977467505261302,
0.03661477565765381,
-0.013289246708154678,
-0.035068146884441376,
-0.03199169784784317,
0.019316058605909348,
0.008161833509802818,
0.0516439788043499,
-0.017903918400406837,
0.023048143833875656,
-0.030680423602461815,
-0.00902760960161686,
0.006732882000505924,
-0.0635463073849678,
-0.04354098439216614,
-0.00902760960161686,
0.022358885034918785,
-0.013936477713286877,
-0.03856487199664116,
0.006905196700245142,
-0.038632117211818695,
-0.03377368301153183,
-0.009994253516197205,
-0.03145373985171318,
0.02864626981317997,
-0.07645729929208755,
-0.12137680500745773,
-0.060217685997486115,
-0.049929238855838776,
0.06858965754508972,
-0.013348085805773735,
0.03268095478415489,
0.012860561721026897,
0.02034154161810875,
-0.017281904816627502,
-0.03229429945349693,
-0.05026546120643616,
0.01840825378894806,
-0.03300036862492561,
0.06132722645998001,
0.03980890288949013,
-0.0005658016889356077,
0.05998232960700989,
-0.006136084906756878,
-0.006417672149837017,
-0.012373036704957485,
0.03076448105275631,
-0.013970100320875645,
0.016365695744752884,
-0.01413821242749691,
-0.029772620648145676,
0.028612647205591202,
-0.02513273060321808,
-0.03479916602373123,
0.005804063752293587,
0.006169707048684359,
0.04387721046805382,
0.01854274421930313,
0.013759960420429707,
0.013869233429431915,
-0.0431038960814476,
0.01192754041403532,
0.0053837839514017105,
0.050837043672800064,
-0.026090968400239944,
0.03627854958176613,
0.014970365911722183,
-0.03658115118741989,
0.010809595696628094,
0.0399433895945549,
-0.004585252609103918,
0.053829435259103775,
0.032277487218379974,
0.07719699293375015,
0.017450015991926193,
0.00014184442989062518,
0.013062295503914356,
0.04491950199007988,
-0.03779155761003494,
-0.03042825683951378,
0.03022652305662632,
-0.01995488442480564,
0.01941692642867565,
0.0075944559648633,
-0.06169707328081131,
0.005934350658208132,
-0.010649889707565308,
-0.017937541007995605,
0.08553534001111984,
-0.0254521444439888,
0.016004255041480064,
0.07975228875875473,
-0.02918422780930996,
0.02404000423848629,
-0.04576006159186363,
-0.0071531618013978004,
0.011532477103173733,
-0.0696655809879303,
-0.03691737726330757,
-0.0006503829499706626,
0.033319782465696335,
-0.009313399903476238,
-0.0054342178627848625,
0.03305080160498619,
0.01997169479727745,
0.0067160711623728275,
0.004623077809810638,
0.04512123763561249,
-0.032428789883852005,
0.014961960725486279,
-0.03308442607522011,
0.021081233397126198,
-0.061629828065633774,
0.058402080088853836,
-0.010498588904738426,
0.036682020872831345,
-0.05214831605553627,
-0.029604507610201836,
-0.017567694187164307,
-0.047104958444833755,
-0.00840979814529419,
-0.03758982568979263,
0.060217685997486115,
0.009422672912478447,
0.02758716605603695,
0.011549288406968117,
-0.0033286157995462418,
-0.00177988491486758,
-0.05887279286980629,
0.013818799518048763,
0.0523836724460125,
0.03338702768087387,
0.042330581694841385,
-0.006094057112932205,
-0.042666804045438766,
0.01926562562584877,
0.007434749510139227,
-0.008157630451023579,
-0.01891259104013443,
-0.06028493121266365,
0.04337287321686745,
0.025922857224941254,
0.016004255041480064,
0.004099829122424126,
0.028175557032227516,
0.02419130504131317,
0.008615735918283463,
-0.015449484810233116,
-0.09293226897716522,
0.009120071306824684,
-0.028410913422703743,
0.056653715670108795,
0.03463105484843254,
-0.04562557488679886,
0.046567000448703766,
-0.014281107112765312,
0.044448789209127426,
0.07907984405755997,
0.023619724437594414,
-0.015617596916854382,
0.03347108140587807,
-0.010868435725569725,
-0.04101930558681488,
-0.0015287677524611354,
-0.014625736512243748,
-0.005190455354750156,
0.024325793609023094,
-0.026292704045772552,
0.0107759740203619,
-0.004280549474060535,
-0.001283954712562263,
-0.04989561811089516,
-0.07195189595222473,
0.03574059158563614,
-0.03269776701927185,
0.05255178362131119,
-0.030192900449037552,
0.024140870198607445,
0.010069903917610645,
0.05023184046149254,
0.03940543159842491,
-0.011759428307414055,
0.014482841826975346,
-0.007073308806866407,
0.061629828065633774,
-0.01607149839401245,
0.014264295808970928,
0.0032340530306100845,
-0.005728413350880146,
-0.025216788053512573,
-0.013415331020951271,
-0.01591179333627224,
-0.026090968400239944,
-0.05218193680047989,
0.04670149087905884,
-0.04734031483530998,
0.03429482877254486,
0.06203329563140869,
-0.002397696254774928,
-0.004539021756500006,
-0.04865158721804619,
0.03806053847074509,
-0.08150065690279007,
-0.04502037167549133,
0.012835344299674034,
-0.02420811541378498,
-0.04865158721804619,
0.05073617771267891,
0.09420991688966751,
-0.05144224688410759,
0.017987973988056183,
0.001000265940092504,
-0.04562557488679886,
-0.01167537271976471,
-0.04646613448858261,
0.014835876412689686,
-0.0845266729593277,
-0.01138958241790533,
0.0477437824010849,
0.0718846544623375,
-0.02649443782866001,
-0.020913122221827507,
-0.02723412960767746,
-0.03229429945349693,
0.019383303821086884,
0.02755354344844818,
-0.013062295503914356,
-0.03305080160498619,
0.07417097687721252,
-0.008725007995963097,
0.041994355618953705,
-0.054871730506420135,
0.08176963776350021,
-0.0367828868329525,
-0.06519380211830139,
0.01926562562584877,
0.014381974004209042,
0.0072498260997235775,
0.04118742048740387,
-0.05857019126415253,
-0.060722023248672485,
0.01889577880501747,
0.00874181929975748,
0.008195456117391586,
0.022695109248161316,
0.0470040924847126,
-0.05934350565075874,
0.018845345824956894,
-0.038968343287706375,
0.010397722013294697,
0.0022590039297938347,
-0.022711919620633125,
0.02595647983253002,
0.005917539354413748,
0.018324198201298714,
0.040918439626693726,
0.0182065200060606,
0.014919932000339031,
-0.08371973037719727,
0.020560087636113167,
0.052585408091545105,
0.057897742837667465,
-0.026309514418244362,
-0.012120869010686874,
-0.033992230892181396,
0.05725891888141632,
-0.05604851245880127,
0.025485767051577568,
-0.06284023076295853,
-0.03178996220231056,
-0.012574771419167519,
0.011784644797444344,
-0.08802340179681778,
0.049256790429353714,
0.06879139691591263,
-0.014541680924594402,
0.06563089042901993,
-0.03463105484843254,
0.016500184312462807,
-0.01406256202608347,
0.01926562562584877,
0.008632547222077847,
-0.022930465638637543,
0.008699791505932808,
0.057864122092723846,
0.04616353288292885,
0.05497259646654129,
-0.026780227199196815,
-0.001592860440723598,
-0.018626799806952477,
0.016853218898177147,
0.050097350031137466,
0.026309514418244362,
0.017954353243112564,
-0.014264295808970928,
-0.014684575609862804,
-0.015583974309265614,
-0.0030890563502907753,
0.009397456422448158,
-0.02456114999949932,
0.008014735765755177,
0.003965339623391628,
-0.03802691400051117,
-0.018979834392666817,
-0.02708282880485058,
0.010893652215600014,
-0.033151671290397644,
-0.05288800969719887,
-0.024073626846075058,
-0.002477549249306321,
-0.04542383924126625,
0.01660105213522911,
0.01839144341647625,
0.003547161351889372,
-0.05830121040344238,
-0.006110867951065302,
-0.007888651452958584,
0.0410529300570488,
0.009456295520067215,
-0.006434483453631401,
-0.010506995022296906,
-0.009910196997225285,
0.014466030523180962,
-0.013852422125637531,
0.038598496466875076,
-0.036883752793073654,
-0.015642814338207245,
0.051543112844228745,
0.04821449890732765,
-0.04192711040377617,
-0.02847815863788128,
-0.019198380410671234,
-0.038800228387117386,
-0.04582730680704117,
0.018996646627783775,
-0.041120175272226334,
0.006779112853109837,
-0.07302781939506531,
0.011843484826385975,
0.04808000847697258,
0.06455497443675995,
0.018626799806952477,
0.022930465638637543,
0.006295791361480951,
0.02844453603029251,
-0.01980358362197876,
0.026023725047707558,
0.009498323313891888,
-0.1137109026312828,
-0.048886943608522415,
-0.050635308027267456,
-0.08351799845695496,
0.003679549554362893,
-0.031554605811834335,
0.03357195109128952,
0.0012125071370974183,
0.02351885661482811,
0.04337287321686745,
0.007981113158166409,
0.004984518047422171,
-0.013448953628540039,
0.005829280707985163,
0.03168909624218941,
-0.032462410628795624,
0.0020173429511487484,
0.040750328451395035,
-0.014785442501306534,
0.012961428612470627,
-0.007527210749685764,
0.02282959781587124,
0.005156833212822676,
0.007073308806866407,
0.052955254912376404,
-0.04246506839990616,
-0.016870031133294106,
-0.0038917907513678074,
0.002567909425124526,
0.05066893249750137,
0.013171568512916565,
0.030831724405288696,
-0.04296940565109253,
-0.06714390218257904,
0.07645729929208755,
-0.05322423204779625,
0.01911432482302189,
0.05393030121922493,
0.08486289530992508,
0.00042921071872115135,
-0.019400114193558693,
0.03184039518237114,
0.053997546434402466,
0.0019112223526462913,
-0.03806053847074509,
0.03417715057730675,
0.013205191120505333,
-0.03553885966539383,
-0.047104958444833755,
-0.04451603442430496,
0.00805256050080061,
-0.026813849806785583,
-0.011961163021624088,
-0.0008489651954732835,
-0.005102196708321571,
0.039539922028779984,
0.033857740461826324,
0.009296588599681854,
-0.06549639999866486,
-0.0072918543592095375,
0.023283500224351883,
-0.07860913127660751,
0.006110867951065302,
-0.05251816287636757,
0.0032151404302567244,
-0.012885778211057186,
-0.017534073442220688,
0.0018177101155743003,
0.020106185227632523,
-0.06136084720492363,
-0.029940731823444366,
-0.042330581694841385,
0.04861796647310257,
0.022577431052923203,
-0.0011252991389483213,
-0.005232483148574829,
0.04626439884305,
-0.005778847262263298,
0.04841623082756996,
-0.03816140443086624,
-0.03358875960111618,
0.03644666448235512,
0.04007788002490997,
0.017265094444155693,
0.010607861913740635,
-0.024443471804261208,
-0.03553885966539383,
0.012616799212992191,
0.042498692870140076,
-0.011843484826385975,
0.026023725047707558,
0.015357023105025291,
0.04370909929275513,
0.01839144341647625,
0.019753150641918182,
-0.0019332870142534375,
-0.036345794796943665,
-0.032445598393678665,
0.034731920808553696,
-0.0016989810392260551,
0.049593016505241394,
0.05147586762905121,
-0.04841623082756996,
-0.04596179723739624,
0.02437622845172882,
-0.013448953628540039,
-0.01751726120710373,
0.01681119203567505,
0.04149002209305763,
-0.013364897109568119,
0.055241573601961136,
0.023233067244291306,
0.017971163615584373,
-0.00693881930783391,
-0.04155726358294487,
-0.027284564450383186,
0.022022660821676254,
-0.013045484200119972,
-0.012162896804511547,
-0.004887853749096394,
0.0005805114633403718,
-0.03769069164991379,
-0.007918071001768112,
-0.01629004441201687,
0.006413469556719065,
0.037556201219558716,
-0.07780219614505768,
0.028511781245470047,
-0.08445942401885986,
-0.02370378002524376,
0.043406497687101364,
0.021182101219892502,
-0.00534595875069499,
0.012675638310611248,
-0.009809330105781555,
0.0003772010968532413,
-0.058065854012966156,
0.040380481630563736,
0.0023346543312072754,
-0.01908070221543312,
-0.0005626495694741607,
-0.006951427552849054,
0.015146883204579353,
0.0110533582046628,
-0.024628395214676857,
-0.055779531598091125,
0.04085119441151619,
-0.026746606454253197,
-0.0017420597141608596,
0.03594232723116875,
0.0028368886560201645,
0.03410990908741951,
-0.034563809633255005,
-0.04626439884305,
0.0048248120583593845,
-0.0014678271254524589,
0.051509492099285126,
0.05820034444332123,
0.04861796647310257,
-0.050971534103155136,
-0.00495089590549469,
0.013684310019016266,
-0.013936477713286877,
0.020207053050398827,
0.008951959200203419,
0.04949214681982994,
0.02261105179786682,
-0.03890109807252884,
0.015802519395947456,
-0.06734563410282135,
0.033689629286527634,
-0.05157673358917236,
0.012591582722961903,
-0.05604851245880127,
-0.05268627405166626,
-0.03943905606865883,
-0.012591582722961903,
0.05423290282487869,
0.01166696660220623,
0.004146059975028038,
-0.03587508201599121,
-0.01236463151872158,
-0.02087949961423874,
-0.0060898540541529655,
0.06115911528468132,
-0.026612116023898125,
0.00118308758828789,
0.01980358362197876,
-0.016340477392077446,
0.01787029579281807,
0.04918954521417618,
0.021333402022719383,
0.01659264601767063,
0.06048666685819626,
0.0026645739562809467,
0.03200851008296013,
-0.07585209608078003,
-0.02684747241437435,
0.009868169203400612,
-0.019181570038199425,
-0.02686428464949131,
-0.0007286600884981453,
0.009254560805857182,
0.011423205025494099,
-0.01628163829445839,
-0.05393030121922493,
-0.08176963776350021,
0.024695640429854393,
-0.03111751563847065,
0.04451603442430496,
-0.030293766409158707,
-0.03681650757789612,
-0.032798632979393005,
0.0034063677303493023,
-0.04027961567044258,
0.0016538009513169527,
0.032781824469566345,
-0.06980006396770477,
-0.009094854816794395,
-0.026998773217201233,
-0.008166036568582058,
-0.0035303502809256315,
0.04451603442430496,
-0.055039841681718826,
0.05282076448202133,
-0.06277298927307129,
0.015407457016408443,
0.031386494636535645,
-0.012457093223929405,
-0.06015044450759888,
0.0010407178197056055,
0.0005379581125453115,
-0.04791189730167389,
-0.017634939402341843,
-0.03705186769366264,
-0.0395735464990139,
-0.049223169684410095,
-0.0568554513156414,
0.014642547816038132,
-0.011776239611208439,
-0.06031855568289757,
0.061259981244802475,
-0.02402319200336933,
0.009061232209205627,
0.006732882000505924,
-0.037757936865091324,
0.030529122799634933,
-0.026460815221071243,
0.02511592023074627,
0.009019204415380955,
-0.03434526547789574,
0.02899930439889431,
-0.01033888291567564,
0.001187290414236486,
0.053795814514160156,
0.024258548393845558,
-0.05732616409659386,
-0.04165813326835632,
-0.017920730635523796,
-0.023939136415719986,
0.024124059826135635,
0.014970365911722183,
-0.013289246708154678,
-0.006484916899353266,
-0.012381442822515965,
0.024998242035508156,
-0.025216788053512573,
-0.03990976884961128,
0.040783949196338654,
-0.02526722103357315,
0.014390380121767521,
0.00419649388641119,
-0.04344011843204498,
-0.0012545351637527347,
-0.04744118079543114,
0.01271766610443592,
0.023451611399650574,
-0.03466467559337616,
0.01606309413909912,
-0.08889757841825485,
0.0027423256542533636,
-0.04579368606209755,
-0.05466999486088753,
0.08298004418611526,
-0.02404000423848629,
0.0023598710540682077,
-0.021484702825546265,
-0.11465232819318771,
0.027805710211396217,
0.0127260722219944,
0.08634228259325027,
-0.0683543011546135,
0.00278435368090868,
-0.0614953376352787,
-0.008682980202138424,
0.06953109055757523,
-0.00856950506567955,
0.04908867925405502,
0.015844548121094704,
0.017920730635523796,
0.03661477565765381,
0.02404000423848629,
-0.027469485998153687,
-0.021888170391321182,
0.054535504430532455,
-0.02472926303744316,
-0.005846092011779547,
0.014398785308003426,
-0.0371527336537838,
0.048886943608522415,
-0.056485604494810104,
0.0392036996781826,
0.013280841521918774,
-0.020795444026589394,
0.025250408798456192,
0.014978772029280663,
-0.02227482944726944,
0.027351807802915573,
0.0289824940264225,
0.09414267539978027,
0.005198861006647348,
-0.011162631213665009,
-0.03869936242699623,
-0.007888651452958584,
0.051509492099285126,
-0.022207584232091904,
0.010498588904738426,
0.02013980783522129,
-0.014466030523180962,
-0.00008825875556794927,
-0.0073086656630039215,
-0.055611420422792435,
0.0014898917870596051,
0.014121401123702526,
0.014373568817973137,
-0.015373834408819675,
0.00516523839905858,
0.050299085676670074,
0.04982837289571762,
-0.07686077058315277,
0.04014512524008751,
0.046230778098106384,
0.004446560051292181,
0.018778100609779358,
0.05228280648589134,
-0.04491950199007988,
0.02667936123907566,
0.008174441754817963,
-0.005413203500211239,
0.005396392662078142,
-0.04797913879156113,
-0.015617596916854382,
0.0110533582046628,
0.02738543041050434,
-0.025906046852469444,
0.011725805699825287,
0.02336755581200123,
0.04680235683917999
] |
729,714 | dotchain.dot_chain | __call__ | null | def __call__(self, *args, **kwargs) -> DotChain:
return DotChain(
chain=CallChain(self.__chain__,
args=args,
kwargs=kwargs,
context=self.__chain__.contexts,
pipe=self.__chain__.pipe))
| (self, *args, **kwargs) -> dotchain.dot_chain.DotChain | [
-0.02821815386414528,
-0.07414884865283966,
0.06328468024730682,
0.0317499041557312,
-0.04166390746831894,
-0.028182297945022583,
-0.05503794923424721,
-0.029383452609181404,
0.07988569885492325,
-0.015606037341058254,
0.014162859879434109,
0.011177903041243553,
0.016206614673137665,
0.035496786236763,
-0.0252063050866127,
0.020616821944713593,
-0.0102725550532341,
0.0045625921338796616,
0.010389084927737713,
0.026837723329663277,
0.02018655650317669,
0.033004842698574066,
0.024041006341576576,
-0.010989662259817123,
0.02327011711895466,
0.06572283804416656,
0.004076303914189339,
0.01878819800913334,
0.002742933575063944,
0.017676683142781258,
0.00826465617865324,
0.002850499702617526,
-0.04126949608325958,
-0.02242751605808735,
0.034331489354372025,
0.015301266685128212,
-0.06199388578534126,
0.034887246787548065,
-0.03399086371064186,
-0.0298854261636734,
-0.010747638531029224,
-0.02111879549920559,
0.010971734300255775,
0.019666654989123344,
-0.033865369856357574,
-0.055360645055770874,
0.018286224454641342,
0.0718899592757225,
0.01663687825202942,
-0.04033725708723068,
0.05435669794678688,
0.018151765689253807,
0.05052017420530319,
-0.06335638463497162,
-0.012585224583745003,
0.0504126101732254,
0.039548441767692566,
0.05281491577625275,
0.03786323964595795,
0.029544800519943237,
-0.0031664748676121235,
0.02344939298927784,
0.028558779507875443,
0.013194765895605087,
-0.00289755966514349,
-0.040767524391412735,
-0.04069581255316734,
0.007941958494484425,
-0.011608166620135307,
0.04865569621324539,
-0.006566009484231472,
-0.027160421013832092,
-0.036751724779605865,
-0.0030320172663778067,
-0.029365524649620056,
-0.024309922009706497,
-0.048619844019412994,
0.0019787666387856007,
0.04022969305515289,
0.005230397917330265,
-0.05306590348482132,
-0.026766011491417885,
-0.038544490933418274,
-0.019828002899885178,
0.010308410972356796,
0.03933330997824669,
0.020778169855475426,
-0.04277542233467102,
-0.05840834975242615,
0.07586990296840668,
-0.04585898295044899,
0.05625703185796738,
-0.04887083172798157,
0.0196128711104393,
0.020939519628882408,
-0.014709653332829475,
0.01228045392781496,
0.025744134560227394,
0.018169693648815155,
0.07138798385858536,
-0.02457883581519127,
0.06550770998001099,
-0.02999299205839634,
0.008251210674643517,
0.03893889859318733,
0.0007938596536405385,
0.000512339232955128,
-0.018716488033533096,
0.05493038147687912,
-0.009680941700935364,
-0.047329049557447433,
0.015722567215561867,
0.0280209481716156,
-0.03277178108692169,
-0.032180167734622955,
0.02990335412323475,
0.0013053584843873978,
-0.029006971046328545,
0.0067632137797772884,
0.03608839958906174,
-0.030979014933109283,
0.022481298074126244,
-0.005916131194680929,
0.005566541571170092,
-0.04636095464229584,
0.057117559015750885,
-0.01106137316673994,
-0.05453597381711006,
0.044890888035297394,
-0.06199388578534126,
0.05080701783299446,
0.022929491475224495,
0.020419616252183914,
-0.013033416122198105,
0.03865205869078636,
0.06346395611763,
0.029724078252911568,
-0.011357178911566734,
-0.09609231352806091,
0.08712847530841827,
-0.010147061198949814,
0.002870668191462755,
0.04356423765420914,
0.030118485912680626,
-0.01073867455124855,
0.011984648182988167,
0.031911253929138184,
-0.0214773491024971,
0.02344939298927784,
0.021925540640950203,
0.06324882060289383,
-0.026174398139119148,
-0.00016106892144307494,
0.0925067812204361,
-0.02597719430923462,
0.03316618874669075,
-0.05130899325013161,
-0.029688222333788872,
0.04915767163038254,
0.003581052180379629,
-0.04137706384062767,
-0.0007053418084979057,
-0.009465809911489487,
-0.0002274573198519647,
0.015292302705347538,
-0.02653295174241066,
-0.014548304490745068,
-0.00853805337101221,
0.004477435722947121,
0.024776041507720947,
0.04453233256936073,
-0.008600800298154354,
0.05005405470728874,
0.016099048778414726,
-0.029921282082796097,
0.011043445207178593,
-0.00799125898629427,
0.05181096866726875,
-0.040588244795799255,
-0.019505305215716362,
0.01664584130048752,
-0.02280399762094021,
-0.023126695305109024,
0.0040247621946036816,
0.045715559273958206,
0.011330287903547287,
0.03886719048023224,
0.011195830069482327,
0.005844420753419399,
-0.00546345766633749,
-0.010514578782022,
0.022678503766655922,
0.09028375148773193,
0.012621080502867699,
-0.04130535200238228,
-0.011240649037063122,
-0.005172132980078459,
-0.00925067812204361,
0.006238829344511032,
-0.014888930134475231,
-0.02737555280327797,
0.016296252608299255,
0.0532451830804348,
-0.030046775937080383,
-0.016421746462583542,
0.04173561558127403,
0.014879966154694557,
0.06489817053079605,
-0.025708278641104698,
-0.034313563257455826,
0.006920080631971359,
-0.051129717379808426,
0.004038207698613405,
0.0038387624081224203,
-0.01793663389980793,
-0.0023821392096579075,
0.04847642034292221,
-0.042273446917533875,
0.055898476392030716,
0.01934395730495453,
0.05901789292693138,
-0.020025208592414856,
0.009134148247539997,
-0.018734415993094444,
-0.028415357694029808,
0.000812347570899874,
0.033399250358343124,
-0.007807500660419464,
-0.03343510627746582,
-0.037791527807712555,
-0.016090083867311478,
-0.026407457888126373,
0.017999380826950073,
-0.03592705354094505,
-0.0784514844417572,
-0.025278015062212944,
0.030602533370256424,
0.010586289688944817,
-0.05367544665932655,
-0.017999380826950073,
0.016116976737976074,
0.017918705940246582,
0.07027646899223328,
-0.013687776401638985,
-0.0010823830962181091,
-0.00579511933028698,
0.02597719430923462,
-0.0054231202229857445,
0.03205467388033867,
0.03201881796121597,
-0.004177147056907415,
0.02644331380724907,
-0.018824053928256035,
0.025170449167490005,
-0.05855177342891693,
-0.014906858094036579,
0.04363594949245453,
-0.03026190772652626,
0.020437544211745262,
0.026264037936925888,
-0.009161039255559444,
0.023610742762684822,
-0.027483118698000908,
0.012854139320552349,
-0.010559397749602795,
0.032735925167798996,
-0.01905711367726326,
-0.07357516139745712,
-0.037683963775634766,
0.09329559653997421,
0.10627523064613342,
-0.012262526899576187,
0.04729319363832474,
0.0803876742720604,
-0.08920808881521225,
-0.038078371435403824,
-0.03345303237438202,
-0.012728646397590637,
-0.04922938346862793,
0.006911117117851973,
0.045249439775943756,
0.019451523199677467,
-0.06884225457906723,
-0.04342081770300865,
0.018662704154849052,
-0.020509254187345505,
0.0672646164894104,
0.06869883090257645,
-0.008672510273754597,
-0.031140362843871117,
0.0634998083114624,
0.0448550321161747,
0.061707042157649994,
-0.027447262778878212,
0.03345303237438202,
-0.03847278282046318,
-0.0887061133980751,
0.005777191836386919,
0.03997870534658432,
-0.003975460771471262,
0.0035743294283747673,
-0.07027646899223328,
0.010756602510809898,
0.011545419692993164,
0.051058005541563034,
0.03044118545949459,
0.041054364293813705,
0.04546457156538963,
-0.004477435722947121,
0.04148462787270546,
-0.024776041507720947,
0.016869938001036644,
-0.036662086844444275,
-0.03972771763801575,
-0.021262217313051224,
0.0028482587076723576,
0.004759796429425478,
0.03897475451231003,
0.048153724521398544,
0.028236081823706627,
-0.03343510627746582,
0.011921901255846024,
0.0072293332777917385,
0.05564748868346214,
0.007166586350649595,
0.06683435291051865,
0.016099048778414726,
0.026783939450979233,
-0.0079374760389328,
-0.003982183989137411,
0.012836212292313576,
0.00887419655919075,
0.004347459878772497,
0.022911563515663147,
-0.014566232450306416,
-0.0028101622592657804,
0.04456818848848343,
-0.012065322138369083,
0.015453651547431946,
-0.03696685656905174,
0.0010751000372692943,
0.01998935267329216,
-0.0373971201479435,
-0.030423257499933243,
0.007968849502503872,
-0.00632846774533391,
0.052456364035606384,
0.024130644276738167,
0.03314826264977455,
0.04119778797030449,
0.008609763346612453,
-0.04223759099841118,
0.023467320948839188,
0.0028101622592657804,
0.017040250822901726,
-0.016789263114333153,
-0.04818957671523094,
0.014754473231732845,
0.005620324518531561,
-0.03929745405912399,
0.025744134560227394,
-0.009483737871050835,
-0.01098069828003645,
0.03757639601826668,
0.001114316750317812,
-0.03140927851200104,
-0.009958821348845959,
-0.02567242458462715,
-0.04177147150039673,
0.008753185160458088,
0.0196128711104393,
-0.041233643889427185,
-0.009107256308197975,
-0.01625143364071846,
0.02821815386414528,
0.010900023393332958,
-0.00939409900456667,
0.0007339140283875167,
0.015543290413916111,
0.047329049557447433,
-0.049193527549505234,
-0.021979324519634247,
0.01850135624408722,
0.011895009316504002,
0.04438891261816025,
0.030046775937080383,
0.01738087646663189,
-0.02251715399324894,
0.04808201268315315,
0.011410961858928204,
0.04159219563007355,
-0.06109750270843506,
-0.006799069233238697,
-0.03101487085223198,
-0.06052381545305252,
-0.00980643555521965,
0.05073530599474907,
-0.01671755313873291,
-0.021638698875904083,
-0.0653642863035202,
-0.008793522603809834,
0.0009983471827581525,
0.041986603289842606,
0.003711027791723609,
0.06780245155096054,
0.008641136810183525,
0.020778169855475426,
0.034439053386449814,
0.010684891603887081,
0.023861728608608246,
-0.08755874633789062,
-0.04603825882077217,
-0.05625703185796738,
0.01988178677856922,
-0.012863103300333023,
0.007605814374983311,
0.030136413872241974,
-0.015328158624470234,
0.017022322863340378,
0.014933749102056026,
0.028254007920622826,
0.007444465067237616,
0.008914534002542496,
-0.007874729111790657,
0.11710354685783386,
0.01018291711807251,
-0.03277178108692169,
-0.03933330997824669,
0.04209417104721069,
0.010568361729383469,
-0.020240340381860733,
-0.06016526371240616,
-0.02764446847140789,
0.020778169855475426,
0.026748083531856537,
-0.04184318333864212,
-0.01654724031686783,
0.009698869660496712,
0.03149891644716263,
0.040014561265707016,
-0.005199024453759193,
-0.007735789753496647,
0.03933330997824669,
-0.06321296840906143,
-0.029114536941051483,
-0.03754054382443428,
0.0233418270945549,
0.025636568665504456,
-0.007166586350649595,
-0.021638698875904083,
0.08261070400476456,
0.03354267030954361,
0.07174653559923172,
-0.031050724908709526,
-0.03711027652025223,
-0.0017120925476774573,
-0.00046247788122855127,
-0.0364648811519146,
-0.01643070951104164,
0.06314125657081604,
0.00450656795874238,
-0.04316982999444008,
0.010254627093672752,
-0.01690579392015934,
-0.052061956375837326,
-0.011025517247617245,
0.028702201321721077,
0.03503066673874855,
-0.08246728777885437,
-0.04958793520927429,
0.03503066673874855,
-0.040408968925476074,
-0.02249922603368759,
0.013714668340981007,
0.028648417443037033,
0.04542871564626694,
-0.00919689517468214,
-0.053854722529649734,
-0.011437853798270226,
-0.05733269080519676,
-0.05995013192296028,
-0.01896747574210167,
0.046109966933727264,
0.0022633683402091265,
-0.02271435782313347,
0.0023619704879820347,
0.034421127289533615,
-0.0005871311877854168,
0.04456818848848343,
0.027303842827677727,
-0.00943891890347004,
0.08296925574541092,
-0.020437544211745262,
-0.023879656568169594,
-0.03933330997824669,
-0.005709962919354439,
-0.013105127029120922,
-0.03182161599397659,
-0.01579427719116211,
-0.04005041718482971,
-0.045249439775943756,
0.0075385854579508305,
0.059914276003837585,
-0.016475528478622437,
0.028271935880184174,
0.04162805154919624,
-0.04661194235086441,
-0.0242740660905838,
-0.028469141572713852,
-0.0077581992372870445,
-0.024973245337605476,
-0.02371830865740776,
-0.0326642170548439,
-0.014584160409867764,
-0.04069581255316734,
-0.00532451830804348,
-0.006875261664390564,
0.040946800261735916,
-0.016305215656757355,
-0.044783320277929306,
0.07515279203653336,
0.04987477883696556,
0.02484775148332119,
-0.012881031259894371,
0.04044482484459877,
-0.0570099912583828,
0.024220282211899757,
0.013248548842966557,
0.0247581135481596,
-0.0003005686157848686,
0.0029580655973404646,
-0.013024453073740005,
-0.02327011711895466,
0.00306114973500371,
0.012038431130349636,
-0.03185747191309929,
-0.102761410176754,
0.016125939786434174,
-0.006337431725114584,
-0.00784783810377121,
0.03612425550818443,
-0.005916131194680929,
-0.012370092794299126,
0.006951454095542431,
-0.06091822311282158,
-0.04424549266695976,
0.007928512059152126,
0.02119050733745098,
-0.006131263449788094,
-0.025367652997374535,
-0.0061895283870399,
-0.05539650097489357,
-0.00010917671170318499,
0.08440347015857697,
0.029114536941051483,
-0.00399338873103261,
-0.01981007680296898,
0.02728591486811638,
-0.06894981861114502,
0.009671978652477264,
0.00139611738268286,
0.05550406873226166,
-0.023323899134993553,
-0.04521358385682106,
0.031731978058815,
-0.024130644276738167,
0.01830415241420269,
0.051524125039577484,
-0.02325218915939331,
-0.03850863501429558,
-0.010478723794221878,
0.053854722529649734,
-0.04073166847229004,
0.05055603012442589,
0.021065013483166695,
0.07106528431177139,
0.02128014527261257,
0.02418442815542221,
0.006032661069184542,
-0.006019215565174818,
0.02828986383974552,
-0.031337566673755646,
-0.10484101623296738,
-0.021423567086458206,
-0.043492529541254044,
-0.03836521506309509,
-0.039369165897369385,
0.013651921413838863,
-0.008157090283930302,
0.004831507336348295,
-0.0363931730389595,
-0.05288662761449814,
-0.03904646635055542,
0.011321323923766613,
0.02513459324836731,
-0.030118485912680626,
-0.06963106989860535,
-0.008999690413475037,
0.03678758069872856,
-0.008287065662443638,
-0.04729319363832474,
0.020688531920313835,
0.0200969185680151,
0.017300201579928398,
-0.0037087867967784405,
0.025152521207928658,
-0.05098629370331764,
0.020132774487137794,
-0.05109386146068573,
0.02400515042245388,
-0.02595926634967327,
0.026873577386140823,
-0.01447659358382225,
0.010389084927737713,
-0.027196276932954788,
-0.047687605023384094,
-0.07708898186683655,
0.03164234012365341,
-0.020061062648892403,
-0.002765343291684985,
-0.03531751036643982,
-0.049552083015441895,
-0.07701727002859116,
0.025385580956935883,
-0.04596654698252678,
-0.013571246527135372,
0.04747247323393822,
-0.0382935032248497,
0.03429563343524933,
0.006731840316206217,
0.03438527137041092,
0.01820554956793785,
-0.0038858226034790277,
-0.02420235611498356,
0.032538723200559616,
-0.055719200521707535,
0.0033816068898886442,
0.03944087401032448,
-0.03883133456110954,
-0.016466565430164337,
-0.02165662683546543,
-0.0177304670214653,
-0.0915745422244072,
-0.047974444925785065,
-0.04334910586476326,
-0.023933440446853638,
-0.08060280978679657,
-0.022481298074126244,
0.045177727937698364,
-0.004076303914189339,
-0.004233171232044697,
-0.007422055583447218,
-0.01633210852742195,
0.05378301069140434,
-0.014709653332829475,
0.03287934884428978,
0.0635356679558754,
0.009429954923689365,
0.022553009912371635,
-0.02271435782313347,
-0.02203310653567314,
0.012567296624183655,
0.04510601982474327,
-0.04818957671523094,
0.024309922009706497,
-0.013445752672851086,
-0.013140982948243618,
-0.031982965767383575,
0.019684582948684692,
0.022266166284680367,
-0.01106137316673994,
-0.03128378465771675,
-0.08426005393266678,
0.02812851592898369,
-0.062065593898296356,
-0.03334546834230423,
-0.011213758029043674,
-0.032915204763412476,
0.043384961783885956,
-0.015444688498973846,
-0.05363959074020386,
-0.011339251883327961,
-0.002776548033580184,
0.010837276466190815,
-0.04980306699872017,
-0.010398048907518387,
0.054320842027664185,
0.028146442025899887,
0.016125939786434174,
-0.07809293270111084,
-0.00520350644364953,
-0.016834082081913948,
-0.009519592858850956,
0.06012940779328346,
-0.023019129410386086,
-0.0031328604090958834,
-0.057404402643442154,
-0.1448555737733841,
-0.0007776127313263714,
0.004094231873750687,
0.03135549649596214,
0.024542981758713722,
0.0038163529243320227,
-0.062244873493909836,
0.008901088498532772,
0.01736294850707054,
0.024542981758713722,
0.005051121115684509,
0.0523129440844059,
0.027321770787239075,
0.0158749520778656,
0.014924786053597927,
0.0298854261636734,
0.017228491604328156,
0.03465418890118599,
-0.03997870534658432,
0.019218463450670242,
0.0345466211438179,
-0.02373623661696911,
0.018985403701663017,
-0.041233643889427185,
-0.0017143335426226258,
0.026317819952964783,
-0.062173161655664444,
0.03027983568608761,
0.00605058902874589,
-0.000596095051150769,
0.0004960922524333,
0.01578531414270401,
-0.03840107098221779,
-0.014494521543383598,
-0.03858034685254097,
0.021925540640950203,
-0.05966328829526901,
0.03336339443922043,
-0.04510601982474327,
-0.014360063709318638,
-0.005611361004412174,
0.014467630535364151,
-0.07120870798826218,
-0.02242751605808735,
-0.0039508105255663395,
-0.007637187838554382,
0.0030678727198392153,
0.034905172884464264,
-0.0015462615992873907,
0.018447572365403175,
0.02362866885960102,
0.06242414936423302,
-0.07436397671699524,
0.001155214267782867,
0.031230002641677856,
0.0345466211438179,
0.0168071910738945,
0.056759003549814224,
-0.04743661731481552,
-0.021029157564044,
-0.0017232972895726562,
-0.019971424713730812,
-0.06697777658700943,
-0.015435724519193172,
-0.024776041507720947,
0.04499845206737518,
-0.008412559516727924,
0.0757264792919159,
-0.008533570915460587,
0.04065995663404465,
0.06758731603622437
] |
729,715 | dotchain.dot_chain | __getattr__ | null | def __getattr__(self, item: str) -> DotChain:
# https://github.com/python/cpython/issues/69718#issuecomment-1093697247
if item.startswith('__'):
raise AttributeError(item)
return DotChain(
chain=GetAttrChain(self.__chain__,
item,
context=self.__chain__.contexts,
pipe=self.__chain__.pipe))
| (self, item: str) -> dotchain.dot_chain.DotChain | [
0.022754358127713203,
-0.0181931983679533,
0.06217581033706665,
0.03391719609498978,
0.00023697990400251,
-0.06217581033706665,
0.03974724933505058,
-0.021159665659070015,
0.05624287202954292,
0.013940688222646713,
0.00906230416148901,
0.0605296790599823,
0.039438601583242416,
0.05682587996125221,
-0.03532326966524124,
0.042079269886016846,
-0.029476067051291466,
0.04890386387705803,
0.005701449699699879,
0.06512513011693954,
0.01152293011546135,
0.07729965448379517,
0.025686532258987427,
0.0009221988148055971,
0.0065716709941625595,
0.04057031497359276,
-0.0019526394316926599,
0.05617428570985794,
0.05541980639100075,
-0.06097550690174103,
-0.014215042814612389,
-0.03669504448771477,
-0.020199421793222427,
-0.03792964667081833,
-0.008230664767324924,
0.02476058155298233,
-0.03287121653556824,
0.02201702632009983,
-0.03263115510344505,
-0.01812460832297802,
0.021073929965496063,
0.029819011688232422,
-0.018518995493650436,
-0.03194526582956314,
0.018364669755101204,
-0.05397944152355194,
0.02086816355586052,
0.06107838824391365,
-0.0014907362638041377,
-0.06368476897478104,
0.08182652294635773,
0.025480765849351883,
0.05994667112827301,
-0.05380797013640404,
-0.040467433631420135,
0.053019195795059204,
0.0011017087381333113,
0.05233330652117729,
0.025017790496349335,
0.08031756430864334,
-0.006082975305616856,
0.014720886014401913,
0.009765340015292168,
-0.022685768082737923,
-0.003802395425736904,
-0.040947556495666504,
-0.03261400759220123,
0.015509658493101597,
-0.04218215495347977,
0.00908802542835474,
0.01708720251917839,
0.0003182952350471169,
-0.05888354405760765,
-0.013572022318840027,
-0.030487753450870514,
-0.046468958258628845,
-0.03458593785762787,
-0.04022737219929695,
0.05565986782312393,
-0.020062243565917015,
-0.04334816709160805,
0.015123846009373665,
-0.06581102311611176,
-0.019719300791621208,
-0.013803509995341301,
0.02424616552889347,
-0.014806622639298439,
-0.0689661055803299,
-0.08059192448854446,
0.06471359729766846,
-0.08367842435836792,
0.04458276554942131,
-0.05466533079743385,
0.05648293346166611,
-0.023525983095169067,
-0.014189322479069233,
0.036009155213832855,
-0.013083326630294323,
0.018587583675980568,
0.05555698275566101,
0.047051966190338135,
0.005778612103313208,
-0.025069231167435646,
0.033780019730329514,
-0.004102471750229597,
-0.005962945055216551,
-0.023868925869464874,
-0.02033660002052784,
0.0855989083647728,
-0.05778612196445465,
-0.03079640306532383,
0.04715484753251076,
0.011368605308234692,
0.010279756970703602,
0.01923917792737484,
0.04190779849886894,
0.025395028293132782,
-0.042696572840213776,
0.05490538850426674,
0.0071761105209589005,
0.009148040786385536,
0.006717422511428595,
-0.044788531959056854,
0.014275058172643185,
0.006383051630109549,
-0.04033025726675987,
-0.04893815889954567,
-0.03299124538898468,
0.06495366245508194,
-0.0298018641769886,
0.01643560826778412,
-0.00034401603625155985,
-0.02040518820285797,
-0.00881366990506649,
0.008590755984187126,
0.05830053985118866,
0.023508835583925247,
0.046468958258628845,
-0.09170331805944443,
0.09211485087871552,
-0.027829933911561966,
-0.03299124538898468,
-0.017833106219768524,
-0.0021337568759918213,
-0.03727805241942406,
-0.00877508893609047,
0.012817544862627983,
0.022805798798799515,
-0.0042375060729682446,
-0.0069274757988750935,
-0.03371142968535423,
0.0032686882186681032,
-0.004243936389684677,
0.0696519985795021,
0.0004144803970120847,
0.030436310917139053,
-0.08902835100889206,
-0.01752445660531521,
0.00879652239382267,
-0.03463738039135933,
-0.026612481102347374,
0.0017715218709781766,
-0.06461071223020554,
-0.02091960608959198,
0.058129068464040756,
0.007699100766330957,
-0.0022762930020689964,
-0.029287448152899742,
0.017241526395082474,
0.010579832829535007,
0.0012388864997774363,
0.014549413695931435,
0.022788651287555695,
0.015398201532661915,
0.016864288598299026,
0.03515179455280304,
-0.03230535611510277,
0.053122080862522125,
0.022205647081136703,
-0.05545410141348839,
-0.002482059644535184,
0.018484700471162796,
-0.014952373690903187,
-0.027829933911561966,
0.011685828678309917,
0.012105935253202915,
-0.0010256179375573993,
0.03465452790260315,
-0.0029514648485928774,
0.026783954352140427,
0.011985904537141323,
0.029047386720776558,
0.06224440038204193,
0.021228255704045296,
-0.009405248798429966,
0.015741145238280296,
0.00048119379789568484,
-0.003879557829350233,
0.02145116962492466,
0.049761224538087845,
-0.029476067051291466,
0.02632097899913788,
-0.010888483375310898,
0.08354124426841736,
-0.0548710972070694,
-0.011368605308234692,
0.030659224838018417,
0.008650771342217922,
-0.03532326966524124,
-0.0035066059790551662,
-0.03906136006116867,
0.021159665659070015,
0.02090245857834816,
-0.025995181873440742,
-0.031087905168533325,
0.036009155213832855,
-0.008029184304177761,
-0.002069454872980714,
0.037106577306985855,
0.03287121653556824,
0.038272589445114136,
0.01287756022065878,
0.028224319219589233,
0.012568910606205463,
0.002653531963005662,
-0.007278993725776672,
0.03083069622516632,
0.011420046910643578,
-0.04910963028669357,
-0.005139878485351801,
0.024966347962617874,
-0.0075362022034823895,
0.02702401392161846,
-0.02968183346092701,
-0.0026256677228957415,
-0.04410264268517494,
0.028755882754921913,
0.0024391915649175644,
-0.017352983355522156,
-0.038787007331848145,
-0.010605554096400738,
0.016341298818588257,
0.02692113071680069,
0.03414011001586914,
0.011051381938159466,
0.03297409787774086,
0.01987362466752529,
-0.012671793811023235,
-0.0018122465116903186,
0.031019316986203194,
0.0539451465010643,
0.07366444915533066,
-0.006944622844457626,
0.06066685542464256,
-0.03299124538898468,
-0.02644100971519947,
-0.020748132839798927,
-0.022171352058649063,
-0.004175347276031971,
0.017412999644875526,
-0.0007201831322163343,
-0.011720122769474983,
-0.01640131324529648,
0.0019301336724311113,
-0.010271183215081692,
0.023268774151802063,
0.040433138608932495,
-0.01014257874339819,
-0.0449942983686924,
0.059123605489730835,
0.030624929815530777,
-0.01977074146270752,
0.042525097727775574,
0.06481648236513138,
-0.05178459733724594,
0.02644100971519947,
-0.008732220157980919,
0.016229841858148575,
-0.01822749152779579,
-0.02031945250928402,
0.025086378678679466,
0.011608665809035301,
-0.05391085147857666,
0.013366255909204483,
0.00797345582395792,
-0.0181074608117342,
0.03143084794282913,
0.10809605568647385,
0.0012088788207620382,
0.026269536465406418,
0.05730599910020828,
0.015278170816600323,
0.060186732560396194,
-0.026046622544527054,
0.040398843586444855,
-0.03477455675601959,
-0.07784836739301682,
0.006494508590549231,
0.04231933131814003,
0.01069128978997469,
-0.014180748723447323,
-0.0013760641450062394,
-0.020165128633379936,
0.045474421232938766,
0.01593833789229393,
0.03700369596481323,
0.05017275735735893,
0.034363023936748505,
-0.0005760393105447292,
0.018587583675980568,
-0.007793410215526819,
0.030556341633200645,
-0.04386258125305176,
0.008916553109884262,
0.019907919690012932,
0.005024134647101164,
-0.04057031497359276,
0.04670901969075203,
0.04393117129802704,
0.04842374101281166,
-0.03902706503868103,
0.02632097899913788,
-0.01125714834779501,
0.043176691979169846,
-0.026561040431261063,
0.04674331471323967,
0.03465452790260315,
0.02145116962492466,
-0.010777026414871216,
-0.006082975305616856,
0.0308992862701416,
-0.013537728227674961,
-0.048663802444934845,
0.0030329141300171614,
-0.017147216945886612,
0.02311444841325283,
0.02644100971519947,
-0.025017790496349335,
0.03129367157816887,
-0.03741522878408432,
0.01460942905396223,
0.021639788523316383,
-0.018861938267946243,
-0.041427675634622574,
0.007780550047755241,
-0.02911597490310669,
0.06224440038204193,
0.056380052119493484,
0.011334310285747051,
0.018604731187224388,
0.002282723318785429,
-0.039370011538267136,
0.015758292749524117,
-0.009413822554051876,
-0.005024134647101164,
-0.04835515469312668,
-0.04348534345626831,
0.004788360558450222,
0.0064859348349273205,
0.045851659029722214,
0.027847081422805786,
0.0028250040486454964,
-0.027795638889074326,
0.00020536471856757998,
0.0363863967359066,
-0.07695671170949936,
-0.019101999700069427,
-0.026063770055770874,
0.025515059009194374,
-0.044788531959056854,
-0.0001547268475405872,
-0.04907533526420593,
-0.00878794863820076,
-0.05404802784323692,
0.01587832346558571,
0.010554112493991852,
0.03559762239456177,
-0.008076339028775692,
0.023834632709622383,
0.04166773706674576,
-0.03026483952999115,
-0.037689585238695145,
0.01544106937944889,
0.025686532258987427,
0.05051570385694504,
0.025000642985105515,
0.02529214508831501,
0.0005331712891347706,
0.049178220331668854,
0.035391855984926224,
-0.00493411161005497,
-0.053636495023965836,
-0.009216628968715668,
0.016307003796100616,
-0.045371536165475845,
-0.037072282284498215,
-0.010614127852022648,
-0.10741017013788223,
-0.013520580716431141,
-0.04033025726675987,
-0.007056079804897308,
-0.025652237236499786,
-0.0017297255108132958,
0.011462914757430553,
0.04166773706674576,
0.006524516269564629,
0.0031400842126458883,
0.0702349990606308,
-0.01753303036093712,
-0.03280262649059296,
-0.036557868123054504,
0.016915729269385338,
-0.0614556260406971,
-0.03197956085205078,
0.02921885810792446,
-0.02805284783244133,
0.08498161286115646,
0.0028292909264564514,
-0.0027135470882058144,
0.030916433781385422,
0.008899405598640442,
-0.04790932685136795,
-0.010519817471504211,
-0.03696940094232559,
0.03125937655568123,
-0.01753303036093712,
-0.02426331304013729,
-0.020045097917318344,
0.06546807289123535,
0.02356027625501156,
-0.03971295431256294,
-0.016375591978430748,
-0.02975042164325714,
-0.047566380351781845,
0.03396863862872124,
-0.060323912650346756,
-0.016135532408952713,
-0.05648293346166611,
0.0002728818799369037,
0.013632037676870823,
-0.04393117129802704,
0.007476186845451593,
0.026115212589502335,
-0.025515059009194374,
-0.03535756096243858,
-0.013486286625266075,
-0.0026728224474936724,
0.036523573100566864,
0.03734663873910904,
-0.04993269592523575,
0.015458216890692711,
0.03245968371629715,
0.07524199038743973,
-0.008865111507475376,
-0.0015625401865690947,
-0.01014257874339819,
-0.004758352879434824,
-0.03285406902432442,
0.012440306134521961,
0.03888988867402077,
-0.06515942513942719,
0.0032622581347823143,
0.0066316863521933556,
-0.031122200191020966,
-0.06327322870492935,
0.04739490896463394,
0.05072147026658058,
0.02640671469271183,
-0.05871207267045975,
-0.031636614352464676,
-0.005800046492367983,
-0.025515059009194374,
0.0029171702917665243,
-0.025172114372253418,
0.032682597637176514,
0.03180808946490288,
-0.01863902620971203,
-0.04554301127791405,
0.0033737150952219963,
-0.08532455563545227,
-0.04749779403209686,
-0.038203999400138855,
0.020610954612493515,
-0.014678018167614937,
-0.01752445660531521,
0.02813858352601528,
-0.044719941914081573,
0.052058953791856766,
0.036077745258808136,
-0.02091960608959198,
0.013794936239719391,
0.09478981792926788,
-0.03961007297039032,
0.012989017181098461,
0.0073175751604139805,
0.023405952379107475,
-0.028292909264564514,
-0.025395028293132782,
0.012911854311823845,
-0.04612601548433304,
-0.01460942905396223,
-0.027384106069803238,
0.0639934167265892,
-0.011488636024296284,
0.0066531202755868435,
0.0351174995303154,
-0.04660613834857941,
-0.01290328148752451,
0.016932876780629158,
-0.08360983431339264,
0.018964823335409164,
-0.021605493500828743,
0.008573608472943306,
-0.007394737564027309,
-0.0308992862701416,
-0.01706148125231266,
-0.01288613397628069,
0.03954148292541504,
0.03810111805796623,
-0.0009886441985145211,
0.07140101492404938,
-0.014575134962797165,
-0.0159983541816473,
-0.03995301574468613,
-0.013914966955780983,
-0.0605296790599823,
0.010228315368294716,
0.02808714285492897,
-0.0034808851778507233,
0.0034144397359341383,
0.045851659029722214,
0.016349872574210167,
-0.004333959426730871,
0.017901694402098656,
-0.016752831637859344,
0.061215564608573914,
-0.04725773259997368,
0.009756766259670258,
-0.049178220331668854,
0.016727110370993614,
0.09540712088346481,
-0.023268774151802063,
0.014034997671842575,
-0.01153150387108326,
-0.012225965969264507,
-0.02918456494808197,
-0.0539451465010643,
0.03484314680099487,
0.020748132839798927,
0.020679544657468796,
-0.009473837912082672,
-0.03125937655568123,
-0.07366444915533066,
-0.03031628020107746,
0.03789535164833069,
-0.053602200001478195,
-0.02467484585940838,
-0.015801161527633667,
-0.0493839867413044,
0.02477772906422615,
-0.004188207909464836,
-0.018999116495251656,
-0.012731809169054031,
-0.00603153370320797,
0.03779246658086777,
-0.016152678057551384,
0.0008252098341472447,
0.026732511818408966,
0.012714661657810211,
-0.034946028143167496,
0.020233716815710068,
0.044857122004032135,
0.012731809169054031,
0.04358822852373123,
-0.021674083545804024,
0.037175167351961136,
0.003131510689854622,
0.018964823335409164,
-0.008102060295641422,
-0.012740382924675941,
0.04941828176379204,
0.032768331468105316,
-0.10254035890102386,
0.02686969004571438,
-0.044788531959056854,
-0.10322625190019608,
0.026783954352140427,
0.004985553678125143,
-0.05555698275566101,
-0.041461970657110214,
-0.05058429017663002,
-0.07839708030223846,
-0.018587583675980568,
0.023285921663045883,
0.0592607818543911,
-0.01014257874339819,
-0.02412613481283188,
0.012157376855611801,
0.004466850310564041,
-0.013597743585705757,
0.021125372499227524,
0.04190779849886894,
0.04684619978070259,
0.052984900772571564,
0.0014007133431732655,
0.030419163405895233,
-0.002848581410944462,
0.0024992069229483604,
-0.05511115863919258,
-0.010922777466475964,
-0.03353995829820633,
0.02467484585940838,
-0.018381817266345024,
0.045851659029722214,
-0.010005401447415352,
-0.04410264268517494,
-0.05164741724729538,
0.020799575373530388,
0.004959832411259413,
-0.06296458095312119,
-0.061352744698524475,
-0.03403722494840622,
-0.05219613015651703,
0.03137940913438797,
-0.046571843326091766,
-0.03700369596481323,
0.05668869987130165,
-0.01982218399643898,
0.031019316986203194,
-0.02412613481283188,
0.04173632711172104,
0.00643878011032939,
-0.002790709724649787,
-0.037072282284498215,
-0.0040660337544977665,
0.03151658549904823,
0.03079640306532383,
0.013263372704386711,
-0.02031945250928402,
0.04670901969075203,
-0.03525467962026596,
-0.03734663873910904,
-0.11420046538114548,
-0.010837041772902012,
-0.04849233105778694,
-0.004055317025631666,
-0.06807444989681244,
-0.027967112138867378,
0.0449942983686924,
0.0285329706966877,
-0.019444944337010384,
-0.021091077476739883,
-0.022394265979528427,
0.006828879471868277,
0.020679544657468796,
-0.046434663236141205,
0.02368030697107315,
-0.018810497596859932,
0.03088213875889778,
-0.022891534492373466,
-0.04842374101281166,
-0.01821034401655197,
-0.0012699657818302512,
-0.004055317025631666,
0.03408866748213768,
-0.03252827003598213,
0.00036437835660763085,
-0.05209324508905411,
0.03642068803310394,
-0.009568147361278534,
0.029356036335229874,
0.033231306821107864,
-0.056345757097005844,
-0.007969168946146965,
-0.07236126065254211,
-0.003086499171331525,
0.026492450386285782,
-0.03669504448771477,
0.10055128484964371,
0.0001481626823078841,
-0.004865522962063551,
-0.01978788897395134,
-0.04108473286032677,
-0.017404425889253616,
0.005311350803822279,
-0.04914392530918121,
0.08031756430864334,
0.013246225193142891,
0.014592282474040985,
-0.09725901484489441,
-0.027967112138867378,
0.005860061384737492,
-0.02097104676067829,
0.08621621131896973,
-0.015706852078437805,
-0.032271064817905426,
0.008856537751853466,
-0.09225203096866608,
0.02690398506820202,
-0.011368605308234692,
0.037620995193719864,
0.018330374732613564,
0.013983556069433689,
-0.062381576746702194,
0.01600692793726921,
0.012671793811023235,
0.02911597490310669,
-0.0038045388646423817,
-0.001352486782707274,
0.025395028293132782,
0.0027071170043200254,
0.008753654547035694,
0.011171411722898483,
-0.025703679770231247,
0.08066051453351974,
-0.04629748687148094,
-0.012860412709414959,
0.01316048949956894,
-0.03696940094232559,
0.01646990142762661,
-0.013983556069433689,
-0.023920368403196335,
0.018964823335409164,
0.014643724076449871,
0.008024897426366806,
0.013460565358400345,
-0.061318449676036835,
0.00302005372941494,
-0.024932054802775383,
0.0090537304058671,
0.010245462879538536,
0.016872862353920937,
0.021056782454252243,
-0.028190026059746742,
0.05559127777814865,
-0.051990363746881485,
-0.012285981327295303,
-0.0012624638620764017,
0.014986667782068253,
0.023423099890351295,
-0.03971295431256294,
0.0429709255695343,
0.01877620257437229,
0.02150261029601097,
-0.04026166722178459,
0.001505739986896515,
-0.0319967083632946,
0.031636614352464676,
0.026852542534470558,
-0.06413059681653976,
0.02263432741165161,
0.0018765486311167479,
-0.017498735338449478,
0.02923600561916828,
0.09184049814939499,
-0.06951481848955154,
-0.0006156922900117934,
-0.014806622639298439,
0.03230535611510277,
-0.07565352320671082,
-0.05346502363681793,
0.013349108397960663,
0.0592607818543911,
0.041016142815351486,
0.04201068356633186,
-0.005427094176411629,
-0.028172878548502922,
0.0061558508314192295
] |
729,716 | dotchain.dot_chain | __init__ | null | def __init__(self, data: t.Any = None,
context: t.Optional[t.Any | list[t.Any]] = [],
parent: t.Optional[Chain] = None,
pipe: t.Optional[bool] = False,
**kwargs):
if 'chain' in kwargs:
self.__chain__ = kwargs.get('chain')
else:
self.__chain__ = Chain(data=data, context=context, parent=parent, pipe=pipe)
| (self, data: Optional[Any] = None, context: Union[Any, list[Any], NoneType] = [], parent: Optional[dotchain.chain.Chain] = None, pipe: Optional[bool] = False, **kwargs) | [
-0.03479931503534317,
0.01628200151026249,
0.027038317173719406,
-0.028629858046770096,
-0.033404480665922165,
-0.011945500038564205,
-0.03862616792321205,
-0.012964801862835884,
0.07539255917072296,
-0.02920209802687168,
0.018070250749588013,
0.019474025815725327,
-0.0768231526017189,
0.01786460168659687,
-0.014967639930546284,
0.006339340936392546,
-0.01632670871913433,
0.01101561076939106,
0.004636034369468689,
0.03901958093047142,
0.009629718028008938,
0.03812545910477638,
-0.03302894905209541,
0.049892131239175797,
0.032957419753074646,
0.06537836045026779,
-0.03293953835964203,
-0.018615666776895523,
0.00978171918541193,
0.03152681887149811,
0.016577063128352165,
0.013537040911614895,
-0.03524637594819069,
-0.031383760273456573,
0.06455577164888382,
0.0045957984402775764,
-0.06648708134889603,
0.03331506997346878,
-0.0668804943561554,
0.02750326134264469,
0.028307972475886345,
-0.05332557111978531,
-0.09148678928613663,
0.03640873730182648,
0.02011779509484768,
0.022943228483200073,
0.01956343837082386,
0.045564569532871246,
0.023533349856734276,
-0.08318931609392166,
0.0149586983025074,
0.013304568827152252,
0.04027135670185089,
-0.025607718154788017,
-0.0338694266974926,
0.08140107244253159,
-0.007287112530320883,
0.08297473192214966,
0.043204084038734436,
0.041237011551856995,
-0.021083449944853783,
0.06834685802459717,
0.041666191071271896,
-0.026233604177832603,
-0.041022419929504395,
-0.0252143032848835,
-0.059763263911008835,
-0.00950454082340002,
-0.006433223839849234,
0.05879760906100273,
-0.041451599448919296,
0.012759152799844742,
-0.03365483507514,
0.040199827402830124,
0.027521144598722458,
-0.007076993118971586,
-0.03381577879190445,
-0.002295664045959711,
0.03506755083799362,
0.03365483507514,
0.0025974309537559748,
-0.026841608807444572,
-0.05672324076294899,
0.01847260631620884,
0.024588417261838913,
0.05486346408724785,
0.0017480128444731236,
-0.02213851548731327,
-0.031043993309140205,
0.017238715663552284,
-0.06866873800754547,
0.020242972299456596,
-0.03648027032613754,
0.006951815914362669,
0.02728867158293724,
0.004504150710999966,
-0.009191596880555153,
0.01019301638007164,
0.005668747704476118,
0.03837581351399422,
-0.00485062412917614,
0.006781932432204485,
-0.03535367175936699,
-0.007076993118971586,
-0.00009395289816893637,
-0.029506100341677666,
0.001501011080108583,
-0.008614886552095413,
0.03222423791885376,
-0.009272068738937378,
-0.03637297451496124,
0.016648592427372932,
0.037231333553791046,
0.02165568806231022,
-0.038447342813014984,
0.05261027067899704,
-0.004430385772138834,
-0.04066476970911026,
0.006004044320434332,
-0.019527673721313477,
0.0015904235187917948,
0.019170023500919342,
-0.010041015222668648,
0.025840191170573235,
-0.005449687130749226,
0.023926764726638794,
-0.01123020052909851,
-0.08769570291042328,
-0.008181236684322357,
-0.015960117802023888,
0.06122962757945061,
0.009593953378498554,
0.0126607995480299,
-0.02412347123026848,
-0.008225942961871624,
-0.01661282777786255,
-0.012911153957247734,
0.03476354852318764,
-0.08998466283082962,
0.0149586983025074,
0.0010953021701425314,
-0.01397516205906868,
-0.0014406576519832015,
-0.006813226733356714,
-0.022943228483200073,
0.010255604982376099,
0.015334230847656727,
-0.04445585608482361,
0.008525474928319454,
0.012213736772537231,
0.022263692691922188,
-0.02821855992078781,
-0.018329547718167305,
0.09770989418029785,
0.03596167638897896,
0.005597217939794064,
-0.07127958536148071,
-0.07396195828914642,
0.036802154034376144,
0.010568547993898392,
-0.012034912593662739,
-0.013340333476662636,
-0.030954580754041672,
0.010443370789289474,
-0.010032073594629765,
-0.01405563298612833,
-0.01337609812617302,
-0.04796082526445389,
0.001463010790757835,
0.007121699396520853,
0.017506953328847885,
-0.05024978145956993,
0.015262700617313385,
0.05468463897705078,
-0.02362276241183281,
0.03313624486327171,
-0.005413922015577555,
0.005235097371041775,
-0.003364142496138811,
-0.02805761806666851,
-0.0510723777115345,
0.02126227505505085,
-0.0014875992201268673,
0.031312230974435806,
0.01323303859680891,
-0.04799658805131912,
0.03812545910477638,
0.011525261215865612,
0.05035707727074623,
0.017784131690859795,
-0.06169457361102104,
-0.01627306081354618,
0.0014808932319283485,
0.003415554529055953,
0.00808735378086567,
0.03403036668896675,
0.026072662323713303,
-0.02553618885576725,
-0.015521996654570103,
0.011945500038564205,
-0.05078625679016113,
-0.05243144556879997,
0.041451599448919296,
-0.019223671406507492,
-0.02845103293657303,
0.05514958128333092,
0.0025639012455940247,
0.09155832231044769,
-0.008355590514838696,
-0.02526795119047165,
0.010783138684928417,
-0.04889071360230446,
0.03769627958536148,
0.021780867129564285,
0.0046226223930716515,
0.010854667983949184,
-0.02306840568780899,
-0.041344303637742996,
0.03991370648145676,
0.023157818242907524,
0.0761793851852417,
-0.01419869251549244,
-0.017292363569140434,
0.01290221232920885,
-0.03463837131857872,
0.029130566865205765,
0.0347277857363224,
-0.024069825187325478,
-0.02399829402565956,
0.017238715663552284,
-0.046995170414447784,
-0.011695144698023796,
-0.023193582892417908,
-0.024373827502131462,
-0.03916264325380325,
-0.07625091820955276,
0.0432756133377552,
0.01096196286380291,
-0.06384047120809555,
-0.019813792780041695,
0.035496730357408524,
-0.03751745447516441,
0.026054780930280685,
-0.061193861067295074,
-0.006983110215514898,
-0.002183898352086544,
0.03944876044988632,
-0.005556982010602951,
0.027091965079307556,
-0.0009706836426630616,
-0.009017243050038815,
0.01961708627641201,
-0.03715980425477028,
0.0018899551359936595,
-0.0216378066688776,
0.0029886101838201284,
0.08748111873865128,
-0.05858302116394043,
0.02499971352517605,
-0.017560599371790886,
-0.020958272740244865,
-0.045671865344047546,
-0.040092531591653824,
0.09098608046770096,
-0.020868860185146332,
-0.057903487235307693,
-0.0008399179787375033,
-0.06637978553771973,
-0.05468463897705078,
0.04223842918872833,
0.11516319960355759,
-0.02492818422615528,
0.08175872266292572,
0.03347600996494293,
-0.03808969259262085,
-0.0073407599702477455,
0.021959690377116203,
-0.01956343837082386,
-0.006701461039483547,
0.005302156787365675,
0.03317200765013695,
0.03708827495574951,
-0.038983818143606186,
-0.08919783681631088,
0.010407606139779091,
-0.05196649953722954,
0.01961708627641201,
0.08469144999980927,
-0.04084359481930733,
-0.027771499007940292,
-0.012213736772537231,
0.06287481635808945,
-0.019420377910137177,
0.013456569984555244,
0.057724662125110626,
0.008708770386874676,
-0.07610785216093063,
0.03150893747806549,
0.04817541316151619,
-0.03744592145085335,
0.038769226521253586,
-0.10750950127840042,
0.09627930074930191,
-0.005798395723104477,
-0.020421797409653664,
-0.001486481516622007,
0.029577629640698433,
0.018043426796793938,
0.0105238426476717,
0.011328553780913353,
0.0590837299823761,
0.06287481635808945,
-0.042882196605205536,
-0.0065271067433059216,
-0.03812545910477638,
0.015325289219617844,
0.029023272916674614,
-0.01588858850300312,
0.015137523412704468,
0.05382627993822098,
-0.02981010265648365,
-0.024016177281737328,
0.04531421512365341,
-0.026323016732931137,
0.03884075582027435,
0.06230257824063301,
0.06283905357122421,
-0.04445585608482361,
0.009048537351191044,
0.044312797486782074,
-0.015280582942068577,
0.03826851770281792,
0.010890433564782143,
0.006840050220489502,
-0.037839338183403015,
0.018347429111599922,
-0.014511636458337307,
-0.042667608708143234,
0.0031763764563947916,
-0.03962758556008339,
-0.012401503510773182,
0.007559820543974638,
0.0030467284377664328,
-0.03293953835964203,
0.015307406894862652,
-0.06637978553771973,
0.055435702204704285,
0.008364532142877579,
0.02784302830696106,
0.07882599532604218,
-0.01972438022494316,
-0.0010181840043514967,
0.0505359023809433,
0.0023269583471119404,
0.020672151818871498,
-0.06062162294983864,
-0.03052540123462677,
-0.0021369569003582,
-0.008731123059988022,
0.016916830092668533,
0.07170876115560532,
0.02170933596789837,
-0.006419811863452196,
0.04964177682995796,
-0.004636034369468689,
-0.010997728444635868,
0.0023962529376149178,
0.01831166446208954,
-0.0503213107585907,
0.0293272752314806,
0.03812545910477638,
-0.0513942614197731,
-0.01290221232920885,
-0.026179958134889603,
0.042560312896966934,
-0.01836531236767769,
0.005002625286579132,
-0.016738004982471466,
-0.003835792886093259,
-0.01562035083770752,
-0.04509962722659111,
0.0035161436535418034,
0.02492818422615528,
-0.028182795271277428,
0.0001612217747606337,
0.017793072387576103,
0.0008790359133854508,
0.03791086748242378,
0.049892131239175797,
0.024141354486346245,
-0.014395399950444698,
-0.06337552517652512,
0.04048594459891319,
-0.04499233141541481,
-0.02070791646838188,
0.007506173104047775,
0.031920235604047775,
-0.001077978522516787,
-0.023819468915462494,
-0.04924836382269859,
-0.025124890729784966,
-0.034495312720537186,
0.05700936168432236,
0.025786543264985085,
0.06570024788379669,
-0.006004044320434332,
0.06333976238965988,
-0.0014462459366768599,
0.02997104451060295,
0.004059324041008949,
0.004090618342161179,
0.0016597181092947721,
0.015200112015008926,
0.009522423148155212,
-0.016800593584775925,
-0.021906044334173203,
0.059262555092573166,
-0.020350268110632896,
0.014860345050692558,
0.021298039704561234,
0.03805392608046532,
0.03848310559988022,
0.01604953035712242,
-0.02768208645284176,
0.07803916186094284,
-0.007591114845126867,
-0.02362276241183281,
-0.06559295207262039,
0.02861197479069233,
-0.00585204316303134,
-0.04828270897269249,
0.0033239067997783422,
-0.013599629513919353,
-0.048139650374650955,
0.01117655262351036,
0.014985522255301476,
-0.020833095535635948,
-0.040915124118328094,
0.03358330577611923,
0.04653022438287735,
0.011945500038564205,
-0.0125266807153821,
0.042059604078531265,
-0.025965368375182152,
-0.06466306746006012,
0.0077520571649074554,
0.004432620946317911,
0.05364745482802391,
-0.0011545378947630525,
-0.017185067757964134,
0.0748918429017067,
0.022424636408686638,
0.027646321803331375,
-0.004756740760058165,
-0.03251035884022713,
0.004832741338759661,
0.01328668650239706,
-0.00593251409009099,
-0.03381577879190445,
0.033565424382686615,
-0.009035125374794006,
-0.038340047001838684,
0.025357363745570183,
-0.034334369003772736,
-0.033672720193862915,
0.03129434958100319,
-0.0030310810543596745,
0.016076354309916496,
-0.023801587522029877,
-0.012964801862835884,
-0.012124324217438698,
0.024212883785367012,
-0.02285381592810154,
0.021602042019367218,
0.03358330577611923,
0.031866587698459625,
0.02247828245162964,
-0.10693725943565369,
-0.007117229048162699,
-0.06723814457654953,
-0.02712772972881794,
-0.034119781106710434,
0.08497756719589233,
-0.018544137477874756,
-0.04931989312171936,
-0.0506431981921196,
0.01836531236767769,
-0.02330087684094906,
0.030883051455020905,
0.05826113373041153,
-0.010184074752032757,
0.06337552517652512,
-0.03145528957247734,
0.016192590817809105,
0.03188446909189224,
0.036694858223199844,
0.030167751014232635,
0.0215305108577013,
0.024195002391934395,
-0.02866562269628048,
-0.012669740244746208,
0.016746947541832924,
0.03200964629650116,
-0.06072891876101494,
0.04313255473971367,
-0.016961537301540375,
-0.07178029417991638,
-0.041523128747940063,
-0.03901958093047142,
0.005051801912486553,
0.0031026110518723726,
-0.03841157630085945,
0.032850123941898346,
-0.0013981867814436555,
-0.04449162259697914,
0.0012428326299414039,
0.0009891248773783445,
0.03766051307320595,
-0.0023247229401022196,
-0.01940249651670456,
0.05114390701055527,
0.04366902634501457,
0.03862616792321205,
-0.04656599089503288,
0.030757874250411987,
-0.06798920780420303,
0.016201531514525414,
-0.0254825409501791,
0.035818617790937424,
-0.0025303715374320745,
-0.013483393006026745,
-0.039877939969301224,
-0.026054780930280685,
0.03656968101859093,
-0.008413708768785,
0.025285832583904266,
-0.009459834545850754,
0.025607718154788017,
0.041022419929504395,
-0.039770644158124924,
0.02285381592810154,
0.010514901019632816,
0.027467496693134308,
-0.020904624834656715,
0.0108189033344388,
-0.0011690674582496285,
-0.031204935163259506,
0.09720918536186218,
0.0018541901372373104,
-0.011417966336011887,
-0.020564857870340347,
-0.07095769792795181,
-0.02213851548731327,
0.04424126818776131,
-0.010452312417328358,
-0.0297564547508955,
-0.006840050220489502,
-0.002011779462918639,
-0.01164149772375822,
0.004890859592705965,
0.0016787182539701462,
0.07610785216093063,
-0.08998466283082962,
-0.04127277433872223,
0.07989893853664398,
-0.05514958128333092,
0.007872764021158218,
0.0056642768904566765,
-0.024677827954292297,
-0.015575644560158253,
0.024320179596543312,
0.03163411468267441,
-0.0432756133377552,
0.02811126597225666,
0.04098665341734886,
0.022925345227122307,
-0.01874084398150444,
0.036533914506435394,
-0.0029751984402537346,
-0.04520692303776741,
0.022603461518883705,
-0.019474025815725327,
-0.06602213531732559,
-0.004153206944465637,
-0.002546018688008189,
-0.07088617235422134,
0.0065271067433059216,
0.051859207451343536,
0.02635878324508667,
0.011391142383217812,
0.006227575242519379,
-0.004980272147804499,
-0.041129715740680695,
0.0170956552028656,
0.030990345403552055,
-0.007939822971820831,
-0.03610473498702049,
-0.023426054045557976,
0.005972750019282103,
-0.021083449944853783,
-0.03994946926832199,
0.04048594459891319,
-0.051716145128011703,
0.027163494378328323,
-0.008963595144450665,
-0.04002100229263306,
-0.052646033465862274,
0.03218847140669823,
-0.041630424559116364,
-0.004676269832998514,
0.03118705376982689,
0.02399829402565956,
0.023658527061343193,
-0.013143626041710377,
-0.035317908972501755,
-0.0664513111114502,
-0.06477036327123642,
0.0003311053733341396,
-0.004609210416674614,
-0.044741977006196976,
-0.028701387345790863,
-0.0600493848323822,
-0.02203122153878212,
0.025732895359396935,
-0.0584399588406086,
-0.04034288600087166,
0.018615666776895523,
-0.03912687674164772,
-0.027717851102352142,
-0.04663752019405365,
0.06087197735905647,
-0.035532496869564056,
-0.019438261166214943,
-0.003413319354876876,
0.013161508366465569,
-0.01621941290795803,
0.017632130533456802,
0.022871697321534157,
0.01818648725748062,
0.03378001227974892,
-0.024892419576644897,
-0.0047925058752298355,
-0.019813792780041695,
-0.043597497045993805,
-0.026698550209403038,
-0.03524637594819069,
-0.0030981404706835747,
0.010577489621937275,
-0.005226156208664179,
0.016648592427372932,
0.004814859014004469,
0.012124324217438698,
-0.005069684237241745,
0.01583494059741497,
-0.01076525542885065,
0.05818960443139076,
0.08125801384449005,
-0.007617938332259655,
0.038340047001838684,
0.00978171918541193,
-0.04681634530425072,
0.036355093121528625,
0.07331819087266922,
0.015969058498740196,
0.024624181911349297,
-0.013215156272053719,
0.025464657694101334,
-0.06126539409160614,
0.007287112530320883,
0.07360430806875229,
-0.03973488137125969,
-0.00029701690073125064,
-0.041129715740680695,
0.031651996076107025,
-0.008422650396823883,
-0.01309891976416111,
-0.02038603276014328,
-0.026609137654304504,
0.02762843854725361,
-0.0016630711033940315,
-0.004571210127323866,
-0.03562191128730774,
0.02192392572760582,
-0.023551233112812042,
-0.0334402471780777,
0.07381889969110489,
0.031061876565217972,
-0.003748615738004446,
-0.002713666995987296,
-0.05979903042316437,
0.016237296164035797,
0.005816278047859669,
-0.010514901019632816,
-0.0038044985849410295,
-0.05343286320567131,
-0.06691625714302063,
-0.06691625714302063,
-0.09821060299873352,
0.011274906806647778,
0.004269443452358246,
0.05386204272508621,
0.023801587522029877,
0.010953022167086601,
-0.04928412660956383,
-0.001997249899432063,
-0.020743682980537415,
-0.01507493481040001,
-0.008641710504889488,
0.07675162702798843,
0.0049623893573880196,
0.03812545910477638,
0.0429537296295166,
0.017229773104190826,
-0.023694291710853577,
-0.00173013040330261,
0.03755321726202965,
0.0054094516672194,
0.04424126818776131,
-0.029398804530501366,
-0.02197757363319397,
0.016702240332961082,
0.015682939440011978,
-0.004948977846652269,
-0.011051375418901443,
0.025840191170573235,
-0.01117655262351036,
-0.004302972927689552,
-0.003976617474108934,
0.05189497023820877,
-0.041558895260095596,
0.00657628383487463,
0.0001410341210430488,
0.01983167603611946,
-0.06258869916200638,
0.025518305599689484,
-0.07195911556482315,
0.008422650396823883,
0.01950979046523571,
0.05210956186056137,
0.007555349729955196,
-0.005628512240946293,
0.003748615738004446,
0.03517484664916992,
0.020868860185146332,
-0.0063572232611477375,
-0.046279869973659515,
0.036909449845552444,
-0.002879080129787326,
0.012651857919991016,
-0.059262555092573166,
-0.00857912190258503,
-0.013653277419507504,
0.008892065845429897,
-0.004725446458905935,
-0.003335083369165659,
-0.02312205359339714,
-0.02197757363319397,
0.010228781029582024,
-0.035604026168584824,
-0.062231045216321945,
-0.03381577879190445,
-0.045564569532871246,
0.05665171146392822,
-0.013340333476662636,
0.0763939768075943,
0.020242972299456596,
0.0681680291891098,
0.07131534814834595
] |
729,718 | dotchain.dot_chain | __next__ | null | def __next__(self):
return self.__chain__.__next__()
| (self) | [
-0.017710017040371895,
-0.0374138206243515,
-0.007936133071780205,
0.03824600949883461,
-0.05076351389288902,
0.000024295875846291892,
0.013661765493452549,
-0.032559383660554886,
0.08266407996416092,
0.009067390114068985,
0.02931731566786766,
-0.0012341965921223164,
0.03486524149775505,
0.05007002130150795,
-0.015742236748337746,
0.02057933434844017,
-0.0015105092898011208,
0.0389048233628273,
-0.013228333555161953,
0.042337603867053986,
-0.02037128619849682,
0.05901605263352394,
0.030236192047595978,
-0.005313871894031763,
-0.02526039630174637,
0.08446715772151947,
-0.01048037689179182,
0.0027219506446272135,
0.004039582796394825,
-0.019400401040911674,
-0.03963298723101616,
-0.030496250838041306,
-0.005560928024351597,
-0.021168801933526993,
0.06033368408679962,
0.02423749677836895,
-0.06199806183576584,
0.06626302748918533,
-0.03689369931817055,
0.0008283962379209697,
0.04375925660133362,
-0.010662417858839035,
-0.0251910462975502,
-0.01962578482925892,
0.0043364837765693665,
-0.0069392407312989235,
0.018914956599473953,
0.020995428785681725,
0.041470739990472794,
-0.0682394802570343,
0.09022313356399536,
-0.0028324758168309927,
0.037621866911649704,
-0.027739625424146652,
0.0029386666137725115,
0.04857901856303215,
-0.005747303366661072,
0.0053832209669053555,
-0.01038502249866724,
0.07787899672985077,
-0.010168306529521942,
-0.022035663947463036,
0.023613356053829193,
0.02002454176545143,
0.0031012033578008413,
-0.05263593792915344,
-0.05121428146958351,
-0.017068538814783096,
-0.021654244512319565,
0.04084659740328789,
-0.0403958298265934,
-0.010853128507733345,
-0.04854434356093407,
0.01277756504714489,
-0.027947671711444855,
-0.07871118187904358,
-0.041193343698978424,
-0.0074636926874518394,
0.0580451637506485,
-0.0501740463078022,
-0.01972980797290802,
0.007875452749431133,
-0.07940467447042465,
-0.017345935106277466,
-0.012318126857280731,
-0.033582285046577454,
0.03342624753713608,
-0.06452929973602295,
-0.0899457335472107,
0.03928624466061592,
-0.07108278572559357,
0.01673046126961708,
-0.014129871502518654,
0.0520811453461647,
0.016765136271715164,
0.036789678037166595,
-0.010835791006684303,
-0.00320522696711123,
-0.006718190386891365,
-0.01586359739303589,
0.0014649989316239953,
0.08190124481916428,
-0.008564609102904797,
0.02921329252421856,
0.039494290947914124,
0.011303897015750408,
-0.03675500303506851,
-0.017441289499402046,
0.02864116244018078,
0.00004523942698142491,
-0.04497286677360535,
-0.029941458255052567,
-0.01132123451679945,
0.023509332910180092,
-0.011338572017848492,
-0.03214329108595848,
0.021394185721874237,
0.0020295437425374985,
0.02347465790808201,
0.002682941732928157,
0.016661111265420914,
-0.004267134703695774,
-0.0674072876572609,
0.009934253059327602,
-0.008118174970149994,
0.02321459911763668,
0.04375925660133362,
-0.01635771058499813,
0.014927385374903679,
-0.0406038761138916,
0.019851168617606163,
0.04334316402673721,
-0.025693828240036964,
-0.01405185367912054,
0.0161583311855793,
0.017432620748877525,
0.013089635409414768,
0.012846914120018482,
-0.09722738713026047,
0.0531560555100441,
-0.022694481536746025,
0.03053092397749424,
0.008343558758497238,
0.0186028853058815,
-0.0518730990588665,
-0.003066528821364045,
-0.024774951860308647,
0.06383581459522247,
0.06231013312935829,
0.008750984445214272,
0.0030426899902522564,
-0.00010009561810875311,
0.04864836856722832,
0.1290585994720459,
-0.033772993832826614,
0.05083286389708519,
-0.0669565200805664,
0.006406119558960199,
-0.023509332910180092,
-0.04566635563969612,
-0.00005306151433615014,
-0.011659311130642891,
-0.03271542116999626,
-0.053988244384527206,
0.01165064238011837,
-0.007537376135587692,
-0.019105667248368263,
-0.023717379197478294,
0.01917501538991928,
0.031415123492479324,
-0.034067727625370026,
-0.0518730990588665,
0.00535288080573082,
0.02404678799211979,
-0.05475108325481415,
0.05759439617395401,
-0.001321966527029872,
0.08030621707439423,
-0.008807331323623657,
-0.013132978230714798,
0.007099610287696123,
0.004046084359288216,
-0.06068043038249016,
-0.06359308958053589,
0.04348186030983925,
0.03063494898378849,
0.05572197213768959,
0.004390662536025047,
0.02049264870584011,
0.006263087037950754,
-0.016088983044028282,
0.0037903597112745047,
0.028987908735871315,
0.015040078200399876,
-0.004078591708093882,
-0.016097651794552803,
-0.014311912469565868,
0.02357868105173111,
0.0244455449283123,
0.03862742707133293,
-0.07510503381490707,
0.012326795607805252,
-0.009327448904514313,
0.023977437987923622,
-0.003545470768585801,
0.05235854163765907,
0.015187444165349007,
0.04809357598423958,
-0.028329091146588326,
0.006718190386891365,
-0.023821402341127396,
-0.0166351068764925,
0.018568212166428566,
0.04313511773943901,
0.012292121537029743,
-0.012552180327475071,
0.008278544060885906,
-0.06393983215093613,
0.015048746950924397,
0.06411320716142654,
0.05769842118024826,
-0.01103516947478056,
0.028797198086977005,
-0.012040730565786362,
0.00178573839366436,
-0.02300655096769333,
-0.01624501869082451,
-0.033114176243543625,
-0.022694481536746025,
-0.02347465790808201,
0.034795891493558884,
-0.027739625424146652,
0.029820097610354424,
-0.016565756872296333,
0.028693174943327904,
0.018550874665379524,
-0.00046025021583773196,
0.008824667893350124,
-0.05769842118024826,
0.047018665820360184,
-0.024081461131572723,
0.023457320407032967,
0.04171346127986908,
0.005725631956011057,
0.01953909918665886,
0.03521198779344559,
0.03900884836912155,
-0.00019707594765350223,
0.00479375384747982,
0.024272171780467033,
0.02038862369954586,
0.01464998908340931,
0.0030621944461017847,
0.0044686803594231606,
-0.010280998423695564,
-0.06491072475910187,
0.021914303302764893,
-0.04819759726524353,
0.03332222253084183,
0.015317474491894245,
0.005183842498809099,
0.02038862369954586,
-0.010775110684335232,
0.032073941081762314,
-0.06061108037829399,
0.0033005818258970976,
-0.002364369574934244,
-0.011581293307244778,
-0.01568155735731125,
0.04961925372481346,
0.13425979018211365,
-0.035749442875385284,
0.00186809035949409,
0.06709522008895874,
-0.027496902272105217,
-0.014866705052554607,
-0.0357147678732872,
0.03195257857441902,
-0.07025060057640076,
-0.04687996581196785,
0.03099903091788292,
0.05873865634202957,
-0.06189403682947159,
-0.057629071176052094,
-0.01579424925148487,
-0.009873572736978531,
0.0024662259966135025,
0.016470402479171753,
0.01823880337178707,
-0.019955191761255264,
0.09237295389175415,
-0.018949631601572037,
0.04424470290541649,
-0.01634037308394909,
0.08599283546209335,
-0.03980636224150658,
-0.06161664053797722,
0.012396144680678844,
0.02604057267308235,
-0.006328101735562086,
0.02957737445831299,
-0.10048679262399673,
-0.009942921809852123,
0.045492984354496,
-0.027132820338010788,
0.0327327586710453,
0.04764280468225479,
0.039875712245702744,
-0.007086607161909342,
0.022781167179346085,
-0.004594375379383564,
0.030478913336992264,
-0.03129376471042633,
0.006544817704707384,
-0.023526668548583984,
-0.04559700936079025,
-0.0035584736615419388,
0.04764280468225479,
0.03268074616789818,
0.07878053188323975,
-0.08814265578985214,
0.04285772144794464,
0.012673540972173214,
0.005305203143507242,
-0.016106320545077324,
0.02883187308907509,
-0.03522932529449463,
0.022902527824044228,
-0.03755251690745354,
0.00025707914028316736,
-0.03852340579032898,
-0.038558077067136765,
-0.0073423320427536964,
0.050416767597198486,
-0.05787179246544838,
0.024272171780467033,
0.0450768917798996,
-0.03184855729341507,
0.030877670273184776,
-0.07975142449140549,
0.020457973703742027,
-0.036408256739377975,
0.01427723839879036,
-0.030322877690196037,
-0.024393532425165176,
0.02075270749628544,
0.019972529262304306,
0.044660795480012894,
0.0686555728316307,
0.008989372290670872,
0.011451263912022114,
-0.016028301790356636,
0.05645013600587845,
-0.00002251812838949263,
0.03301015496253967,
-0.01823880337178707,
-0.044106002897024155,
0.024480218067765236,
1.354473937453804e-7,
0.025347081944346428,
0.07108278572559357,
-0.012569517828524113,
-0.05950149521231651,
0.027392879128456116,
0.011026500724256039,
0.00954416487365961,
-0.07295521348714828,
0.016487739980220795,
0.008746650069952011,
-0.05475108325481415,
-0.014719338156282902,
-0.005946682300418615,
-0.014337918721139431,
-0.016973182559013367,
-0.007238308433443308,
-0.006362776271998882,
0.010081619955599308,
0.047018665820360184,
0.018620222806930542,
0.03578411787748337,
0.0359228141605854,
0.008629623800516129,
-0.007346666418015957,
0.03431044891476631,
0.0101509690284729,
-0.020423298701643944,
0.04441807419061661,
-0.004767748061567545,
0.02215702459216118,
0.04310044273734093,
0.023526668548583984,
-0.07066669315099716,
-0.022867852821946144,
-0.03935559093952179,
-0.07517438381910324,
-0.034535832703113556,
0.011165198870003223,
-0.04736540839076042,
-0.04258032515645027,
-0.06629770249128342,
0.02836376614868641,
0.05232386663556099,
0.02623128332197666,
0.030929680913686752,
0.0482669472694397,
-0.01286425068974495,
0.04473014548420906,
0.040638551115989685,
0.0015961120370775461,
-0.0027132821269333363,
-0.08952964097261429,
-0.04348186030983925,
-0.03952896595001221,
-0.0640091821551323,
0.014268569648265839,
-0.02631796896457672,
0.051803749054670334,
0.025971224531531334,
0.03859275206923485,
0.03914754465222359,
0.03630423545837402,
-0.024272171780467033,
-0.018810933455824852,
-0.00758505379781127,
-0.0133930379524827,
-0.042788371443748474,
-0.02631796896457672,
0.012448156252503395,
-0.03073897212743759,
0.01586359739303589,
-0.028415778651833534,
-0.058218538761138916,
0.021376848220825195,
-0.03776056319475174,
0.038766127079725266,
-0.05780244246125221,
-0.08217863738536835,
-0.009457478299736977,
0.018637560307979584,
0.023821402341127396,
0.04639452323317528,
0.024306846782565117,
-0.03727512061595917,
-0.045805055648088455,
0.04479949548840523,
-0.026907436549663544,
0.013245671056210995,
0.07926597446203232,
0.024220159277319908,
-0.006215409841388464,
-0.020891405642032623,
-0.030374888330698013,
0.02434151992201805,
-0.008963366039097309,
0.02226104959845543,
0.020614009350538254,
0.037899263203144073,
-0.05093688517808914,
0.00730332313105464,
0.033772993832826614,
0.011745997704565525,
-0.017597325146198273,
0.03918221965432167,
-0.01127789169549942,
-0.05183842405676842,
0.050035350024700165,
0.010610406287014484,
0.03515997529029846,
-0.04792020097374916,
-0.01338436920195818,
0.029629386961460114,
-0.045146238058805466,
-0.04216422885656357,
-0.06699119508266449,
-0.01673046126961708,
0.028970571234822273,
0.013861143961548805,
-0.02565915323793888,
0.008187524043023586,
-0.08072230964899063,
-0.02874518558382988,
-0.0714295357465744,
0.05665818229317665,
-0.034709203988313675,
-0.02884921059012413,
0.00312504218891263,
0.019244365394115448,
-0.007810438051819801,
0.03391169011592865,
0.02056199684739113,
-0.0034674531780183315,
0.04511156678199768,
-0.024289509281516075,
0.021827617660164833,
0.009960259310901165,
-0.0007763844332657754,
-0.010879133827984333,
0.011581293307244778,
0.04334316402673721,
-0.03831535577774048,
0.009968928061425686,
-0.02255578339099884,
0.021775605157017708,
-0.019868506118655205,
0.0435858853161335,
0.041852157562971115,
-0.027392879128456116,
-0.03977168723940849,
-0.017068538814783096,
0.008620955049991608,
0.0631423220038414,
0.02857181429862976,
-0.054543036967515945,
-0.006518811918795109,
-0.015672888606786728,
-0.027982346713542938,
0.0146153150126338,
0.009708868339657784,
0.02442820742726326,
-0.0014270736137405038,
0.05984824150800705,
-0.005287866108119488,
-0.01014230027794838,
0.013869812712073326,
-0.01990318112075329,
-0.024220159277319908,
-0.0160543080419302,
0.0003212812007404864,
-0.005487244576215744,
-0.004286638926714659,
0.019885843619704247,
0.0047200703993439674,
-0.027080809697508812,
0.004494686145335436,
-0.050798188894987106,
-0.0003183013468515128,
-0.06220610812306404,
0.013895818032324314,
0.010887802578508854,
0.011676648631691933,
0.04629049822688103,
-0.006631504278630018,
-0.009145407937467098,
0.028623824939131737,
-0.006068042945116758,
-0.015586202032864094,
-0.06404385715723038,
-0.014736675657331944,
-0.015109427273273468,
-0.020527321845293045,
-0.050312746316194534,
-0.003545470768585801,
-0.014103865250945091,
0.016938507556915283,
0.015534189529716969,
-0.029265305027365685,
0.005487244576215744,
0.03431044891476631,
-0.0080271540209651,
0.029143942520022392,
0.015144101344048977,
0.06404385715723038,
-0.054647061973810196,
-0.05631143972277641,
0.04334316402673721,
-0.02506968565285206,
0.023162586614489555,
0.030877670273184776,
0.03685902804136276,
0.0009519242448732257,
-0.0061677321791648865,
0.007706414442509413,
-0.034813228994607925,
0.03994505852460861,
0.04299641773104668,
0.0642172321677208,
-0.014233894646167755,
0.010081619955599308,
0.0073076575063169,
-0.07829508930444717,
0.019105667248368263,
-0.019209690392017365,
0.06369711458683014,
-0.026838086545467377,
-0.04133203998208046,
-0.06817013025283813,
-0.037621866911649704,
0.05523652955889702,
-0.029351990669965744,
-0.016687117516994476,
-0.04708801209926605,
-0.04587440565228462,
-0.07392609864473343,
-0.02940400317311287,
0.04878706485033035,
-0.028207730501890182,
-0.02359601855278015,
0.006705187261104584,
-0.01254351157695055,
0.032819442451000214,
-0.004442674107849598,
0.04389795660972595,
0.028433116152882576,
0.03144979849457741,
0.016765136271715164,
0.01009895745664835,
-0.041574761271476746,
0.005543590523302555,
-0.010176975280046463,
-0.004199952352792025,
-0.03672032803297043,
0.009474815800786018,
0.007333663292229176,
-0.02349199540913105,
-0.030114829540252686,
-0.04095062240958214,
-0.04615180194377899,
0.026092585176229477,
-0.04011843353509903,
0.054647061973810196,
-0.04046517610549927,
-0.008001147769391537,
-0.05048611760139465,
0.049827300012111664,
-0.07025060057640076,
0.021550221368670464,
0.0646333247423172,
-0.05156102776527405,
0.040534526109695435,
0.028311755508184433,
-0.003298414871096611,
0.007862449623644352,
0.044487424194812775,
-0.0714295357465744,
-0.036963049322366714,
0.0030448571778833866,
0.04545830935239792,
0.02883187308907509,
-0.03717109560966492,
-0.03535068407654762,
-0.04181748628616333,
0.004427504260092974,
-0.06869024783372879,
0.004603044129908085,
-0.045250263065099716,
-0.018810933455824852,
-0.03900884836912155,
-0.010558394715189934,
0.03606151416897774,
-0.009388129226863384,
-0.017233241349458694,
0.04396730661392212,
-0.021758267655968666,
0.04559700936079025,
0.028502464294433594,
-0.06210208684206009,
0.07448089122772217,
0.012630198150873184,
0.033270213752985,
-0.004427504260092974,
-0.012352801859378815,
-0.010454371571540833,
0.03101636841893196,
-0.0018410008633509278,
0.019591109827160835,
0.0012537010479718447,
-0.023145249113440514,
-0.054924458265304565,
-0.013280345126986504,
-0.022105013951659203,
-0.03444914519786835,
0.00005516094824997708,
-0.06730326265096664,
-0.046637244522571564,
-0.025988560169935226,
-0.010497714392840862,
0.01103516947478056,
-0.03859275206923485,
0.03685902804136276,
-0.0389048233628273,
-0.02506968565285206,
0.010905140079557896,
-0.031224414706230164,
0.02836376614868641,
-0.05984824150800705,
0.00030773645266890526,
0.03730979561805725,
0.0033092505764216185,
0.011798009276390076,
-0.08093035221099854,
0.00478941947221756,
-0.05052079260349274,
-0.007745423354208469,
0.02950802631676197,
-0.05298268422484398,
0.034345123916864395,
-0.0484749935567379,
-0.10596536844968796,
-0.006804876960813999,
-0.009570170193910599,
0.06765001267194748,
-0.006198072340339422,
0.02770495042204857,
-0.08162384480237961,
0.012448156252503395,
0.010402359068393707,
0.035003937780857086,
0.007476695813238621,
0.0325247086584568,
0.015187444165349007,
0.020076554268598557,
0.03630423545837402,
-0.015256793238222599,
-0.02215702459216118,
0.026369981467723846,
-0.05142233148217201,
0.01983383111655712,
0.058253213763237,
-0.013462387025356293,
0.06543084233999252,
-0.011962713673710823,
-0.007377006579190493,
0.011026500724256039,
0.0005591268418356776,
0.031345777213573456,
0.032663408666849136,
-0.0173806082457304,
0.029178617522120476,
-0.040257129818201065,
0.047954875975847244,
0.01278623379766941,
-0.005842658691108227,
-0.027098145335912704,
0.015161438845098019,
-0.012760227546095848,
-0.038211334496736526,
0.009648188017308712,
0.060645755380392075,
0.01160729955881834,
0.008118174970149994,
-0.05457771196961403,
0.0024640588089823723,
0.008625289425253868,
0.036408256739377975,
0.014459279365837574,
-0.02602323517203331,
0.03101636841893196,
0.03214329108595848,
0.02480962686240673,
-0.03710174933075905,
0.020405961200594902,
0.020787380635738373,
0.04916848614811897,
0.009171413257718086,
-0.0028953233268111944,
-0.03900884836912155,
-0.011520612984895706,
-0.015655551105737686,
-0.03658163174986839,
-0.037725888192653656,
-0.030877670273184776,
-0.010307004675269127,
0.0597442165017128,
0.017805371433496475,
0.054820433259010315,
0.0002803760871756822,
0.03900884836912155,
0.0298721082508564
] |
729,721 | addfips.addfips | AddFIPS | Get state or county FIPS codes | class AddFIPS:
"""Get state or county FIPS codes"""
default_county_field = 'county'
default_state_field = 'state'
data = files('addfips')
def __init__(self, vintage=None):
# Handle de-diacreticizing
self.diacretic_pattern = '(' + ('|'.join(DIACRETICS)) + ')'
self.delete_diacretics = lambda x: DIACRETICS[x.group()]
if vintage is None or vintage not in COUNTY_FILES:
vintage = max(COUNTY_FILES.keys())
self._states, self._state_fips = self._load_state_data()
self._counties = self._load_county_data(vintage)
def _load_state_data(self):
with self.data.joinpath(STATES).open('rt', encoding='utf-8') as f:
reader = csv.DictReader(f)
states = {}
state_fips = {}
for row in reader:
states[row['postal'].lower()] = row['fips']
states[row['name'].lower()] = row['fips']
state_fips[row['fips']] = row['fips']
state_fips = frozenset(state_fips)
return states, state_fips
def _load_county_data(self, vintage):
with self.data.joinpath(COUNTY_FILES[vintage]).open('rt', encoding='utf-8') as f:
counties = {}
for row in csv.DictReader(f):
if row['statefp'] not in counties:
counties[row['statefp']] = {}
state = counties[row['statefp']]
# Strip diacretics, remove geography name and add both to dict
county = self._delete_diacretics(row['name'].lower())
bare_county = re.sub(COUNTY_PATTERN, '', county)
state[county] = state[bare_county] = row['countyfp']
# Add both versions of abbreviated names to the dict.
for short, full in ABBREVS.items():
needle, replace = None, None
if county.startswith(short):
needle, replace = short, full
elif county.startswith(full):
needle, replace = full, short
if needle is not None:
replaced = county.replace(needle, replace, 1)
bare_replaced = bare_county.replace(needle, replace, 1)
state[replaced] = state[bare_replaced] = row['countyfp']
return counties
def _delete_diacretics(self, string):
return re.sub(self.diacretic_pattern, self.delete_diacretics, string)
def get_state_fips(self, state):
'''Get FIPS code from a state name or postal code'''
if state is None:
return None
# Check if we already have a FIPS code
if state in self._state_fips:
return state
return self._states.get(state.lower())
def get_county_fips(self, county, state):
"""
Get a county's FIPS code.
:county str County name
:state str Name, postal abbreviation or FIPS code for a state
"""
state_fips = self.get_state_fips(state)
counties = self._counties.get(state_fips, {})
try:
name = self._delete_diacretics(county.lower())
return state_fips + counties.get(name)
except TypeError:
return None
def add_state_fips(self, row, state_field=None):
"""
Add state FIPS to a dictionary.
:row dict/list A dictionary with state and county names
:state_field str name of state name field. default: state
"""
if state_field is None:
state_field = self.default_state_field
fips = self.get_state_fips(row[state_field])
try:
row['fips'] = fips
except TypeError:
row.insert(0, fips)
return row
def add_county_fips(self, row, county_field=None, state_field=None, state=None):
"""
Add county FIPS to a dictionary containing a state name, FIPS code, or using a passed state name or FIPS code.
:row dict/list A dictionary with state and county names
:county_field str county name field. default: county
:state_fips_field str state FIPS field containing state fips
:state_field str state name field. default: county
:state str State name, postal abbreviation or FIPS code to use
"""
if state:
state_fips = self.get_state_fips(state)
else:
state_fips = self.get_state_fips(row[state_field or self.default_state_field])
if county_field is None:
county_field = self.default_county_field
fips = self.get_county_fips(row[county_field], state_fips)
try:
row['fips'] = fips
except TypeError:
row.insert(0, fips)
return row
| (vintage=None) | [
0.03373221307992935,
-0.04146377369761467,
-0.02037861756980419,
0.029977459460496902,
-0.07230927050113678,
-0.08462323993444443,
-0.056321289390325546,
-0.010098467580974102,
0.07121917605400085,
-0.08720715343952179,
-0.058662962168455124,
0.031471285969018936,
-0.03732547163963318,
0.05987417325377464,
0.00660109706223011,
0.024224210530519485,
-0.01612928695976734,
0.05733063071966171,
-0.03667949140071869,
-0.051880184561014175,
-0.008892304264008999,
0.01503919716924429,
0.027514666318893433,
0.041181158274412155,
0.03692173212766647,
-0.014998823404312134,
0.04897327721118927,
-0.006308387964963913,
0.061206504702568054,
-0.028241392225027084,
0.019783105701208115,
-0.0007342963945120573,
-0.05087084323167801,
0.009836038574576378,
0.006252874154597521,
-0.029028678312897682,
0.02428477071225643,
0.006343714892864227,
0.044249556958675385,
0.03849630802869797,
-0.028766250237822533,
-0.053818121552467346,
-0.018733389675617218,
-0.03114829771220684,
0.007403524126857519,
0.05139569938182831,
-0.067060686647892,
-0.014574900269508362,
0.017158815637230873,
-0.025011496618390083,
-0.05959155783057213,
-0.016977133229374886,
0.03871836140751839,
0.04828692600131035,
0.02347729727625847,
-0.03340922296047211,
-0.011486313305795193,
0.015301626175642014,
0.07093656063079834,
-0.02598046511411667,
-0.023679165169596672,
-0.03478192910552025,
0.010739400051534176,
-0.030583065003156662,
-0.02614196017384529,
0.014080322347581387,
-0.013999574817717075,
-0.03486267477273941,
-0.01808740943670273,
0.02628326788544655,
0.041100408881902695,
0.025011496618390083,
0.0207520741969347,
-0.009028565138578415,
0.024486638605594635,
0.07461056858301163,
-0.02446645312011242,
-0.03357071802020073,
0.01039622351527214,
-0.05910707265138626,
0.01638162136077881,
-0.017320310696959496,
-0.010037907399237156,
-0.002399710938334465,
0.031814463436603546,
0.05898595228791237,
0.12023282796144485,
0.030038021504878998,
-0.0035680243745446205,
0.04021218791604042,
-0.030562877655029297,
0.035185664892196655,
0.019207779318094254,
-0.013757333159446716,
0.06052015349268913,
-0.03974789008498192,
-0.013091166503727436,
-0.0010579166701063514,
-0.015412653796374798,
-0.017633207142353058,
0.03760808706283569,
-0.05838034674525261,
-0.03787051513791084,
-0.023921407759189606,
-0.015029103495180607,
-0.01631096750497818,
0.0019177499925717711,
0.010426503606140614,
-0.0014130789786577225,
-0.036618929356336594,
-0.09617011249065399,
-0.07424720376729965,
0.0048574586398899555,
-0.018753575161099434,
0.004171106033027172,
-0.045541513711214066,
0.026606258004903793,
0.028806623071432114,
-0.04029293730854988,
-0.033974453806877136,
-0.0008213521214202046,
0.008756042458117008,
-0.017885541543364525,
0.05111308395862579,
0.0339946411550045,
-0.031733714044094086,
-0.0032652216032147408,
0.04642973467707634,
0.10602129250764847,
-0.03250081464648247,
0.0027479338459670544,
-0.019328901544213295,
-0.02017674781382084,
-0.005581661593168974,
0.0320163294672966,
-0.0570480152964592,
0.014362937770783901,
0.0005071943742223084,
0.008675294928252697,
0.0162705946713686,
0.06593022495508194,
-0.0314914733171463,
-0.007156235631555319,
-0.018531519919633865,
0.04974037781357765,
0.022548701614141464,
-0.0002416112693026662,
0.004557179752737284,
-0.07921316474676132,
-0.033550530672073364,
-0.003709332086145878,
0.005657362286001444,
-0.08216044306755066,
0.009427255019545555,
0.017885541543364525,
-0.041786763817071915,
-0.013454530388116837,
-0.03956621140241623,
0.021902723237872124,
-0.0025347103364765644,
0.0029270921368151903,
0.02135767787694931,
-0.023356176912784576,
0.005172878038138151,
-0.056240539997816086,
0.005763343535363674,
-0.029392041265964508,
-0.06492087990045547,
0.01593751087784767,
0.0017713953275233507,
-0.01684591919183731,
-0.014090416021645069,
-0.05252616107463837,
0.03153184801340103,
-0.030603252351284027,
0.05482746288180351,
-0.010022766888141632,
-0.04852916672825813,
0.012889298610389233,
0.005657362286001444,
-0.014696020632982254,
-0.017168909311294556,
-0.0475602000951767,
0.06294257193803787,
0.020772259682416916,
0.027978962287306786,
0.03118867054581642,
-0.006207454018294811,
0.11248107999563217,
0.05583680421113968,
0.008180717937648296,
-0.04271535575389862,
0.008115109987556934,
0.030038021504878998,
0.023578232154250145,
-0.03567015007138252,
-0.017633207142353058,
0.008816603571176529,
-0.0257584098726511,
-0.013989481143653393,
-0.06661657989025116,
0.015321812592446804,
0.008952864445745945,
-0.012848924845457077,
-0.06322518736124039,
0.014574900269508362,
-0.04210975393652916,
-0.0459856241941452,
-0.05410073697566986,
0.03657855838537216,
0.05406036227941513,
-0.02135767787694931,
-0.025899717584252357,
0.0012067946372553706,
0.06484013795852661,
-0.10965492576360703,
0.04659122973680496,
0.033288102596998215,
0.0033055953681468964,
0.008412865921854973,
0.021862350404262543,
0.0028640080709010363,
-0.014060134999454021,
-0.018258998170495033,
0.02761559933423996,
-0.005677549168467522,
-0.00876613613218069,
0.08728790283203125,
0.042473115026950836,
-0.009528188966214657,
-0.02017674781382084,
-0.040192000567913055,
0.034882862120866776,
-0.024607760831713676,
0.02105487696826458,
-0.06770666688680649,
0.014070228673517704,
-0.018430586904287338,
0.043119095265865326,
-0.010900894179940224,
0.008902397006750107,
-0.06524387001991272,
0.02947278879582882,
-0.049336642026901245,
-0.06156986579298973,
-0.020418990403413773,
0.02252851612865925,
0.03968733176589012,
-0.04198862984776497,
-0.00693418039008975,
0.04009106755256653,
0.015049290843307972,
-0.005642222240567207,
0.021216370165348053,
0.02093375474214554,
-0.08890285342931747,
-0.031693343073129654,
0.006989694200456142,
0.011274350807070732,
-0.03875873610377312,
0.0420290045440197,
-0.03110792301595211,
0.025556541979312897,
0.031814463436603546,
-0.06451714783906937,
0.011900143697857857,
0.04449179768562317,
-0.027595411986112595,
-0.014140882529318333,
-0.02472888119518757,
0.07251113653182983,
0.016472462564706802,
-0.012869111262261868,
0.010537531226873398,
-0.03849630802869797,
-0.03266230970621109,
0.035266414284706116,
-0.01987394504249096,
-0.019752824679017067,
-0.023840660229325294,
0.02178160287439823,
0.015291532501578331,
0.01054762490093708,
0.03926340863108635,
0.005117364227771759,
-0.055513814091682434,
-0.023759912699460983,
0.03930377960205078,
-0.004504188895225525,
0.005018953699618578,
-0.00547063397243619,
0.0044764322228729725,
0.0257584098726511,
0.055029332637786865,
0.03835500031709671,
-0.010890801437199116,
-0.017249656841158867,
-0.03015914186835289,
0.006848386023193598,
-0.04671235382556915,
-0.04408806189894676,
0.005082037299871445,
0.10367961972951889,
-0.02511243149638176,
-0.008433053269982338,
-0.037002481520175934,
0.010688932612538338,
-0.01749189756810665,
-0.01242500077933073,
0.03780995309352875,
-0.007428757846355438,
-0.025395046919584274,
-0.027191676199436188,
0.019409649074077606,
0.0010282672010362148,
-0.06492087990045547,
-0.0760236456990242,
0.022750571370124817,
0.013626118190586567,
0.017966289073228836,
-0.025617102161049843,
-0.04893290624022484,
-0.006747452076524496,
0.013908733613789082,
0.02029787003993988,
-0.04085816815495491,
0.05781511589884758,
-0.01665414497256279,
0.014857515692710876,
0.00476914132013917,
-0.016058633103966713,
-0.013827987015247345,
0.028443260118365288,
0.036659304052591324,
0.01866273581981659,
0.027151301503181458,
0.0028589614666998386,
-0.00752969179302454,
-0.012505748309195042,
-0.008796416223049164,
-0.0024262061342597008,
0.03348997235298157,
-0.026909060776233673,
-0.002664663130417466,
0.0059349313378334045,
-0.06778741627931595,
-0.02989671193063259,
0.006570816971361637,
0.03132997825741768,
0.003969237674027681,
0.03270268440246582,
-0.03910191357135773,
0.03348997235298157,
0.05765362083911896,
0.04099947586655617,
0.004988673143088818,
-0.006762592121958733,
-0.025556541979312897,
0.049013651907444,
-0.0013474717270582914,
0.02442607842385769,
-0.05765362083911896,
-0.033671651035547256,
0.01570536382496357,
0.03197595849633217,
-0.005339419469237328,
-0.006414369214326143,
-0.01519059855490923,
-0.023699352517724037,
-0.051153458654880524,
0.006616237573325634,
-0.029351668432354927,
0.012596589513123035,
-0.040535178035497665,
0.029069053009152412,
0.002385832369327545,
0.07025021314620972,
0.03562977537512779,
-0.061327625066041946,
0.005995491985231638,
-0.023073559626936913,
-0.0015644802479073405,
-0.036659304052591324,
0.06924086809158325,
0.013575650751590729,
-0.03879911080002785,
0.03861742839217186,
0.011516593396663666,
0.05353550612926483,
0.00141812558285892,
-0.023537857457995415,
0.05539269372820854,
0.041665639728307724,
-0.0075095053762197495,
0.029069053009152412,
-0.013646305538713932,
-0.009094172157347202,
-0.061892855912446976,
0.02787802927196026,
0.022407393902540207,
-0.00134873331990093,
-0.03667949140071869,
0.03896060585975647,
0.03163278102874756,
-0.017956195399165154,
-0.013040699996054173,
0.00582390371710062,
-0.015453027561306953,
-0.008877163752913475,
-0.0018357409862801433,
0.04513777792453766,
0.03342941030859947,
-0.0011582199949771166,
-0.05829960107803345,
-0.05733063071966171,
0.001490041264332831,
-0.027817467227578163,
0.012293786741793156,
0.027211863547563553,
-0.008952864445745945,
0.042311619967222214,
0.023699352517724037,
-0.043603576719760895,
0.05531194806098938,
-0.030260076746344566,
-0.029412228614091873,
-0.010285195894539356,
0.046793099492788315,
0.028665315359830856,
0.04509740322828293,
-0.02549598179757595,
0.0044461521320044994,
0.0006226379191502929,
-0.029392041265964508,
0.008084829896688461,
0.001139294938184321,
-0.00939192809164524,
-0.0285240076482296,
0.0157760176807642,
0.0420290045440197,
0.034539684653282166,
0.03314679488539696,
0.005606895312666893,
-0.011405565775930882,
-0.012021264061331749,
-0.02571803703904152,
-0.04033330827951431,
0.02230646088719368,
0.01014893501996994,
-0.013545370660722256,
0.023881033062934875,
-0.04457254707813263,
-0.05260691046714783,
0.008634921163320541,
0.002047702670097351,
0.051153458654880524,
0.038597241044044495,
0.014251910150051117,
-0.012445188127458096,
0.0019114415626972914,
0.005354559980332851,
0.041181158274412155,
0.07243038713932037,
0.08002064377069473,
0.010810053907334805,
-0.02666681818664074,
-0.023396549746394157,
0.006959413643926382,
0.01771395280957222,
0.0018508810317143798,
-0.013525184243917465,
0.012828738428652287,
-0.047317955642938614,
-0.039889197796583176,
0.0257584098726511,
0.006994740571826696,
-0.018955444917082787,
-0.022548701614141464,
-0.010900894179940224,
-0.04445142671465874,
0.07424720376729965,
-0.01419134996831417,
-0.006358855403959751,
-0.04905402660369873,
0.037123601883649826,
-0.06540536880493164,
0.060560524463653564,
-0.00013736514665652066,
0.012182759121060371,
-0.018077317625284195,
-0.010991735383868217,
-0.04982112720608711,
0.01657339744269848,
0.048085056245326996,
-0.0187737625092268,
0.015826484188437462,
0.012909485027194023,
-0.0027580272872000933,
0.05470634251832962,
-0.05345475673675537,
0.006888759788125753,
0.034499313682317734,
-0.058824457228183746,
0.0319557711482048,
-0.0004829071112908423,
0.017128534615039825,
-0.028725875541567802,
0.04093891382217407,
0.01285901851952076,
-0.05664427950978279,
-0.04344208538532257,
-0.0719459056854248,
0.08874135464429855,
-0.02029787003993988,
-0.009205199778079987,
0.02989671193063259,
0.0012030096258968115,
0.019278433173894882,
-0.04352283105254173,
0.0515168197453022,
0.0232552420347929,
0.023376362398266792,
0.0017777037573978305,
-0.0009147162782028317,
-0.039243221282958984,
0.06362892687320709,
0.07969765365123749,
0.0032349415123462677,
0.0002695258881431073,
-0.009280900470912457,
-0.0635078027844429,
-0.04465329274535179,
0.034620434045791626,
-0.001032683183439076,
0.033934082835912704,
-0.010608185082674026,
0.042432740330696106,
-0.09148676693439484,
0.019894132390618324,
-0.04606637358665466,
0.05107270926237106,
0.043724700808525085,
0.0014761628117412329,
-0.027898214757442474,
0.008130250498652458,
-0.03286417946219444,
-0.015806296840310097,
-0.0450570322573185,
0.026182333007454872,
-0.005768389906734228,
-0.026606258004903793,
-0.007327823434025049,
0.03964695706963539,
-0.042957600206136703,
0.09180975705385208,
-0.00004727348277810961,
-0.011011921800673008,
0.03811275586485863,
-0.027777094393968582,
-0.005263719242066145,
-0.020277682691812515,
-0.01559433527290821,
0.01840030588209629,
-0.04388619586825371,
-0.028402887284755707,
0.002003544010221958,
-0.004241760354489088,
0.04352283105254173,
0.005041663534939289,
-0.016250407323241234,
0.02101450227200985,
0.018834322690963745,
-0.014756581746041775,
0.025213366374373436,
-0.09738132357597351,
-0.07202665507793427,
-0.06762591749429703,
-0.04085816815495491,
0.06536499410867691,
-0.03425706923007965,
-0.016179753467440605,
0.048085056245326996,
0.004491572268307209,
-0.045016657561063766,
0.015230972319841385,
0.05474671348929405,
-0.04909439757466316,
0.0459856241941452,
0.027110928669571877,
-0.013706865720450878,
-0.031854838132858276,
-0.03736584261059761,
-0.006686891429126263,
-0.03671986609697342,
-0.03740621730685234,
0.04186750948429108,
0.02188253588974476,
0.029069053009152412,
-0.044895537197589874,
-0.007095674984157085,
-0.04352283105254173,
-0.011314724572002888,
-0.03571052476763725,
-0.06104500964283943,
0.041181158274412155,
0.00868538860231638,
-0.0008137820404954255,
0.019752824679017067,
-0.054544847458601,
-0.009356601163744926,
0.022467954084277153,
0.005213251803070307,
0.05321251600980759,
-0.03637668862938881,
-0.005939978174865246,
-0.0285240076482296,
-0.009972299449145794,
-0.02295243926346302,
-0.048085056245326996,
-0.05967230349779129,
-0.0760236456990242,
-0.058743711560964584,
-0.016250407323241234,
0.021478800103068352,
-0.026485135778784752,
-0.02252851612865925,
-0.00040531394188292325,
0.021478800103068352,
-0.04206937924027443,
-0.004458768758922815,
-0.021801788359880447,
-0.0017284983769059181,
0.02131730504333973,
0.0008251371327787638,
0.04776206612586975,
0.06544574350118637,
0.05825922638177872,
0.024950936436653137,
-0.04574338346719742,
0.06524387001991272,
-0.021115437150001526,
-0.00476914132013917,
0.0072319358587265015,
0.011879956349730492,
-0.02234683372080326,
-0.0011550658382475376,
-0.018985724076628685,
-0.054988957941532135,
0.0425538644194603,
-0.015987979248166084,
-0.05511007830500603,
-0.007761840708553791,
-0.016896385699510574,
-0.009513049386441708,
0.0063184816390275955,
0.0028993352316319942,
-0.009886506013572216,
0.005914744455367327,
0.007655859924852848,
-0.012818644754588604,
-0.021115437150001526,
0.005505960900336504,
0.0020918615628033876,
-0.0016603677067905664,
0.016038445755839348,
-0.025576729327440262,
0.05724988505244255,
-0.00442091841250658,
0.026505323126912117,
0.022326646372675896,
0.00783249456435442,
0.006197360344231129,
0.01608891226351261,
0.035569217056035995,
-0.038556866347789764,
-0.01650274358689785,
-0.0015354616334661841,
0.0826045572757721,
0.011708368547260761,
0.07977839559316635,
0.042271245270967484,
0.02705036848783493,
0.029331481084227562,
0.0036941920407116413,
0.07174403220415115,
0.057411376386880875,
-0.012263506650924683,
-0.014221630059182644,
-0.019359180703759193,
0.01968217082321644,
0.013464623130857944,
-0.05337401106953621,
0.032379694283008575,
0.031087735667824745,
-0.004365404602140188,
-0.025697849690914154,
-0.02636401541531086,
-0.00763567304238677,
0.02222571335732937,
0.030885867774486542,
0.013949107378721237,
0.03831462562084198,
0.058138106018304825,
-0.006414369214326143,
0.0078880088403821,
0.0016666761366650462,
-0.07291487604379654,
0.0182791855186224,
-0.013535277917981148,
0.024688508361577988,
0.02640438824892044,
0.042271245270967484,
-0.029392041265964508,
0.0575728714466095,
-0.022589076310396194,
0.04860991612076759,
0.006222594063729048,
-0.028846997767686844,
-0.029392041265964508,
-0.024870188906788826,
0.0719459056854248,
0.050547853112220764,
0.0035301740281283855,
0.011102763004601002,
-0.03132997825741768,
0.012818644754588604,
-0.02959391102194786,
-0.05676539987325668,
0.004600076470524073,
0.018107596784830093,
0.003545314073562622,
0.054544847458601,
-0.08631893247365952,
-0.019672077149152756,
-0.01892516389489174,
-0.05708838999271393,
0.0404544323682785,
0.05385849252343178,
-0.04828692600131035,
0.009477722458541393,
-0.03591239079833031,
-0.004731290973722935,
0.004658113699406385,
0.04138302430510521,
-0.06629358977079391,
0.06593022495508194,
0.06972534954547882,
-0.0093868812546134,
-0.06605134904384613,
0.026848498731851578,
0.021135622635483742,
0.07533729076385498,
0.012475468218326569,
-0.004092882387340069,
0.002871578326448798,
-0.0022382161114364862,
0.0021852257195860147,
-0.009079032577574253,
0.015927419066429138,
-0.010628372430801392,
-0.006555676925927401,
-0.014665740542113781,
-0.0016780311707407236,
0.05038635805249214,
0.12313973158597946,
0.038597241044044495,
-0.0484887957572937,
0.04461292177438736
] |
729,722 | addfips.addfips | __init__ | null | def __init__(self, vintage=None):
# Handle de-diacreticizing
self.diacretic_pattern = '(' + ('|'.join(DIACRETICS)) + ')'
self.delete_diacretics = lambda x: DIACRETICS[x.group()]
if vintage is None or vintage not in COUNTY_FILES:
vintage = max(COUNTY_FILES.keys())
self._states, self._state_fips = self._load_state_data()
self._counties = self._load_county_data(vintage)
| (self, vintage=None) | [
-0.0004496534529607743,
-0.034084502607584,
-0.03669029474258423,
-0.008544901385903358,
-0.0675603598356247,
-0.050213780254125595,
-0.024212932214140892,
-0.009120267815887928,
0.019724125042557716,
-0.03727992624044418,
-0.058392539620399475,
0.10430771112442017,
-0.0637943223118782,
0.038326047360897064,
-0.020180612802505493,
-0.010166388005018234,
-0.0003738691739272326,
0.038326047360897064,
-0.0365571528673172,
-0.034655116498470306,
-0.03381821885704994,
0.018620943650603294,
-0.005444581154733896,
0.03532082960009575,
0.022900525480508804,
0.020104531198740005,
-0.014988051727414131,
-0.022881506010890007,
0.05892510712146759,
-0.038820575922727585,
-0.018725555390119553,
0.046067338436841965,
-0.0830048993229866,
0.04815957695245743,
0.005630029831081629,
-0.036271847784519196,
0.019781185314059258,
-0.005244867410510778,
-0.02056102082133293,
0.06854941695928574,
0.04781721159815788,
-0.02626713179051876,
0.004526848439127207,
-0.006267212331295013,
-0.007736535742878914,
0.05116479843854904,
-0.032125405967235565,
-0.03499748185276985,
0.021207712590694427,
-0.028112107887864113,
-0.060066331177949905,
0.016119763255119324,
0.0049548065289855,
0.009757449850440025,
0.015168746002018452,
0.04500219598412514,
0.03338075056672096,
0.10324256867170334,
0.042909957468509674,
0.021283794194459915,
-0.08376571536064148,
-0.03864939138293266,
0.024859623983502388,
-0.05519711598753929,
-0.01616731472313404,
-0.007137394044548273,
-0.020979469642043114,
0.010584835894405842,
-0.011764098890125751,
0.0210555512458086,
0.041730694472789764,
0.00988108292222023,
0.00016984596732072532,
0.0189062487334013,
0.04237738624215126,
0.018678003922104836,
-0.10149269551038742,
-0.00856392178684473,
-0.00031205295817926526,
0.006937680300325155,
0.032372672110795975,
-0.038877636194229126,
-0.01397046260535717,
-0.03406548500061035,
0.0353018082678318,
-0.003511635819450021,
0.07109814882278442,
-0.02651439607143402,
-0.005135499872267246,
0.044203341007232666,
-0.05333311855792999,
0.06854941695928574,
-0.00988108292222023,
-0.009600532241165638,
0.051583245396614075,
0.007332352921366692,
-0.04233934357762337,
0.016747435554862022,
0.018849186599254608,
0.01065140776336193,
0.018725555390119553,
-0.0749782994389534,
-0.03589143976569176,
-0.0433664433658123,
-0.059191394597291946,
-0.00391819654032588,
0.011164957657456398,
-0.01682351715862751,
-0.012724627740681171,
-0.02546827681362629,
-0.04268171265721321,
-0.01412262488156557,
0.006243436597287655,
0.033437810838222504,
-0.054131973534822464,
0.007869678549468517,
-0.000540594570338726,
-0.014426951296627522,
-0.02453627809882164,
-0.04819761961698532,
-0.03539691120386124,
0.006262456998229027,
-0.0458390936255455,
0.08018988370895386,
0.0374891497194767,
-0.016376540064811707,
-0.027845822274684906,
0.00439132796600461,
0.0823962464928627,
0.020979469642043114,
0.05028986185789108,
-0.018868207931518555,
-0.018069352954626083,
-0.0545123815536499,
0.01942930929362774,
-0.07429356873035431,
0.056034013628959656,
-0.0059296004474163055,
-0.03933412581682205,
0.05291467159986496,
0.03648107126355171,
0.01378976833075285,
0.007879188284277916,
0.00830239150673151,
0.0374891497194767,
0.0387444943189621,
0.0024001330602914095,
-0.0244792178273201,
-0.07204916328191757,
-0.009976183995604515,
-0.01951489970088005,
0.01784110814332962,
-0.03185912221670151,
-0.003930083941668272,
0.034731198102235794,
-0.05862078070640564,
-0.03248679265379906,
-0.03526376560330391,
-0.0018901493167504668,
-0.014950010925531387,
-0.0025463521014899015,
0.05382765084505081,
-0.042415425181388855,
0.015349439345300198,
-0.05656658113002777,
-0.0036733089946210384,
-0.008188270032405853,
-0.0644790530204773,
0.004892990458756685,
0.04199697822332382,
-0.0244792178273201,
-0.06227269396185875,
-0.08201583474874496,
0.04306212067604065,
0.004229655023664236,
0.05683286860585213,
-0.006918659899383783,
0.001790292444638908,
0.03332369029521942,
0.026172030717134476,
0.005206826608628035,
-0.01204940490424633,
-0.0762336477637291,
0.045572809875011444,
0.030717898160219193,
-0.024954726919531822,
0.034921400249004364,
0.02807406708598137,
0.09822119772434235,
0.03815486282110214,
0.03296230360865593,
-0.008321411907672882,
0.0011566763278096914,
0.002243214985355735,
0.06413669139146805,
-0.03798368200659752,
0.0047646029852330685,
-0.03433176875114441,
-0.02832133136689663,
-0.0017819709610193968,
-0.04032318666577339,
0.017384618520736694,
0.013532993383705616,
-0.06931023299694061,
-0.032125405967235565,
0.07201112061738968,
-0.06227269396185875,
0.009224879555404186,
-0.03994277864694595,
0.026095949113368988,
0.03444589301943779,
-0.025449255481362343,
-0.02082730643451214,
0.013552013784646988,
0.05607205256819725,
-0.07912474125623703,
0.020123552531003952,
0.009067961946129799,
0.028017006814479828,
0.0016512059373781085,
0.09966674447059631,
0.03338075056672096,
-0.013171606697142124,
-0.028701739385724068,
-0.019220083951950073,
0.007080332841724157,
0.03073691949248314,
0.061245594173669815,
-0.007099353242665529,
0.009476900100708008,
-0.04188285768032074,
-0.06177816540002823,
0.02212069183588028,
-0.018212005496025085,
0.04485003277659416,
-0.07406532019376755,
0.022329915314912796,
0.04020906239748001,
-0.003877778071910143,
-0.017717475071549416,
0.018345147371292114,
-0.05287662893533707,
0.016338499262928963,
-0.02738933451473713,
-0.017441680654883385,
-0.02596280537545681,
-0.000744172022677958,
0.046561866998672485,
-0.03284817934036255,
0.027408353984355927,
0.02038983814418316,
-0.023071710020303726,
-0.04846390336751938,
0.016281437128782272,
0.0034831054508686066,
-0.046485785394907,
-0.009938144125044346,
-0.029443534091114998,
-0.006314762867987156,
-0.019058411940932274,
0.011906752362847328,
-0.02459333837032318,
-0.011345651000738144,
0.07672817260026932,
-0.06398452818393707,
0.03722286596894264,
0.057213276624679565,
-0.062310732901096344,
-0.02006649039685726,
-0.03298132121562958,
0.06957651674747467,
0.01313356589525938,
0.00834518764168024,
0.016871068626642227,
-0.07109814882278442,
-0.02459333837032318,
0.03381821885704994,
-0.05397981032729149,
-0.0247835423797369,
0.017394129186868668,
0.027712680399417877,
0.03490237891674042,
0.04039926826953888,
0.021264774724841118,
-0.009434103965759277,
-0.09319981932640076,
-0.029519615694880486,
0.02050395868718624,
-0.04781721159815788,
-0.028416434302926064,
-0.016252906993031502,
0.010698958300054073,
0.016566742211580276,
0.04443158581852913,
0.07406532019376755,
-0.0232428926974535,
-0.02527807280421257,
0.005977151449769735,
0.0036756866611540318,
-0.021283794194459915,
-0.04131224378943443,
-0.0526483878493309,
0.07783135771751404,
-0.018487799912691116,
-0.02396566793322563,
-0.031497735530138016,
0.017023231834173203,
-0.010898672044277191,
0.024897664785385132,
0.046866193413734436,
0.0415024496614933,
0.0039110635407269,
-0.012876790948212147,
0.022329915314912796,
-0.012943361885845661,
-0.022976607084274292,
-0.05713719502091408,
-0.015358949080109596,
0.01300993375480175,
0.027294231578707695,
0.014379399828612804,
-0.03727992624044418,
-0.031687937676906586,
-0.02533513307571411,
0.007237250916659832,
0.01861143298447132,
0.037641312927007675,
-0.027294231578707695,
0.023509178310632706,
0.031821079552173615,
-0.0415024496614933,
0.008635248057544231,
0.0015751244500279427,
-0.0024512503296136856,
0.024250973016023636,
0.008554412052035332,
-0.001313594402745366,
0.01009981706738472,
-0.01976216584444046,
-0.023185832425951958,
0.014636174775660038,
0.02019963413476944,
-0.04473591223359108,
0.00683306809514761,
0.02948157489299774,
-0.04682815074920654,
-0.0035021258518099785,
-0.06550616025924683,
0.03766033425927162,
-0.01970510371029377,
-0.02491668611764908,
-0.003811206668615341,
0.038877636194229126,
0.06052282080054283,
0.0402851440012455,
-0.01811690255999565,
0.007346617989242077,
-0.008697064593434334,
0.004096512217074633,
0.007227740716189146,
0.034236665815114975,
-0.021512039005756378,
-0.03073691949248314,
-0.02341407537460327,
0.04165461286902428,
-0.0232238732278347,
0.01846878044307232,
-0.06090322509407997,
-0.059077270328998566,
-0.020408857613801956,
-0.0028578105848282576,
-0.023280933499336243,
-0.04443158581852913,
-0.02607692778110504,
0.04077967628836632,
-0.04850194603204727,
0.06531595438718796,
0.02807406708598137,
-0.027351293712854385,
0.0331525057554245,
-0.04857802763581276,
0.050594184547662735,
0.02299562841653824,
0.05607205256819725,
-0.04405117779970169,
-0.006733211223036051,
-0.029538635164499283,
0.04207305982708931,
0.06348999589681625,
0.041426368057727814,
0.020465919747948647,
0.0017201547743752599,
0.024897664785385132,
-0.03301936388015747,
0.04888235405087471,
-0.01257246546447277,
0.006690415553748608,
-0.010375612415373325,
0.03433176875114441,
0.025125909596681595,
-0.015254337340593338,
-0.01450303290039301,
-0.013295238837599754,
0.03672833740711212,
-0.011973323300480843,
-0.0046647461131215096,
0.05755564197897911,
-0.014075074344873428,
-0.008202535100281239,
-0.02961471676826477,
0.08703721314668655,
0.002360903425142169,
0.007555842399597168,
-0.026628518477082253,
-0.00023359392071142793,
-0.019438818097114563,
-0.009643328376114368,
-0.047246601432561874,
0.007717515341937542,
0.008682799525558949,
0.01605319231748581,
0.06291938573122025,
0.01976216584444046,
-0.0014300941256806254,
0.012591484934091568,
0.02626713179051876,
-0.020028449594974518,
-0.023566238582134247,
0.07581520080566406,
-0.0010425540385767817,
-0.06288134306669235,
0.05272446572780609,
-0.06543007493019104,
-0.03918196260929108,
0.030280429869890213,
0.0017819709610193968,
-0.045686930418014526,
-0.008212044835090637,
0.014988051727414131,
0.0260198675096035,
-0.007475005462765694,
-0.03579633682966232,
0.04629558324813843,
0.03680441901087761,
-0.03427470847964287,
-0.0028055047150701284,
-0.02750345505774021,
0.06432689726352692,
0.005758417304605246,
-0.048616066575050354,
0.01712784357368946,
-0.034788258373737335,
-0.09746038168668747,
-0.041730694472789764,
0.035225726664066315,
0.05470258742570877,
-0.002769841579720378,
0.021283794194459915,
-0.013019443489611149,
-0.017736496403813362,
0.003378493245691061,
0.018506821244955063,
0.05599597096443176,
0.00591533537954092,
-0.03756523132324219,
-0.0026081684045493603,
-0.01239177118986845,
0.02038983814418316,
-0.0030028410255908966,
-0.02272934280335903,
-0.0570230707526207,
0.033608995378017426,
-0.015634745359420776,
-0.02986198104918003,
-0.021531060338020325,
0.0312885083258152,
0.014455481432378292,
-0.028796840459108353,
0.009253410622477531,
-0.04918667674064636,
0.07463593780994415,
0.027351293712854385,
0.021797344088554382,
-0.001535894931294024,
-0.011897241696715355,
-0.031821079552173615,
-0.0005287068779580295,
0.0017831597942858934,
0.022082651033997536,
-0.02546827681362629,
-0.042225223034620285,
0.03990473598241806,
-0.027218149974942207,
0.005844009108841419,
0.047132477164268494,
0.05086047202348709,
0.008140718564391136,
0.0387064553797245,
0.042909957468509674,
-0.016376540064811707,
-0.022539138793945312,
-0.020789265632629395,
-0.040855757892131805,
0.011459773406386375,
-0.025201991200447083,
0.009757449850440025,
-0.020599061623215675,
-0.004465031903237104,
0.0365571528673172,
-0.05067026615142822,
0.000880880921613425,
-0.03756523132324219,
0.03275308012962341,
0.02404174767434597,
0.005958131048828363,
0.014046543277800083,
-0.0557677261531353,
0.0017082670237869024,
-0.06082714721560478,
0.059952206909656525,
0.032220508903265,
-0.012353730387985706,
0.015339928679168224,
-0.034674134105443954,
0.0018402208806946874,
-0.0028982290532439947,
0.04926275834441185,
-0.01440793089568615,
0.026970885694026947,
0.0016833028057590127,
-0.0390297994017601,
-0.0947975292801857,
-0.011155446991324425,
0.0626150593161583,
-0.013989483006298542,
0.0006419374840334058,
0.02316681109368801,
-0.09342806041240692,
0.015216296538710594,
-0.020180612802505493,
0.01726098731160164,
0.020294735208153725,
0.05242014303803444,
-0.012943361885845661,
0.02082730643451214,
-0.028701739385724068,
-0.04070359468460083,
0.013732708059251308,
0.0343698114156723,
0.027560517191886902,
0.005977151449769735,
-0.03994277864694595,
-0.0374891497194767,
-0.06847333163022995,
0.06634305417537689,
0.003877778071910143,
0.002539219567552209,
0.015187766402959824,
-0.009106002748012543,
0.00037624669494107366,
-0.01223960891366005,
-0.0026604742743074894,
0.0244792178273201,
-0.010432673618197441,
-0.016405070200562477,
-0.02242501638829708,
-0.004781245719641447,
-0.003335697576403618,
-0.0010930768912658095,
-0.0033618505112826824,
0.040247105062007904,
-0.028910962864756584,
0.0024560054298490286,
0.07014712691307068,
-0.07722270488739014,
-0.0029338921885937452,
-0.013637606054544449,
0.024079788476228714,
0.06417473405599594,
-0.03554907441139221,
0.012876790948212147,
0.025886723771691322,
-0.01632898859679699,
-0.03735600784420967,
-0.013618585653603077,
0.025201991200447083,
-0.01257246546447277,
0.04039926826953888,
0.04165461286902428,
-0.03933412581682205,
0.01508315373212099,
-0.029823942109942436,
-0.004878724925220013,
-0.02132183499634266,
-0.05980004370212555,
0.006443150341510773,
0.027465416118502617,
-0.03170695900917053,
-0.006776006892323494,
-0.020713184028863907,
-0.025297092273831367,
0.04066555202007294,
-0.060446739196777344,
0.023185832425951958,
-0.00029184381128288805,
0.029652757570147514,
0.00013670891348738223,
0.03891567885875702,
-0.03130752965807915,
-0.028530556708574295,
0.003297656774520874,
0.005910580046474934,
0.0316118560731411,
-0.040437307208776474,
-0.019610002636909485,
-0.003599605057388544,
0.02019963413476944,
-0.019914327189326286,
-0.06957651674747467,
-0.03661421313881874,
-0.062044449150562286,
-0.07608148455619812,
-0.010641897097229958,
0.029101166874170303,
-0.026666559278964996,
-0.03581535816192627,
0.035530053079128265,
0.0035734521225094795,
0.0008113376679830253,
-0.007727025542408228,
0.045382604002952576,
-0.01613878458738327,
-0.030261410400271416,
-0.0004980959347449243,
0.026476355269551277,
0.07581520080566406,
0.023318974301218987,
0.049529045820236206,
-0.01174507848918438,
0.05766976252198219,
0.007565352600067854,
0.015216296538710594,
0.0402851440012455,
0.024859623983502388,
-0.04602929577231407,
-0.05489278957247734,
-0.02225383371114731,
0.01666184514760971,
0.05299075320363045,
-0.004869214724749327,
-0.011583405546844006,
0.003278636373579502,
0.013846829533576965,
0.008530636318027973,
-0.0774889886379242,
0.021911466494202614,
0.03941020742058754,
-0.009034676477313042,
0.020846325904130936,
-0.008911043405532837,
-0.06390844285488129,
0.05215385556221008,
0.022767383605241776,
0.031326550990343094,
0.07106010615825653,
-0.024269992485642433,
0.0387064553797245,
-0.07573911547660828,
-0.029538635164499283,
0.045496728271245956,
0.009562491439282894,
0.03514964506030083,
0.03145969286561012,
0.0247835423797369,
-0.0353398472070694,
-0.016785476356744766,
0.019800206646323204,
0.05439826101064682,
0.0979168713092804,
0.0374891497194767,
0.033304668962955475,
0.03828800469636917,
0.04077967628836632,
-0.06554419547319412,
0.025677500292658806,
0.051773447543382645,
-0.08498301357030869,
-0.010984264314174652,
0.03446491062641144,
0.04930080100893974,
0.0034593299496918917,
-0.011326630599796772,
0.010118837468326092,
-0.008250085636973381,
-0.02596280537545681,
0.005829743575304747,
-0.03419862687587738,
-0.03630988672375679,
0.012524913996458054,
-0.017926698550581932,
0.01685204915702343,
0.04614342004060745,
-0.007546332199126482,
0.02434607408940792,
-0.031022224575281143,
-0.000032134023058461025,
-0.040056899189949036,
0.02868271805346012,
0.017907679080963135,
-0.025810642167925835,
0.06341391801834106,
0.04621950164437294,
-0.013837319798767567,
0.021454978734254837,
0.03438882902264595,
0.04766504839062691,
0.03140263259410858,
-0.002962422790005803,
-0.021949507296085358,
-0.05397981032729149,
0.07106010615825653,
0.005501642357558012,
-0.026628518477082253,
0.020408857613801956,
0.0014075074577704072,
0.017679434269666672,
0.01743216998875141,
-0.024003706872463226,
0.013894381001591682,
0.001351635088212788,
0.029405493289232254,
0.026095949113368988,
-0.05584380775690079,
-0.05519711598753929,
-0.004500695038586855,
-0.04218718037009239,
0.0030551471281796694,
0.024612359702587128,
0.038440167903900146,
0.04481199383735657,
-0.0464477464556694,
-0.01836416870355606,
0.00041963692638091743,
0.05728935822844505,
-0.0768042579293251,
0.027617577463388443,
0.04591517522931099,
-0.0057774377055466175,
-0.017746005207300186,
0.04218718037009239,
-0.024612359702587128,
0.03811682388186455,
0.006947190500795841,
-0.024250973016023636,
-0.00882545206695795,
-0.03543495014309883,
-0.0054588462226092815,
-0.027902884408831596,
0.01800278015434742,
-0.024517258629202843,
-0.018573392182588577,
-0.07688033580780029,
0.007883943617343903,
0.017746005207300186,
0.09563442319631577,
0.05417001619935036,
0.03145969286561012,
0.021797344088554382
] |
729,723 | addfips.addfips | _delete_diacretics | null | def _delete_diacretics(self, string):
return re.sub(self.diacretic_pattern, self.delete_diacretics, string)
| (self, string) | [
-0.00806625559926033,
0.027030080556869507,
0.06169017404317856,
0.0283815860748291,
-0.04653279855847359,
-0.08964406698942184,
-0.025148240849375725,
0.05005697160959244,
0.040921490639448166,
0.0032504526898264885,
-0.011915476061403751,
0.0563868023455143,
-0.04643015190958977,
-0.007322072517126799,
0.009879665449261665,
-0.026687927544116974,
-0.02266763150691986,
0.05217831954360008,
-0.020101483911275864,
-0.07020977884531021,
-0.012035229243338108,
0.046293292194604874,
-0.0032333452254533768,
-0.018852626904845238,
-0.0027971002273261547,
0.06750677525997162,
0.02200043387711048,
-0.02415599673986435,
-0.004400942008942366,
-0.03931337222456932,
0.015644943341612816,
0.0008714207215234637,
-0.039963461458683014,
0.052007243037223816,
0.01842493563890457,
-0.006274229381233454,
-0.006051830016076565,
0.031135916709899902,
-0.020597606897354126,
0.05234939604997635,
-0.045574769377708435,
0.05234939604997635,
0.04020296782255173,
-0.047148674726486206,
0.03825269639492035,
0.019228994846343994,
-0.01950271613895893,
0.011864152736961842,
-0.027338018640875816,
0.008818991482257843,
0.05289684236049652,
-0.0005731061683036387,
-0.005842261016368866,
-0.000665594357997179,
0.0663776695728302,
0.004700325895100832,
0.0397239550948143,
0.11462122946977615,
0.05789227411150932,
-0.024498149752616882,
0.001916056382469833,
-0.022650523111224174,
-0.04085306078195572,
-0.028313154354691505,
0.024378396570682526,
0.01924610137939453,
0.050878141075372696,
-0.00010084155655931681,
0.012719535268843174,
-0.016585862264037132,
-0.04978325217962265,
-0.02384805865585804,
0.013164333999156952,
-0.05457339063286781,
0.020460745319724083,
-0.0493384525179863,
0.04311126843094826,
-0.02374541386961937,
0.013369625434279442,
-0.05529191344976425,
-0.0010141626698896289,
-0.02466922625899315,
0.036336641758680344,
-0.010760709643363953,
-0.0000937579243327491,
-0.026876112446188927,
0.013566363602876663,
-0.0371578074991703,
-0.03447190672159195,
-0.019879085943102837,
0.02935672178864479,
-0.07486306130886078,
-0.042153239250183105,
0.005829430650919676,
-0.022633416578173637,
0.02971598133444786,
0.0005843330291099846,
0.0042234500870108604,
0.051391370594501495,
-0.03691830113530159,
0.04119521379470825,
0.04020296782255173,
-0.024292858317494392,
-0.026482636108994484,
0.0010590702295303345,
-0.09258658438920975,
0.020306775346398354,
-0.02552460879087448,
-0.03335991129279137,
-0.013925624080002308,
-0.05060441792011261,
0.00886176060885191,
0.03517331928014755,
-0.0467723049223423,
0.012873504310846329,
0.01330119464546442,
-0.055326126515865326,
-0.08622253686189651,
0.020101483911275864,
-0.01777484454214573,
-0.025302208960056305,
-0.004691772162914276,
-0.08088494837284088,
0.04057933762669563,
0.021880678832530975,
0.03777368366718292,
-0.0362682119011879,
0.05494976043701172,
0.04612221568822861,
0.029647551476955414,
-0.007339180447161198,
0.03554968908429146,
0.011496338061988354,
0.01021326519548893,
0.0002373685856582597,
0.02940804325044155,
0.02466922625899315,
-0.013976947404444218,
0.001301250304095447,
0.0593293160200119,
-0.03361652418971062,
0.008339977823197842,
0.0041764043271541595,
0.039142295718193054,
0.04615642875432968,
0.03022921085357666,
0.014276331290602684,
0.021932002156972885,
-0.033462557941675186,
-0.037055160850286484,
-0.022941352799534798,
0.06719883531332016,
-0.0024036243557929993,
-0.016585862264037132,
0.002097825054079294,
0.03643928840756416,
-0.02052917517721653,
0.03527596592903137,
-0.01327553391456604,
-0.0004006931558251381,
0.008583761751651764,
0.007078288588672876,
-0.05296527221798897,
0.02001594565808773,
0.015619280748069286,
-0.026978759095072746,
0.08574352413415909,
-0.04735396429896355,
0.00964871235191822,
0.04738818109035492,
-0.01340384129434824,
0.031786005944013596,
-0.0186473336070776,
0.03170046955347061,
0.002418593503534794,
0.07349444925785065,
0.021435881033539772,
0.05761855095624924,
0.004388111177831888,
0.018921056762337685,
0.05385487154126167,
0.00012937658175360411,
-0.03452323004603386,
0.06665138900279999,
0.03347966447472572,
-0.04105835035443306,
-0.005782384425401688,
0.020820004865527153,
0.02945936657488346,
-0.03161492943763733,
0.004939832724630833,
0.049714818596839905,
0.006441028788685799,
-0.04160579666495323,
0.02752620354294777,
-0.004039543215185404,
-0.014798114076256752,
-0.05768698453903198,
-0.015995649620890617,
-0.017740629613399506,
-0.09087581932544708,
0.02456657961010933,
-0.016072634607553482,
-0.019382962957024574,
-0.00663776695728302,
0.00035498366924002767,
-0.013643347658216953,
0.01741558313369751,
-0.0954606682062149,
0.002059333026409149,
0.0023972089402377605,
0.013617686927318573,
0.06559071689844131,
-0.017945921048521996,
0.04365871474146843,
-0.04365871474146843,
-0.000005500676252268022,
0.0644616112112999,
-0.027338018640875816,
0.034181077033281326,
-0.01619238778948784,
0.05443653091788292,
0.03185443580150604,
-0.01868155039846897,
-0.009229575283825397,
-0.024908732622861862,
-0.0037380207795649767,
0.07541050761938095,
0.011778614483773708,
-0.05566827952861786,
0.008006378076970577,
-0.05991097912192345,
0.024429718032479286,
-0.003408698597922921,
0.10011394321918488,
-0.04314548522233963,
-0.04885943606495857,
-0.06579601019620895,
0.05402594804763794,
0.004101558122783899,
-0.013121564872562885,
0.02129901945590973,
0.02961333654820919,
-0.0053461394272744656,
0.013489379547536373,
0.03910807892680168,
-0.0362682119011879,
0.058542367070913315,
0.032453205436468124,
-0.030092349275946617,
0.02261630818247795,
-0.0386974960565567,
-0.05597621947526932,
0.035823412239551544,
0.011821383610367775,
-0.009374990127980709,
0.014969190582633018,
0.04417194426059723,
0.03284668177366257,
0.02886059880256653,
0.04478781670331955,
-0.015183036215603352,
-0.054299671202898026,
0.025798330083489418,
-0.007009858265519142,
0.035515472292900085,
0.016064079478383064,
0.023266399279236794,
0.012112213298678398,
-0.011958245187997818,
0.018253859132528305,
-0.004892786964774132,
0.024754764512181282,
-0.007215149700641632,
-0.05494976043701172,
0.08991778641939163,
0.006175860296934843,
-0.010581078939139843,
-0.00862653087824583,
-0.028330262750387192,
0.03736310079693794,
0.007771148346364498,
0.038013190031051636,
0.03166625276207924,
-0.0004947851994074881,
0.021624064072966576,
0.057789627462625504,
-0.009015729650855064,
-0.003017361043021083,
0.06846480071544647,
-0.0033338526263833046,
-0.02235969342291355,
0.002109586726874113,
0.027406448498368263,
-0.03399289399385452,
0.061861250549554825,
-0.017689306288957596,
-0.04345342144370079,
-0.042666468769311905,
0.008493945933878422,
-0.011188400909304619,
0.04020296782255173,
0.017963029444217682,
0.026568174362182617,
-0.02726958878338337,
-0.016166726127266884,
0.010914678685367107,
0.011085755191743374,
0.02533642388880253,
0.022736061364412308,
-0.017064876854419708,
0.0025276546366512775,
-0.036747224628925323,
0.024635011330246925,
-0.0053718010894954205,
0.0644616112112999,
0.016320694237947464,
0.04605378210544586,
0.016928015276789665,
0.03784211352467537,
0.044343020766973495,
-0.0050296480767428875,
-0.050330694764852524,
-0.006043276283890009,
0.011770060285925865,
-0.01582457311451435,
0.004845740739256144,
0.02374541386961937,
-0.01909213326871395,
0.03616556525230408,
-0.0015418266411870718,
-0.054607607424259186,
-0.04263225570321083,
-0.04896208271384239,
0.08724899590015411,
-0.010127726942300797,
0.030622687190771103,
-0.06795156747102737,
-0.0017920259851962328,
0.005675461608916521,
0.008767669089138508,
0.05991097912192345,
0.007984993979334831,
-0.005102355498820543,
-0.02737223356962204,
0.004619064275175333,
-0.01721029169857502,
0.02328350581228733,
0.008070532232522964,
0.017330044880509377,
0.08601724356412888,
0.008955853059887886,
0.036644577980041504,
0.000020365450836834498,
0.043727144598960876,
-0.015850234776735306,
-0.031888652592897415,
0.11202086508274078,
-0.03223080560564995,
-0.02354012057185173,
0.03527596592903137,
0.0003344010328873992,
0.019673792645335197,
-0.014216453768312931,
0.024327073246240616,
-0.03407843038439751,
-0.06829372048377991,
-0.05163087695837021,
-0.022325478494167328,
-0.022599201649427414,
0.001329050282947719,
0.014259222894906998,
-0.008545269258320332,
-0.07677911967039108,
0.0335138775408268,
-0.024173105135560036,
0.03279535844922066,
0.005795215256512165,
0.011060093529522419,
0.03650771826505661,
-0.02608915977180004,
0.006351213902235031,
-0.010812032036483288,
0.01582457311451435,
-0.05902137979865074,
0.00161132647190243,
0.01080347876995802,
0.05275998264551163,
0.023574337363243103,
-0.01680826209485531,
-0.02405335009098053,
-0.06952547281980515,
0.053341642022132874,
-0.014165131375193596,
-0.02374541386961937,
-0.0875227153301239,
-0.024481041356921196,
0.0025511777494102716,
-0.018613118678331375,
-0.0036161288153380156,
-0.014096700586378574,
0.030862193554639816,
-0.05607886612415314,
0.00822022370994091,
0.06463269144296646,
0.037499960511922836,
0.04198216274380684,
-0.010042188689112663,
0.008434069342911243,
-0.01720173843204975,
0.021863572299480438,
-0.01115418504923582,
0.015046174637973309,
-0.01767219789326191,
0.04632750526070595,
0.011915476061403751,
0.021983325481414795,
-0.02880927547812462,
-0.030143672600388527,
0.02894613705575466,
0.019211886450648308,
-0.05029648169875145,
-0.009349328465759754,
0.0025469008833169937,
-0.022684739902615547,
-0.008079086430370808,
0.024635011330246925,
0.031939975917339325,
0.005350416526198387,
0.02675635926425457,
-0.0875227153301239,
-0.028552662581205368,
-0.03910807892680168,
-0.026311559602618217,
0.012805073522031307,
-0.004169988911598921,
0.05043334141373634,
-0.014156577177345753,
0.016662847250699997,
0.05358114838600159,
0.012736642733216286,
-0.020717360079288483,
0.017740629613399506,
-0.03554968908429146,
0.005247770342975855,
0.01715896837413311,
-0.009075606241822243,
0.027132727205753326,
0.04913315922021866,
-0.0006933942786417902,
0.034848276525735855,
0.012959041632711887,
-0.07766871154308319,
-0.03698673099279404,
0.030571363866329193,
0.003070822451263666,
0.0457458458840847,
-0.03671300783753395,
-0.050980787724256516,
0.0372946672141552,
-0.021624064072966576,
0.0603557750582695,
-0.00910982210189104,
0.034745629876852036,
-0.03838955983519554,
0.0362682119011879,
0.01614106446504593,
-0.041947949677705765,
-0.037602607160806656,
0.008164623752236366,
-0.0053461394272744656,
-0.055428773164749146,
-0.00010665548325050622,
-0.0008960129925981164,
-0.09279187023639679,
0.031837329268455505,
-0.036131348460912704,
0.058850303292274475,
0.03825269639492035,
0.02809075452387333,
0.02819340117275715,
-0.06408524513244629,
-0.02027256041765213,
-0.021008189767599106,
-0.021880678832530975,
-0.027030080556869507,
-0.020802898332476616,
-0.008964406326413155,
0.010153387673199177,
0.013874300755560398,
-0.022239940240979195,
-0.00501681724563241,
-0.0067917355336248875,
-0.03753417730331421,
0.05464182421565056,
-0.0013461578637361526,
-0.02803943306207657,
-0.004396664910018444,
0.03284668177366257,
-0.040784627199172974,
-0.03815004974603653,
-0.02256498485803604,
-0.07992692291736603,
-0.039347585290670395,
0.039963461458683014,
0.021641172468662262,
0.01613251119852066,
0.022907137870788574,
-0.011744399555027485,
-0.03681565448641777,
-0.05939774960279465,
-0.02389938198029995,
0.02292424626648426,
0.011239723302423954,
-0.010324464179575443,
-0.013266979716718197,
-0.03233345225453377,
-0.027303803712129593,
0.006423921324312687,
-0.04187951982021332,
-0.02374541386961937,
0.015046174637973309,
-0.06418789178133011,
-0.008352808654308319,
0.0037487130612134933,
-0.021008189767599106,
-0.002026186790317297,
-0.01715896837413311,
0.04116099700331688,
-0.029596228152513504,
0.02333482913672924,
0.023625658825039864,
0.02145298756659031,
-0.026482636108994484,
0.008947298862040043,
0.003889851039275527,
-0.01940007135272026,
-0.10887306183576584,
0.013369625434279442,
0.019160563126206398,
-0.020135698840022087,
0.0005757792387157679,
0.03033185750246048,
-0.008023486472666264,
-0.015687711536884308,
0.05063863471150398,
0.037055160850286484,
-0.016046972945332527,
0.01592721790075302,
0.07062036544084549,
-0.058645009994506836,
-0.035104889422655106,
-0.0340271070599556,
-0.0015878034755587578,
0.04927002266049385,
-0.044958893209695816,
-0.06589865684509277,
0.04201637953519821,
-0.0428033322095871,
0.02119637466967106,
-0.03305197134613991,
-0.011051539331674576,
0.12392778694629669,
-0.032504528760910034,
0.001805925858207047,
0.02307821437716484,
-0.04468517377972603,
-0.005376077722758055,
-0.04047669097781181,
0.00418923469260335,
-0.008690684102475643,
-0.05375222489237785,
0.06733569502830505,
0.034796953201293945,
-0.13651901483535767,
0.024737656116485596,
-0.0014177962439134717,
-0.02721826545894146,
0.020084377378225327,
0.04239274933934212,
-0.024224426597356796,
0.0170135535299778,
0.0018593872664496303,
-0.023728305473923683,
0.00543595477938652,
-0.027663063257932663,
0.039347585290670395,
0.020289668813347816,
-0.0031264224089682102,
-0.0340271070599556,
0.008793329820036888,
-0.023608552291989326,
0.05577092617750168,
-0.025507500395178795,
-0.05286262556910515,
0.004178542643785477,
0.04944109916687012,
-0.008006378076970577,
-0.004828633274883032,
0.014233562164008617,
-0.007176657672971487,
0.010444218292832375,
0.032761141657829285,
0.049817465245723724,
0.0442061573266983,
0.06808843463659286,
-0.004418049473315477,
-0.030194995924830437,
-0.03252163529396057,
-0.08519607782363892,
-0.017492568120360374,
0.09936121106147766,
-0.009272344410419464,
-0.028278939425945282,
0.018202535808086395,
-0.030314749106764793,
-0.023420367389917374,
-0.03466008976101875,
-0.04211902618408203,
-0.0007564787520095706,
-0.038013190031051636,
-0.013626240193843842,
-0.05943196266889572,
-0.05713953822851181,
-0.005713954102247953,
0.02531931735575199,
-0.01011061854660511,
-0.011025877669453621,
0.0016059803310781717,
-0.025558823719620705,
-0.014832329005002975,
0.040784627199172974,
-0.0744524747133255,
0.06528277695178986,
-0.001207158318720758,
0.004302572924643755,
-0.0498516820371151,
-0.013326856307685375,
-0.02513113245368004,
0.02446393482387066,
0.08601724356412888,
-0.02619180642068386,
-0.019280318170785904,
0.05826864391565323,
-0.07848988473415375,
-0.021829357370734215,
0.0040566506795585155,
-0.046601228415966034,
-0.02721826545894146,
-0.02456657961010933,
-0.031187240034341812,
0.09990865737199783,
-0.01844204217195511,
-0.06015048548579216,
-0.000324777967762202,
0.029322504997253418,
-0.010384341701865196,
0.02338615246117115,
-0.024292858317494392,
-0.0035626674070954323,
0.019468501210212708,
0.016987891867756844,
-0.04010032117366791,
0.00904139131307602,
0.015995649620890617,
-0.016021311283111572,
0.07068879157304764,
-0.021316127851605415,
-0.018356503918766975,
-0.037910543382167816,
0.013788762502372265,
0.01924610137939453,
-0.01960536278784275,
-0.027184050530195236,
0.019981730729341507,
-0.03293221816420555,
0.048072487115859985,
0.030366072431206703,
0.08499078452587128,
0.06853323429822922,
-0.012077998369932175,
0.015046174637973309,
0.04119521379470825,
-0.040921490639448166,
-0.011273939162492752,
0.02649974450469017,
-0.017039215192198753,
-0.03380471095442772,
-0.04273490235209465,
-0.016637185588479042,
-0.017860382795333862,
-0.0588160865008831,
-0.016320694237947464,
-0.06617237627506256,
0.02307821437716484,
0.019006595015525818,
0.020956866443157196,
0.0042234500870108604,
0.016406232491135597,
-0.019057918339967728,
-0.01730438508093357,
0.056660525500774384,
-0.029168536886572838,
0.009691481478512287,
-0.0023245015181601048,
-0.03264138847589493,
0.010016527026891708,
-0.03537861257791519,
-0.007984993979334831,
-0.020563390105962753,
0.06671982258558273,
0.04666965827345848,
0.008425516076385975,
0.005927799269556999,
-0.0005960945272818208,
-0.002094617346301675,
0.02502848580479622,
-0.06719883531332016,
0.023625658825039864,
-0.029904166236519814,
-0.027765709906816483,
-0.05214410647749901,
0.011821383610367775,
0.0038513587787747383,
-0.04851728677749634,
-0.0005501177511177957,
0.002540485467761755,
0.027149835601449013,
-0.013420948758721352,
0.017791952937841415,
-0.04406929761171341,
0.02593519166111946,
-0.0012542043114081025,
-0.025764115154743195,
-0.026636606082320213,
-0.017655091360211372,
0.003412975464016199,
-0.019382962957024574,
0.0032333452254533768,
-0.04656701162457466,
-0.06969655305147171,
0.01813410595059395,
-0.016560202464461327,
0.029750196263194084,
0.029322504997253418,
0.04129785671830177,
-0.01767219789326191,
0.06008205562829971,
-0.01577324979007244,
0.007471764460206032,
0.03825269639492035,
0.035310182720422745,
-0.10025081038475037,
-0.009383544325828552,
0.010050741955637932,
-0.024019135162234306,
0.031324099749326706,
0.02099108137190342,
0.00827154703438282,
0.045677416026592255,
-0.03838955983519554,
-0.015088943764567375,
0.045780062675476074,
0.01844204217195511,
0.059055596590042114,
0.030263425782322884,
-0.03028053417801857,
0.0005070813349448144
] |
729,724 | addfips.addfips | _load_county_data | null | def _load_county_data(self, vintage):
with self.data.joinpath(COUNTY_FILES[vintage]).open('rt', encoding='utf-8') as f:
counties = {}
for row in csv.DictReader(f):
if row['statefp'] not in counties:
counties[row['statefp']] = {}
state = counties[row['statefp']]
# Strip diacretics, remove geography name and add both to dict
county = self._delete_diacretics(row['name'].lower())
bare_county = re.sub(COUNTY_PATTERN, '', county)
state[county] = state[bare_county] = row['countyfp']
# Add both versions of abbreviated names to the dict.
for short, full in ABBREVS.items():
needle, replace = None, None
if county.startswith(short):
needle, replace = short, full
elif county.startswith(full):
needle, replace = full, short
if needle is not None:
replaced = county.replace(needle, replace, 1)
bare_replaced = bare_county.replace(needle, replace, 1)
state[replaced] = state[bare_replaced] = row['countyfp']
return counties
| (self, vintage) | [
-0.0017779755871742964,
-0.04171304032206535,
-0.04463560879230499,
-0.009707106277346611,
-0.07735320925712585,
-0.036114610731601715,
-0.024101709946990013,
0.004519070498645306,
0.056515663862228394,
-0.08281879127025604,
-0.06152578443288803,
0.024974685162305832,
-0.07473427802324295,
0.013265429995954037,
-0.01367345079779625,
-0.00027784574194811285,
0.007984877564013004,
0.05632588639855385,
-0.05461789295077324,
-0.053213540464639664,
-0.04429401084780693,
0.008169910870492458,
-0.004383854568004608,
-0.012999741360545158,
0.0163493100553751,
-0.058109793812036514,
0.0026379036717116833,
-0.034065015614032745,
0.08836028724908829,
-0.016045667231082916,
-0.01631135493516922,
0.015675600618124008,
-0.06516950577497482,
0.042965568602085114,
0.013502650894224644,
-0.027195079252123833,
0.04319330304861069,
-0.001141035696491599,
0.04467356577515602,
0.04053641855716705,
-0.0031479301396757364,
-0.044977206736803055,
-0.04638155922293663,
0.023892955854535103,
0.01973683387041092,
0.03992913290858269,
-0.03488105908036232,
-0.06270240247249603,
0.05624997615814209,
-0.01615004427731037,
-0.08023782074451447,
-0.017079953104257584,
0.0008575559477321804,
0.035659145563840866,
0.017468996345996857,
-0.06744683533906937,
-0.011737722903490067,
0.042434193193912506,
0.010674970224499702,
0.059134591370821,
-0.06672567874193192,
-0.06274035573005676,
0.021900294348597527,
-0.05499744787812233,
-0.011861078441143036,
-0.01563764549791813,
0.021672561764717102,
0.012828942388296127,
-0.022488603368401527,
-0.027233034372329712,
0.051998965442180634,
0.044180143624544144,
0.011851589195430279,
-0.009811483323574066,
0.0008794989553280175,
0.07856778055429459,
-0.08069328963756561,
0.010931169614195824,
-0.020230254158377647,
0.016586530953645706,
0.0044123209081590176,
-0.06604248285293579,
-0.01407198328524828,
-0.00733014615252614,
-0.00021839210239704698,
0.05161941051483154,
0.09883598983287811,
-0.027878277003765106,
-0.022109050303697586,
0.08335016667842865,
-0.02379806712269783,
0.04277579113841057,
0.021900294348597527,
-0.008914786390960217,
0.064751997590065,
-0.04201668128371239,
-0.02417762205004692,
0.039207980036735535,
-0.0057929502800107,
-0.008298010565340519,
0.006903147324919701,
-0.09473679959774017,
0.002151599619537592,
-0.054769713431596756,
-0.05013914778828621,
0.007894733920693398,
0.0353744775056839,
-0.016596021130681038,
-0.022849179804325104,
0.006936358287930489,
-0.08130057156085968,
-0.09883598983287811,
0.006983802653849125,
0.032053377479314804,
-0.01902516931295395,
-0.035697098821401596,
0.037613850086927414,
0.03241395577788353,
-0.024822864681482315,
-0.02429148741066456,
-0.01294280868023634,
0.049455951899290085,
0.014451537281274796,
0.03214826434850693,
0.007871011272072792,
-0.021843360736966133,
-0.017421551048755646,
0.027954189106822014,
0.06797821074724197,
0.020439010113477707,
0.020439010113477707,
-0.02292509190738201,
0.002500315196812153,
-0.08365380764007568,
0.03233804181218147,
-0.04892457276582718,
0.014461026526987553,
-0.009692872874438763,
0.051088035106658936,
0.05063256993889809,
0.04175099357962608,
0.003444456961005926,
-0.01356907282024622,
-0.02396886609494686,
0.06752274185419083,
0.031009601429104805,
0.015836911275982857,
-0.007799844723194838,
-0.09139671921730042,
-0.041637130081653595,
0.0035440900828689337,
0.021805405616760254,
-0.050290971994400024,
0.0055936845019459724,
0.019167501479387283,
-0.08084511011838913,
-0.007970644161105156,
-0.0359627902507782,
-0.010731903836131096,
0.006713370326906443,
0.01952807791531086,
0.06896505504846573,
-0.03723429515957832,
0.00373861170373857,
-0.08297061175107956,
0.0219951830804348,
-0.00976403895765543,
-0.04338308051228523,
0.01058008149266243,
-0.020211277529597282,
-0.06080463156104088,
-0.03905615583062172,
-0.051543500274419785,
0.07796049118041992,
0.006101338658481836,
0.004334038123488426,
-0.03359057381749153,
-0.025695839896798134,
0.04323125630617142,
0.026530859991908073,
0.0014731459086760879,
-0.03480514883995056,
-0.02768850140273571,
0.042889658361673355,
0.01606464385986328,
-0.014840580523014069,
0.04691293463110924,
-0.012705586850643158,
0.09367404878139496,
0.0365510992705822,
0.03338181972503662,
-0.03702554106712341,
-0.03546936810016632,
0.016918642446398735,
0.07465837150812149,
-0.035488344728946686,
-0.002486082026734948,
0.016652952879667282,
-0.07655613869428635,
-0.023076914250850677,
-0.02939649485051632,
-0.006798769813030958,
-0.011007080785930157,
-0.05674339830875397,
-0.02994685061275959,
0.03349568322300911,
-0.05139167979359627,
-0.062171027064323425,
-0.02776441164314747,
0.01748797297477722,
0.030838802456855774,
-0.018095260486006737,
-0.03985322266817093,
0.025145485997200012,
0.03524163365364075,
-0.07629045099020004,
-0.01549531240016222,
0.004568887408822775,
0.024158643558621407,
0.013663961552083492,
0.040460508316755295,
0.041637130081653595,
0.00832173228263855,
-0.012990253046154976,
0.003918900154531002,
-0.0098873944953084,
-0.01014359388500452,
0.06418266892433167,
0.021141186356544495,
-0.0014292598934844136,
-0.0257148165255785,
-0.02015434391796589,
0.04440787434577942,
-0.02487979643046856,
-0.02446228638291359,
-0.03359057381749153,
0.040346644818782806,
0.030838802456855774,
0.05309967324137688,
0.022184960544109344,
0.027916233986616135,
-0.06759865581989288,
0.012240632437169552,
-0.06437244266271591,
-0.07925097644329071,
-0.049076396971940994,
0.00957900658249855,
0.04304147884249687,
-0.035526301711797714,
0.027043258771300316,
0.017914971336722374,
0.02835272066295147,
-0.013009230606257915,
0.03266066312789917,
0.010760369710624218,
-0.06885118782520294,
-0.0317876897752285,
-0.02303895726799965,
-0.031635865569114685,
-0.0365510992705822,
0.024936730042099953,
-0.008473553694784641,
0.019755812361836433,
0.054769713431596756,
-0.06752274185419083,
0.031104490160942078,
0.05207487568259239,
-0.042092595249414444,
-0.023285668343305588,
-0.03493799269199371,
0.056060198694467545,
0.015258090570569038,
-0.004170354921370745,
0.0002569406060501933,
-0.056060198694467545,
-0.011130435392260551,
0.026606770232319832,
-0.02952934056520462,
0.004049371927976608,
0.02007843367755413,
-0.015324512496590614,
0.04110575094819069,
0.023722156882286072,
-0.0037030286621302366,
0.041257575154304504,
-0.06869936734437943,
-0.01893976889550686,
0.007102413568645716,
-0.032432932406663895,
-0.009242151863873005,
-0.020192299038171768,
-0.029301607981324196,
-0.00733963493257761,
0.04311738908290863,
0.014280738309025764,
-0.00774765620008111,
-0.0034800402354449034,
0.0030269471462816,
0.017307685688138008,
0.001383001683279872,
-0.030497204512357712,
0.013455206528306007,
0.04467356577515602,
-0.018209127709269524,
-0.002486082026734948,
-0.047406356781721115,
0.01940472424030304,
-0.002924941945821047,
-0.03909411281347275,
0.031768713146448135,
0.0060918498784303665,
-0.035488344728946686,
-0.014337670989334583,
-0.010191038250923157,
-0.00834070984274149,
-0.03846784681081772,
-0.08016190677881241,
0.0038216393440961838,
0.012411432340741158,
-0.03749998286366463,
-0.015258090570569038,
-0.07522770017385483,
0.015305534936487675,
-0.03497594594955444,
0.004343526903539896,
0.0016048038378357887,
0.021274030208587646,
0.008810408413410187,
-0.010257460176944733,
0.020420031622052193,
0.010646503418684006,
-0.01893976889550686,
0.00508128572255373,
0.02914978563785553,
0.020894475281238556,
0.058982767164707184,
0.011206346563994884,
0.061487827450037,
-0.022944068536162376,
0.03751896321773529,
-0.04011891037225723,
0.015988733619451523,
-0.02129300683736801,
-0.019641945138573647,
0.01059905905276537,
-0.042054638266563416,
-0.04315534606575966,
-0.02580970525741577,
0.04547062888741493,
-0.0018669336568564177,
-0.011623856611549854,
-0.006476148497313261,
0.046950891613960266,
0.04285170137882233,
0.015922311693429947,
0.007363357115536928,
0.017222285270690918,
-0.05905868113040924,
0.020306166261434555,
0.012326031923294067,
-0.02446228638291359,
-0.0582236610352993,
-0.000017328293324681,
-0.021444829180836678,
0.04592609405517578,
0.030174583196640015,
0.010029727593064308,
-0.004948441870510578,
-0.07834004610776901,
-0.003117091255262494,
-0.03376137092709541,
-0.02768850140273571,
-0.00872026477009058,
0.004122910555452108,
0.019433191046118736,
-0.024272510781884193,
0.06907891482114792,
-0.011737722903490067,
-0.05461789295077324,
0.014888024888932705,
-0.008539976552128792,
0.01882590353488922,
-0.00013417845184449106,
0.04239623621106148,
-0.027119169011712074,
-0.001558545627631247,
0.004929463844746351,
0.015134735964238644,
0.019300345331430435,
0.019850701093673706,
0.0018598170718178153,
0.046153828501701355,
0.04774795472621918,
-0.010399793274700642,
0.04065028578042984,
-0.00007279736746568233,
0.013597539626061916,
-0.07359561324119568,
0.07803640514612198,
0.01606464385986328,
-0.018465327098965645,
-0.00830275472253561,
-0.014128915965557098,
0.015400423668324947,
-0.028618408367037773,
-0.004682753700762987,
0.007614811882376671,
-0.017867527902126312,
-0.017715705558657646,
-0.06433448940515518,
0.07834004610776901,
0.025752773508429527,
0.022355759516358376,
-0.01214574370533228,
-0.01949012279510498,
0.01764928363263607,
0.008103488944470882,
-0.04065028578042984,
0.01212676614522934,
0.014271249063313007,
0.016159532591700554,
0.029377518221735954,
-0.03480514883995056,
0.009683383628726006,
0.007126135751605034,
0.008473553694784641,
-0.022393714636564255,
-0.014944958500564098,
0.07329197227954865,
0.01087423600256443,
-0.02296304702758789,
0.016320843249559402,
-0.01668141968548298,
-0.022906113415956497,
0.00522836297750473,
0.01973683387041092,
-0.007391823921352625,
0.0008563698502257466,
0.009583750739693642,
0.03501390293240547,
0.00289647514000535,
0.022469626739621162,
0.0007205604924820364,
0.023684199899435043,
-0.018009860068559647,
-0.00015656622417736799,
-0.019603990018367767,
0.014726714231073856,
0.003657956374809146,
-0.02935853973031044,
-0.03359057381749153,
-0.06980007141828537,
-0.09025806188583374,
-0.04562244936823845,
0.0214068740606308,
0.0876011773943901,
0.022109050303697586,
0.026758592575788498,
0.021843360736966133,
-0.022450648248195648,
0.010475704446434975,
0.02070469781756401,
0.08016190677881241,
0.018664592877030373,
0.014707736670970917,
-0.03425479307770729,
-0.014593870379030704,
-0.006855702959001064,
0.036570075899362564,
-0.008103488944470882,
-0.04349694401025772,
0.03822113946080208,
-0.028789209201931953,
-0.024234553799033165,
0.007856777869164944,
0.006077616475522518,
0.0024208459071815014,
0.011215835809707642,
0.02818192169070244,
-0.0398152656853199,
0.07720138132572174,
0.016994552686810493,
-0.002270210301503539,
-0.02376011200249195,
0.059703923761844635,
-0.021274030208587646,
0.016994552686810493,
0.015903333202004433,
0.008611142635345459,
-0.033267952501773834,
0.022469626739621162,
0.014394604600965977,
-0.008274287916719913,
0.010342859663069248,
0.038372959941625595,
0.02730894647538662,
0.014603359624743462,
0.03266066312789917,
0.029757073149085045,
0.011491012759506702,
0.0018847252940759063,
0.01097861398011446,
-0.015552245080471039,
0.031085513532161713,
-0.04019482061266899,
0.06091849505901337,
0.018161682412028313,
0.018759481608867645,
0.05533904582262039,
-0.05590837821364403,
-0.020135365426540375,
-0.021008340641856194,
0.024538198485970497,
0.013009230606257915,
0.011282257735729218,
0.005550984293222427,
-0.030079694464802742,
0.020856520161032677,
-0.06740888208150864,
0.05674339830875397,
0.03216724470257759,
-0.00042759187635965645,
-0.0019131918670609593,
0.012373476289212704,
-0.009626450948417187,
0.026322104036808014,
0.04406627640128136,
0.02174847200512886,
-0.009640684351325035,
-0.001722228480502963,
-0.03125631436705589,
-0.07052122801542282,
-0.0023959376849234104,
0.042054638266563416,
0.00884836446493864,
-0.03700656443834305,
0.03512777015566826,
-0.06714318692684174,
0.010096149519085884,
-0.009536306373775005,
0.03474821522831917,
0.011918011121451855,
0.006590014789253473,
0.026454947888851166,
0.055984288454055786,
-0.007325401995331049,
-0.03824011608958244,
-0.049949370324611664,
0.04057437554001808,
-0.001493309740908444,
0.005375440698117018,
-0.03755691647529602,
0.005849883891642094,
-0.09731777012348175,
0.04232032597064972,
-0.018873346969485283,
-0.04277579113841057,
-0.0027470255736261606,
-0.05006323754787445,
0.0014340042835101485,
0.031635865569114685,
0.004390971269458532,
0.022887136787176132,
0.01832299306988716,
-0.021008340641856194,
-0.0030411803163588047,
-0.0285235196352005,
0.0475202240049839,
-0.001849142019636929,
0.001222877181135118,
0.03751896321773529,
0.004215427208691835,
-0.010039216838777065,
0.04641951620578766,
-0.06600452959537506,
-0.0194521676748991,
-0.015590201131999493,
-0.02303895726799965,
0.09974692016839981,
-0.020552875474095345,
0.00493420846760273,
0.028295787051320076,
0.004502465017139912,
-0.010295415297150612,
-0.015998221933841705,
0.05222669988870621,
-0.029795028269290924,
0.060197342187166214,
0.05427629128098488,
-0.004817970097064972,
-0.014726714231073856,
0.0006499870796687901,
-0.004751547705382109,
-0.03258475288748741,
-0.02998480573296547,
-0.012278587557375431,
0.023987844586372375,
0.025657884776592255,
-0.0225834921002388,
-0.023608289659023285,
-0.010105638764798641,
-0.003399384906515479,
-0.06467608362436295,
0.022849179804325104,
-0.03133222460746765,
0.020439010113477707,
0.02032514289021492,
0.02119811810553074,
-0.033932171761989594,
0.005285296589136124,
0.007216279860585928,
-0.013872716575860977,
0.043686721473932266,
-0.03869558125734329,
0.008245821110904217,
0.0069885472767055035,
0.04357285797595978,
-0.07184966653585434,
-0.08122466504573822,
-0.02560095116496086,
-0.050670526921749115,
-0.09587546437978745,
0.010864747688174248,
0.00956002902239561,
-0.02404477819800377,
-0.028371699154376984,
0.03700656443834305,
0.06581474840641022,
-0.013597539626061916,
-0.016112089157104492,
-0.0194521676748991,
-0.040346644818782806,
-0.009109308011829853,
0.02417762205004692,
0.03768976032733917,
0.09078943729400635,
0.018218616023659706,
0.040878020226955414,
-0.02116016298532486,
0.031351201236248016,
0.0002275844308314845,
-0.004523815121501684,
0.03749998286366463,
0.0126960976049304,
-0.038448870182037354,
-0.030098671093583107,
0.003053041407838464,
-0.0037220062222331762,
0.011320212855935097,
-0.019983544945716858,
0.01681426353752613,
-0.018009860068559647,
-0.007154602091759443,
0.036114610731601715,
-0.027992144227027893,
0.014603359624743462,
0.04065028578042984,
-0.01325594075024128,
0.0383160263299942,
-0.016216466203331947,
-0.054845623672008514,
0.03727225214242935,
-0.015742022544145584,
0.015286557376384735,
0.08805664628744125,
-0.018171170726418495,
0.011936988681554794,
-0.043269213289022446,
0.0016558064380660653,
-0.023114869371056557,
0.04478742927312851,
0.05416242778301239,
-0.006931614130735397,
0.01949012279510498,
-0.06110827252268791,
-0.017620816826820374,
-0.024120688438415527,
0.05249238759279251,
0.04133348539471626,
0.056895218789577484,
0.0428137481212616,
0.02032514289021492,
0.051429633051157,
-0.01911056973040104,
0.05947618931531906,
0.07359561324119568,
-0.05712295323610306,
-0.016928130760788918,
0.0048867641016840935,
0.06365128606557846,
0.01810474880039692,
-0.048203419893980026,
-0.00009288706496590748,
0.026967346668243408,
-0.006134549621492624,
-0.027783388271927834,
0.014290226623415947,
-0.0051192413084208965,
-0.012999741360545158,
0.027669522911310196,
-0.000001806961108741234,
0.026701658964157104,
0.03421683609485626,
0.007804589346051216,
-0.02776441164314747,
-0.0231718011200428,
-0.020723676308989525,
0.016747841611504555,
0.0007863894570618868,
0.02400682121515274,
0.043724678456783295,
-0.0204959437251091,
-0.054466068744659424,
0.06987598538398743,
0.04653337970376015,
0.06513155251741409,
-0.005631639622151852,
-0.020211277529597282,
-0.0023734017740935087,
-0.06285422295331955,
0.08456474542617798,
0.03283146396279335,
-0.04201668128371239,
0.0775429829955101,
-0.019385745748877525,
-0.004789503291249275,
0.016244933009147644,
-0.018076281994581223,
-0.016662443056702614,
0.03869558125734329,
0.015694579109549522,
0.004383854568004608,
-0.09071352332830429,
-0.054428115487098694,
-0.025771750137209892,
0.01407198328524828,
0.010722414590418339,
0.025980506092309952,
-0.002761258976534009,
0.01495444681495428,
-0.06585270166397095,
-0.023019980639219284,
0.004846436437219381,
0.07006575912237167,
-0.05097416788339615,
0.009839950129389763,
0.07834004610776901,
-0.020894475281238556,
-0.0157325342297554,
0.052720118314027786,
-0.024708997458219528,
0.07902324944734573,
0.016463175415992737,
-0.03150302171707153,
-0.03357159346342087,
-0.0273469015955925,
-0.0012104229535907507,
-0.023741133511066437,
0.02383602224290371,
-0.011367657221853733,
0.030705958604812622,
-0.005802439525723457,
-0.0236272681504488,
0.021179141476750374,
0.07131829112768173,
0.03738611936569214,
0.014859558083117008,
0.023911932483315468
] |
729,725 | addfips.addfips | _load_state_data | null | def _load_state_data(self):
with self.data.joinpath(STATES).open('rt', encoding='utf-8') as f:
reader = csv.DictReader(f)
states = {}
state_fips = {}
for row in reader:
states[row['postal'].lower()] = row['fips']
states[row['name'].lower()] = row['fips']
state_fips[row['fips']] = row['fips']
state_fips = frozenset(state_fips)
return states, state_fips
| (self) | [
0.02849714830517769,
-0.0267731212079525,
-0.017219984903931618,
-0.02628633752465248,
-0.0495302751660347,
-0.028071211650967598,
-0.020546341314911842,
-0.013285147026181221,
0.046244483441114426,
-0.048313312232494354,
-0.03695502132177353,
0.008336176164448261,
-0.045676566660404205,
0.05926595255732536,
0.005856620147824287,
0.010942499153316021,
-0.05383019894361496,
0.055331118404865265,
-0.06729789078235626,
-0.042431339621543884,
-0.02089114673435688,
0.03450081869959831,
-0.009051140397787094,
0.008092784322798252,
0.007565435022115707,
-0.024886833503842354,
0.024075526744127274,
-0.04794822633266449,
0.07837222516536713,
0.011642251163721085,
0.020810017362236977,
0.0018254400929436088,
-0.03857763484120369,
0.02624577097594738,
-0.008792536333203316,
-0.018477510660886765,
0.06547245383262634,
-0.02025224268436432,
0.055006593465805054,
0.0028345028404146433,
-0.05460093915462494,
-0.06458001583814621,
-0.03466307744383812,
0.0029714107513427734,
0.008239833638072014,
0.0017950161127373576,
-0.011804512701928616,
-0.08875695616006851,
0.05703486129641533,
-0.0020815087482333183,
-0.0374823696911335,
-0.004538246896117926,
0.028274038806557655,
0.04884066432714462,
0.03571777790784836,
-0.07991371303796768,
-0.02701651304960251,
0.016094297170639038,
0.018011009320616722,
0.04770483449101448,
-0.05216702073812485,
-0.03494703769683838,
0.040321942418813705,
-0.0468529611825943,
0.011743664741516113,
-0.007818968035280704,
0.005182221531867981,
-0.019146837294101715,
-0.039023853838443756,
0.030667392536997795,
0.03843565657734871,
0.05111232027411461,
-0.03277679160237312,
-0.01592189446091652,
-0.00164289609529078,
0.06798750162124634,
-0.0589008666574955,
0.03206689655780792,
-0.032573964446783066,
-0.025069376453757286,
-0.011409000493586063,
-0.03500788286328316,
-0.0441756509244442,
0.04226908087730408,
-0.005405331030488014,
0.024785419926047325,
0.10628117620944977,
0.011530696414411068,
-0.0009152553975582123,
0.02504909411072731,
-0.007839251309633255,
0.04746144264936447,
-0.015881327912211418,
0.005623369477689266,
0.07800713926553726,
-0.04026109352707863,
-0.009568348526954651,
0.07861562073230743,
-0.02085058204829693,
-0.03433855623006821,
-0.00996893085539341,
-0.09029843658208847,
-0.009761033579707146,
-0.01789945363998413,
-0.021357648074626923,
-0.007656706962734461,
0.024704288691282272,
-0.006241990718990564,
-0.027604710310697556,
-0.034439969807863235,
-0.08348345756530762,
-0.05926595255732536,
0.019917579367756844,
0.03987572342157364,
-0.004591488745063543,
-0.036204561591148376,
0.0657564103603363,
0.026590576395392418,
-0.05999613180756569,
-0.014887478202581406,
-0.0031057833693921566,
0.07107046991586685,
0.012828786857426167,
0.05683203414082527,
0.01589147001504898,
-0.003235085401684046,
-0.008736759424209595,
-0.014380411244928837,
0.05200475826859474,
-0.012707090936601162,
0.025758987292647362,
0.0020371403079479933,
-0.03717812895774841,
-0.04182286188006401,
0.0026975946966558695,
-0.04957083985209465,
0.05675090476870537,
0.030282022431492805,
0.07038085907697678,
0.03064711019396782,
0.039368659257888794,
0.0003869552747346461,
-0.008067430928349495,
-0.03634653985500336,
0.0455954372882843,
0.020171113312244415,
0.011713240295648575,
0.01677376590669155,
-0.02843629941344261,
-0.012940341606736183,
0.052369847893714905,
-0.032817356288433075,
-0.07557322084903717,
-0.010136263445019722,
-0.026063228026032448,
-0.07326099276542664,
-0.013569104485213757,
-0.02174302004277706,
0.006591866724193096,
0.0048247394151985645,
-0.01694616861641407,
0.03665078058838844,
-0.05269436910748482,
0.00972046796232462,
-0.06522905826568604,
0.022148672491312027,
-0.015404686331748962,
-0.07403173297643661,
0.02050577662885189,
-0.0683525875210762,
-0.048881229013204575,
-0.033060748130083084,
-0.03888187184929848,
0.026752838864922523,
-0.048353880643844604,
-0.026996230706572533,
-0.000661088211927563,
-0.01986687257885933,
0.02815234288573265,
-0.02025224268436432,
-0.01926853321492672,
-0.0170475821942091,
-0.034825339913368225,
0.021235952153801918,
0.02170245349407196,
0.03456166386604309,
0.023913264274597168,
-0.003747222712263465,
0.08900034427642822,
0.02634718455374241,
0.02863912656903267,
-0.02695566602051258,
-0.044581301510334015,
0.04750200733542442,
-0.004069210030138493,
-0.019207686185836792,
-0.029146192595362663,
-0.024055244401097298,
-0.03299989923834801,
-0.031722091138362885,
-0.03679275885224342,
-0.016611505299806595,
-0.013204016722738743,
0.003775111399590969,
-0.077479787170887,
0.007048226892948151,
-0.04985479637980461,
-0.041903991252183914,
-0.006713563110679388,
0.03590032085776329,
0.007535011041909456,
-0.065513014793396,
-0.03383148834109306,
0.0194510780274868,
0.03097163327038288,
-0.08632303029298782,
-0.02500852942466736,
0.01541482750326395,
0.030322587117552757,
0.007687130942940712,
0.05472263693809509,
0.004642195533961058,
0.005881973542273045,
-0.013183733448386192,
0.015364120714366436,
-0.0077581205405294895,
-0.05634525045752525,
0.022696305066347122,
-0.04936801269650459,
-0.007869674824178219,
0.0022386994678527117,
-0.028274038806557655,
0.021864715963602066,
-0.04652843996882439,
0.025799553841352463,
-0.014258715324103832,
0.06973180919885635,
-0.005547309760004282,
0.03687388822436333,
0.003866383573040366,
0.009010574780404568,
-0.056710340082645416,
0.0036889100447297096,
-0.08705320954322815,
-0.03393290191888809,
-0.045433174818754196,
0.031438134610652924,
0.02476513758301735,
-0.027401883155107498,
-0.04385112598538399,
0.022148672491312027,
0.046771831810474396,
0.0012974569108337164,
-0.012088470160961151,
0.01824425905942917,
-0.08924373984336853,
0.0030424001161009073,
0.0035139720421284437,
0.02107369154691696,
-0.04665013402700424,
0.05163967236876488,
-0.035778626799583435,
0.024927398189902306,
0.033060748130083084,
-0.014319563284516335,
0.03255368024110794,
0.04393225908279419,
-0.025515595450997353,
-0.010658541694283485,
-0.058251820504665375,
0.1393824964761734,
0.02523163892328739,
-0.04397282376885414,
-0.012707090936601162,
-0.003643274074420333,
-0.028355170041322708,
0.029267888516187668,
-0.058576345443725586,
0.02772640623152256,
0.03431827202439308,
0.01474549900740385,
0.02395383082330227,
0.016530374065041542,
0.020810017362236977,
0.032127745449543,
-0.03302018344402313,
-0.03999742120504379,
-0.06372813880443573,
-0.0035241134464740753,
0.006287626922130585,
0.021722737699747086,
0.028334885835647583,
-0.029916934669017792,
0.015516241081058979,
0.01624641753733158,
-0.00612029479816556,
0.00011361463111825287,
-0.02360902540385723,
0.06652715057134628,
-0.005816054996103048,
-0.027503296732902527,
-0.028172625228762627,
0.09257009625434875,
0.01345754973590374,
-0.025921249762177467,
-0.03316216170787811,
0.006394111085683107,
0.012342003174126148,
-0.03117446042597294,
-0.007159781642258167,
-0.003333963453769684,
-0.01624641753733158,
0.012930200435221195,
-0.01690560393035412,
0.0037522935308516026,
-0.06133478507399559,
-0.06620262563228607,
0.024542028084397316,
-0.004555994179099798,
-0.017706768587231636,
-0.05565563961863518,
-0.008822960779070854,
0.001978827640414238,
-0.011409000493586063,
0.027949515730142593,
-0.023081675171852112,
0.07070537656545639,
-0.02180386707186699,
0.025657573714852333,
0.030728241428732872,
-0.005993528291583061,
-0.06218665838241577,
0.06681110709905624,
0.08332119882106781,
0.042958687990903854,
0.08246932923793793,
0.012423133477568626,
0.03160039708018303,
0.007687130942940712,
-0.0009361718548461795,
0.009025787003338337,
-0.006825117394328117,
0.00875704176723957,
-0.024643441662192345,
0.020313091576099396,
-0.03336498886346817,
-0.049935925751924515,
-0.007565435022115707,
0.008300681598484516,
-0.001921782735735178,
-0.027564145624637604,
-0.002859856002032757,
0.03977430984377861,
0.05699429661035538,
0.008462943136692047,
-0.013944334350526333,
-0.013508256524801254,
0.009482147172093391,
0.03969318047165871,
0.049449142068624496,
0.04851613938808441,
-0.054479245096445084,
-0.05070666968822479,
-0.002601252170279622,
0.030038630589842796,
0.021580757573246956,
-0.024967962875962257,
0.01460352074354887,
-0.029227323830127716,
-0.009857376106083393,
-0.0076110707595944405,
-0.030606545507907867,
-0.019004859030246735,
0.018903445452451706,
0.04097098857164383,
-0.014025464653968811,
0.04255303740501404,
0.025109943002462387,
-0.030667392536997795,
0.022209521383047104,
-0.014481824822723866,
-0.004812062717974186,
0.011479989625513554,
0.03265509381890297,
0.0034784774761646986,
0.003661021590232849,
0.01782846450805664,
-0.008625204674899578,
0.03107304684817791,
0.00490587018430233,
-0.029125910252332687,
0.03421685844659805,
0.0062673441134393215,
0.009330026805400848,
0.026509447023272514,
0.012534688226878643,
0.03151926398277283,
-0.04287755861878395,
0.07176008075475693,
0.02500852942466736,
0.008777324110269547,
0.02050577662885189,
-0.022493477910757065,
-0.004505287390202284,
-0.022108107805252075,
-0.023872699588537216,
0.014502107165753841,
-0.02973438985645771,
-0.019298957660794258,
-0.05435754731297493,
0.08859468996524811,
0.0348861888051033,
0.040281377732753754,
-0.048881229013204575,
-0.042958687990903854,
-0.014299280941486359,
0.03293905034661293,
0.018264541402459145,
0.05930652096867561,
-0.028030646964907646,
0.03182350471615791,
0.02053620107471943,
-0.02620520628988743,
-0.029125910252332687,
0.007519798818975687,
0.008042077533900738,
-0.03671162948012352,
0.026854252442717552,
0.04721805080771446,
0.021114256232976913,
-0.028517430648207664,
0.029044779017567635,
0.012058045715093613,
-0.04312095046043396,
0.024846266955137253,
0.02222980372607708,
0.000026185240130871534,
-0.023913264274597168,
0.01852821744978428,
0.01307217963039875,
0.03125559166073799,
0.012514405883848667,
0.017179420217871666,
0.026063228026032448,
-0.02227036841213703,
-0.03547438606619835,
-0.04454073682427406,
0.02036379836499691,
0.06539131700992584,
-0.00891423225402832,
-0.04131579399108887,
-0.07293647527694702,
-0.031498983502388,
-0.07013746351003647,
0.0441756509244442,
0.05817069113254547,
0.03279707208275795,
0.04393225908279419,
-0.014055888168513775,
0.019359806552529335,
0.01891358755528927,
-0.0005980217829346657,
0.013092461973428726,
-0.0010933625744655728,
0.03537297248840332,
-0.06900163739919662,
-0.0395309180021286,
0.02395383082330227,
0.0562235526740551,
0.028172625228762627,
-0.0307890884578228,
0.04802935570478439,
-0.02529248595237732,
-0.014370270073413849,
-0.017554648220539093,
-0.015171435661613941,
0.01867019571363926,
0.0002771436411421746,
-0.03263481333851814,
-0.027746688574552536,
0.0695289820432663,
-0.007098933681845665,
-0.017777757719159126,
-0.027503296732902527,
0.025738704949617386,
-0.06052348017692566,
0.03368951007723808,
0.021256236359477043,
-0.021641606464982033,
-0.025921249762177467,
0.023081675171852112,
-0.027523579075932503,
0.005052919499576092,
0.03519042953848839,
0.033060748130083084,
-0.005816054996103048,
0.023385915905237198,
0.02346704714000225,
0.054276417940855026,
-0.027604710310697556,
0.017838606610894203,
0.029227323830127716,
-0.003389740828424692,
0.02504909411072731,
-0.011094619520008564,
0.04117381572723389,
0.004135129041969776,
-0.0261443592607975,
0.02638775110244751,
-0.044905826449394226,
-0.009137341752648354,
-0.04064646735787392,
0.05009818822145462,
-0.013427126221358776,
-0.008787465281784534,
0.017463376745581627,
0.012991048395633698,
0.05946877971291542,
-0.05821125581860542,
0.09459836035966873,
0.03742152079939842,
0.014431118033826351,
0.02346704714000225,
0.0019496714230626822,
-0.05731881782412529,
0.027888668701052666,
0.033344704657793045,
-0.0024985710624605417,
-0.044053953140974045,
-0.02127651870250702,
-0.01159154437482357,
-0.06210552901029587,
0.0025644898414611816,
0.005111232399940491,
0.006515807006508112,
-0.03340555354952812,
0.041092682629823685,
-0.044378478080034256,
0.013406842947006226,
-0.025272203609347343,
0.061983831226825714,
-0.037928588688373566,
-0.013609670102596283,
0.04547373950481415,
0.016084155067801476,
-0.035109296441078186,
-0.0322088748216629,
-0.013406842947006226,
0.027280187234282494,
0.005810984410345554,
0.015333696268498898,
-0.04308038577437401,
0.0100399199873209,
-0.09930393844842911,
0.04344547539949417,
-0.050179317593574524,
-0.020830299705266953,
0.03001834824681282,
-0.02652972936630249,
-0.00004939938662573695,
0.034115444868803024,
0.0000804572191555053,
-0.01839637942612171,
0.03571777790784836,
-0.016601363196969032,
-0.02730046957731247,
-0.02715849131345749,
0.02839573472738266,
-0.011135184206068516,
0.01627684012055397,
0.032715942710638046,
0.038313958793878555,
-0.03206689655780792,
0.03813141584396362,
0.004383591469377279,
-0.05598016083240509,
-0.01652023196220398,
-0.02067817933857441,
0.03800971806049347,
0.0012727373978123069,
0.01744309440255165,
0.02131708338856697,
0.00917790737003088,
-0.0053089880384504795,
-0.016459384933114052,
0.07289590686559677,
-0.06737902015447617,
0.03981487452983856,
0.05090949684381485,
0.003384670242667198,
-0.012605678290128708,
-0.033628661185503006,
0.027381600812077522,
-0.006074659060686827,
-0.015070022083818913,
-0.0007314436952583492,
0.06186213716864586,
0.04368886724114418,
-0.07679017633199692,
-0.014086312614381313,
-0.027645274996757507,
0.006155789364129305,
-0.006094941403716803,
-0.03681304305791855,
0.03153954818844795,
-0.03547438606619835,
0.044621869921684265,
0.024825984612107277,
-0.06380927562713623,
0.03202633187174797,
0.010557128116488457,
-0.07107046991586685,
0.02801036462187767,
-0.04498695582151413,
0.02691509947180748,
-0.021256236359477043,
0.03610314801335335,
-0.03813141584396362,
-0.05200475826859474,
-0.04030166193842888,
-0.06989407539367676,
-0.06997520476579666,
0.0007314436952583492,
0.03934837505221367,
0.014015323482453823,
-0.016003023833036423,
-0.007448809687048197,
0.041376642882823944,
-0.019664045423269272,
-0.03512958064675331,
-0.014005182310938835,
-0.02768584154546261,
0.021195387467741966,
-0.00454585300758481,
0.03569749370217323,
0.060117825865745544,
0.06729789078235626,
0.037401240319013596,
-0.018974434584379196,
0.04855670779943466,
-0.043526604771614075,
-0.012342003174126148,
-0.01885273866355419,
-0.008153632283210754,
-0.00422640098258853,
0.0014502106932923198,
-0.012534688226878643,
-0.00022976459877099842,
0.029085345566272736,
-0.03671162948012352,
-0.0019699539989233017,
-0.008397024124860764,
-0.00850857887417078,
0.017148995772004128,
-0.022493477910757065,
-0.04239077493548393,
0.012788222171366215,
0.003014511428773403,
0.03285792097449303,
-0.03512958064675331,
-0.0414983369410038,
0.01979588344693184,
-0.02867969125509262,
0.006140577606856823,
0.07029972225427628,
-0.007676989771425724,
-0.011875501833856106,
0.033669229596853256,
0.005942821502685547,
0.015293131582438946,
-0.00017271959222853184,
0.015130870044231415,
0.05731881782412529,
0.005694359075278044,
-0.0220878254622221,
0.01458323746919632,
-0.0025011063553392887,
-0.005547309760004282,
0.026022661477327347,
0.060158390551805496,
0.006926530972123146,
0.04794822633266449,
0.03957148268818855,
-0.004015968181192875,
0.05598016083240509,
0.07273364812135696,
-0.04948971047997475,
-0.003955120220780373,
0.020242102444171906,
0.059103693813085556,
0.030140044167637825,
-0.030768806114792824,
0.01481648813933134,
0.04851613938808441,
-0.0274424497038126,
-0.03064711019396782,
0.040565334260463715,
-0.01990743726491928,
0.005785631015896797,
0.04766426980495453,
-0.012991048395633698,
-0.001045825076289475,
0.03413572907447815,
-0.022696305066347122,
-0.004908405710011721,
-0.035352688282728195,
-0.042431339621543884,
0.04182286188006401,
-0.04494639113545418,
0.026590576395392418,
0.03782717511057854,
-0.04022052884101868,
-0.03226972371339798,
0.0589819960296154,
0.02892308309674263,
0.03815169632434845,
-0.017078006640076637,
-0.030484849587082863,
-0.0328376404941082,
-0.026022661477327347,
0.005826196167618036,
0.030768806114792824,
-0.05293776094913483,
0.05735938251018524,
-0.03326357528567314,
0.01965390518307686,
-0.03673190996050835,
-0.027929233387112617,
-0.027807537466287613,
0.03342583775520325,
-0.008904091082513332,
0.024197222664952278,
-0.11828851699829102,
-0.013984899036586285,
-0.051558539271354675,
-0.012362285517156124,
0.046690698713064194,
0.06311966478824615,
-0.03121502511203289,
0.028355170041322708,
-0.01757493056356907,
0.0013728830963373184,
0.04174172878265381,
0.031762655824422836,
-0.05703486129641533,
0.04255303740501404,
0.03494703769683838,
-0.02198641188442707,
-0.05439811572432518,
0.029125910252332687,
-0.02523163892328739,
0.0990605503320694,
0.05301889404654503,
-0.006414393428713083,
-0.048313312232494354,
-0.04750200733542442,
-0.02304111048579216,
-0.04344547539949417,
-0.014167442917823792,
-0.03762434795498848,
-0.01257525384426117,
-0.029896652325987816,
-0.018578924238681793,
0.01613486185669899,
0.09816811233758926,
-0.0042416127398610115,
0.004837416112422943,
0.018791891634464264
] |
729,726 | addfips.addfips | add_county_fips |
Add county FIPS to a dictionary containing a state name, FIPS code, or using a passed state name or FIPS code.
:row dict/list A dictionary with state and county names
:county_field str county name field. default: county
:state_fips_field str state FIPS field containing state fips
:state_field str state name field. default: county
:state str State name, postal abbreviation or FIPS code to use
| def add_county_fips(self, row, county_field=None, state_field=None, state=None):
"""
Add county FIPS to a dictionary containing a state name, FIPS code, or using a passed state name or FIPS code.
:row dict/list A dictionary with state and county names
:county_field str county name field. default: county
:state_fips_field str state FIPS field containing state fips
:state_field str state name field. default: county
:state str State name, postal abbreviation or FIPS code to use
"""
if state:
state_fips = self.get_state_fips(state)
else:
state_fips = self.get_state_fips(row[state_field or self.default_state_field])
if county_field is None:
county_field = self.default_county_field
fips = self.get_county_fips(row[county_field], state_fips)
try:
row['fips'] = fips
except TypeError:
row.insert(0, fips)
return row
| (self, row, county_field=None, state_field=None, state=None) | [
-0.014998691156506538,
-0.04081227630376816,
0.03226473182439804,
0.032390695065259933,
-0.0580873116850853,
-0.03575572744011879,
-0.03060920722782612,
-0.003398773493245244,
0.047254424542188644,
-0.08493559807538986,
-0.0062397075816988945,
0.042143892496824265,
-0.027981961145997047,
0.03316447138786316,
0.017077093943953514,
0.012938283383846283,
-0.018030820414423943,
0.013883011415600777,
-0.043691448867321014,
-0.032390695065259933,
0.012353450991213322,
-0.0014474592171609402,
0.045814838260412216,
0.008237133733928204,
0.03998451307415962,
-0.018552670255303383,
0.043259572237730026,
0.008034692145884037,
0.05171714350581169,
-0.03577372431755066,
0.033434394747018814,
-0.016231337562203407,
-0.057007621973752975,
0.021683771163225174,
0.041712015867233276,
-0.002223486313596368,
0.010598954744637012,
0.016249332576990128,
0.05938294157385826,
0.021197909489274025,
-0.047794271260499954,
-0.04707447811961174,
-0.07464255392551422,
-0.007085464429110289,
0.013936996459960938,
0.03919273987412453,
-0.013999978080391884,
-0.021107936277985573,
-0.007620810531079769,
-0.04761432111263275,
-0.07341890782117844,
-0.022547522559762,
0.06550118327140808,
0.016528252512216568,
0.020730044692754745,
-0.054380375891923904,
-0.0033087993506342173,
-0.017374008893966675,
0.029385557398200035,
0.011849596165120602,
-0.039624616503715515,
-0.050817400217056274,
-0.024868855252861977,
-0.03922872990369797,
-0.015223626978695393,
0.018588660284876823,
-0.028737744316458702,
-0.03377629816532135,
0.0060102734714746475,
-0.010086102411150932,
0.052400946617126465,
0.03571973741054535,
0.006446647923439741,
-0.012299466878175735,
-0.0058798110112547874,
0.09170165657997131,
-0.03973258659243584,
0.03564775735139847,
-0.00261599849909544,
-0.030861133709549904,
0.004271523095667362,
-0.022169630974531174,
-0.044231291860342026,
0.040704306215047836,
0.010868877172470093,
0.04664260149002075,
0.0809047594666481,
0.024131067097187042,
0.0007962712552398443,
0.07003588229417801,
-0.004800120834261179,
-0.012578386813402176,
0.004737139213830233,
-0.034406114369630814,
0.06474539637565613,
-0.014827740378677845,
0.031940825283527374,
0.021053951233625412,
-0.02049611136317253,
0.018606655299663544,
0.07795360684394836,
-0.09321322292089462,
-0.029241599142551422,
-0.013091239146888256,
-0.00832710787653923,
-0.008268624544143677,
0.035071924328804016,
0.006095748860388994,
-0.0027734532486647367,
-0.031095067039132118,
-0.008129164576530457,
-0.06442148983478546,
0.020658064633607864,
-0.03120303526520729,
-0.0025327724870294333,
-0.014980696141719818,
0.07442662119865417,
0.01781488209962845,
0.014746763743460178,
0.0003691751917358488,
0.012317460961639881,
-0.015295606106519699,
0.00510153453797102,
0.04786624759435654,
0.004759632516652346,
-0.00537595571950078,
-0.01435087714344263,
0.05474027246236801,
0.050817400217056274,
-0.0004307512426748872,
-0.0022324835881590843,
-0.05315672978758812,
-0.026794303208589554,
-0.024670911952853203,
0.021125931292772293,
-0.03356035798788071,
0.01661822572350502,
-0.005011560395359993,
0.04657062143087387,
0.0056143868714571,
0.0520770400762558,
-0.012164505198597908,
-0.008866952732205391,
0.006946004461497068,
0.0673726424574852,
0.04855005070567131,
-0.034514084458351135,
0.060102734714746475,
-0.04351149871945381,
-0.002447296865284443,
-0.015547533519566059,
0.04531098157167435,
-0.05456032603979111,
0.03186884522438049,
-0.006716570351272821,
-0.011840598657727242,
0.012092526070773602,
-0.050853390246629715,
0.06280195713043213,
-0.00521850073710084,
0.025408700108528137,
0.044699158519506454,
-0.029853424057364464,
0.0033875268418341875,
-0.06758858263492584,
0.02445497363805771,
-0.0408482663333416,
-0.032390695065259933,
0.030465247109532356,
-0.002971396315842867,
-0.010365022346377373,
-0.062118154019117355,
0.0006281320238485932,
0.02564263343811035,
-0.024958830326795578,
0.04462717846035957,
-0.020172204822301865,
-0.033920254558324814,
0.00830911286175251,
-0.0025575151666998863,
0.03525187447667122,
-0.012587384320795536,
0.0008406959823332727,
0.06510529667139053,
0.007233921904116869,
0.015475554391741753,
0.007026981096714735,
-0.007634306792169809,
0.07716183364391327,
0.04149607941508293,
0.027784017845988274,
-0.004984567873179913,
-0.012965274974703789,
0.0005128526827320457,
0.007373381871730089,
-0.027406126260757446,
-0.01812979206442833,
0.009609239175915718,
-0.05351662635803223,
0.025318726897239685,
-0.03208478167653084,
0.03014134056866169,
-0.023267315700650215,
0.004822614602744579,
-0.04657062143087387,
-0.0060057747177779675,
-0.014971698634326458,
-0.06384565681219101,
-0.046066764742136,
-0.021053951233625412,
0.09566051512956619,
0.004514453001320362,
-0.05096136033535004,
0.010634944774210453,
0.03508991748094559,
-0.08767081052064896,
0.024257032200694084,
0.03183285519480705,
-0.024167057126760483,
0.0038756364956498146,
0.02002824656665325,
-0.0020097976084798574,
0.0164472758769989,
-0.04052435979247093,
0.04516702517867088,
0.0033492879010736942,
-0.011876587755978107,
0.04243180900812149,
0.013963988050818443,
-0.021737754344940186,
-0.07377880811691284,
0.02598453499376774,
0.0271002147346735,
-0.025678623467683792,
0.004098322708159685,
-0.022403564304113388,
0.022547522559762,
-0.038005080074071884,
0.0367814339697361,
0.021053951233625412,
0.026254458352923393,
-0.022835439071059227,
-0.011453709565103054,
-0.0553520992398262,
-0.0592389814555645,
0.01352311484515667,
0.004674157127737999,
0.05668371543288231,
-0.04919786751270294,
0.021701766178011894,
0.011489699594676495,
0.008624022826552391,
0.013109234161674976,
-0.0063656712882220745,
0.015340592712163925,
-0.03334442153573036,
-0.008097673766314983,
0.012218490242958069,
-0.0028544298838824034,
-0.012893295846879482,
0.012209492735564709,
-0.0029421548824757338,
0.014224913902580738,
-0.0071844360791146755,
-0.040092483162879944,
-0.020208194851875305,
0.02051410637795925,
0.00022085843374952674,
0.010652939788997173,
-0.004093823954463005,
0.0816965326666832,
0.0029646484181284904,
0.04487910866737366,
-0.013379156589508057,
0.017392003908753395,
-0.058051321655511856,
0.04088425636291504,
0.01767992042005062,
0.013990980572998524,
-0.009600241668522358,
0.04531098157167435,
0.011768619529902935,
0.0035427322145551443,
0.07442662119865417,
0.0017173816449940205,
-0.05456032603979111,
0.00026739193708635867,
0.08529549837112427,
-0.020118219777941704,
-0.027460111305117607,
0.006568112876266241,
0.04300764575600624,
0.01019407156854868,
0.10883273184299469,
0.00037114336737431586,
0.014233910478651524,
-0.011921575292944908,
0.019848298281431198,
0.014782752841711044,
-0.03840096667408943,
-0.014116944745182991,
0.05553204566240311,
0.03789711371064186,
-0.004917087499052286,
0.021287884563207626,
-0.061110444366931915,
-0.01990228332579136,
0.007004487793892622,
-0.05366058275103569,
0.04765031114220619,
-0.018030820414423943,
-0.01884058676660061,
-0.05772741511464119,
-0.006478138733655214,
-0.006253203377127647,
-0.038077060133218765,
-0.07050374895334244,
-0.023195335641503334,
-0.03381228819489479,
-0.010392014868557453,
-0.02611049823462963,
-0.09969136118888855,
-0.010571963153779507,
0.015340592712163925,
-0.024293020367622375,
-0.0005471553304232657,
0.037573207169771194,
-0.021773744374513626,
-0.026848286390304565,
0.02609250321984291,
0.015547533519566059,
-0.007499345578253269,
0.025408700108528137,
0.04289967566728592,
-0.0351439043879509,
0.020136214792728424,
0.015520540997385979,
0.01075191143900156,
-0.06467342376708984,
0.014881724491715431,
-0.06769654899835587,
0.025174768641591072,
-0.038077060133218765,
-0.00868250522762537,
-0.017634933814406395,
-0.08875050395727158,
-0.09011811017990112,
-0.010401012375950813,
0.04667859151959419,
-0.007440862245857716,
0.04408733546733856,
-0.08803071081638336,
0.03201280161738396,
0.03325444832444191,
0.03383028134703636,
0.03940868005156517,
0.008403586223721504,
-0.019218478351831436,
0.023375283926725388,
0.011309751309454441,
0.03255264833569527,
-0.08292017877101898,
-0.00807518046349287,
0.013370159082114697,
0.017751900479197502,
0.055460065603256226,
0.02755008451640606,
0.02449096366763115,
-0.056035902351140976,
-0.009411295875906944,
0.02001025155186653,
-0.04282769560813904,
0.0069280099123716354,
0.002328081289306283,
0.00909188762307167,
0.011921575292944908,
0.04639067128300667,
0.0033560357987880707,
-0.06398961693048477,
-0.04484311863780022,
-0.023789165541529655,
-0.03321845829486847,
-0.04358347877860069,
0.028269879519939423,
0.01129175629466772,
0.00281169218942523,
0.0041005718521773815,
0.002393312519416213,
0.038005080074071884,
-0.022097650915384293,
-0.04944979399442673,
0.07932121306657791,
0.04387139528989792,
-0.012155507691204548,
0.0275860745459795,
-0.018660638481378555,
0.015961414203047752,
-0.0770178735256195,
0.06326982378959656,
0.024311015382409096,
0.0017185063334181905,
-0.031059077009558678,
0.06341378390789032,
-0.010562965646386147,
-0.04052435979247093,
-0.006415157113224268,
-0.05974283814430237,
-0.0022695979569107294,
0.02143184281885624,
-0.025426695123314857,
0.06881222873926163,
0.05002562701702118,
-0.021593796089291573,
-0.05671970546245575,
-0.048801980912685394,
0.007710784673690796,
-0.021287884563207626,
0.01734701730310917,
-0.020316163077950478,
-0.005290480330586433,
0.03789711371064186,
-0.00872749276459217,
-0.09897156804800034,
0.0859433114528656,
-0.0036439532414078712,
-0.043151602149009705,
0.01600640080869198,
0.02817990444600582,
0.08911039680242538,
0.04239581897854805,
-0.03876086324453354,
0.014530825428664684,
0.021107936277985573,
0.023267315700650215,
0.009136875160038471,
-0.028935687616467476,
0.018282746896147728,
-0.022277599200606346,
-0.01434187963604927,
0.051393236964941025,
0.01433288212865591,
0.03219275176525116,
-0.015997404232621193,
0.009015410207211971,
0.009573250077664852,
-0.009055898524820805,
-0.03383028134703636,
-0.011885585263371468,
0.013667074032127857,
-0.0008491310873068869,
0.06802045553922653,
-0.055424079298973083,
-0.02861178107559681,
0.052364956587553024,
-0.006649089977145195,
0.045203015208244324,
0.024652916938066483,
-0.04696650803089142,
0.018804598599672318,
-0.011831601150333881,
-0.016834164038300514,
0.02708221971988678,
0.07183536142110825,
0.04952177405357361,
0.011705636978149414,
-0.06244206055998802,
-0.02853980101644993,
-0.007503844331949949,
0.05934695154428482,
-0.0072879064828157425,
-0.01125576626509428,
0.03616961091756821,
-0.027262168005108833,
-0.05578397586941719,
0.057619448751211166,
-0.0025395203847438097,
-0.02715419977903366,
-0.01530460361391306,
-0.0003888570354320109,
-0.03219275176525116,
0.027442116290330887,
0.024688906967639923,
-0.021737754344940186,
-0.05427240952849388,
0.05733152851462364,
-0.02513877861201763,
0.02503080852329731,
0.008781476877629757,
0.021719761192798615,
0.029025660827755928,
0.019182488322257996,
-0.016942132264375687,
-0.0037451740354299545,
0.04653463140130043,
-0.021863719448447227,
-0.013379156589508057,
0.02452695369720459,
-0.011597667820751667,
0.02458093874156475,
0.001012209220789373,
-0.013415145687758923,
0.0489819273352623,
-0.05171714350581169,
0.023627212271094322,
-0.018678633496165276,
0.010841885581612587,
-0.007737777195870876,
0.029925402253866196,
0.024688906967639923,
-0.012830314226448536,
-0.02602052502334118,
-0.03442411124706268,
0.043259572237730026,
-0.029853424057364464,
0.014998691156506538,
0.006068756338208914,
0.00021003340953029692,
0.0024675410240888596,
-0.020208194851875305,
0.04444723203778267,
0.03663747385144234,
0.04074029624462128,
0.005942792631685734,
0.04030841961503029,
-0.008111169561743736,
0.04282769560813904,
0.09674020856618881,
-0.0015925425104796886,
0.005825826432555914,
-0.019614364951848984,
-0.05812330171465874,
-0.027334148064255714,
0.017320023849606514,
-0.0033942749723792076,
-0.010311038233339787,
0.004469465930014849,
0.021557806059718132,
-0.020352153107523918,
0.009019908495247364,
-0.0932852029800415,
0.028935687616467476,
0.040092483162879944,
-0.01379303727298975,
-0.012704350054264069,
0.02256551757454872,
-0.03077116049826145,
-0.027963966131210327,
-0.098323754966259,
0.03624158725142479,
-0.034010227769613266,
-0.051321256905794144,
-0.007193433586508036,
0.03622359409928322,
-0.03624158725142479,
0.07176338136196136,
0.024706901982426643,
-0.016780178993940353,
0.038580916821956635,
-0.04901791736483574,
-0.0005370331928133965,
-0.03674544394016266,
-0.04397936537861824,
0.05459631606936455,
-0.01408995222300291,
-0.04563488811254501,
0.013685068115592003,
0.014971698634326458,
0.026218468323349953,
0.025894561782479286,
-0.01882259175181389,
0.04793822765350342,
0.01641128584742546,
-0.025156773626804352,
0.03876086324453354,
-0.0696759819984436,
-0.10213866084814072,
-0.04595879837870598,
-0.02445497363805771,
0.06172226741909981,
-0.012551394291222095,
-0.07399474084377289,
0.021611791104078293,
-0.01689714565873146,
-0.042251862585544586,
-0.011498697102069855,
0.07932121306657791,
-0.03980456665158272,
0.024149062111973763,
-0.009681218303740025,
-0.00267898035235703,
-0.009051399305462837,
-0.04793822765350342,
-0.014296893030405045,
-0.004998064134269953,
-0.045814838260412216,
-0.0031603421084582806,
-0.00833610538393259,
0.025966539978981018,
-0.024958830326795578,
-0.00923134759068489,
-0.04484311863780022,
0.005717857275158167,
-0.03129300847649574,
-0.07421068102121353,
0.04948578402400017,
-0.003920623566955328,
-0.029745453968644142,
0.059598878026008606,
-0.08076079934835434,
-0.017544958740472794,
0.04189196601510048,
-0.0005274734576232731,
0.044735148549079895,
0.023249320685863495,
-0.025714613497257233,
-0.030087357386946678,
-0.01574547588825226,
-0.04387139528989792,
-0.05283282324671745,
-0.05301276966929436,
-0.09429290890693665,
-0.02805394120514393,
0.007049474865198135,
0.012218490242958069,
-0.014224913902580738,
-0.04804619774222374,
0.00909188762307167,
0.039588626474142075,
-0.03670945391058922,
-0.005515415687114,
-0.0499536506831646,
0.004633668810129166,
-0.0006641217041760683,
-0.04138810932636261,
0.05049349367618561,
0.03327244147658348,
0.008907441049814224,
0.028431832790374756,
-0.007449859753251076,
0.04333155229687691,
-0.03010535053908825,
0.01986629329621792,
0.028791729360818863,
-0.01630331575870514,
-0.008507056161761284,
0.003495495766401291,
-0.031023086979985237,
-0.05146521329879761,
-0.003697937587276101,
-0.03624158725142479,
-0.02814391441643238,
-0.0499536506831646,
-0.01990228332579136,
0.00031603421666659415,
0.03314647823572159,
0.02650638483464718,
-0.02089199796319008,
0.007566826418042183,
0.020838012918829918,
-0.017616938799619675,
-0.003410020377486944,
-0.0047506350092589855,
-0.00275545846670866,
0.006981994025409222,
0.001114554819650948,
-0.01301026251167059,
0.03267861157655716,
-0.021107936277985573,
0.0031266016885638237,
-0.006064258050173521,
0.00274196220561862,
0.0005673994892276824,
-0.01818377524614334,
0.0266143549233675,
-0.010392014868557453,
-0.03154493868350983,
-0.034406114369630814,
0.06147034093737602,
-0.008880448527634144,
0.05664772540330887,
0.03485598787665367,
-0.01788686215877533,
0.008444074541330338,
-0.01740100048482418,
0.05308474972844124,
0.011723631992936134,
-0.021701766178011894,
0.026200473308563232,
-0.04203592240810394,
0.007202431093901396,
-0.004019595216959715,
-0.0778096467256546,
0.013649079017341137,
0.03487398102879524,
0.01566449925303459,
-0.05556803569197655,
-0.0035877192858606577,
0.010859880596399307,
0.030933113768696785,
0.06449346989393234,
0.012191497720777988,
0.051393236964941025,
0.04282769560813904,
0.023321300745010376,
0.0163573008030653,
0.017005113884806633,
-0.024724896997213364,
-0.030357278883457184,
0.003043375676497817,
0.024724896997213364,
-0.001900703995488584,
0.0014924462884664536,
-0.061182424426078796,
0.06690477579832077,
-0.03017733059823513,
0.07672995328903198,
0.022097650915384293,
-0.03221074491739273,
-0.04966573044657707,
-0.02909764088690281,
0.08918237686157227,
0.026974251493811607,
-0.026902271434664726,
-0.014368872158229351,
-0.027532091364264488,
-0.01743699051439762,
-0.018678633496165276,
-0.02504880353808403,
0.02755008451640606,
0.02654237486422062,
0.010392014868557453,
-0.0020469119772315025,
-0.06024669110774994,
-0.019560379907488823,
-0.004174800589680672,
0.017544958740472794,
0.004325507208704948,
0.0691361352801323,
-0.047758281230926514,
-0.03327244147658348,
-0.01835472695529461,
0.021773744374513626,
0.05564001575112343,
0.007296903524547815,
-0.04901791736483574,
0.05610788241028786,
0.03688940405845642,
-0.033452387899160385,
-0.059526897966861725,
0.05060146376490593,
-0.0019546884577721357,
0.11876588314771652,
0.02051410637795925,
-0.016537249088287354,
0.021593796089291573,
-0.03634955734014511,
0.005875312257558107,
0.002259475877508521,
-0.013100236654281616,
-0.00261149974539876,
-0.01409894973039627,
0.008655513636767864,
0.00844857282936573,
-0.00538495322689414,
0.11207180470228195,
0.013406149111688137,
-0.03796909376978874,
0.017374008893966675
] |
729,727 | addfips.addfips | add_state_fips |
Add state FIPS to a dictionary.
:row dict/list A dictionary with state and county names
:state_field str name of state name field. default: state
| def add_state_fips(self, row, state_field=None):
"""
Add state FIPS to a dictionary.
:row dict/list A dictionary with state and county names
:state_field str name of state name field. default: state
"""
if state_field is None:
state_field = self.default_state_field
fips = self.get_state_fips(row[state_field])
try:
row['fips'] = fips
except TypeError:
row.insert(0, fips)
return row
| (self, row, state_field=None) | [
-0.00007318480493267998,
-0.045505259186029434,
0.011184578761458397,
0.02739080600440502,
-0.04265661537647247,
-0.01970311999320984,
-0.025290843099355698,
-0.01083762850612402,
0.04503048583865166,
-0.07910464704036713,
-0.021529173478484154,
0.03162724897265434,
-0.021583953872323036,
0.03431154787540436,
0.018424881622195244,
0.011495008133351803,
-0.025181280449032784,
0.01743881218135357,
-0.04941301420331001,
-0.03177333250641823,
0.021583953872323036,
-0.009212440811097622,
0.034841105341911316,
0.005030777771025896,
0.05584072321653366,
0.007190086413174868,
0.03969840705394745,
0.008637233637273312,
0.04671045392751694,
-0.03354460746049881,
0.03717845305800438,
-0.03124377876520157,
-0.05529290437698364,
0.010335464030504227,
0.021803081035614014,
0.0008782176882959902,
0.016699260100722313,
-0.015612758696079254,
0.03290548920631409,
0.026149088516831398,
-0.04232792556285858,
-0.02989249862730503,
-0.09429740905761719,
-0.0044920919463038445,
0.01915530301630497,
0.024323035031557083,
-0.005706417839974165,
-0.03374547138810158,
0.02680646814405918,
-0.044628750532865524,
-0.0697917714715004,
-0.01255411934107542,
0.07121609151363373,
0.022496981546282768,
0.027500368654727936,
-0.05671722814440727,
-0.0013455733424052596,
-0.027975142002105713,
0.028614262118935585,
0.011896739713847637,
-0.031152475625276566,
-0.03306983411312103,
-0.042400967329740524,
-0.04137837514281273,
-0.012453686445951462,
0.019100520759820938,
-0.0165896974503994,
-0.027756016701459885,
-0.006660530809313059,
-0.018790092319250107,
0.04035578668117523,
0.03527935594320297,
0.011221099644899368,
-0.016772303730249405,
-0.02450564131140709,
0.09670780599117279,
-0.051202546805143356,
0.03695932775735855,
-0.010426766239106655,
-0.050326038151979446,
0.00008923410496208817,
-0.004040143918246031,
-0.04371572658419609,
0.04342355579137802,
-0.026569081470370293,
0.02448737993836403,
0.078885518014431,
0.037872351706027985,
0.01013459824025631,
0.041013166308403015,
0.015037552453577518,
-0.01549406535923481,
-0.010052425786852837,
-0.0208352729678154,
0.06175713613629341,
-0.0031362471636384726,
0.03838364779949188,
0.021182222291827202,
-0.03182811662554741,
0.02476128749549389,
0.0658474937081337,
-0.08582452684640884,
-0.04050187021493912,
-0.020451800897717476,
-0.014754514209926128,
-0.028267310932278633,
0.03405589982867241,
-0.005729243624955416,
0.002476585330441594,
-0.03383677452802658,
-0.006062498316168785,
-0.04192619398236275,
0.013878008350729942,
-0.026934292167425156,
0.0008468324085697532,
0.0018694225000217557,
0.0877966582775116,
0.00803463626652956,
0.009687215089797974,
0.009641563519835472,
0.026660384610295296,
-0.03202898055315018,
0.004592524841427803,
0.0512755885720253,
0.001877411501482129,
0.0011093276552855968,
-0.007769858464598656,
0.04477483779191971,
0.040173180401325226,
-0.016717521473765373,
0.007701381575316191,
-0.05631549656391144,
-0.044957440346479416,
-0.03151768818497658,
0.007806379348039627,
-0.046966101974248886,
0.032503753900527954,
-0.005409684032201767,
0.046929579228162766,
0.0061720614321529865,
0.04736783355474472,
-0.004272965714335442,
-0.01829705759882927,
0.004688392858952284,
0.07917768508195877,
0.0349871888756752,
-0.03159072995185852,
0.08582452684640884,
-0.02424999326467514,
0.005131210666149855,
0.009385916404426098,
0.03779930993914604,
-0.05215209349989891,
0.025035196915268898,
-0.0066057490184903145,
-0.005715548060834408,
0.014553647488355637,
-0.06062498316168785,
0.06011368706822395,
0.00011027652362827212,
0.02905251458287239,
0.010709804482758045,
-0.025583012029528618,
0.006089888978749514,
-0.074429951608181,
0.019118782132864,
-0.047221750020980835,
-0.026258651167154312,
0.012024563737213612,
-0.00724943308159709,
0.009815038181841373,
-0.07096044719219208,
0.004469266626983881,
0.01977616176009178,
-0.03131682053208351,
0.05920065939426422,
-0.01155892014503479,
-0.00929004792124033,
0.007299649529159069,
-0.02483433112502098,
0.031097695231437683,
0.004122316371649504,
-0.006879657506942749,
0.057922422885894775,
-0.00200523529201746,
-0.0005566610489040613,
-0.0008816415211185813,
-0.0007190086180344224,
0.07866639643907547,
0.054525963962078094,
0.03330722078680992,
-0.0024651724379509687,
-0.005044473335146904,
-0.018717050552368164,
-0.012143257074058056,
-0.025455188006162643,
-0.03374547138810158,
-0.00998851377516985,
-0.0377262681722641,
0.03588195517659187,
-0.033928077667951584,
0.02344653010368347,
-0.03319765627384186,
0.013184107840061188,
-0.053722500801086426,
0.007879422046244144,
-0.01889965496957302,
-0.06862309575080872,
-0.028851648792624474,
-0.019575295969843864,
0.06548228859901428,
-0.006021412089467049,
-0.05193296819925308,
0.0033804818522185087,
0.030878568068146706,
-0.10613024234771729,
0.014544517733156681,
0.03434807062149048,
-0.022953495383262634,
-0.0038712339010089636,
0.022113509476184845,
-0.009226135909557343,
0.006162931211292744,
-0.06398492306470871,
0.05017995461821556,
0.0008896305225789547,
-0.02927163988351822,
0.014024092815816402,
-0.012855418026447296,
-0.013156716711819172,
-0.06179365515708923,
0.03131682053208351,
0.012791506014764309,
-0.04473831504583359,
0.031755074858665466,
-0.007952463813126087,
0.04174358770251274,
-0.0507642924785614,
0.021364828571677208,
0.015877537429332733,
0.03571761026978493,
-0.01802315004169941,
-0.018543574959039688,
-0.05222513526678085,
-0.06942655891180038,
0.005537507589906454,
0.011513268575072289,
0.04988778755068779,
-0.05010691285133362,
0.014060613699257374,
-0.0041999234817922115,
0.0022563175298273563,
0.016261007636785507,
-0.011951521039009094,
0.00409720791503787,
-0.05726504325866699,
0.0009775094222277403,
0.04192619398236275,
0.01692751795053482,
-0.025418667122721672,
0.0026820164639502764,
-0.02258828468620777,
-0.006021412089467049,
-0.021182222291827202,
-0.03133508190512657,
0.004560569301247597,
0.020433541387319565,
0.011631961911916733,
0.03071422316133976,
-0.002654625568538904,
0.09137572348117828,
-0.012873678468167782,
0.025455188006162643,
-0.01610579341650009,
0.04086708277463913,
-0.05467204749584198,
0.028687303885817528,
0.006660530809313059,
0.01631578989326954,
0.0014745383523404598,
0.05149471387267113,
0.005656201392412186,
0.0008183002937585115,
0.0838523879647255,
-0.014234088361263275,
-0.03469502180814743,
-0.006747268605977297,
0.07691337913274765,
-0.009048095904290676,
-0.02479780837893486,
0.013311931863427162,
0.061611052602529526,
-0.0053001209162175655,
0.10277029871940613,
0.005195122677832842,
0.021328307688236237,
-0.0015430153580382466,
0.021474391222000122,
0.0028988602571189404,
-0.031974200159311295,
0.01536624226719141,
0.04163402318954468,
0.04152446240186691,
0.030805526301264763,
0.002426368882879615,
-0.05554855242371559,
-0.013028892688453197,
0.012134126387536526,
-0.06248755753040314,
0.01197891216725111,
-0.02284393087029457,
0.010645893402397633,
-0.04923040792346001,
-0.01803228072822094,
0.016288399696350098,
-0.04031926393508911,
-0.07632904499769211,
-0.012134126387536526,
-0.037945397198200226,
-0.009942862205207348,
-0.028340352699160576,
-0.08604364842176437,
-0.017913587391376495,
0.024907372891902924,
-0.031134216114878654,
-0.001185793662443757,
0.06153801083564758,
-0.037908874452114105,
-0.008536800742149353,
0.03642977029085159,
0.011522398330271244,
-0.01255411934107542,
0.047513917088508606,
0.052261658012866974,
-0.039625365287065506,
0.02258828468620777,
0.011394575238227844,
0.0031818985007703304,
-0.0759638324379921,
0.006140105426311493,
-0.055110301822423935,
0.021054398268461227,
-0.030513357371091843,
-0.0041702501475811005,
-0.004222749266773462,
-0.07917768508195877,
-0.07976202666759491,
-0.0022734368685632944,
0.038237564265728,
-0.008518540300428867,
0.024450859054923058,
-0.07720555365085602,
0.029965540394186974,
0.054525963962078094,
0.03462197631597519,
0.04251052811741829,
0.005441640038043261,
-0.0017301858169957995,
0.015448413789272308,
0.026550820097327232,
0.06117279827594757,
-0.08407150954008102,
-0.029782935976982117,
0.019118782132864,
0.01805967092514038,
0.05825111269950867,
0.016553176566958427,
0.017950108274817467,
-0.03431154787540436,
0.0008844947442412376,
0.026349954307079315,
-0.04992430657148361,
0.015192766673862934,
0.00025122505030594766,
0.014197567477822304,
0.00916222482919693,
0.04371572658419609,
0.010189379565417767,
-0.05825111269950867,
-0.04225488379597664,
-0.009089182130992413,
-0.044920921325683594,
-0.039041027426719666,
0.0262403916567564,
0.02792036160826683,
0.011960651725530624,
0.025747356936335564,
0.0006796343368478119,
0.04188967123627663,
-0.0485365055501461,
-0.0625971183180809,
0.07223868370056152,
0.028942951932549477,
0.005108385346829891,
0.02647777833044529,
-0.02505345642566681,
0.007103349082171917,
-0.07369952648878098,
0.0728960633277893,
0.016480134800076485,
0.017539246007800102,
-0.021090921014547348,
0.03915059193968773,
-0.03533414006233215,
-0.0332706980407238,
-0.03511501103639603,
-0.06467882543802261,
0.01030807290226221,
0.017301859334111214,
-0.02792036160826683,
0.07523341476917267,
0.04514004662632942,
-0.023209141567349434,
-0.08195328712463379,
-0.05302859842777252,
0.007139869965612888,
-0.015256678685545921,
0.028121227398514748,
-0.01977616176009178,
-0.015658410266041756,
0.04433658346533775,
-0.0029810327105224133,
-0.1020398810505867,
0.07450298964977264,
-0.022168291732668877,
-0.027463847771286964,
0.009942862205207348,
0.04163402318954468,
0.07074131816625595,
0.042729657143354416,
-0.02813948690891266,
0.019374430179595947,
0.031079433858394623,
0.016425352543592453,
0.015968838706612587,
-0.03272288292646408,
0.0282125286757946,
-0.031718552112579346,
-0.008518540300428867,
0.05803198739886284,
0.03739757835865021,
0.0253821462392807,
-0.0024354991037398577,
-0.0017176317051053047,
0.017320118844509125,
-0.0077926842495799065,
-0.035991519689559937,
-0.01575884409248829,
0.03191941976547241,
-0.0034535240847617388,
0.0670526921749115,
-0.06277972459793091,
-0.004425897728651762,
0.058470238000154495,
0.002627234673127532,
0.05222513526678085,
0.023044796660542488,
-0.04083056002855301,
0.008518540300428867,
0.0036133036483079195,
-0.014599299058318138,
0.02788384072482586,
0.022624805569648743,
0.059638913720846176,
0.025546491146087646,
-0.0547085702419281,
-0.04535917192697525,
0.00018460261344444007,
0.05456248298287392,
0.0037981916684657335,
-0.019301388412714005,
0.03462197631597519,
-0.017119253054261208,
-0.059018056839704514,
0.04601655155420303,
-0.0069663948379457,
-0.01634318009018898,
-0.015530586242675781,
-0.011650222353637218,
-0.012243689969182014,
0.020177893340587616,
0.009869820438325405,
-0.019794421270489693,
-0.05218861624598503,
0.04798869043588638,
-0.01603275164961815,
0.02731776237487793,
0.01112979743629694,
0.014115395024418831,
0.030349012464284897,
0.0019310517236590385,
-0.03783583268523216,
0.007418343331664801,
0.0632910206913948,
-0.009659823961555958,
-0.025254322215914726,
0.016498394310474396,
-0.0026363651268184185,
0.048061732202768326,
-0.0009929166408255696,
-0.012380643747746944,
0.043496597558259964,
-0.06909786909818649,
0.02675168588757515,
-0.00599402142688632,
0.0072722588665783405,
-0.009486349299550056,
0.026404736563563347,
0.01975790038704872,
0.0012542706681415439,
-0.002821252914145589,
-0.03416546434164047,
0.040684476494789124,
-0.03420198708772659,
-0.005199688021093607,
0.006550967693328857,
-0.005642505828291178,
0.01692751795053482,
-0.01862574741244316,
0.05098341777920723,
0.033362001180648804,
0.030056843534111977,
0.0219491645693779,
0.018771832808852196,
-0.021766560152173042,
0.0428757406771183,
0.09444350004196167,
-0.025528229773044586,
-0.005103820003569126,
-0.007952463813126087,
-0.04766000062227249,
-0.024323035031557083,
0.019812682643532753,
0.0038735163398087025,
-0.00605793297290802,
0.026678644120693207,
0.02934468351304531,
-0.0104176364839077,
-0.020415280014276505,
-0.09853385388851166,
0.03270462155342102,
0.025163019075989723,
-0.008240067400038242,
-0.005852502305060625,
0.02592996321618557,
-0.030257709324359894,
-0.03179159387946129,
-0.09546608477830887,
0.016397962346673012,
-0.05437988042831421,
-0.05547551065683365,
0.005199688021093607,
0.025820398703217506,
-0.04532265290617943,
0.06931699812412262,
0.011942391283810139,
-0.007993550039827824,
0.03347156569361687,
-0.01886313408613205,
-0.015996230766177177,
-0.021821342408657074,
-0.03303331136703491,
0.04897475987672806,
-0.007957029156386852,
-0.035662829875946045,
0.016151444986462593,
0.006920743267983198,
0.020707448944449425,
0.017575766891241074,
-0.010435896925628185,
0.06478838622570038,
0.005140341352671385,
-0.03456719592213631,
0.029180338606238365,
-0.049193885177373886,
-0.10759108513593674,
-0.03659411519765854,
0.0022049597464501858,
0.05346685275435448,
-0.01354931853711605,
-0.0773516371846199,
0.014298000372946262,
-0.017986629158258438,
-0.04280269891023636,
-0.022369157522916794,
0.08472888916730881,
-0.03991753235459328,
0.027737755328416824,
-0.008276588283479214,
0.013868877664208412,
-0.02337348647415638,
-0.060771066695451736,
-0.004738609306514263,
0.0025564751122146845,
-0.04685653746128082,
-0.02198568731546402,
-0.0026203871238976717,
0.031134216114878654,
-0.05069125071167946,
0.007646599784493446,
-0.048317380249500275,
0.007537036668509245,
-0.015338851138949394,
-0.08326804637908936,
0.048901718109846115,
-0.012627161107957363,
-0.01941095106303692,
0.07092392444610596,
-0.07669425755739212,
-0.007527906447649002,
0.036794982850551605,
-0.007783554028719664,
0.0343845896422863,
0.023172620683908463,
-0.02028745599091053,
-0.03940623998641968,
-0.0035060232039541006,
-0.03432980924844742,
-0.027208199724555016,
-0.05047212541103363,
-0.08136895298957825,
-0.008285718970000744,
-0.0025359319988638163,
0.014663211070001125,
-0.0058068507350981236,
-0.06113627925515175,
0.02138308808207512,
0.024596942588686943,
-0.028596000745892525,
-0.02288045361638069,
-0.05328424647450447,
0.019063999876379967,
-0.0000651601585559547,
-0.05532942712306976,
0.02905251458287239,
0.025564752519130707,
0.007007481064647436,
0.03212028369307518,
-0.0045354608446359634,
0.0433870367705822,
-0.02253350242972374,
0.017822284251451492,
0.016233617439866066,
-0.018388360738754272,
0.0015555694699287415,
0.016169706359505653,
-0.029381204396486282,
-0.05430683493614197,
-0.005797720514237881,
-0.025783877819776535,
-0.018479663878679276,
-0.05185992643237114,
-0.040720995515584946,
-0.002506258664652705,
0.04305834695696831,
0.008358760736882687,
-0.022716108709573746,
0.020652666687965393,
0.013850617222487926,
-0.016261007636785507,
-0.007591817993670702,
-0.008290283381938934,
-0.02224133349955082,
0.012298471294343472,
-0.00373427988961339,
-0.008249197155237198,
0.031079433858394623,
0.004530895501375198,
-0.006614879705011845,
0.015165375545620918,
-0.013467146083712578,
-0.020689187571406364,
-0.00802550558000803,
0.024962153285741806,
0.008121374063193798,
-0.02141960896551609,
-0.025418667122721672,
0.06004064530134201,
0.004183945711702108,
0.059018056839704514,
0.016781432554125786,
-0.0038438430055975914,
0.014261479489505291,
-0.007660295348614454,
0.04309486597776413,
0.01715577393770218,
-0.03261331841349602,
0.021547432988882065,
-0.03418372571468353,
0.01183282770216465,
-0.0019253453938290477,
-0.07523341476917267,
0.02960032969713211,
0.02985597774386406,
0.004231879487633705,
-0.04707566276192665,
0.0017096428200602531,
0.0022403395269066095,
0.03476806357502937,
0.06592053920030594,
0.018169233575463295,
0.048573028296232224,
0.03900450840592384,
0.01478190440684557,
0.02251524291932583,
-0.010709804482758045,
-0.008235502056777477,
-0.02456042170524597,
-0.0029102731496095657,
0.020926576107740402,
0.0005578023265115917,
0.00903896614909172,
-0.0658474937081337,
0.05974847823381424,
-0.017566636204719543,
0.08188024908304214,
0.018808353692293167,
-0.04316790774464607,
-0.056753747165203094,
-0.025016935542225838,
0.06646835803985596,
0.021200483664870262,
-0.017612287774682045,
-0.002127352636307478,
-0.03867581859230995,
-0.01939268968999386,
-0.017840543761849403,
-0.015083203092217445,
0.013074544258415699,
0.04024622216820717,
0.005528377369046211,
0.01521102711558342,
-0.07873943448066711,
-0.01383235678076744,
0.001327312784269452,
0.026349954307079315,
0.015010161325335503,
0.09342090785503387,
-0.04933997243642807,
-0.014115395024418831,
0.012161517515778542,
0.020214414224028587,
0.05613289028406143,
-0.02592996321618557,
-0.019063999876379967,
0.05554855242371559,
0.041597504168748856,
-0.02932642214000225,
-0.08450976759195328,
0.0672352984547615,
0.003252658061683178,
0.11562571674585342,
0.02056136541068554,
0.006929873954504728,
0.010782847180962563,
-0.058178070932626724,
0.004779695533216,
0.014279739931225777,
-0.0071992166340351105,
-0.00669705169275403,
-0.028924690559506416,
-0.01942921057343483,
0.014197567477822304,
-0.004807086195796728,
0.10430418699979782,
0.009248961694538593,
-0.0428757406771183,
0.012791506014764309
] |
729,728 | addfips.addfips | get_county_fips |
Get a county's FIPS code.
:county str County name
:state str Name, postal abbreviation or FIPS code for a state
| def get_county_fips(self, county, state):
"""
Get a county's FIPS code.
:county str County name
:state str Name, postal abbreviation or FIPS code for a state
"""
state_fips = self.get_state_fips(state)
counties = self._counties.get(state_fips, {})
try:
name = self._delete_diacretics(county.lower())
return state_fips + counties.get(name)
except TypeError:
return None
| (self, county, state) | [
-0.02195850759744644,
-0.05754394084215164,
0.030181651934981346,
0.004506915807723999,
-0.0620260052382946,
-0.05389322713017464,
-0.007992716506123543,
-0.03415767848491669,
0.10062960535287857,
-0.1071358323097229,
-0.017169203609228134,
0.0435917042195797,
-0.04641106724739075,
-0.002570862416177988,
0.03565772622823715,
0.020187368616461754,
0.003440618049353361,
0.03666980564594269,
-0.033886585384607315,
-0.03656136617064476,
0.002692854031920433,
0.05515832453966141,
0.05143531784415245,
-0.0074324579909443855,
-0.006298386957496405,
-0.009271370247006416,
0.06029101461172104,
-0.026404427364468575,
0.0193560179322958,
-0.03694089874625206,
0.01739511452615261,
0.018687322735786438,
-0.040700048208236694,
0.04745929315686226,
0.04474836587905884,
0.04026630148291588,
0.019301800057291985,
0.034555282443761826,
0.03856745362281799,
0.027940619736909866,
-0.07684574276208878,
-0.04879668354988098,
-0.04756772890686989,
-0.01205458864569664,
-0.0003809416957665235,
0.021633196622133255,
-0.03318174555897713,
-0.00880599394440651,
-0.018687322735786438,
0.006009221076965332,
-0.04406159743666649,
-0.0114310747012496,
0.008476165123283863,
-0.009696082212030888,
0.043121811002492905,
-0.05823070928454399,
-0.018226465210318565,
-0.0022274781949818134,
0.05812227353453636,
0.06314652413129807,
-0.053423333913087845,
-0.04854366555809975,
0.01730475015938282,
-0.05573665723204613,
-0.003605532692745328,
0.002039972459897399,
-0.005607100203633308,
-0.021036792546510696,
-0.02597067877650261,
-0.010599724017083645,
0.04482065886259079,
0.01690714806318283,
-0.021271739155054092,
-0.0032350393012166023,
0.03957953304052353,
0.048760537058115005,
-0.00067716691410169,
-0.0008132780785672367,
0.011937114410102367,
-0.02770567312836647,
-0.013193177059292793,
-0.017042692750692368,
-0.03347091004252434,
0.018036700785160065,
0.02801291085779667,
0.060037992894649506,
0.11920849233865738,
-0.006393269170075655,
-0.029892487451434135,
0.06589359790086746,
-0.02237418293952942,
-0.0019676811061799526,
0.003851775312796235,
0.0076177045702934265,
0.04941115900874138,
-0.016545690596103668,
-0.0022319965064525604,
0.022338038310408592,
0.014593822881579399,
-0.002878100611269474,
0.049338869750499725,
-0.052049797028303146,
-0.014566713944077492,
-0.008245736360549927,
-0.00578782893717289,
0.039904844015836716,
0.03229617699980736,
0.026006825268268585,
0.013654034584760666,
-0.039434950798749924,
-0.03838672488927841,
-0.0888461098074913,
0.005986629985272884,
-0.03610954433679581,
-0.01347330678254366,
-0.01700654812157154,
0.05154375731945038,
0.03488059341907501,
-0.014738406054675579,
-0.027850255370140076,
-0.039796408265829086,
0.03791683167219162,
-0.0408446304500103,
0.028139421716332436,
0.039145782589912415,
0.016193270683288574,
-0.014693223871290684,
0.036019179970026016,
0.05978497490286827,
0.025808023288846016,
0.03574809059500694,
-0.00953342579305172,
-0.024181468412280083,
-0.007278838660567999,
0.0043465192429721355,
-0.01375343557447195,
0.01797344535589218,
-0.020964501425623894,
0.01915721595287323,
0.024723652750253677,
0.03034430742263794,
-0.00610410375520587,
0.010726233944296837,
0.006641770713031292,
0.04666408896446228,
0.07771323621273041,
0.006560442969202995,
-0.0023054173216223717,
-0.050712406635284424,
-0.002550530480220914,
0.0050468421541154385,
0.04814606159925461,
-0.040013279765844345,
0.004825450014322996,
-0.009406915865838528,
-0.04384472221136093,
0.006659843493252993,
-0.019229507073760033,
0.022229600697755814,
-0.0174131877720356,
0.013536561280488968,
0.05132688209414482,
-0.049049705266952515,
-0.05830300226807594,
-0.047603875398635864,
-0.013446196913719177,
-0.029711758717894554,
-0.019121071323752403,
0.07352034002542496,
0.005679391790181398,
-0.06715869158506393,
-0.021344030275940895,
-0.06039945036172867,
0.04229046031832695,
0.01152143906801939,
0.03072383813560009,
-0.027199633419513702,
-0.016184233129024506,
0.008349655196070671,
-0.023693500086665154,
0.020693408325314522,
-0.02526583895087242,
-0.05277270823717117,
0.05765237659215927,
0.01884997822344303,
0.05909820646047592,
0.022717567160725594,
0.0014943984569981694,
0.0759059488773346,
0.016175197437405586,
0.011169019155204296,
0.007843615487217903,
-0.03226003050804138,
0.015623975545167923,
0.026802031323313713,
-0.05053167790174484,
0.006036330480128527,
0.0076222228817641735,
-0.06365256011486053,
-0.0010103849926963449,
-0.013780544511973858,
0.04413389042019844,
-0.019681328907608986,
0.019301800057291985,
-0.05009792745113373,
0.04004942625761032,
-0.015542647801339626,
-0.02703697793185711,
-0.06896597892045975,
0.010247303172945976,
0.07424324750900269,
-0.002966205822303891,
-0.042218167334795,
0.0047396039590239525,
0.03936265781521797,
-0.07525532692670822,
0.04753158614039421,
0.04178442060947418,
0.018452376127243042,
0.03341669216752052,
0.004210973158478737,
-0.026585156098008156,
0.08689424395561218,
0.014449240639805794,
0.006415860261768103,
0.020205441862344742,
-0.016355926170945168,
0.08364113420248032,
0.018163209781050682,
-0.06990576535463333,
-0.03226003050804138,
-0.017657170072197914,
0.0761951208114624,
-0.0288804080337286,
0.011530475690960884,
-0.04543513432145119,
-0.005439926404505968,
-0.05035094916820526,
0.02877197042107582,
0.009542462415993214,
-0.005846565589308739,
-0.04782075062394142,
0.017729461193084717,
0.0010979253565892577,
-0.03578423336148262,
0.017286676913499832,
0.0003303942212369293,
0.04561586305499077,
-0.03218773752450943,
0.0046763489954173565,
0.011232273653149605,
-0.0017361227655783296,
0.003752374555915594,
-0.026205627247691154,
0.02615140751004219,
-0.06950816512107849,
-0.046917106956243515,
-0.01380765438079834,
0.015578793361783028,
0.017160167917609215,
-0.011801568791270256,
-0.005313416477292776,
0.041278380900621414,
0.009931028820574284,
-0.0655321404337883,
-0.03025394305586815,
0.006619179621338844,
0.00541733531281352,
-0.027109269052743912,
-0.012687137350440025,
0.08826778084039688,
-0.015696266666054726,
0.017051730304956436,
-0.016084833070635796,
-0.020078931003808975,
-0.07250826060771942,
0.05024250969290733,
0.036615584045648575,
0.027777964249253273,
-0.010672015137970448,
0.027832182124257088,
0.02897077240049839,
-0.0047983406111598015,
0.05494145303964615,
-0.015389028005301952,
-0.043230246752500534,
0.026567082852125168,
-0.009203596971929073,
0.013446196913719177,
0.0174131877720356,
0.01487395167350769,
0.00787072442471981,
-0.0016242970013990998,
0.05541134625673294,
0.006781835574656725,
0.0042968192137777805,
-0.0036394193302839994,
-0.020458461716771126,
0.04290493577718735,
-0.02215730957686901,
-0.04033859074115753,
0.04178442060947418,
0.004400738049298525,
-0.006546888500452042,
0.024560997262597084,
-0.02848280593752861,
0.012090734206140041,
-0.020548826083540916,
-0.032729923725128174,
0.04051931947469711,
-0.04091692343354225,
-0.05898977071046829,
-0.03226003050804138,
0.017937298864126205,
-0.026512864977121353,
-0.05786925181746483,
-0.08501466363668442,
-0.005860120058059692,
-0.010807561688125134,
0.028428586199879646,
-0.03638063743710518,
-0.050314802676439285,
0.019229507073760033,
0.013626925647258759,
-0.017069803550839424,
-0.0029165055602788925,
-0.03648907691240311,
-0.002288474002853036,
0.015813739970326424,
0.026567082852125168,
-0.019482526928186417,
-0.03936265781521797,
0.0197355467826128,
-0.0016299447743222117,
-0.018651176244020462,
0.0036461965646594763,
0.03249497711658478,
-0.007021300494670868,
-0.016482435166835785,
-0.012650991789996624,
-0.03197086602449417,
0.012416045181453228,
-0.030705764889717102,
0.04279650002717972,
0.007111664861440659,
-0.04782075062394142,
-0.06856837868690491,
-0.006795390043407679,
0.05678488314151764,
-0.03435647860169411,
0.022211527451872826,
-0.06300193816423416,
0.03957953304052353,
0.019500600174069405,
0.04290493577718735,
0.062387462705373764,
0.009650900028645992,
-0.009361734613776207,
0.01895841583609581,
0.019193362444639206,
0.02828400395810604,
-0.0745324194431305,
-0.01721438579261303,
-0.0034564316738396883,
0.02410917729139328,
0.017964409664273262,
0.008340618573129177,
0.011557584628462791,
-0.04362785071134567,
-0.02186814323067665,
-0.04026630148291588,
-0.01828972063958645,
-0.04218202084302902,
-0.007771323900669813,
-0.0228621494024992,
-0.009126787073910236,
0.06242360919713974,
0.000019361241356818937,
-0.027308069169521332,
0.01690714806318283,
-0.049736469984054565,
-0.0400855727493763,
-0.0635441243648529,
0.0859544575214386,
-0.02148861438035965,
0.00044786770013161004,
-0.02945873886346817,
-0.00278321816585958,
0.054110098630189896,
0.009072568267583847,
-0.03142867982387543,
0.010527432896196842,
0.05006178468465805,
-0.020476534962654114,
0.02372964657843113,
-0.017675243318080902,
0.03511554002761841,
-0.07684574276208878,
0.04229046031832695,
0.057977691292762756,
0.01884997822344303,
-0.021253665909171104,
0.04037473723292351,
0.03133831545710564,
-0.04163983836770058,
-0.011069618165493011,
-0.02051267959177494,
-0.02148861438035965,
-0.025536932051181793,
-0.03791683167219162,
0.04756772890686989,
0.008191517554223537,
-0.0239284485578537,
-0.042326606810092926,
-0.026910467073321342,
0.004244859796017408,
-0.02157897874712944,
0.021127156913280487,
-0.013771508820354939,
0.0036755651235580444,
0.030687691643834114,
-0.03957953304052353,
-0.04702554643154144,
0.04521825909614563,
0.004369110334664583,
-0.0352059043943882,
0.006781835574656725,
0.028898481279611588,
0.07525532692670822,
0.07221908867359161,
-0.052845001220703125,
-0.00032869988353922963,
-0.015136008150875568,
-0.0006370678311213851,
0.029187645763158798,
-0.006262240931391716,
0.005259198136627674,
0.012569664046168327,
-0.006379714701324701,
0.02588031440973282,
0.019807839766144753,
0.07059253752231598,
-0.0355854332447052,
0.04377243295311928,
0.004262932576239109,
-0.038856618106365204,
-0.03413960710167885,
0.015289627946913242,
0.01624748855829239,
-0.032729923725128174,
0.05064011365175247,
-0.0745324194431305,
-0.049338869750499725,
0.01719631254673004,
0.03361549228429794,
0.04706168919801712,
0.004199677612632513,
0.00541733531281352,
-0.003167266258969903,
-0.02051267959177494,
-0.03726620972156525,
0.06039945036172867,
0.08826778084039688,
0.044097743928432465,
-0.011259382590651512,
-0.0787976086139679,
-0.01906685158610344,
0.024741725996136665,
0.06694182008504868,
-0.0034428772050887346,
0.019374091178178787,
0.03401309624314308,
-0.028175566345453262,
-0.04319410026073456,
0.0457242988049984,
0.0035919782239943743,
-0.052845001220703125,
0.006415860261768103,
0.047206275165081024,
-0.034266114234924316,
0.03666980564594269,
0.030579255893826485,
-0.028753897175192833,
-0.057327065616846085,
0.022916369140148163,
-0.06795389950275421,
0.016871001571416855,
0.043989308178424835,
0.0014943984569981694,
-0.017666207626461983,
0.0271273422986269,
0.040880776941776276,
-0.01769331656396389,
-0.030994931235909462,
0.011078654788434505,
0.024940527975559235,
0.014467312954366207,
-0.0416036918759346,
0.012361826375126839,
-0.0036597512662410736,
0.003427063347771764,
0.009443062357604504,
-0.012687137350440025,
-0.006691471207886934,
-0.026765884831547737,
0.00103241135366261,
-0.02663937397301197,
0.04218202084302902,
0.06611046940088272,
0.004003135487437248,
-0.013934164308011532,
-0.012741356156766415,
0.05768852308392525,
-0.02868160605430603,
0.007861687801778316,
0.014521531760692596,
0.013527524657547474,
-0.008060488849878311,
-0.02195850759744644,
0.043989308178424835,
0.025229692459106445,
0.03957953304052353,
-0.01245219074189663,
0.049447305500507355,
0.009068050421774387,
0.022988660261034966,
0.039434950798749924,
-0.0074821580201387405,
-0.02468750812113285,
0.008846658281981945,
-0.06639963388442993,
-0.03332632780075073,
0.017241494730114937,
0.03043467178940773,
-0.0076086679473519325,
-0.05924278870224953,
-0.032729923725128174,
-0.0437362864613533,
0.001850207569077611,
-0.062387462705373764,
0.030994931235909462,
0.009248779155313969,
0.018615031614899635,
0.017476441338658333,
0.02850087732076645,
-0.020566899329423904,
-0.03507939353585243,
-0.05291729420423508,
0.03820599615573883,
0.006890272255986929,
-0.01371729001402855,
-0.020964501425623894,
0.03654329478740692,
-0.06986962258815765,
0.10995519161224365,
0.003061088267713785,
-0.0112774558365345,
0.07023108005523682,
-0.07218294590711594,
0.005480590276420116,
-0.042326606810092926,
-0.041169941425323486,
0.072688989341259,
-0.028030984103679657,
-0.05418239161372185,
0.00840839184820652,
-0.006076994352042675,
-0.011214200407266617,
0.055375199764966965,
-0.028265930712223053,
0.02644057385623455,
0.02963946759700775,
0.003451913595199585,
0.05291729420423508,
-0.07019492983818054,
-0.03842287138104439,
-0.030759982764720917,
-0.052953436970710754,
0.07554449886083603,
0.017521623522043228,
-0.023006733506917953,
0.00722010200843215,
0.04135067015886307,
-0.021542832255363464,
0.027163486927747726,
0.07872531563043594,
-0.03357934579253197,
-0.028356295078992844,
0.016654128208756447,
-0.039904844015836716,
-0.00012481558951549232,
-0.053604062646627426,
0.014259475283324718,
-0.019681328907608986,
-0.04178442060947418,
0.030976857990026474,
0.001760972896590829,
0.0179824810475111,
-0.01712402142584324,
-0.010238267481327057,
0.005354080814868212,
0.044206179678440094,
0.0017643616301938891,
-0.024181468412280083,
0.08768944442272186,
0.0444953478872776,
-0.02546463906764984,
0.0243079774081707,
-0.05736321210861206,
-0.05009792745113373,
0.02548271231353283,
-0.0011702168267220259,
0.03827828913927078,
0.009985247626900673,
-0.026097189635038376,
-0.013410051353275776,
0.03625413030385971,
-0.04362785071134567,
-0.1339559406042099,
-0.0435917042195797,
-0.06506224721670151,
-0.025301983579993248,
-0.012172061949968338,
0.01317510474473238,
-0.007043891586363316,
-0.03813370317220688,
0.024235686287283897,
0.022572984918951988,
-0.03244075924158096,
0.012795574963092804,
-0.008923467248678207,
0.019229507073760033,
-0.007021300494670868,
-0.02927801012992859,
0.016590872779488564,
0.05660415440797806,
0.03918192908167839,
0.02868160605430603,
-0.07952052354812622,
0.07232753187417984,
-0.057037901133298874,
0.052736565470695496,
0.013147995807230473,
-0.005869156681001186,
-0.02897077240049839,
-0.0313202403485775,
-0.032025083899497986,
-0.034482989460229874,
0.02042231522500515,
-0.03278414160013199,
-0.05685717239975929,
-0.03965182229876518,
0.025500785559415817,
0.014801660552620888,
0.03014550730586052,
0.02237418293952942,
0.026802031323313713,
-0.006108622066676617,
-0.008534901775419712,
-0.040880776941776276,
-0.018542740494012833,
-0.0096780089661479,
-0.036398712545633316,
0.03160940855741501,
-0.004644721280783415,
-0.04239889606833458,
-0.019428309053182602,
-0.05280885472893715,
-0.0008240088354796171,
-0.04207358509302139,
0.03412153199315071,
0.05331489443778992,
-0.01613001525402069,
-0.005385708063840866,
-0.07915906608104706,
-0.01680774614214897,
-0.020368097350001335,
0.06224288046360016,
0.02701890468597412,
0.03744693845510483,
0.07691802829504013,
-0.031952790915966034,
0.03247690573334694,
-0.013925127685070038,
0.05432697385549545,
0.036796312779188156,
0.0065152607858181,
-0.005150760989636183,
-0.03726620972156525,
0.0015768557786941528,
-0.02976597659289837,
-0.0733034610748291,
0.014449240639805794,
0.04666408896446228,
0.018723469227552414,
-0.019121071323752403,
-0.012036515399813652,
0.04941115900874138,
0.028699679300189018,
0.03502517566084862,
-0.008977686055004597,
0.05219437927007675,
0.05017022043466568,
-0.025103183463215828,
0.015126971527934074,
0.020946428179740906,
-0.015181190334260464,
-0.020006639882922173,
-0.027561089023947716,
0.01838912069797516,
0.00045323307858780026,
-0.03676017001271248,
-0.03769995644688606,
0.06144767627120018,
-0.011042509227991104,
0.035549286752939224,
-0.018596958369016647,
-0.009542462415993214,
-0.03668787702918053,
0.001528284978121519,
0.05082084238529205,
0.015443246811628342,
-0.013184141367673874,
0.012885939329862595,
-0.01254255510866642,
0.013690181076526642,
0.002649931004270911,
-0.03827828913927078,
-0.024669434875249863,
0.022103089839220047,
-0.02342240884900093,
-0.006637252867221832,
-0.0443507619202137,
-0.028952699154615402,
-0.029512956738471985,
0.013816691003739834,
0.01926565356552601,
0.03827828913927078,
-0.053242605179548264,
-0.03347091004252434,
-0.037085480988025665,
0.031175659969449043,
0.030651547014713287,
0.038856618106365204,
-0.03665173053741455,
0.032892581075429916,
0.022880222648382187,
-0.037880685180425644,
-0.04033859074115753,
-0.005340525880455971,
0.007111664861440659,
0.1184132844209671,
0.051688339561223984,
-0.03665173053741455,
-0.0009290572488680482,
-0.04344712197780609,
-0.01787404529750347,
0.013852836564183235,
-0.015352882444858551,
0.027958692982792854,
-0.03656136617064476,
0.015578793361783028,
-0.003831443376839161,
0.03516975790262222,
0.05873674899339676,
0.01526251807808876,
-0.05208594352006912,
0.01516311801970005
] |
729,729 | addfips.addfips | get_state_fips | Get FIPS code from a state name or postal code | def get_state_fips(self, state):
'''Get FIPS code from a state name or postal code'''
if state is None:
return None
# Check if we already have a FIPS code
if state in self._state_fips:
return state
return self._states.get(state.lower())
| (self, state) | [
0.021182727068662643,
-0.048872094601392746,
0.04453433305025101,
0.025574708357453346,
-0.05418584868311882,
-0.06394580751657486,
0.0217610951513052,
-0.044389743357896805,
0.08783963322639465,
-0.10685348510742188,
-0.042690787464380264,
0.032551273703575134,
-0.04070264473557472,
0.01802881434559822,
0.058559756726026535,
0.05581251159310341,
-0.007270266301929951,
0.03376223146915436,
-0.038027696311473846,
-0.029840173199772835,
0.008851741440594196,
0.04019657522439957,
0.03312963992357254,
0.00023764485376887023,
0.020405545830726624,
0.02508671022951603,
0.0603671595454216,
-0.022321389988064766,
0.005331829655915499,
-0.028448475524783134,
0.03251512348651886,
0.006904267705976963,
-0.01219091285020113,
0.027906255796551704,
0.026207299903035164,
0.03631066530942917,
0.013989275321364403,
0.009086702950298786,
0.021797243505716324,
0.00018892977095674723,
-0.07728441804647446,
-0.02662300132215023,
-0.04507655277848244,
0.013844683766365051,
-0.016835929825901985,
0.011675803922116756,
-0.025972336530685425,
-0.04135331138968468,
-0.00739226583391428,
0.04128101468086243,
-0.0203693974763155,
-0.02338775433599949,
0.01447727344930172,
-0.019863326102495193,
0.04388367012143135,
-0.025574708357453346,
0.0003306977159809321,
0.0002872071345336735,
0.05790909379720688,
0.03669022023677826,
-0.04030501842498779,
-0.026586852967739105,
0.018778884783387184,
-0.07417569309473038,
0.008811074309051037,
0.02346005104482174,
0.030147431418299675,
-0.028267735615372658,
-0.05588480457663536,
0.02624344639480114,
0.044172853231430054,
0.012163801118731499,
-0.05349903926253319,
-0.007044341415166855,
0.04916127771139145,
0.07280206680297852,
-0.02067665569484234,
0.0164834875613451,
-0.00867551937699318,
-0.01959221437573433,
0.011702914722263813,
0.0020423620007932186,
-0.022953979671001434,
0.005449310876429081,
-0.0061180489137768745,
-0.00197458453476429,
0.09384020417928696,
0.023080497980117798,
-0.012588540092110634,
0.02964135818183422,
-0.0017836778424680233,
0.0011426156852394342,
-0.0028647289145737886,
0.022339463233947754,
0.03576844558119774,
-0.002955098869279027,
0.030635429546236992,
0.030743872746825218,
0.027273664250969887,
-0.01017566118389368,
0.03744932636618614,
-0.01373623963445425,
-0.04326915368437767,
-0.018010741099715233,
0.008115225471556187,
0.034955114126205444,
0.019248809665441513,
0.027598997578024864,
-0.0009511442040093243,
-0.06484951078891754,
-0.03940131887793541,
-0.10670889168977737,
-0.01695341058075428,
-0.024038419127464294,
0.009660552255809307,
0.009235813282430172,
0.07056089490652084,
0.04955890774726868,
-0.03354534134268761,
-0.020333249121904373,
-0.03444904088973999,
0.028846103698015213,
-0.05722228065133095,
0.022231020033359528,
0.03578651696443558,
0.008892407640814781,
-0.000694154528900981,
-0.0042496491223573685,
0.05798139050602913,
0.001341994502581656,
0.026731444522738457,
0.005372496321797371,
-0.058632053434848785,
0.0040169465355575085,
-0.021471912041306496,
-0.017369113862514496,
0.009086702950298786,
0.010437734425067902,
0.009741885587573051,
0.023026274517178535,
0.011946913786232471,
0.002249083248898387,
-0.0011883655097335577,
-0.021399615332484245,
0.04182323440909386,
0.07132000476121902,
-0.00028395946719683707,
0.02577352337539196,
-0.004493648186326027,
0.021616503596305847,
0.04652247577905655,
0.02275516465306282,
-0.019321104511618614,
0.007771819829940796,
-0.00805648509413004,
-0.026821814477443695,
0.027598997578024864,
-0.027056777849793434,
0.02477945387363434,
0.0053182742558419704,
0.018173405900597572,
0.02407456748187542,
-0.06062019243836403,
-0.05780065059661865,
-0.045257292687892914,
-0.026026558130979538,
-0.034033339470624924,
-0.019953696057200432,
0.05378822237253189,
0.004240612033754587,
-0.07012711465358734,
-0.027291739359498024,
-0.07952559739351273,
0.035117778927087784,
-0.01214572787284851,
0.03631066530942917,
-0.007482635788619518,
-0.002916691591963172,
0.0006348492461256683,
-0.03605762869119644,
-0.002785655204206705,
0.0190499946475029,
-0.06701838970184326,
0.050028830766677856,
0.003885909914970398,
0.09145443886518478,
0.00816492922604084,
0.023423902690410614,
0.06387351453304291,
0.01634793169796467,
0.013338611461222172,
0.00462242541834712,
-0.020152509212493896,
-0.0025642486289143562,
-0.03222594037652016,
-0.04561877250671387,
0.0031990979332476854,
-0.006601528264582157,
-0.033473048359155655,
-0.017125114798545837,
0.00886077806353569,
0.035190075635910034,
-0.03229823708534241,
0.0599333830177784,
-0.0822005495429039,
0.03322001174092293,
-0.009877440519630909,
-0.019393401220440865,
-0.024652935564517975,
0.00901440717279911,
0.017242595553398132,
-0.03763006627559662,
-0.04193167760968208,
0.021634576842188835,
0.02685796283185482,
-0.08530927449464798,
0.03383452817797661,
0.04561877250671387,
0.024707157164812088,
0.057149987667798996,
0.02515900693833828,
-0.039365172386169434,
0.06416269391775131,
-0.006294270046055317,
0.031936757266521454,
0.025737375020980835,
-0.03188253566622734,
0.049342017620801926,
-0.011160694994032383,
-0.03885909914970398,
-0.027544774115085602,
-0.03056313283741474,
0.061270859092473984,
-0.02190568670630455,
0.035190075635910034,
-0.06792209297418594,
0.010302179493010044,
-0.07779049128293991,
-0.017369113862514496,
0.016917264088988304,
-0.004473314620554447,
-0.05349903926253319,
0.025900041684508324,
0.005729457829147577,
-0.029930543154478073,
-0.005146571435034275,
0.007559450343251228,
0.0358949638903141,
-0.03269586339592934,
-0.009353294968605042,
-0.005092349369078875,
-0.01478453166782856,
-0.004157019779086113,
-0.03622029349207878,
0.029587136581540108,
-0.08928555995225906,
-0.027906255796551704,
0.028574993833899498,
0.04760691523551941,
0.025791596621274948,
-0.02562893182039261,
-0.027544774115085602,
0.02091161720454693,
-0.013067501597106457,
-0.01570630632340908,
-0.02485174871981144,
0.007356117945164442,
0.018941551446914673,
0.00361931836232543,
-0.014838753268122673,
0.10555215924978256,
-0.014395940117537975,
-0.011739062145352364,
0.010428697802126408,
0.029388323426246643,
-0.09297265112400055,
0.036111850291490555,
0.03918442875146866,
0.025755448266863823,
-0.03383452817797661,
0.050498753786087036,
0.019718732684850693,
-0.0149833457544446,
0.07410340011119843,
-0.01764022372663021,
-0.027580922469496727,
0.02268286980688572,
-0.05017342045903206,
0.05335444584488869,
0.03168372064828873,
0.018363183364272118,
0.010735956020653248,
-0.022429833188652992,
0.026261521503329277,
-0.004654054995626211,
0.003587688785046339,
0.012254172004759312,
-0.011350471526384354,
0.02671337127685547,
-0.05552332475781441,
-0.019791029393672943,
0.01826377585530281,
0.0005230163806118071,
0.019176512956619263,
0.0022366573102772236,
0.016366006806492805,
-0.01358261052519083,
-0.007957078516483307,
-0.033870674669742584,
0.027364034205675125,
-0.041606348007917404,
-0.0317198671400547,
-0.049811940640211105,
-0.019303031265735626,
0.040521904826164246,
-0.04637788236141205,
-0.045871809124946594,
0.010862473398447037,
-0.010943806730210781,
0.03002091310918331,
-0.04236545413732529,
-0.026062706485390663,
-0.010419660247862339,
0.02685796283185482,
-0.024508344009518623,
0.009362331591546535,
-0.03269586339592934,
-0.017929406836628914,
0.027815885841846466,
0.0414617545902729,
-0.04449818655848503,
-0.05234230309724808,
0.06058404594659805,
0.013826609589159489,
-0.012787354178726673,
0.01478453166782856,
0.036816734820604324,
0.005133016034960747,
-0.002406101208180189,
-0.04319685697555542,
0.02152613364160061,
0.005214348901063204,
-0.020062139257788658,
0.041208717972040176,
0.012290319427847862,
-0.02306242287158966,
-0.07352502644062042,
-0.01572437956929207,
0.027761662378907204,
-0.0819113627076149,
-0.029316026717424393,
-0.07417569309473038,
0.022122574970126152,
0.03663599491119385,
0.0150917898863554,
0.031846385449171066,
0.014404977671802044,
0.01381757203489542,
0.020550137385725975,
0.031539127230644226,
0.05555947497487068,
-0.07952559739351273,
-0.03777465969324112,
-0.00636656628921628,
0.007672412786632776,
0.02662300132215023,
-0.003928835503757,
0.0016244007274508476,
0.011431804858148098,
-0.027689367532730103,
-0.00238802726380527,
-0.04829372465610504,
-0.05490880832076073,
-0.017513705417513847,
-0.02546626515686512,
-0.019556067883968353,
0.03537081554532051,
-0.0027811366599053144,
-0.0103292902931571,
0.031304165720939636,
-0.027671292424201965,
-0.034322526305913925,
-0.03929287567734718,
0.08451402187347412,
-0.005801753606647253,
-0.014504384249448776,
-0.0023835087195038795,
0.000028823087632190436,
0.05827057361602783,
-0.010708844289183617,
-0.07988707721233368,
-0.005715902429074049,
0.03885909914970398,
-0.01381757203489542,
0.035479262471199036,
-0.010067217983305454,
0.024056492373347282,
-0.04420900344848633,
0.0439559668302536,
0.030526984483003616,
0.02749055251479149,
-0.003341430565342307,
0.019411474466323853,
0.008436039090156555,
-0.013483203947544098,
-0.025809671729803085,
-0.011251064948737621,
0.023550420999526978,
-0.04063035175204277,
-0.01726970635354519,
0.04612484574317932,
0.01229935698211193,
-0.022014131769537926,
-0.1205897256731987,
-0.050354160368442535,
-0.008725223131477833,
-0.02289975807070732,
0.040991831570863724,
0.015200233086943626,
-0.05765605717897415,
0.0463055856525898,
-0.01888732984662056,
-0.015073715709149837,
0.01253431849181652,
-0.009958773851394653,
-0.027598997578024864,
0.020550137385725975,
0.03537081554532051,
0.05064334720373154,
0.06000567600131035,
-0.034955114126205444,
-0.002539396984502673,
-0.005530643742531538,
0.012751206755638123,
0.041064128279685974,
-0.009759959764778614,
-0.005973456893116236,
0.004518500063568354,
0.00508783059194684,
0.012859650887548923,
0.040594201534986496,
0.050571050494909286,
-0.0192668829113245,
0.04149790108203888,
0.0217610951513052,
-0.06633158028125763,
-0.0408833846449852,
0.007577524054795504,
0.024580638855695724,
-0.02803277224302292,
0.0019508623518049717,
-0.07468176633119583,
-0.03607570379972458,
0.0018921218579635024,
0.05364362895488739,
0.046956248581409454,
-0.03569614887237549,
0.027382109314203262,
-0.021959908306598663,
0.001566789811477065,
-0.047859951853752136,
0.056788504123687744,
0.04898053780198097,
0.03482859581708908,
0.0024851749185472727,
-0.04077494144439697,
-0.031231870874762535,
0.027074851095676422,
0.07012711465358734,
0.0156430471688509,
0.003379837842658162,
0.02098391391336918,
0.006027678959071636,
-0.026532631367444992,
0.006804860662668943,
0.0009618756594136357,
-0.07204296439886093,
0.0015984192723408341,
0.008264335803687572,
-0.007360636256635189,
0.00716182217001915,
0.043775226920843124,
-0.0192668829113245,
-0.03197290375828743,
0.009452701546251774,
-0.08010396361351013,
0.023586569353938103,
0.05161934345960617,
-0.01214572787284851,
-0.012805428355932236,
0.013682017102837563,
0.021182727068662643,
0.027418257668614388,
0.011242027394473553,
0.0042925747111439705,
0.006904267705976963,
0.015471343882381916,
-0.03623836860060692,
0.04728158190846443,
-0.01696244813501835,
-0.000045043794671073556,
0.02671337127685547,
-0.007179896347224712,
-0.010193735361099243,
0.02638803981244564,
-0.042293157428503036,
-0.057619910687208176,
0.03056313283741474,
0.04016042500734329,
0.022935904562473297,
0.009046036750078201,
-0.017161263152956963,
0.08140528947114944,
-0.04814913496375084,
-0.014133867807686329,
0.02855691872537136,
0.026351891458034515,
0.015552676282823086,
-0.03607570379972458,
0.06665690988302231,
0.027653219178318977,
-0.00030641077319160104,
-0.006434343755245209,
0.029062990099191666,
-0.00033436898957006633,
0.02508671022951603,
0.03132224082946777,
-0.01811918430030346,
-0.03515392914414406,
-0.005720420740544796,
-0.045871809124946594,
-0.017170298844575882,
0.048185281455516815,
0.04149790108203888,
-0.0076091536320745945,
-0.045329589396715164,
-0.044389743357896805,
-0.022321389988064766,
-0.01903192140161991,
-0.05393281579017639,
0.029767876490950584,
-0.02121887542307377,
0.0021553244441747665,
0.04583566263318062,
0.007925448939204216,
-0.05013727396726608,
-0.053535185754299164,
-0.03744932636618614,
-0.015579787082970142,
-0.004147982690483332,
-0.004317426588386297,
-0.03367185965180397,
0.05086023360490799,
-0.07081393152475357,
0.09224969148635864,
0.000829144730232656,
0.001296809408813715,
0.12189105153083801,
-0.03173794224858284,
0.001250494853593409,
-0.04735387861728668,
-0.017766742035746574,
0.047787655144929886,
-0.008106188848614693,
-0.06000567600131035,
-0.001201920909807086,
-0.024707157164812088,
-0.04413670673966408,
0.05711383745074272,
-0.027996625751256943,
0.05505340173840523,
0.03197290375828743,
0.012877724133431911,
0.05841516703367233,
-0.03197290375828743,
-0.04489581286907196,
-0.015968378633260727,
-0.034033339470624924,
0.05180008336901665,
0.012868687510490417,
-0.011775210499763489,
-0.008336632512509823,
0.038353025913238525,
-0.02082124724984169,
-0.03289467841386795,
0.06940415501594543,
-0.06557247042655945,
-0.02329738438129425,
-0.027219442650675774,
-0.02508671022951603,
-0.004129908978939056,
-0.08885177969932556,
0.029912468045949936,
-0.008987296372652054,
-0.05487266182899475,
0.03473822772502899,
0.025502413511276245,
-0.004907090682536364,
-0.014287496916949749,
0.006032197270542383,
-0.009308109991252422,
0.048185281455516815,
0.030075134709477425,
-0.0548003651201725,
0.13504892587661743,
0.024183010682463646,
-0.026026558130979538,
0.020550137385725975,
-0.04467892646789551,
-0.028159290552139282,
0.02980402484536171,
-0.004789609927684069,
0.016067786142230034,
-0.008458632044494152,
-0.02685796283185482,
0.003551540896296501,
0.03631066530942917,
-0.014567643404006958,
-0.11191420257091522,
-0.029081065207719803,
-0.0652109906077385,
0.008585149422287941,
-0.020025990903377533,
0.0272555910050869,
0.02546626515686512,
-0.033635713160037994,
0.02360464259982109,
-0.002320249564945698,
-0.03473822772502899,
-0.013058464974164963,
-0.0026478408835828304,
0.04963120073080063,
0.015055641531944275,
-0.06571706384420395,
0.017558889463543892,
0.03585881367325783,
0.049811940640211105,
0.04728158190846443,
-0.0980333760380745,
0.08379106223583221,
-0.07656145840883255,
0.03260549530386925,
0.0024015826638787985,
-0.016610005870461464,
0.009425590746104717,
-0.008933073841035366,
-0.04579951614141464,
-0.014920086599886417,
0.016591930761933327,
-0.009204183705151081,
-0.04402826353907585,
-0.02600848488509655,
-0.0036622441839426756,
0.030002838000655174,
0.02855691872537136,
0.0015769564779475331,
0.016140080988407135,
0.015073715709149837,
-0.004410055931657553,
-0.06850045919418335,
-0.03258742019534111,
-0.01052810437977314,
-0.03669022023677826,
0.05277607962489128,
-0.01327535230666399,
-0.014956234022974968,
-0.013989275321364403,
-0.021941835060715675,
-0.014766457490622997,
-0.012959057465195656,
0.009705737233161926,
0.02477945387363434,
0.01741429790854454,
-0.0143236443400383,
-0.0408833846449852,
-0.022972052916884422,
0.0035289484076201916,
0.0438113734126091,
0.018760811537504196,
0.05281222611665726,
0.05733072757720947,
-0.02555663511157036,
0.027924329042434692,
0.0025800634175539017,
0.06109011918306351,
0.03152105584740639,
-0.012950020842254162,
0.002202768577262759,
-0.001914714346639812,
0.0076046353206038475,
-0.03585881367325783,
-0.058162130415439606,
0.00939847994595766,
0.040666498243808746,
0.007866708561778069,
-0.01393505372107029,
-0.023550420999526978,
0.030707724392414093,
0.04135331138968468,
0.03831687942147255,
-0.02237561158835888,
0.02423723228275776,
0.039039839059114456,
-0.035027410835027695,
0.039907392114400864,
-0.014513421803712845,
-0.028900325298309326,
-0.00756848743185401,
-0.02421915903687477,
0.011323360726237297,
-0.0190499946475029,
-0.07204296439886093,
-0.006872638128697872,
0.07229600101709366,
-0.002848914125934243,
0.00310646858997643,
-0.04576336592435837,
-0.02485174871981144,
-0.030382392928004265,
0.02253827638924122,
0.005331829655915499,
-0.009723811410367489,
-0.005892123561352491,
-0.00808811467140913,
-0.015191196464002132,
0.010735956020653248,
-0.02841232717037201,
-0.030743872746825218,
-0.018218591809272766,
0.04713698849081993,
-0.01595030352473259,
0.01118780579417944,
-0.04605254903435707,
-0.018462590873241425,
-0.025972336530685425,
0.008223669603466988,
0.056860800832509995,
0.06810282915830612,
-0.07533242553472519,
0.007017230149358511,
0.019393401220440865,
0.03636488690972328,
0.020803174003958702,
0.0023338051978498697,
-0.01872466318309307,
0.08133299648761749,
-0.01848970167338848,
-0.05060719698667526,
-0.055378735065460205,
0.00816492922604084,
-0.0028308401815593243,
0.0870443806052208,
0.062029965221881866,
-0.00898277759552002,
-0.003955946769565344,
-0.04091953486204147,
-0.03515392914414406,
0.01296809408813715,
-0.021887613460421562,
0.02199605666100979,
-0.060403306037187576,
-0.003531207563355565,
0.000987292267382145,
0.012480096891522408,
0.06824742257595062,
-0.012633725069463253,
-0.06983793526887894,
0.03195483237504959
] |
729,731 | minidir | Directory | Directory is a interface that can add, remove and iterate files | class Directory(typing.Protocol):
"""Directory is a interface that can add, remove and iterate files"""
def __iter__(self) -> typing.Iterator[Path]:
pass
def create(self, path: Path) -> File:
pass
def remove(self, path: Path) -> None:
pass
def get(self, path: Path) -> File:
pass
| (*args, **kwargs) | [
-0.008052605204284191,
0.003021512646228075,
-0.0981360673904419,
-0.02761981636285782,
-0.010314572602510452,
-0.007357347756624222,
-0.04541078582406044,
0.03923918679356575,
0.012543206103146076,
0.007004956714808941,
0.058820683509111404,
-0.04057255759835243,
-0.009790748357772827,
0.06769712269306183,
-0.04670606181025505,
0.04262975603342056,
-0.022819682955741882,
0.06449703127145767,
-0.05984928458929062,
0.005876353941857815,
-0.010990781709551811,
0.05821114405989647,
0.04701083153486252,
-0.03672483190894127,
-0.01590520516037941,
0.06994480639696121,
0.015600434504449368,
-0.025867385789752007,
0.016762372106313705,
-0.048915646970272064,
-0.006776378955692053,
-0.01850527711212635,
0.03299139440059662,
-0.013571806252002716,
-0.013924197293817997,
0.02480068989098072,
-0.011047926731407642,
0.08244039118289948,
-0.06544943898916245,
0.010866968892514706,
-0.04662986844778061,
0.025581663474440575,
0.02521974965929985,
-0.026534071192145348,
0.03746771067380905,
0.04255356639623642,
-0.017067141830921173,
0.00774307269603014,
-0.02521974965929985,
-0.007800217252224684,
-0.00557158375158906,
0.02026723138988018,
-0.004045350477099419,
-0.04262975603342056,
0.01351466216146946,
0.026172157377004623,
0.022400623187422752,
0.03482001647353172,
-0.005262051243335009,
0.042782142758369446,
0.009395499713718891,
-0.02093391679227352,
0.06838285177946091,
-0.03742961212992668,
0.00014836722402833402,
-0.016819516196846962,
-0.056725386530160904,
-0.054363418370485306,
0.002490545390173793,
0.05577297881245613,
-0.051010943949222565,
0.010752679780125618,
0.060115959495306015,
0.02828650176525116,
0.020305326208472252,
-0.013067030347883701,
-0.01809574104845524,
0.02539118193089962,
0.07657355815172195,
-0.052191928029060364,
-0.019524352625012398,
-0.030496086925268173,
-0.03619148209691048,
0.0016524269012734294,
0.027372190728783607,
0.02874365635216236,
0.023829234763979912,
-0.0700971856713295,
-0.023829234763979912,
0.027048371732234955,
-0.07463064789772034,
-0.007438302040100098,
0.021295830607414246,
-0.014609930105507374,
0.0036120053846389055,
-0.021048204973340034,
-0.02371494472026825,
-0.0034834302496165037,
-0.07596401870250702,
0.003835821058601141,
-0.021962516009807587,
0.04476315155625343,
0.06758283078670502,
0.026134060695767403,
-0.032038986682891846,
-0.04312501102685928,
0.0019607688300311565,
-0.051087137311697006,
-0.039505861699581146,
0.04693463817238808,
-0.055582497268915176,
0.04788704589009285,
0.012295580469071865,
0.029353197664022446,
0.005800161510705948,
0.0349152572453022,
-0.017571916803717613,
-0.06190648302435875,
-0.00033185447682626545,
-0.00758592551574111,
0.012324152514338493,
0.025924531742930412,
-0.03038179874420166,
0.024686401709914207,
0.056839678436517715,
0.0028238880913704634,
0.014971844851970673,
-0.025105459615588188,
-0.021886322647333145,
-0.031753264367580414,
-0.03855345398187637,
0.04038207605481148,
0.01808621734380722,
0.08541189879179001,
0.04137257859110832,
0.051849063485860825,
-0.01809574104845524,
-0.03097229078412056,
-0.03683912009000778,
0.04723941162228584,
-0.002642930718138814,
0.0014631359372287989,
0.051010943949222565,
0.0028738894034177065,
-0.012638446874916553,
-0.0008607382187619805,
-0.014324207790195942,
-0.08183085173368454,
-0.007824026979506016,
0.01737191155552864,
-0.06308747082948685,
-0.030496086925268173,
0.032553285360336304,
0.0516204833984375,
0.003821534803137183,
0.01913386583328247,
-0.048496589064598083,
-0.011724135838449001,
-0.039048705250024796,
-0.027600768953561783,
-0.04963947832584381,
-0.03442000597715378,
0.019657690078020096,
0.0009958610171452165,
0.006809713318943977,
0.03487716242671013,
-0.02605786733329296,
-0.0020131513010710478,
-0.015228995122015476,
0.029524631798267365,
-0.002747695427387953,
-0.0014893271727487445,
0.020667241886258125,
-0.004428694490343332,
-0.008404996246099472,
-0.003402475733309984,
0.04857277870178223,
0.0558110773563385,
0.03017226792871952,
-0.013562282547354698,
0.03101038746535778,
-0.034648582339286804,
-0.047734662890434265,
0.04007730633020401,
0.041944023221731186,
0.06438274681568146,
-0.026934083551168442,
0.07040195912122726,
0.05447770655155182,
-0.02388637885451317,
-0.07584972679615021,
-0.0069620986469089985,
0.009076443500816822,
-0.011838424950838089,
-0.010924113914370537,
-0.019619593396782875,
-0.0030738951172679663,
0.03685816749930382,
-0.021886322647333145,
0.055125344544649124,
-0.02078153006732464,
0.0504394993185997,
0.03857250139117241,
-0.02266729809343815,
-0.029067475348711014,
0.017943356186151505,
0.019619593396782875,
0.011114595457911491,
-0.04373455047607422,
-0.012609874829649925,
-0.02640073373913765,
-0.024324486032128334,
0.022933971136808395,
0.003292948706075549,
0.03270567208528519,
-0.052991949021816254,
0.005914450157433748,
-0.007962126284837723,
0.01905767247080803,
0.03350569307804108,
0.0778307393193245,
0.04758227616548538,
-0.05786827579140663,
-0.014171822927892208,
0.042324986308813095,
-0.037124842405319214,
-0.004697749856859446,
-0.03407713770866394,
-0.03613433986902237,
-0.05977309122681618,
0.05752541124820709,
-0.0013405134668573737,
-0.015790915116667747,
-0.008209751918911934,
0.028191260993480682,
-0.018286222591996193,
-0.015686150640249252,
0.009509788826107979,
-0.018200507387518883,
0.04662986844778061,
-0.014000389724969864,
0.00017560012929607183,
0.010362192988395691,
0.05085855722427368,
-0.060915980488061905,
-0.01771477796137333,
-0.010838396847248077,
0.031410396099090576,
0.05196335166692734,
0.024057812988758087,
-0.028610320761799812,
-0.033219970762729645,
-0.05832543224096298,
-0.009300258941948414,
0.029143668711185455,
-0.0012607494136318564,
-0.107431560754776,
-0.07885933667421341,
0.010866968892514706,
0.007147817872464657,
0.006176362279802561,
0.003828678047284484,
0.03723913058638573,
0.05451580137014389,
-0.001842908444814384,
-0.036953408271074295,
0.018448133021593094,
-0.024991171434521675,
0.021257733926177025,
0.0516204833984375,
0.14537547528743744,
0.051430001854896545,
0.024057812988758087,
-0.0035596229135990143,
-0.01690523326396942,
0.002307207090780139,
-0.0016012350097298622,
0.03935347497463226,
-0.015848059207201004,
-0.03920109197497368,
-0.03270567208528519,
-0.016019493341445923,
-0.04499172791838646,
-0.03487716242671013,
-0.03973443806171417,
0.03525812551379204,
-0.013314655981957912,
0.024724498391151428,
-0.03843916580080986,
0.012886072508990765,
0.08198323100805283,
-0.01581948809325695,
-0.05234431475400925,
-0.005981118883937597,
0.06529705226421356,
0.013105127029120922,
-0.148575559258461,
-0.039086803793907166,
0.08952630311250687,
-0.07078292220830917,
-0.04000111296772957,
-0.0005193597171455622,
0.010962209664285183,
0.01636235974729061,
-0.02832459844648838,
-0.008976439945399761,
0.0015952824614942074,
-0.000489001686219126,
-0.02891509048640728,
0.018181458115577698,
0.012562254443764687,
-0.03169611841440201,
-0.06499228626489639,
0.03769628703594208,
0.08228800445795059,
0.016467124223709106,
-0.010809824801981449,
-0.01766715757548809,
-0.03895346447825432,
0.0719258114695549,
-0.08183085173368454,
0.07600211352109909,
0.0004919779603369534,
-0.04285833612084389,
-0.007143056020140648,
-0.010124091058969498,
0.029943689703941345,
0.039810631424188614,
-0.002314350102096796,
0.04011540114879608,
-0.012314628809690475,
0.05573488399386406,
0.023943522945046425,
0.009924085810780525,
-0.04613461717963219,
0.030686568468809128,
0.03805820271372795,
-0.01754334568977356,
0.0504394993185997,
0.013438468798995018,
0.03270567208528519,
-0.04541078582406044,
0.008066890761256218,
-0.01678141951560974,
-0.026972178369760513,
-0.030858000740408897,
0.03118181973695755,
0.009409785270690918,
0.05752541124820709,
0.03560099005699158,
0.0752020925283432,
0.07832598686218262,
-0.04369645565748215,
-0.008900247514247894,
0.01238129660487175,
-0.03748675808310509,
-0.017886212095618248,
-0.010143139399588108,
-0.02064819447696209,
-0.0399630181491375,
0.035943858325481415,
0.05394435673952103,
-0.01678141951560974,
-0.01762906275689602,
-0.02794363535940647,
-0.014609930105507374,
0.03729627653956413,
-0.030896097421646118,
0.016695702448487282,
0.015276615507900715,
0.00608588382601738,
-0.04541078582406044,
-0.06019215285778046,
-0.05215383321046829,
0.0006732330075465143,
0.00879072118550539,
0.05615394189953804,
0.03230566158890724,
-0.05318243056535721,
0.06358271837234497,
0.028191260993480682,
0.012752735987305641,
0.035734329372644424,
0.021962516009807587,
0.019029101356863976,
-0.006628755945712328,
0.062173157930374146,
0.03855345398187637,
-0.03916299343109131,
0.04262975603342056,
-0.019314823672175407,
-0.03434381261467934,
-0.03651530295610428,
-0.03729627653956413,
-0.025715000927448273,
-0.052191928029060364,
0.004552507773041725,
0.03386760875582695,
-0.06666852533817291,
-0.011581274680793285,
0.08000222593545914,
-0.03125801309943199,
-0.017152858898043633,
0.08457378298044205,
0.006628755945712328,
0.003864393336698413,
0.06228744611144066,
-0.01977197825908661,
-0.01947673223912716,
-0.02912461943924427,
0.049448996782302856,
-0.01114316750317812,
-0.00608588382601738,
0.03651530295610428,
0.06861143559217453,
0.027010275050997734,
-0.011162214912474155,
-0.06415416300296783,
0.02870556153357029,
0.043620262295007706,
-0.00552872521802783,
-0.035772424191236496,
0.00801927037537098,
0.04822991415858269,
0.014609930105507374,
0.013314655981957912,
0.017771923914551735,
0.01956244930624962,
-0.04967757314443588,
-0.0026191205251961946,
0.04369645565748215,
0.019162438809871674,
-0.04476315155625343,
-0.03230566158890724,
0.016105210408568382,
-0.057182542979717255,
-0.05859210714697838,
-0.056801579892635345,
0.02215299755334854,
0.044077418744564056,
-0.02916271612048149,
0.008785958401858807,
0.02127678319811821,
0.008733576163649559,
0.021181542426347733,
-0.04342978075146675,
-0.011600323021411896,
0.05238240957260132,
0.05588727071881294,
-0.004471553023904562,
0.0013333704555407166,
-0.01690523326396942,
0.13082268834114075,
0.001428611227311194,
0.02630549483001232,
-0.02720075659453869,
-0.01675284653902054,
-0.019657690078020096,
-0.028362693265080452,
-0.04419170692563057,
0.04838229715824127,
0.03434381261467934,
0.032591383904218674,
-0.09790748357772827,
0.007243058644235134,
-0.023257790133357048,
0.018152887001633644,
-0.013200366869568825,
-0.009495502337813377,
-0.008900247514247894,
0.03293424844741821,
-0.025105459615588188,
-0.05074426904320717,
-0.0011375317117199302,
-0.007009719032794237,
0.021219637244939804,
0.0007952602463774383,
-0.03209613263607025,
-0.04499172791838646,
-0.0868595615029335,
-0.0030262747313827276,
-0.03335331007838249,
-0.008919295854866505,
0.03977253660559654,
0.005200144834816456,
-0.010819348506629467,
0.03403904289007187,
0.049715667963027954,
0.04312501102685928,
-0.03542955592274666,
0.017886212095618248,
0.043582163751125336,
-0.050553787499666214,
-0.027181709185242653,
0.06240173801779747,
0.004890612326562405,
-0.047696564346551895,
0.044801246374845505,
-0.047315601259469986,
-0.04998234286904335,
0.03571527823805809,
-0.03822963684797287,
0.001678618136793375,
0.010066946968436241,
0.024324486032128334,
0.0355057492852211,
-0.028610320761799812,
-0.04876326024532318,
-0.024648305028676987,
-0.004854897037148476,
0.009071680717170238,
0.018200507387518883,
-0.0073525854386389256,
0.0010809825034812093,
0.031410396099090576,
0.002059581223875284,
-0.042363084852695465,
-0.002828650176525116,
0.027295997366309166,
-0.030438942834734917,
-0.024114957079291344,
-0.05962070822715759,
0.01737191155552864,
0.011619371362030506,
-0.005128714255988598,
-0.006133504211902618,
-0.02598167583346367,
-0.04453457146883011,
0.05276337265968323,
0.004338216036558151,
0.019486255943775177,
0.008062128908932209,
-0.010933637619018555,
-0.022172044962644577,
-0.0003919751907233149,
0.006952574476599693,
0.01981007494032383,
0.012352724559605122,
-0.016267118975520134,
0.007933554239571095,
0.026972178369760513,
0.07824979722499847,
-0.01564805395901203,
-0.009328830987215042,
0.0016059970948845148,
-0.001228605629876256,
-0.032667577266693115,
-0.06903049349784851,
0.07463064789772034,
0.019524352625012398,
-0.022210141643881798,
-0.02215299755334854,
-0.040305882692337036,
0.056458715349435806,
-0.0035096213687211275,
-0.016248071566224098,
0.005928736180067062,
-0.05950641632080078,
0.004842991940677166,
0.013771811500191689,
-0.033048540353775024,
0.028972234576940536,
-0.08350708335638046,
0.01934339478611946,
0.05249669775366783,
0.03504859283566475,
0.08647859841585159,
-0.02605786733329296,
0.022133950144052505,
-0.04426790028810501,
0.02563880942761898,
0.05363958701491356,
0.01720047928392887,
-0.026724552735686302,
0.011000306345522404,
0.05192525312304497,
-0.035562895238399506,
-0.009857417084276676,
-0.023733993992209435,
-0.06845904886722565,
-0.03857250139117241,
-0.0334104523062706,
0.033467598259449005,
-0.039086803793907166,
-0.007471636403352022,
-0.051391907036304474,
-0.014095630496740341,
0.005323957651853561,
-0.05623013526201248,
0.02156250551342964,
-0.011019354686141014,
-0.023867331445217133,
0.026629311963915825,
-0.021333927288651466,
-0.02068628929555416,
-0.030896097421646118,
-0.03874393552541733,
-0.03445810079574585,
-0.014543261379003525,
0.00002436823706375435,
-0.019962459802627563,
0.0010863397037610412,
-0.017943356186151505,
0.013457517139613628,
-0.01315274741500616,
-0.002969130175188184,
-0.00011986940808128566,
0.0003514978743623942,
-0.01168603915721178,
-0.017238574102520943,
-0.016438553109765053,
-0.0018345748540014029,
0.027715057134628296,
-0.020629145205020905,
0.004212021827697754,
-0.0022441099863499403,
0.000328580557834357,
0.0064477985724806786,
-0.027410287410020828,
0.019543401896953583,
-0.020705338567495346,
-0.036781974136829376,
-0.0004092375747859478,
0.02022913470864296,
-0.03542955592274666,
-0.040343981236219406,
0.003988206386566162,
0.05238240957260132,
0.012647970579564571,
-0.05706825479865074,
0.0054096742533147335,
-0.02647692710161209,
0.002971511334180832,
0.012114622630178928,
0.0016821896424517035,
-0.06251602619886398,
-0.01854337379336357,
-0.0453345961868763,
0.01687666028738022,
0.02253396064043045,
-0.011447937227785587,
-0.024495920166373253,
0.0021048204507678747,
0.004266785457730293,
-0.018448133021593094,
-0.014762315899133682,
0.0063620819710195065,
-0.019962459802627563,
0.035943858325481415,
-0.04346787557005882,
0.008700242266058922,
0.08137369155883789,
-0.017895735800266266,
-0.04708702489733696,
0.01412420254200697,
0.00843833014369011,
0.03034370206296444,
-0.015133754350244999,
0.04678225517272949,
0.015895679593086243,
0.039086803793907166,
-0.004409646615386009,
0.020952964201569557,
-0.006371605675667524,
-0.016276642680168152,
0.004083447158336639,
0.003064370946958661,
-0.036953408271074295,
0.010628866963088512,
-0.01977197825908661,
0.018991004675626755,
0.05733492970466614,
-0.02598167583346367,
-0.04011540114879608,
-0.01107649877667427,
0.0008101416169665754,
0.02232442982494831,
-0.034858111292123795,
0.018010025843977928,
-0.0017107619205489755,
-0.06826856732368469,
0.01374323945492506,
-0.034191425889730453,
0.0208958201110363,
-0.009019298478960991,
0.025676904246211052,
0.02186727523803711,
-0.021295830607414246,
0.017019521445035934,
-0.09348831325769424,
0.019829122349619865,
0.03861059993505478,
0.038629647344350815,
-0.020914867520332336,
-0.015257567167282104,
0.014352780766785145,
0.03142944723367691,
-0.04083923250436783,
0.008933582343161106,
-0.015514717437326908,
0.061716001480817795,
-0.014905177056789398,
0.012762259691953659,
-0.02131487801671028,
0.015571861527860165,
-0.03386760875582695,
-0.040305882692337036,
0.013657523319125175,
0.04301071912050247,
-0.003292948706075549,
0.013324180617928505,
0.041144002228975296,
0.0063620819710195065,
-0.06602088361978531,
0.03544860705733299,
-0.016848087310791016,
0.06438274681568146,
0.026591215282678604,
0.051049038767814636,
-0.013657523319125175,
0.030438942834734917,
-0.03125801309943199,
0.019486255943775177,
0.03600100055336952,
-0.0007970459992066026,
-0.037201035767793655,
-0.028191260993480682,
-0.017343340441584587,
-0.0014750410337001085,
0.06167790666222572,
0.03272471949458122,
-0.012571778148412704,
-0.033219970762729645,
0.03958205506205559,
-0.0015702818054705858,
-0.03160087764263153,
-0.0056382520124316216,
0.01615283079445362,
0.014295635744929314,
0.04011540114879608,
-0.012809880077838898,
0.018686234951019287,
0.02123868651688099,
-0.01344799343496561,
0.016524270176887512,
-0.09074538201093674,
0.06076359748840332,
0.015533765777945518,
-0.012428916990756989,
0.014352780766785145,
0.029657967388629913,
-0.02630549483001232,
-0.02312445268034935,
0.04125829041004181,
0.007147817872464657,
-0.03487716242671013,
0.02123868651688099,
-0.01615283079445362,
-0.024705449119210243,
-0.012895597144961357,
-0.08533570915460587,
-0.03480096906423569,
0.04746798798441887,
-0.03769628703594208,
0.003988206386566162,
0.015248043462634087,
-0.016762372106313705,
0.039086803793907166
] |
729,733 | minidir | __iter__ | null | def __iter__(self) -> typing.Iterator[Path]:
pass
| (self) -> Iterator[minidir.Path] | [
0.03088340349495411,
-0.03812384605407715,
-0.07521824538707733,
-0.0024427915923297405,
-0.027297498658299446,
-0.000664851046167314,
0.004027710761874914,
0.059193190187215805,
0.07068867981433868,
0.022218894213438034,
0.06427179276943207,
-0.008111182600259781,
0.00897334422916174,
0.08112040907144547,
-0.035412970930337906,
0.031089292839169502,
-0.009814059361815453,
0.05672251805663109,
-0.04858988896012306,
0.03531002625823021,
-0.038707200437784195,
0.029596595093607903,
0.05082035809755325,
-0.03271925076842308,
-0.024089055135846138,
0.057786282151937485,
0.038535624742507935,
-0.006000816822052002,
0.06454631686210632,
-0.05157528445124626,
-0.05490383133292198,
-0.009814059361815453,
0.026285208761692047,
-0.006862978916615248,
0.0043794382363557816,
0.03139812871813774,
-0.047869276255369186,
0.066330686211586,
-0.001569906366057694,
0.0005967574543319643,
0.00860016979277134,
0.05184980481863022,
-0.014163472689688206,
-0.0011087999446317554,
0.012010212987661362,
0.0025564595125615597,
-0.01441225502640009,
-0.03371438384056091,
0.021824272349476814,
-0.029099030420184135,
0.024758195504546165,
0.010860663838684559,
-0.007536408491432667,
-0.02733181230723858,
-0.010208681225776672,
0.03385164216160774,
0.015733378008008003,
0.030385838821530342,
0.01825552247464657,
0.04522702842950821,
-0.013897531665861607,
-0.08214985579252243,
0.060154009610414505,
-0.02491261251270771,
0.00953953992575407,
-0.042962245643138885,
-0.046736884862184525,
-0.030626041814684868,
0.002852425444871187,
0.06403159350156784,
-0.034143317490816116,
0.0069058723747730255,
0.013949004001915455,
0.006301072426140308,
-0.026559727266430855,
-0.012473464012145996,
-0.05902161821722984,
0.048315368592739105,
0.07631631940603256,
-0.0839342325925827,
-0.04134944826364517,
0.02043451927602291,
-0.08578723669052124,
-0.04907029867172241,
-0.00028524253866635263,
0.028275473043322563,
0.035996321588754654,
-0.09422869980335236,
-0.0731593519449234,
0.08290478587150574,
-0.06180112436413765,
0.02263067290186882,
-0.018632987514138222,
-0.004778348840773106,
0.025633225217461586,
0.005258757621049881,
-0.03198147937655449,
-0.059364765882492065,
-0.019319284707307816,
-0.024466518312692642,
0.005318808369338512,
0.02003989741206169,
0.06090893596410751,
0.029596595093607903,
0.022030161693692207,
-0.004954212810844183,
-0.02806958369910717,
-0.05016837269067764,
0.01961096189916134,
-0.003929055295884609,
-0.08263026177883148,
0.08715982735157013,
0.03198147937655449,
0.010088578797876835,
0.004662536084651947,
-0.00835567619651556,
-0.012078842148184776,
-0.03620221093297005,
0.06969355046749115,
0.009548119269311428,
0.014455148950219154,
0.056413684040308,
-0.019182024523615837,
0.07288483530282974,
0.031518228352069855,
0.020588936284184456,
-0.00624102121219039,
0.03942781314253807,
-0.01569906435906887,
-0.06962491571903229,
-0.006747165694832802,
0.04409463703632355,
0.00693160854279995,
0.030231421813368797,
0.02333412691950798,
0.03699145466089249,
0.002013855380937457,
-0.01355438306927681,
-0.05064878240227699,
0.07295346260070801,
0.006897293496876955,
-0.01859867200255394,
0.042001429945230484,
0.0057177189737558365,
-0.02482682466506958,
0.01750059612095356,
0.004087761510163546,
0.00737770227715373,
0.011195234023034573,
0.0022712170612066984,
-0.04481524974107742,
0.007720850873738527,
0.07631631940603256,
0.04732023924589157,
-0.03385164216160774,
-0.007570723537355661,
-0.05061446875333786,
0.047526128590106964,
0.006468357518315315,
-0.038089532405138016,
-0.049550704658031464,
-0.022973820567131042,
-0.009582433849573135,
-0.005627642385661602,
0.005696272477507591,
0.030849089846014977,
-0.06485515087842941,
-0.02758917398750782,
-0.004829821176826954,
0.004692561458796263,
0.029853956773877144,
-0.04749181121587753,
-0.021738484501838684,
-0.02583911456167698,
-0.026594042778015137,
0.04577606916427612,
0.02504987269639969,
0.1118665561079979,
0.017740799114108086,
0.02082914113998413,
0.0192506555467844,
-0.045021139085292816,
-0.07981644570827484,
0.011160919442772865,
0.03767775371670723,
0.06300214678049088,
0.0020117105450481176,
0.0006680680671706796,
0.03706008568406105,
-0.00679863803088665,
-0.03531002625823021,
0.022990979254245758,
0.03983959183096886,
0.021412493661046028,
-0.021292392164468765,
-0.02429494448006153,
-0.004593906458467245,
0.008072578348219395,
-0.03706008568406105,
0.08688531070947647,
-0.03258199244737625,
-0.0015516765415668488,
-0.00848435703665018,
0.022441940382122993,
-0.04574175179004669,
0.02868725173175335,
0.0020192170049995184,
-0.027160238474607468,
-0.0028652935288846493,
0.03211874142289162,
-0.047354552894830704,
-0.0612177699804306,
0.039153292775154114,
-0.04399169236421585,
0.03066035732626915,
-0.007532119285315275,
-0.03706008568406105,
-0.04086903855204582,
0.005018553230911493,
0.02082914113998413,
0.0810517817735672,
0.057923540472984314,
-0.017260391265153885,
-0.046565309166908264,
0.012859506532549858,
-0.033491335809230804,
-0.0039933957159519196,
-0.030334366485476494,
-0.0661247968673706,
-0.04426621273159981,
0.021206604316830635,
-0.024312101304531097,
0.028429890051484108,
-0.02468956634402275,
0.0222360510379076,
0.022613514214754105,
-0.013168340548872948,
0.03338839113712311,
-0.019799694418907166,
0.01173569355159998,
-0.011263864114880562,
-0.01254209317266941,
-0.03544728457927704,
-0.03548159822821617,
-0.06475220620632172,
0.006386859342455864,
0.0040920511819422245,
0.0173290204256773,
0.05143802613019943,
0.01596500352025032,
0.0534282885491848,
-0.016874348744750023,
-0.04694277420639992,
-0.00624102121219039,
0.021721327677369118,
-0.034984033554792404,
-0.07322797924280167,
-0.06615911424160004,
0.04992816969752312,
0.028893141075968742,
0.007047421298921108,
0.00007231595373013988,
0.017689326778054237,
0.08057136833667755,
-0.019748222082853317,
0.02052030712366104,
-0.004218587186187506,
-0.009333650581538677,
-0.016213787719607353,
0.02530723437666893,
0.10404275357723236,
0.026765616610646248,
-0.023694433271884918,
0.03788364306092262,
-0.027795063331723213,
0.05270767584443092,
-0.019456544890999794,
0.014661038294434547,
-0.07961055636405945,
0.00005355000030249357,
0.017294706776738167,
-0.01566474884748459,
-0.027863694354891777,
-0.04035431519150734,
-0.030282894149422646,
-0.015081395395100117,
-0.005009974353015423,
0.042962245643138885,
-0.03198147937655449,
-0.008269889280200005,
0.08764024078845978,
0.018976135179400444,
-0.03644241765141487,
-0.014223523437976837,
0.10363097488880157,
-0.029236288741230965,
-0.06880135834217072,
-0.060462843626737595,
0.04289361834526062,
-0.019233496859669685,
0.011323914863169193,
-0.04869283363223076,
0.006760033778846264,
0.030763301998376846,
-0.006399727426469326,
0.012550672516226768,
0.003178416984155774,
0.04742318391799927,
-0.015029923059046268,
0.03211874142289162,
0.0013929702108725905,
-0.048658519983291626,
-0.04680551588535309,
-0.004469514824450016,
0.024243472144007683,
-0.05610485002398491,
-0.01995411142706871,
0.01614515669643879,
-0.044506415724754333,
0.06485515087842941,
-0.10040538012981415,
0.09148350358009338,
-0.0032942297402769327,
-0.03671693429350853,
-0.02465525083243847,
0.0386042557656765,
0.03565317392349243,
0.049550704658031464,
-0.012113157659769058,
0.028652936220169067,
0.01828983798623085,
-0.015252970159053802,
0.002063182881101966,
0.03313102945685387,
0.007141787093132734,
0.04306519031524658,
0.0316726453602314,
-0.008257021196186543,
0.01737191528081894,
-0.017603540793061256,
0.04773201793432236,
-0.01907907985150814,
0.03136381134390831,
-0.009522383101284504,
-0.02631952241063118,
0.02311108075082302,
0.004731165710836649,
0.0014380085049197078,
0.06337960809469223,
0.00953953992575407,
0.034984033554792404,
0.03856993839144707,
-0.0012374809011816978,
-0.013957583345472813,
-0.00046191064757294953,
-0.017620697617530823,
-0.027040135115385056,
0.034589413553476334,
-0.02837841771543026,
0.02316255308687687,
0.060291267931461334,
0.02390032261610031,
-0.046908460557460785,
-0.03503550589084625,
0.014712510630488396,
-0.0326334647834301,
-0.003663114970549941,
0.001829412765800953,
0.024140527471899986,
-0.015973582863807678,
-0.027125922963023186,
-0.01462672371417284,
-0.06488946080207825,
-0.07741440087556839,
0.015724800527095795,
-0.013322757557034492,
0.02981964312493801,
0.04858988896012306,
-0.02789800800383091,
0.08372834324836731,
0.04224163293838501,
0.026954349130392075,
0.04323676601052284,
0.02127523347735405,
0.006725719198584557,
-0.049104612320661545,
0.04416326805949211,
-0.01825552247464657,
-0.008844663389027119,
0.003706008428707719,
-0.01142685953527689,
-0.05517834797501564,
-0.028206842020154,
-0.031157923862338066,
-0.015604698099195957,
-0.06368844211101532,
0.039805278182029724,
-0.005228731781244278,
-0.045810382813215256,
-0.012833770364522934,
0.0277264341711998,
-0.025118501856923103,
-0.02846420370042324,
0.07617906481027603,
0.027709277346730232,
-0.04711434990167618,
0.042790673673152924,
0.012559250928461552,
-0.01894182153046131,
-0.009162076748907566,
0.024483676999807358,
-0.02745191566646099,
0.005031421314924955,
0.01978253573179245,
0.029630910605192184,
0.0030604596249759197,
-0.02530723437666893,
-0.02995690144598484,
0.046119216829538345,
0.061595235019922256,
0.0044652256183326244,
-0.030557412654161453,
0.013786008581519127,
0.01995411142706871,
0.014129157178103924,
-0.03987390547990799,
0.011049395427107811,
-0.0011806468246504664,
0.01475540455430746,
-0.001210672315210104,
-0.03579043224453926,
-0.010225838050246239,
-0.029013242572546005,
-0.0016728510381653905,
0.010834927670657635,
-0.030986348167061806,
-0.06005106493830681,
-0.048349685966968536,
0.011598434299230576,
0.015158603899180889,
0.0006616340251639485,
0.01842709816992283,
0.013691642321646214,
-0.012988187372684479,
0.04855557531118393,
-0.049550704658031464,
-0.04145239293575287,
0.07377701997756958,
0.061423659324645996,
0.0034036084543913603,
-0.04522702842950821,
-0.016256680712103844,
0.06742876768112183,
-0.029013242572546005,
-0.012404833920300007,
0.011109447106719017,
-0.0076779574155807495,
-0.03323397412896156,
-0.03443499654531479,
-0.0032234552782028913,
0.007420595735311508,
0.04073178023099899,
0.050511524081230164,
-0.11083710938692093,
0.017792271450161934,
-0.027777906507253647,
0.006056578829884529,
0.030300050973892212,
-0.0028910296969115734,
-0.04207006096839905,
0.03531002625823021,
-0.037780698388814926,
-0.07768891751766205,
-0.0454329177737236,
-0.015338757075369358,
0.018049633130431175,
-0.010088578797876835,
0.03040299564599991,
-0.012053105980157852,
-0.057443130761384964,
-0.023231182247400284,
-0.06386001408100128,
0.00550325121730566,
0.004808374214917421,
0.019799694418907166,
-0.024843983352184296,
0.010603302158415318,
0.013605855405330658,
-0.014472306706011295,
-0.0356188602745533,
0.05349691957235336,
0.03702576830983162,
-0.09141487628221512,
0.018890349194407463,
0.044986825436353683,
0.014926978386938572,
0.00973685085773468,
0.030454467982053757,
-0.011872952803969383,
-0.029047558084130287,
0.008471488952636719,
-0.017689326778054237,
0.03565317392349243,
0.02237331122159958,
-0.01273940410465002,
0.09820922464132309,
-0.004967080894857645,
-0.05377143621444702,
-0.01846141181886196,
-0.03371438384056091,
0.026473939418792725,
-0.013580119237303734,
-0.027743590995669365,
-0.011083710938692093,
0.03004268929362297,
-0.032479047775268555,
-0.01961096189916134,
-0.012962451204657555,
-0.021824272349476814,
0.004340833984315395,
-0.00798250176012516,
-0.041521020233631134,
0.0034036084543913603,
-0.021858587861061096,
-0.0113582294434309,
-0.006352544762194157,
0.004786927718669176,
-0.02021147310733795,
0.04876146465539932,
-0.006262468174099922,
0.0444721020758152,
0.011529804207384586,
0.0192506555467844,
0.03275356441736221,
0.003476527752354741,
0.019096238538622856,
0.04574175179004669,
-0.012876663357019424,
-0.02933923341333866,
0.07377701997756958,
0.032787881791591644,
0.030368680134415627,
-0.005957923363894224,
-0.021206604316830635,
0.02355717495083809,
-0.0133570721372962,
-0.004388017114251852,
-0.0463937371969223,
0.06626205891370773,
0.02280224673449993,
0.012473464012145996,
-0.049241870641708374,
-0.04618784785270691,
0.05706566944718361,
0.010088578797876835,
0.011135183274745941,
0.0028159660287201405,
-0.04742318391799927,
-0.025152817368507385,
0.006974502000957727,
-0.002747336169704795,
0.026439625769853592,
-0.051781173795461655,
0.0036223658826202154,
0.03443499654531479,
0.03863856941461563,
0.02288803458213806,
0.0027559148147702217,
0.004825531970709562,
0.002968238200992346,
0.0345550961792469,
0.002008493524044752,
-0.007986791431903839,
-0.03407469019293785,
0.019147710874676704,
0.049104612320661545,
-0.039805278182029724,
-0.029716698452830315,
-0.020640408620238304,
-0.08812064677476883,
0.005426042713224888,
0.003380016889423132,
0.0750809833407402,
-0.029905429109930992,
-0.011246706359088421,
-0.052741989493370056,
-0.0345550961792469,
0.04035431519150734,
-0.0415896512567997,
-0.013520067557692528,
-0.0024728169664740562,
-0.06962491571903229,
0.00022787234047427773,
-0.04227595031261444,
-0.0070860255509614944,
-0.04574175179004669,
-0.0051558129489421844,
-0.0741201713681221,
-0.03017994947731495,
-0.0059321871958673,
0.012799454852938652,
0.01736333593726158,
0.007459199987351894,
0.0653698742389679,
-0.020314417779445648,
-0.02635383792221546,
0.041521020233631134,
0.03592769429087639,
0.023145396262407303,
0.03544728457927704,
-0.002009565941989422,
0.025890586897730827,
0.05064878240227699,
-0.02951080910861492,
-0.022218894213438034,
-0.0059236083179712296,
0.006288204342126846,
0.05850689485669136,
-0.034623727202415466,
0.01859867200255394,
-0.03606495261192322,
-0.022133106365799904,
-0.014661038294434547,
0.04838399961590767,
-0.042173005640506744,
-0.02978532761335373,
0.03887877240777016,
-0.02288803458213806,
0.03596200793981552,
-0.01961096189916134,
0.029064714908599854,
-0.0515066534280777,
0.0008257020963355899,
-0.02539302036166191,
0.003111931961029768,
-0.05891867354512215,
-0.024191999807953835,
-0.01750059612095356,
-0.04378580302000046,
0.009376544505357742,
-0.05970791354775429,
-0.019885480403900146,
-0.03733460232615471,
0.0056233531795442104,
-0.07775754481554031,
-0.010637616738677025,
-0.027537701651453972,
0.003916187211871147,
0.05380575358867645,
-0.016119420528411865,
-0.001841208548285067,
0.04951639100909233,
-0.01166706345975399,
-0.028790196403861046,
-0.014695352874696255,
0.01676282472908497,
0.004731165710836649,
-0.035550229251384735,
0.010423148982226849,
0.020451676100492477,
0.018530042842030525,
0.0011012936010956764,
0.007107472512871027,
-0.01412057876586914,
-0.021412493661046028,
-0.020811982452869415,
0.016025055199861526,
-0.037609122693538666,
-0.0066013275645673275,
0.00586784677579999,
-0.025719013065099716,
0.03043731115758419,
-0.04876146465539932,
-0.05298219621181488,
-0.04732023924589157,
0.006339676678180695,
-0.012825191020965576,
-0.03747186437249184,
0.015553225763142109,
-0.014077684842050076,
-0.0920325443148613,
0.009788323193788528,
-0.04309950768947601,
0.05658525973558426,
0.000057336703321198,
0.05030563473701477,
0.0008986212778836489,
-0.022218894213438034,
0.05490383133292198,
-0.056688204407691956,
0.02640531025826931,
-0.019113395363092422,
0.04584469646215439,
0.010663352906703949,
0.02728033997118473,
0.04968796670436859,
0.014463727362453938,
-0.054457735270261765,
0.016728511080145836,
-0.027554860338568687,
0.06073736026883125,
0.009591012261807919,
0.01142685953527689,
-0.02764064632356167,
0.03448646888136864,
-0.02003989741206169,
-0.020142842084169388,
0.03534433990716934,
-0.009917004033923149,
0.04677119851112366,
0.018873190507292747,
0.050374262034893036,
-0.012044527567923069,
-0.07487509399652481,
0.01702018640935421,
-0.03623652830719948,
0.0820125937461853,
-0.01578485034406185,
0.04546723514795303,
-0.004675404168665409,
0.03150107339024544,
-0.03596200793981552,
-0.019405072554945946,
0.05167822912335396,
-0.015733378008008003,
0.03330260515213013,
-0.02697150595486164,
0.029116187244653702,
0.01431788969784975,
0.06070304661989212,
-0.022647829726338387,
-0.04193279892206192,
-0.019027607515454292,
0.006948765832930803,
-0.011770008131861687,
-0.038055215030908585,
0.015407387167215347,
0.037437546998262405,
0.01324554905295372,
0.019182024523615837,
0.006198127754032612,
0.0375404916703701,
-0.016822876408696175,
0.02017715759575367,
-0.007755165919661522,
-0.03863856941461563,
0.01671135239303112,
0.03122655302286148,
-0.009771166369318962,
0.0044480678625404835,
0.0455358624458313,
-0.013365650549530983,
0.018787404522299767,
0.033165343105793,
0.012928135693073273,
-0.006451199762523174,
0.02319686859846115,
-0.04474662244319916,
-0.009548119269311428,
0.010689089074730873,
-0.0743260607123375,
-0.02891029790043831,
0.030471624806523323,
0.0020835574250668287,
0.03846699371933937,
0.03448646888136864,
0.0023248340003192425,
0.013125446625053883
] |
729,735 | minidir | create | null | def create(self, path: Path) -> File:
pass
| (self, path: minidir.Path) -> minidir.File | [
-0.006111571099609137,
0.024904971942305565,
-0.025975238531827927,
0.024395320564508438,
-0.01572274975478649,
-0.054124992340803146,
0.008460215292870998,
0.07773884385824203,
-0.019485676661133766,
-0.0036248965188860893,
0.09785309433937073,
0.019519653171300888,
0.018738187849521637,
-0.016750546172261238,
-0.014397655613720417,
0.02079378254711628,
0.03356904536485672,
-0.020606910809874535,
-0.05072731524705887,
0.0429806113243103,
0.014006922952830791,
-0.015230086632072926,
0.007249793037772179,
-0.021626213565468788,
0.053309548646211624,
0.05578985437750816,
-0.03285553678870201,
0.0443057045340538,
0.024701111018657684,
-0.05208638682961464,
-0.009759826585650444,
-0.00936059933155775,
0.03401074558496475,
0.06876897811889648,
-0.00803125835955143,
0.03547174483537674,
-0.03402773290872574,
0.06414813548326492,
-0.08901913464069366,
-0.023868680000305176,
0.004892654716968536,
0.027147438377141953,
-0.023579876869916916,
0.006209254264831543,
0.003996517509222031,
-0.04641226679086685,
-0.013752097263932228,
-0.02658682130277157,
-0.05816822871565819,
0.019910385832190514,
0.00209488021209836,
-0.00026942515978589654,
-0.02480304054915905,
-0.017209233716130257,
-0.065745048224926,
0.003892463631927967,
0.060172855854034424,
0.034792210906744,
-0.008591875433921814,
0.013208468444645405,
0.014134335331618786,
0.02650187909603119,
0.10818202793598175,
-0.04202926158905029,
-0.03679684177041054,
0.047839291393756866,
-0.05572190135717392,
-0.03954895958304405,
0.03328024595975876,
0.05663927271962166,
0.03584549203515053,
0.005470259580761194,
0.05300375819206238,
0.024752074852585793,
0.061531927436590195,
0.038053981959819794,
-0.01748104766011238,
-0.017498034983873367,
0.09309634566307068,
-0.004072965122759342,
-0.0701960027217865,
-0.03460533916950226,
-0.02872735820710659,
0.009827780537307262,
0.025567518547177315,
0.012486462481319904,
0.07821451872587204,
-0.05976513400673866,
-0.07631181925535202,
0.049911871552467346,
-0.0018273130990564823,
0.008328555151820183,
-0.06024080887436867,
-0.05354738608002663,
0.04077212139964104,
-0.07481684535741806,
0.04535898566246033,
-0.004177019000053406,
-0.015068696811795235,
0.03348410502076149,
-0.04926631599664688,
0.008659828454256058,
-0.03372194245457649,
-0.01765093207359314,
0.024616168811917305,
-0.009420058690011501,
0.03897135332226753,
-0.020199188962578773,
-0.006612728349864483,
-0.0219150148332119,
-0.07203074544668198,
0.023138178512454033,
0.00884245429188013,
0.014125841669738293,
0.0035803020000457764,
-0.040160540491342545,
0.021184515208005905,
-0.04192733392119408,
0.0013229703763499856,
-0.027809984982013702,
0.016232401132583618,
-0.007695738226175308,
-0.041689496487379074,
0.04335435479879379,
0.047839291393756866,
0.039039306342601776,
0.025652460753917694,
-0.03091885894536972,
0.03132658079266548,
-0.002331655705347657,
-0.053139664232730865,
0.05385317653417587,
0.017633942887187004,
0.03363700211048126,
-0.0356416292488575,
-0.005049797240644693,
0.01856830343604088,
-0.0030366736464202404,
-0.004157906863838434,
0.05307171121239662,
0.02748720534145832,
-0.050455499440431595,
0.005092268344014883,
-0.02128644473850727,
0.011917351745069027,
0.03791807219386101,
-0.023460958153009415,
-0.02385169081389904,
-0.04134972766041756,
0.0943874642252922,
-0.013837038539350033,
-0.004104818217456341,
-0.007610796019434929,
0.042301077395677567,
0.0706716775894165,
-0.07869019359350204,
0.01906096749007702,
0.02840457856655121,
0.020471002906560898,
-0.004268331453204155,
-0.009598436765372753,
0.05436282977461815,
0.02814975194633007,
0.015119661577045918,
0.018177570775151253,
0.03604935109615326,
-0.0226964820176363,
0.038053981959819794,
0.027623113244771957,
-0.03914123773574829,
-0.0007044870289973915,
-0.00791658740490675,
-0.02728334441781044,
-0.013072561472654343,
-0.04845087230205536,
-0.04315049573779106,
0.055246226489543915,
0.03849567845463753,
0.044951263815164566,
0.010982990264892578,
0.011934340000152588,
-0.04192733392119408,
0.03385784849524498,
0.04114586487412453,
0.054498735815286636,
0.06088636815547943,
-0.008732029236853123,
0.039616912603378296,
0.03054511547088623,
0.009997664019465446,
-0.0164362620562315,
0.01597757451236248,
0.037884097546339035,
-0.015493405982851982,
0.028506508097052574,
-0.07821451872587204,
-0.001539572374895215,
-0.03992270305752754,
-0.0498439185321331,
0.06693423539400101,
0.032515767961740494,
0.037204559892416,
0.032226964831352234,
-0.010668705217540264,
0.023206133395433426,
0.002936866832897067,
0.03486016392707825,
0.03171731159090996,
-0.11117198318243027,
0.04845087230205536,
0.008413497358560562,
-0.028336625546216965,
-0.005351340863853693,
0.007942069321870804,
0.005614661145955324,
-0.050489477813243866,
-0.026858635246753693,
0.046072497963905334,
-0.051610711961984634,
0.06475972384214401,
0.024446284398436546,
0.0775349885225296,
-0.05171263962984085,
-0.010464844293892384,
0.06577902287244797,
-0.03463931381702423,
-0.03795205056667328,
-0.032345883548259735,
-0.04614045098423958,
-0.055246226489543915,
0.017158268019557,
-0.02091270126402378,
0.012350555509328842,
-0.032379861921072006,
-0.03632116690278053,
0.01579919643700123,
0.025159796699881554,
-0.034078698605298996,
-0.0398547500371933,
-0.027843961492180824,
0.026399949565529823,
-0.013378352858126163,
0.03333120793104172,
0.04063621535897255,
0.007963305339217186,
0.002913507865741849,
-0.013607695698738098,
-0.03839374706149101,
0.005899216514080763,
-0.03910725936293602,
0.04352423921227455,
0.016427768394351006,
-0.06795353442430496,
0.02843855507671833,
0.011152874678373337,
0.01577371545135975,
-0.0020407296251505613,
-0.07121530920267105,
0.038223862648010254,
0.0013059820048511028,
-0.028863264247775078,
-0.009827780537307262,
0.034741245210170746,
0.007517360150814056,
-0.027792995795607567,
-0.08806778490543365,
-0.06265316158533096,
-0.001040538540109992,
-0.03618525713682175,
-0.015162132680416107,
0.02509184367954731,
0.0843982920050621,
0.00003683028626255691,
-0.06234737113118172,
0.037204559892416,
-0.06724002212285995,
-0.036966722458601,
0.026841647922992706,
-0.0017795332241803408,
0.0591195784509182,
-0.019808456301689148,
-0.03740842267870903,
0.03873351588845253,
-0.008659828454256058,
0.005725085269659758,
0.06870102882385254,
-0.016300354152917862,
0.017990699037909508,
-0.027640100568532944,
-0.025601495057344437,
-0.01666560396552086,
0.050489477813243866,
-0.06696821004152298,
-0.008039752952754498,
0.03907328471541405,
-0.0006296319770626724,
-0.07406935840845108,
-0.04172347113490105,
0.042267099022865295,
-0.07264233380556107,
-0.017752861604094505,
0.015680277720093727,
-0.047805313020944595,
0.010719669982790947,
-0.02087872475385666,
-0.006876048631966114,
-0.05324159562587738,
0.01972351409494877,
-0.02872735820710659,
0.03815590962767601,
-0.025533542037010193,
-0.024616168811917305,
-0.0039455522783100605,
0.04145165905356407,
0.08670870959758759,
0.0427427738904953,
-0.00297721428796649,
0.020063281059265137,
-0.004257713910192251,
0.0059034633450210094,
-0.029746660962700844,
0.05398908630013466,
-0.041315749287605286,
-0.03171731159090996,
0.02797986939549446,
-0.03013739362359047,
0.017973709851503372,
0.02240767888724804,
-0.011169862933456898,
0.04688794165849686,
-0.05099913105368614,
0.08990252763032913,
0.06904079020023346,
0.022679492831230164,
-0.048756662756204605,
0.01661464013159275,
0.018993012607097626,
-0.023325052112340927,
0.04658215120434761,
-0.0008260601898655295,
0.03679684177041054,
-0.02645091339945793,
-0.04566477611660957,
-0.02803083322942257,
0.02264551632106304,
0.00003702936737681739,
0.016028540208935738,
-0.004722770769149065,
0.04831496626138687,
0.007649019826203585,
-0.022288760170340538,
0.010745152831077576,
-0.008757512085139751,
0.001908007892780006,
-0.020063281059265137,
-0.03492811694741249,
-0.026943577453494072,
0.027045506983995438,
-0.023172156885266304,
-0.026179099455475807,
0.011127391830086708,
0.01773587241768837,
0.0028646662831306458,
-0.010804612189531326,
0.01810961775481701,
-0.005219681188464165,
0.00561041384935379,
0.08589327335357666,
-0.0480431504547596,
-0.00017572360229678452,
0.03282155841588974,
-0.04580068215727806,
-0.016852477565407753,
0.009292646311223507,
0.037510354071855545,
0.015986070036888123,
0.015179120935499668,
-0.016776029020547867,
-0.03256673365831375,
0.06601686030626297,
-0.0008090718183666468,
0.011755961924791336,
-0.008604616858065128,
-0.005835509859025478,
0.014372172765433788,
-0.018585292622447014,
0.03774819150567055,
0.0029050137382000685,
0.03477522358298302,
-0.01016754750162363,
0.01929880492389202,
-0.04202926158905029,
0.02050497941672802,
0.002484551165252924,
0.05850799381732941,
0.0009439170826226473,
0.006141300778836012,
0.04824700951576233,
0.016937419772148132,
0.06819137185811996,
0.027843961492180824,
-0.012579898349940777,
-0.010159053839743137,
0.03343313932418823,
-0.04318447411060333,
-0.005347094032913446,
0.01545942947268486,
0.06197362393140793,
0.07311800867319107,
-0.019978340715169907,
0.018415408208966255,
0.002461192198097706,
-0.033501092344522476,
-0.01449109148234129,
0.005996899679303169,
0.04974198713898659,
-0.008995349518954754,
-0.02806481160223484,
-0.013760590925812721,
-0.04447558894753456,
-0.013794568367302418,
0.03496209532022476,
-0.003210804658010602,
0.0398547500371933,
0.003663120325654745,
-0.014474103227257729,
-0.017149774357676506,
0.0697203278541565,
0.018126605078577995,
0.025992227718234062,
0.016402285546064377,
-0.012469474226236343,
-0.006897284183651209,
0.011450170539319515,
0.009258669801056385,
-0.02393663302063942,
-0.060036949813365936,
-0.047805313020944595,
-0.014643986709415913,
0.07644772529602051,
0.006714658811688423,
-0.00398589950054884,
0.037714213132858276,
-0.005754814948886633,
0.003550572320818901,
-0.05082924664020538,
-0.029118090867996216,
-0.0008398632635362446,
0.1149773821234703,
-0.028880253434181213,
0.01839842088520527,
0.019332781434059143,
0.08983457833528519,
-0.005882228258997202,
-0.0229343194514513,
-0.038087956607341766,
-0.027045506983995438,
-0.06876897811889648,
0.02575439028441906,
-0.022135864943265915,
0.00843473244458437,
0.06401222944259644,
0.06146397441625595,
-0.08602917939424515,
0.0187211986631155,
-0.05844004079699516,
-0.029899556189775467,
-0.021677177399396896,
0.05609564483165741,
-0.04675203189253807,
0.010345925576984882,
-0.05079526826739311,
-0.0759720504283905,
0.001962158363312483,
0.018466373905539513,
0.000813318882137537,
0.018789153546094894,
-0.0007294387323781848,
-0.011645537801086903,
-0.017234716564416885,
0.04182540252804756,
-0.0580323189496994,
-0.07773884385824203,
0.05378522351384163,
0.0295597892254591,
0.009165233001112938,
-0.006081841420382261,
0.035607654601335526,
0.012333567254245281,
0.011399205774068832,
0.024208446964621544,
-0.008056741207838058,
-0.06506551057100296,
-0.012528933584690094,
-0.015739737078547478,
0.005538213066756725,
-0.023783737793564796,
0.018670234829187393,
-0.08575735986232758,
-0.031649358570575714,
-0.006396126467734575,
-0.03869953751564026,
-0.027555158361792564,
0.03890340030193329,
-0.0110169667750597,
0.05303773656487465,
-0.015569854527711868,
-0.05748869106173515,
-0.00948801264166832,
-0.03740842267870903,
-0.017183750867843628,
-0.013964451849460602,
-0.08433034271001816,
0.010184536688029766,
0.02261153981089592,
0.04311651736497879,
-0.03005245141685009,
-0.017871780321002007,
-0.031904187053442,
-0.030001485720276833,
-0.027317320927977562,
-0.02174513228237629,
0.04654817283153534,
-0.0440678671002388,
-0.021507294848561287,
-0.018619269132614136,
0.016835488379001617,
-0.027215391397476196,
0.06948249042034149,
0.060376718640327454,
0.04196130856871605,
-0.04943619668483734,
0.029695695266127586,
-0.006264466792345047,
0.003053662134334445,
0.01019303034991026,
-0.009199210442602634,
-0.003775668330490589,
-0.06931260973215103,
-0.0604446716606617,
0.01822853647172451,
-0.009318129159510136,
-0.062483277171850204,
-0.01591811515390873,
0.005245163571089506,
-0.03345012664794922,
-0.00257798726670444,
-0.0535813644528389,
0.034554373472929,
-0.024650145322084427,
0.030392220243811607,
-0.012197660282254219,
-0.0033297233749181032,
0.04308254271745682,
0.044713426381349564,
0.02673971652984619,
0.033789895474910736,
-0.048586778342723846,
0.02422543615102768,
-0.009080291725695133,
-0.0411798432469368,
-0.01620691828429699,
-0.02206791192293167,
0.046446241438388824,
-0.04063621535897255,
0.07427321374416351,
0.0014716187724843621,
0.024786053225398064,
0.023206133395433426,
-0.04067019000649452,
0.03227793052792549,
0.029084114357829094,
0.050251640379428864,
-0.05184854939579964,
0.029661718755960464,
-0.0020078145898878574,
-0.007169098127633333,
0.03638911992311478,
-0.0044891806319355965,
-0.024446284398436546,
-0.022475631907582283,
-0.02099764347076416,
-0.026960566639900208,
-0.04084007441997528,
-0.03951498121023178,
-0.03418062999844551,
-0.00888492539525032,
-0.004032617900520563,
-0.05157673358917236,
0.02318914420902729,
-0.019655561074614525,
-0.011713490821421146,
0.03345012664794922,
-0.00882546603679657,
-0.01946868747472763,
-0.006897284183651209,
0.03975281864404678,
-0.05212036147713661,
-0.03676286339759827,
-0.012282601557672024,
-0.0425049364566803,
-0.0012295342748984694,
-0.05188252404332161,
0.056367456912994385,
-0.023376015946269035,
-0.006400373764336109,
0.025482576340436935,
0.009572954848408699,
0.012554415501654148,
-0.003480495186522603,
0.025516552850604057,
-0.019893398508429527,
0.011501136235892773,
-0.0005425665294751525,
0.043048564344644547,
0.030324265360832214,
-0.012545921839773655,
0.006039370782673359,
-0.033008430153131485,
0.011084920726716518,
-0.03965088725090027,
-0.04328640177845955,
0.020640887320041656,
0.03336518630385399,
-0.01984243281185627,
0.021099573001265526,
0.030528126284480095,
-0.030358241870999336,
-0.024242423474788666,
-0.0471937321126461,
0.03227793052792549,
-0.0496060810983181,
-0.041485633701086044,
0.018364442512392998,
0.02774203196167946,
-0.004582616500556469,
-0.013709626160562038,
0.01579919643700123,
0.063332699239254,
0.027725042775273323,
-0.07447707653045654,
-0.019417723640799522,
-0.03812193498015404,
-0.019043978303670883,
-0.06506551057100296,
-0.03547174483537674,
0.004191883839666843,
-0.08004926890134811,
0.01132275816053152,
-0.024089528247714043,
-0.0011127392062917352,
-0.02364782989025116,
-0.0622454397380352,
-0.03229491785168648,
0.07366163283586502,
-0.007610796019434929,
0.05765857547521591,
-0.03134356811642647,
-0.04749952256679535,
0.008426238782703876,
0.04134972766041756,
0.0014981630956754088,
0.006676435004919767,
0.04060223698616028,
-0.046072497963905334,
-0.0025864813942462206,
0.022594550624489784,
-0.03764626011252403,
-0.05004778131842613,
0.02852349728345871,
0.005512730684131384,
0.006549022160470486,
-0.005924698896706104,
-0.019332781434059143,
0.03248178958892822,
0.014083370566368103,
0.009564460255205631,
-0.0012274107430130243,
0.04698986932635307,
0.04957210645079613,
-0.014168312773108482,
0.015068696811795235,
-0.0037480622995644808,
-0.021354399621486664,
0.03414665162563324,
0.014542057178914547,
0.017582977190613747,
0.0427427738904953,
0.006209254264831543,
-0.03659297898411751,
-0.05422692373394966,
-0.012562910094857216,
-0.04366014897823334,
-0.018466373905539513,
-0.02422543615102768,
0.03345012664794922,
0.038291819393634796,
0.03173430263996124,
0.017328152433037758,
0.017922746017575264,
-0.008362531661987305,
0.004357520490884781,
0.02840457856655121,
0.0030409207101911306,
-0.02154127135872841,
-0.04525705426931381,
-0.014584528282284737,
0.003546325257048011,
0.03601537272334099,
-0.04128177464008331,
-0.02104860730469227,
0.012902677990496159,
0.05857594683766365,
-0.014125841669738293,
0.0229343194514513,
0.038087956607341766,
-0.03625321015715599,
-0.0059034633450210094,
-0.004854430910199881,
-0.048213034868240356,
-0.007220063358545303,
-0.023223120719194412,
-0.01955362968146801,
-0.011356734670698643,
-0.02154127135872841,
-0.049504149705171585,
-0.0535813644528389,
-0.04294663667678833,
0.030375231057405472,
0.0012125459033995867,
-0.0033552059903740883,
-0.006009641103446484,
-0.02381771430373192,
0.014975260943174362,
0.0184833612293005,
-0.021099573001265526,
0.0038797222077846527,
0.043422311544418335,
0.00843473244458437,
0.02575439028441906,
-0.025142809376120567,
0.038461700081825256,
-0.008260602131485939,
-0.014440126717090607,
0.039039306342601776,
0.0029304963536560535,
0.08052494376897812,
0.035981398075819016,
-0.07984540611505508,
0.0403304249048233,
-0.0010840712347999215,
-0.0029474846087396145,
0.029712684452533722,
0.08650485426187515,
0.016402285546064377,
-0.04899450019001961,
0.039209190756082535,
-0.03509800136089325,
-0.0004048013361170888,
-0.012698817066848278,
-0.022050922736525536,
-0.025397634133696556,
0.01048183348029852,
-0.011084920726716518,
0.01955362968146801,
0.028965195640921593,
-0.003977405373007059,
0.025975238531827927
] |
729,736 | minidir | get | null | def get(self, path: Path) -> File:
pass
| (self, path: minidir.Path) -> minidir.File | [
0.047557249665260315,
-0.021689502522349358,
-0.042393893003463745,
0.06596869975328445,
0.01259417925029993,
-0.04266564920544624,
0.034954577684402466,
0.027005724608898163,
0.02598663978278637,
-0.001118869287893176,
0.08132290095090866,
-0.007503005675971508,
-0.026139503344893456,
0.0055327764712274075,
0.033188167959451675,
0.046775951981544495,
0.013511354103684425,
0.02063645049929619,
0.004662308841943741,
0.03563397005200386,
0.006674999836832285,
-0.015642939135432243,
0.0028810352087020874,
-0.022182060405611992,
0.005108158104121685,
0.04368473216891289,
0.010097423568367958,
-0.017850954085588455,
0.028636258095502853,
-0.06410037726163864,
0.024984540417790413,
-0.021434731781482697,
0.026071563363075256,
0.04297137260437012,
-0.05370572209358215,
0.05051259323954582,
-0.006382013205438852,
0.026852861046791077,
-0.08648625761270523,
-0.01563444547355175,
-0.06444007158279419,
0.02238587662577629,
0.04823663830757141,
-0.004764217417687178,
-0.002649618312716484,
-0.006560352630913258,
-0.04215610399842262,
-0.012730056419968605,
-0.029213739559054375,
0.014156774617731571,
0.03114999830722809,
0.019855152815580368,
-0.033510878682136536,
-0.04310724884271622,
-0.03797786310315132,
-0.0010249224724248052,
0.013001812621951103,
0.045077480375766754,
0.009137785993516445,
0.06379465758800507,
0.009766221046447754,
-0.042461831122636795,
0.056491218507289886,
-0.039982058107852936,
-0.017315935343503952,
0.033324044197797775,
-0.013825572095811367,
-0.039982058107852936,
0.008084733039140701,
0.04908587783575058,
0.03872518986463547,
0.04864427447319031,
-0.012390362098813057,
0.0025753099471330643,
0.03726450353860855,
-0.0017313811695203185,
0.00030200977926142514,
-0.013825572095811367,
0.05883511155843735,
0.005384160205721855,
-0.03831755742430687,
-0.023455915972590446,
-0.02388053387403488,
-0.0049000950530171394,
-0.006122996099293232,
-0.01696774736046791,
0.09103816747665405,
-0.10143282264471054,
-0.05516641214489937,
0.07948854565620422,
-0.004789694678038359,
0.03120095282793045,
-0.07126794010400772,
-0.03062347322702408,
0.033986449241638184,
-0.08390457928180695,
0.012916889041662216,
0.009282155893743038,
-0.03539618104696274,
0.021451717242598534,
-0.026462212204933167,
0.03930266946554184,
-0.016755439341068268,
0.03797786310315132,
0.03283148631453514,
0.0045136925764381886,
0.03590572252869606,
-0.012279961258172989,
0.032729580998420715,
-0.013647232204675674,
-0.06939961761236191,
0.02644522860646248,
-0.01129484735429287,
0.043379005044698715,
0.022963358089327812,
-0.03532824292778969,
-0.028772136196494102,
0.0006804508157074451,
0.001820550998672843,
-0.01978721283376217,
-0.003528578206896782,
0.04202022776007652,
-0.05020686984062195,
0.02036469429731369,
0.0540454164147377,
0.049765266478061676,
-0.019821181893348694,
-0.039268702268600464,
0.0376041978597641,
0.012229007668793201,
0.012933873571455479,
0.02938358671963215,
0.018717175349593163,
0.05217709764838219,
-0.03125190734863281,
0.0184624046087265,
0.027175571769475937,
0.022674618288874626,
0.013494369573891163,
0.08913587778806686,
0.023201145231723785,
-0.028381487354636192,
0.02596965618431568,
-0.052584730088710785,
-0.0005658039008267224,
0.037638165056705475,
0.029740266501903534,
-0.04759122058749199,
-0.050682440400123596,
0.0659007579088211,
0.0311330147087574,
-0.013910495676100254,
-0.011481679044663906,
-0.024695800617337227,
0.057476334273815155,
-0.06729350984096527,
-0.0009033754467964172,
0.055777862668037415,
-0.022300953045487404,
-0.01462385430932045,
-0.03452996164560318,
0.02761717513203621,
0.017027193680405617,
-0.025018511340022087,
0.02950247935950756,
0.03794389218091965,
-0.05187137424945831,
0.06542518734931946,
0.033782631158828735,
-0.035294272005558014,
-0.035667937248945236,
0.018683206290006638,
-0.05815572291612625,
-0.027073662728071213,
0.01657709851861,
-0.04392251744866371,
0.01298482809215784,
0.0739854946732521,
0.05051259323954582,
0.026275381445884705,
-0.004424522630870342,
-0.07901297509670258,
0.0042610447853803635,
0.029451526701450348,
0.05774809047579765,
0.07255877554416656,
-0.009180247783660889,
0.006449952255934477,
0.029808204621076584,
0.03223702311515808,
-0.027039693668484688,
0.01089570578187704,
-0.0034309159964323044,
-0.029349617660045624,
-0.007371373940259218,
-0.10122900456190109,
0.01306125894188881,
-0.01781698502600193,
-0.03281450271606445,
0.04613053426146507,
0.010717365890741348,
0.0007154818740673363,
0.012764026410877705,
0.022742556408047676,
-0.04106908291578293,
0.012262976728379726,
0.0664442703127861,
-0.0002566287002991885,
-0.0660366415977478,
0.11271068453788757,
-0.03188034147024155,
-0.03923473134636879,
-0.027396373450756073,
-0.04042366147041321,
0.02833053283393383,
-0.04249580204486847,
-0.07853740453720093,
0.029978051781654358,
-0.05465686693787575,
0.06827862560749054,
0.0742572471499443,
0.023931488394737244,
-0.021638549864292145,
0.021061068400740623,
0.0654931291937828,
-0.023133205249905586,
0.006424474995583296,
-0.017375381663441658,
-0.08764121681451797,
-0.059820227324962616,
0.020874235779047012,
-0.014683300629258156,
0.055709920823574066,
-0.012611163780093193,
-0.015379674732685089,
0.033578816801309586,
0.011889312416315079,
0.0006125118816271424,
-0.016543129459023476,
-0.023320037871599197,
0.053366027772426605,
-0.021910304203629494,
0.011099522933363914,
0.0579519048333168,
-0.04354885220527649,
-0.004019012209028006,
-0.0029171276837587357,
0.011116507463157177,
0.01047957967966795,
-0.02433912083506584,
0.0828854963183403,
0.018241602927446365,
-0.03419026732444763,
0.01409732736647129,
0.015430629253387451,
-0.012747041881084442,
-0.05129389092326164,
-0.08064351230859756,
0.04378664121031761,
0.011303339153528214,
-0.02681889198720455,
0.006127241998910904,
0.051735494285821915,
-0.01990610547363758,
-0.030385686084628105,
-0.07160763442516327,
-0.036924809217453,
-0.02357480861246586,
0.006530629470944405,
-0.01691679283976555,
0.019940076395869255,
0.07208320498466492,
-0.006488167680799961,
-0.058970991522073746,
0.007235495839267969,
-0.05163358524441719,
-0.0049510495737195015,
0.048270609229803085,
0.00791063904762268,
0.050240837037563324,
-0.06430419534444809,
-0.02206316776573658,
0.028177671134471893,
-0.006602814886718988,
-0.03767213597893715,
0.045722898095846176,
-0.011872327886521816,
0.011583587154746056,
-0.055777862668037415,
-0.011065552942454815,
0.05241488292813301,
0.017766030505299568,
-0.06759923696517944,
-0.02153664082288742,
0.05370572209358215,
0.004220705945044756,
-0.06182442605495453,
-0.056559160351753235,
0.06162060797214508,
-0.030793320387601852,
-0.007469036150723696,
-0.021196946501731873,
-0.02022881619632244,
0.014462499879300594,
-0.00037737953243777156,
-0.016432728618383408,
-0.021519655361771584,
-0.025884732604026794,
-0.017477288842201233,
0.030436640605330467,
0.0011899927631020546,
-0.0412389300763607,
-0.02298034355044365,
0.029808204621076584,
0.032933395355939865,
0.023387975990772247,
-0.02153664082288742,
0.040695417672395706,
0.01788492314517498,
0.022216029465198517,
-0.03376564756035805,
0.08662213385105133,
0.0011899927631020546,
-0.022351907566189766,
0.029723281040787697,
-0.013443415984511375,
0.02238587662577629,
0.021179961040616035,
-0.009358587674796581,
0.057340458035469055,
-0.005350190680474043,
0.06528931111097336,
0.023150190711021423,
0.0034309159964323044,
-0.029349617660045624,
0.014369083568453789,
0.034512974321842194,
-0.03699274733662605,
0.036856867372989655,
0.014640838839113712,
0.048916030675172806,
-0.049697328358888626,
-0.008513596840202808,
-0.03306927531957626,
-0.011209923774003983,
0.02109503746032715,
0.03543015196919441,
-0.022029198706150055,
0.045281294733285904,
-0.03682290017604828,
-0.009910590946674347,
-0.03203320503234863,
-0.014445514418184757,
-0.013766125775873661,
-0.05469083786010742,
0.009137785993516445,
-0.00700195599347353,
0.04704770818352699,
-0.020772326737642288,
0.01726498082280159,
-0.0028215886559337378,
0.01436059083789587,
-0.04711564630270004,
-0.012279961258172989,
0.006602814886718988,
-0.007970085367560387,
0.016288358718156815,
0.0580877847969532,
-0.0021039836574345827,
0.014606869779527187,
-0.017443319782614708,
-0.009137785993516445,
-0.01168549619615078,
0.008339503780007362,
0.01978721283376217,
-0.0033183919731527567,
-0.012152575887739658,
-0.02245381660759449,
-0.007316173519939184,
0.07303434610366821,
0.027888931334018707,
0.036449234932661057,
-0.00923120230436325,
0.011175953783094883,
0.007210019044578075,
-0.03459789976477623,
0.014216220937669277,
-0.03188034147024155,
0.02128187008202076,
-0.022148091346025467,
0.05771411955356598,
-0.054928623139858246,
0.04140877723693848,
-0.008229102939367294,
0.01808873936533928,
-0.011719465255737305,
0.01279799547046423,
0.012976335361599922,
0.023031296208500862,
0.05452099069952965,
0.0230482816696167,
0.039846181869506836,
-0.040117938071489334,
0.050478626042604446,
-0.03422423452138901,
-0.015286259353160858,
0.038147710263729095,
0.020262785255908966,
0.011218415573239326,
-0.0459606871008873,
-0.03695877641439438,
0.0031124521046876907,
-0.017986832186579704,
-0.010929674841463566,
0.046640075743198395,
0.04446602985262871,
0.0009644143283367157,
-0.04881412163376808,
0.028177671134471893,
-0.01410582009702921,
-0.020466603338718414,
-0.004284398630261421,
-0.02146870084106922,
-0.015940170735120773,
0.02233492210507393,
-0.06396450102329254,
-0.00923120230436325,
0.04884808883070946,
0.00035508704604581,
0.056695036590099335,
0.007745037786662579,
-0.03943854942917824,
-0.03597366437315941,
-0.02063645049929619,
0.009944560937583447,
-0.002322662156075239,
-0.06807480752468109,
-0.04266564920544624,
0.004241936840116978,
0.015090934932231903,
-0.009052862413227558,
0.027973854914307594,
0.016729962080717087,
0.002791865263134241,
0.029128815978765488,
-0.047557249665260315,
-0.028874045237898827,
0.036856867372989655,
0.0843801498413086,
-0.08777709305286407,
-0.02461087703704834,
-0.0074053434655070305,
0.07018091529607773,
-0.00840319599956274,
-0.010700381360948086,
-0.04208816587924957,
-0.04127290099859238,
-0.033001333475112915,
0.019430533051490784,
-0.0051208967342972755,
-0.003146421629935503,
0.05452099069952965,
0.05523435026407242,
-0.14076946675777435,
0.009936068207025528,
-0.060873281210660934,
-0.007269465364515781,
0.017596183344721794,
0.017613166943192482,
-0.07364580035209656,
0.026292365044355392,
-0.02194427326321602,
-0.11936870217323303,
-0.028619274497032166,
0.020381677895784378,
0.011277861893177032,
0.019226716831326485,
0.02179141156375408,
-0.0076346369460225105,
-0.04028778523206711,
0.0029086354188621044,
-0.06545916199684143,
-0.06202824413776398,
0.03512442484498024,
0.017664121463894844,
-0.013137690722942352,
-0.009061355143785477,
0.0537736639380455,
0.026326335966587067,
-0.012118606828153133,
0.061077095568180084,
0.06797289848327637,
-0.08125495910644531,
-0.029689311981201172,
-0.0018258587224408984,
0.020058969035744667,
-0.02311621978878975,
0.022470800206065178,
-0.032152097672224045,
0.01308673620223999,
-0.018241602927446365,
-0.06719160079956055,
-0.0061654578894376755,
0.06783702224493027,
-0.025494083762168884,
0.035022519528865814,
-0.012458301149308681,
-0.037434350699186325,
0.004764217417687178,
-0.03583778440952301,
0.017443319782614708,
0.013893511146306992,
-0.053943511098623276,
0.04327709972858429,
0.01667051389813423,
0.001437332946807146,
-0.026750953868031502,
0.020194847136735916,
0.009783205576241016,
0.019141793251037598,
-0.017154579982161522,
-0.013366984203457832,
0.04117099195718765,
-0.041612595319747925,
-0.02899293787777424,
-0.03335801512002945,
-0.018241602927446365,
-0.014530438929796219,
0.010946660302579403,
0.04419427365064621,
0.035939693450927734,
-0.03244083747267723,
0.003545562969520688,
-0.0011454079067334533,
0.020653434097766876,
0.027209540829062462,
-0.026666030287742615,
-0.021451717242598534,
-0.08967939019203186,
-0.025952670723199844,
0.01932862587273121,
-0.003218606812879443,
-0.025120418518781662,
-0.008543320000171661,
-0.01742633618414402,
-0.06206221133470535,
-0.02819465473294258,
-0.03432614356279373,
0.09504656493663788,
0.0002614056575112045,
0.02681889198720455,
-0.034750763326883316,
0.033188167959451675,
-0.0015413644723594189,
0.016628053039312363,
0.03994809091091156,
-0.003396946471184492,
-0.016933778300881386,
-0.006921278312802315,
-0.0495954193174839,
0.002528602024540305,
-0.01361326314508915,
-0.0413748063147068,
0.06922976672649384,
-0.0378759540617466,
0.04714961722493172,
0.027837976813316345,
0.029026906937360764,
0.02107805199921131,
-0.06797289848327637,
0.03393549472093582,
0.04195228964090347,
0.022606678307056427,
-0.03875916078686714,
0.05744236335158348,
0.04195228964090347,
-0.0036071324720978737,
0.010394656099379063,
-0.003927719313651323,
0.0026198949199169874,
0.0013396707363426685,
-0.050886258482933044,
0.03101412206888199,
-0.0009203602094203234,
-0.03954045847058296,
-0.01815667934715748,
0.007936116307973862,
-0.025358205661177635,
-0.047625187784433365,
0.009800190106034279,
-0.006577337626367807,
-0.07418931275606155,
0.0042058443650603294,
-0.0026857107877731323,
0.0113882627338171,
0.01152414083480835,
-0.0036432251799851656,
-0.046708013862371445,
-0.012645132839679718,
0.004019012209028006,
-0.010674904100596905,
0.0035137163940817118,
-0.015498568303883076,
0.03872518986463547,
-0.038487404584884644,
0.025884732604026794,
0.04548511281609535,
0.01136278547346592,
0.017443319782614708,
0.00752423657104373,
-0.007328912150114775,
-0.035871755331754684,
-0.006411736365407705,
0.03232194483280182,
0.02428816631436348,
0.054283205419778824,
0.010547518730163574,
0.008182395249605179,
-0.08186641335487366,
0.001512702670879662,
0.006122996099293232,
-0.011948758736252785,
0.015736354514956474,
0.04235992208123207,
0.012747041881084442,
0.03373167663812637,
0.034818701446056366,
-0.00246490933932364,
-0.041612595319747925,
0.013052767142653465,
0.031031105667352676,
-0.027651144191622734,
0.00871316809207201,
0.042393893003463745,
0.00943501852452755,
-0.03689083829522133,
0.011736449785530567,
-0.00003012136039615143,
-0.00582576310262084,
0.047353435307741165,
-0.07500457763671875,
0.007558206096291542,
-0.03413931280374527,
-0.009638835676014423,
-0.06141679361462593,
0.0155325373634696,
-0.02761717513203621,
-0.018360495567321777,
0.07473282516002655,
-0.04630038142204285,
-0.000038481033698190004,
-0.013672709465026855,
-0.027243509888648987,
-0.027396373450756073,
0.045077480375766754,
-0.04966335743665695,
0.10020992159843445,
-0.026343319565057755,
-0.03461488336324692,
0.023133205249905586,
0.027566220611333847,
-0.01944751851260662,
0.01802080124616623,
-0.01900591515004635,
-0.040253814309835434,
-0.039064884185791016,
-0.01847938820719719,
-0.03981221094727516,
0.0021294609177857637,
0.008933968842029572,
-0.004052981734275818,
0.03362977132201195,
-0.02017786167562008,
-0.04314121976494789,
0.0042886449955403805,
0.00048565719043836,
0.03259370103478432,
-0.02481469325721264,
0.038351524621248245,
0.03184637427330017,
0.014734255149960518,
0.025290265679359436,
-0.0014405176043510437,
0.04405839741230011,
-0.0016878577880561352,
0.018360495567321777,
0.000023752087145112455,
0.042461831122636795,
0.02004198357462883,
-0.025731869041919708,
-0.05092022567987442,
-0.04358282312750816,
-0.05248282104730606,
-0.011235400103032589,
-0.005180343519896269,
0.04225801303982735,
0.04538320377469063,
0.012891411781311035,
0.017188549041748047,
0.0541812963783741,
-0.02226698398590088,
-0.04545114189386368,
0.06610457599163055,
-0.013103720732033253,
0.004471230786293745,
-0.061858393251895905,
0.005749331787228584,
-0.01802080124616623,
-0.07554809004068375,
-0.015719369053840637,
-0.01958339661359787,
0.0011836235644295812,
0.018717175349593163,
-0.0044882153160870075,
0.048134732991456985,
0.04038969427347183,
-0.07011297345161438,
-0.014972041361033916,
-0.02252175472676754,
-0.014318129047751427,
-0.029621373862028122,
-0.05465686693787575,
-0.011702480725944042,
0.018224617466330528,
0.002700572367757559,
0.016679007560014725,
-0.05608358606696129,
-0.03306927531957626,
0.0066877384670078754,
0.04545114189386368,
0.002866173628717661,
-0.009443511255085468,
0.028432441875338554,
-0.024916602298617363,
-0.015039980411529541,
-0.030521564185619354,
-0.014284159988164902,
0.005638930946588516,
0.024390075355768204,
0.02566393092274666,
-0.010156869888305664,
0.04320915788412094,
-0.03184637427330017,
-0.011710972525179386,
0.01834351010620594,
-0.02773606777191162,
0.06005801260471344,
0.02447499893605709,
-0.05954847112298012,
0.04534923657774925,
-0.015574999153614044,
-0.017256487160921097,
0.050682440400123596,
0.09477480500936508,
0.004282275680452585,
-0.02063645049929619,
-0.002904389286413789,
-0.04728549346327782,
0.01050505694001913,
0.015625953674316406,
-0.05791793763637543,
0.009910590946674347,
-0.012415839359164238,
0.014428529888391495,
0.008522089570760727,
0.03400343284010887,
-0.02624141052365303,
0.012441316619515419
] |
729,737 | minidir | remove | null | def remove(self, path: Path) -> None:
pass
| (self, path: minidir.Path) -> NoneType | [
0.04327651113271713,
0.04052671790122986,
-0.026123037561774254,
0.002418345073238015,
-0.008081610314548016,
-0.0487433597445488,
-0.02018151991069317,
0.09447504580020905,
0.02219475992023945,
0.02546832337975502,
0.04720478504896164,
-0.006416184362024069,
0.022702163085341454,
-0.014428230933845043,
-0.05466851219534874,
0.006792644504457712,
0.06674796342849731,
0.006006989162415266,
-0.02866004779934883,
-0.08066060394048691,
0.010377196595072746,
-0.006510299630463123,
0.0009723506518639624,
0.01756266877055168,
-0.01048358716070652,
0.05002005025744438,
0.03882446512579918,
0.0013667127350345254,
0.03322666883468628,
-0.04265453293919563,
-0.010418116115033627,
0.008085701614618301,
-0.03170446306467056,
-0.000680287426803261,
-0.027530668303370476,
0.053620971739292145,
-0.0017094139475375414,
0.045829888433218,
-0.03826795890927315,
-0.014149978756904602,
-0.02026335895061493,
0.06442373245954514,
0.0018833220237866044,
-0.02615577168762684,
0.04370207339525223,
0.018839357420802116,
-0.00434565544128418,
0.024731772020459175,
-0.005245885346084833,
0.034143269062042236,
0.022423909977078438,
0.022620324045419693,
-0.010598162189126015,
0.0003235201584175229,
-0.009296920150518417,
-0.031802669167518616,
0.04255632683634758,
0.03541995584964752,
0.03289931267499924,
0.008138896897435188,
0.05876046419143677,
-0.014673748053610325,
-0.007046345621347427,
-0.05041287839412689,
0.021703725680708885,
-0.04170519858598709,
0.01880662329494953,
-0.01631052978336811,
0.011072828434407711,
0.0038443910889327526,
-0.05790933966636658,
0.003081241622567177,
0.018773887306451797,
0.03718768060207367,
0.02757977321743965,
-0.00784018449485302,
0.03365223482251167,
0.03121342882514,
0.08164267241954803,
-0.05529048666357994,
0.018675679340958595,
-0.03872625529766083,
-0.0148292426019907,
0.010639081709086895,
0.0020817818585783243,
0.022914944216609,
0.10894419252872467,
-0.07666685432195663,
-0.049823638051748276,
0.03293205052614212,
-0.02671227790415287,
0.000176849149283953,
-0.0715600997209549,
-0.049201659858226776,
0.0680246502161026,
-0.012668690644204617,
0.033341243863105774,
-0.04579715430736542,
-0.005961977411061525,
-0.04861241951584816,
0.04432405158877373,
0.023078622296452522,
0.012447725050151348,
0.0015774484490975738,
0.022260231897234917,
0.04029756784439087,
0.03875899314880371,
-0.06334345042705536,
-0.010835494846105576,
0.011408369056880474,
-0.05394832789897919,
0.03411053121089935,
0.0018035288667306304,
0.011580230668187141,
0.024649932980537415,
-0.03915182128548622,
-0.06085554510354996,
-0.07267311215400696,
0.026499496772885323,
-0.0019150346051901579,
0.014043587259948254,
0.007664230652153492,
-0.058891408145427704,
-0.0016204139683395624,
0.047564879059791565,
0.031262531876564026,
0.016793381422758102,
0.03620561212301254,
-0.0012480460572987795,
-0.007185471709817648,
-0.06403090059757233,
-0.004188115242868662,
-0.00442749448120594,
0.005380920134484768,
-0.0029421153012663126,
0.015393932349979877,
0.04589536041021347,
-0.05342455580830574,
0.04304736107587814,
0.050118256360292435,
-0.0009836035314947367,
-0.002016310580074787,
0.0173171516507864,
0.003609103849157691,
0.07889287918806076,
0.013307035900652409,
-0.0012275862973183393,
-0.0191830825060606,
-0.053915590047836304,
0.03430694714188576,
-0.07954759150743484,
-0.015033840201795101,
0.03469977155327797,
-0.031638991087675095,
0.031115220859646797,
0.007111816667020321,
-0.02851273864507675,
0.026908691972494125,
-0.028905566781759262,
-0.04674648866057396,
0.03761324658989906,
0.02081986330449581,
0.02982216328382492,
-0.014207265339791775,
-0.01847926527261734,
-0.014542805962264538,
0.02312772534787655,
0.05103485658764839,
-0.047794029116630554,
0.02065618522465229,
-0.008069333620369434,
0.016359632834792137,
-0.004844874143600464,
0.003508850932121277,
-0.037842392921447754,
0.009534253738820553,
0.026352185755968094,
0.06599503755569458,
0.012554116547107697,
0.0056960005313158035,
0.018070070073008537,
-0.047728557139635086,
0.006694437470287085,
0.016212323680520058,
0.04700837284326553,
0.025877520442008972,
-0.0402320958673954,
0.0013933104928582907,
0.027121473103761673,
0.03938096761703491,
-0.04278547689318657,
0.02694142796099186,
0.04766308516263962,
0.040101151913404465,
0.0371222086250782,
-0.023487817496061325,
0.033881381154060364,
-0.03036230243742466,
-0.04612451046705246,
-0.021834667772054672,
0.0234387144446373,
-0.004134919960051775,
0.024093426764011383,
0.00648165587335825,
-0.012644139118492603,
-0.009460598230361938,
0.038398899137973785,
0.004337471444159746,
-0.013266116380691528,
0.08884451538324356,
0.00745554082095623,
-0.018462898209691048,
0.06468561291694641,
-0.050281934440135956,
0.04939807206392288,
-0.09683200716972351,
-0.06887577474117279,
0.00653894292190671,
0.020296093076467514,
0.05499586835503578,
0.03456883132457733,
0.09512975811958313,
0.016482392325997353,
0.006862207315862179,
0.020066944882273674,
-0.015402116812765598,
-0.04317830130457878,
0.014616461470723152,
0.010557242669165134,
-0.06065913289785385,
0.071756511926651,
-0.0039998856373131275,
0.029985841363668442,
-0.0655367448925972,
-0.009215081110596657,
0.02532101422548294,
-0.045829888433218,
-0.018135542050004005,
-0.02165462262928486,
-0.0377441868185997,
-0.006358897313475609,
-0.04124690219759941,
0.011473840102553368,
0.043898485600948334,
-0.014240001328289509,
0.04160699248313904,
0.002453126711770892,
0.002745701465755701,
0.017448093742132187,
-0.06301609426736832,
0.029838532209396362,
0.004186069127172232,
-0.0327683724462986,
0.029216554015874863,
0.027236048132181168,
-0.01300423126667738,
-0.044291313737630844,
-0.032195497304201126,
-0.025370117276906967,
0.027350623160600662,
-0.031638991087675095,
-0.07712515443563461,
0.05725462734699249,
0.031720831990242004,
0.019543174654245377,
-0.006706713233143091,
0.010843679308891296,
0.04268726706504822,
-0.004677103832364082,
0.0057123685255646706,
0.00900229997932911,
-0.024289840832352638,
0.03646749630570412,
-0.05404653400182724,
0.015647633001208305,
0.01887209340929985,
-0.053620971739292145,
0.002506321994587779,
-0.014616461470723152,
0.051853246986866,
0.023487817496061325,
-0.06399817019701004,
0.045928094536066055,
0.013339770957827568,
-0.021098116412758827,
0.06308156996965408,
0.03558363392949104,
-0.0007227414171211421,
-0.013618024066090584,
0.04933260381221771,
0.04308009520173073,
-0.02880735881626606,
-0.057189155369997025,
0.028234485536813736,
0.0657331570982933,
0.03790786489844322,
-0.06900671869516373,
-0.0048735179007053375,
0.029756693169474602,
0.007234575226902962,
0.018544737249612808,
0.013806254602968693,
-0.039184555411338806,
-0.007099540904164314,
0.028152646496891975,
-0.025926623493433,
0.00822482816874981,
0.058891408145427704,
-0.006232046522200108,
0.05077296867966652,
-0.010688184760510921,
-0.02951117604970932,
-0.09814143180847168,
0.011752093210816383,
0.09139789640903473,
0.008028414100408554,
0.0025145059917122126,
0.020770760253071785,
-0.050740234553813934,
0.01864294335246086,
-0.023275036364793777,
0.004065356682986021,
-0.06000442057847977,
-0.0005370689905248582,
-0.01739899069070816,
-0.048645153641700745,
-0.02825085259974003,
0.028741886839270592,
-0.025255542248487473,
0.04828506335616112,
-0.01541848387569189,
0.049267131835222244,
0.01715347357094288,
-0.03869352117180824,
0.018037334084510803,
-0.02656496874988079,
0.03997021168470383,
-0.010770023800432682,
0.022031081840395927,
0.07188745588064194,
-0.004881701432168484,
-0.0034740692935884,
0.008453978225588799,
0.009845241904258728,
-0.021638255566358566,
0.009395127184689045,
-0.009329656139016151,
0.011318345554172993,
0.043996695429086685,
0.023635128512978554,
0.08602924644947052,
0.04923439398407936,
-0.021229058504104614,
-0.010409931652247906,
-0.001265436876565218,
-0.001623482909053564,
-0.027514301240444183,
0.07182198017835617,
0.014297288842499256,
-0.044618669897317886,
0.02833269163966179,
-0.005299081094563007,
-0.006379357073456049,
-0.028201749548316002,
0.024649932980537415,
-0.04193434864282608,
-0.061837613582611084,
0.01261140312999487,
-0.007590575609356165,
-0.03564910590648651,
0.00698905810713768,
-0.020770760253071785,
-0.01227586343884468,
0.013266116380691528,
0.039577383548021317,
0.04510970413684845,
0.05872773006558418,
0.034667037427425385,
-0.03983926773071289,
0.04543706029653549,
-0.012128552421927452,
0.04743393510580063,
0.020541610196232796,
-0.02167098969221115,
-0.016670621931552887,
0.04029756784439087,
0.01556579489260912,
-0.024437151849269867,
-0.009730667807161808,
0.006006989162415266,
0.014477334916591644,
-0.05709094926714897,
-0.011392001062631607,
-0.05627255514264107,
-0.01599954254925251,
-0.013217012397944927,
0.010205334052443504,
0.008413058705627918,
-0.012284046970307827,
0.041508786380290985,
0.030918806791305542,
0.028545474633574486,
-0.07830364257097244,
0.04481508582830429,
0.029134714975953102,
0.02320956625044346,
-0.013822621665894985,
0.0580730177462101,
0.000024232042051153257,
-0.03555089980363846,
0.011097379960119724,
0.008085701614618301,
0.014976552687585354,
0.013053334318101406,
0.03954464569687843,
0.001429115072824061,
0.025975726544857025,
-0.06357260048389435,
0.023504186421632767,
0.01277508120983839,
-0.014313656836748123,
0.04055945202708244,
-0.052606165409088135,
0.0011702990159392357,
0.003776873927563429,
-0.0070504373870790005,
-0.00739416154101491,
0.007287770975381136,
-0.002322184154763818,
0.05103485658764839,
-0.03090243972837925,
-0.07234575599431992,
-0.04658281058073044,
0.011244690977036953,
-0.031638991087675095,
0.014141794294118881,
-0.05319540575146675,
-0.05715641751885414,
-0.007451449055224657,
0.02150731161236763,
-0.03689306229352951,
0.028938300907611847,
0.010884598828852177,
-0.03951191157102585,
0.024895450100302696,
-0.014092691242694855,
-0.05146041885018349,
0.040199361741542816,
0.08537453413009644,
-0.022489381954073906,
0.0013810346135869622,
-0.014935633167624474,
0.013184277340769768,
-0.03620561212301254,
-0.02561563439667225,
-0.0661587193608284,
-0.0520496591925621,
0.002878689905628562,
-0.03044414147734642,
-0.017333518713712692,
-0.012750529684126377,
0.09506428241729736,
0.018462898209691048,
-0.10704552382230759,
0.024862714111804962,
0.031164323911070824,
0.04059218615293503,
0.003623425727710128,
0.004003977403044701,
-0.043767545372247696,
0.02563200145959854,
-0.07895835489034653,
-0.07241122424602509,
-0.01676064543426037,
-0.006240230519324541,
0.0296584852039814,
0.006628965958952904,
0.020983541384339333,
0.005781931336969137,
0.008863173425197601,
0.039020877331495285,
-0.05800754576921463,
-0.019052140414714813,
0.011162851937115192,
0.020377932116389275,
-0.0002634195552673191,
-0.01893756538629532,
-0.006322069559246302,
0.05008552223443985,
-0.02895466983318329,
0.00428836839273572,
-0.054701246321201324,
-0.05201692506670952,
-0.03689306229352951,
0.06026630476117134,
-0.05790933966636658,
-0.05908782035112381,
-0.0021973794791847467,
0.006448920350521803,
-0.013036966323852539,
-0.02345508337020874,
-0.01009894348680973,
0.004333379678428173,
0.03145894408226013,
0.026810485869646072,
0.04055945202708244,
0.05375191196799278,
0.007451449055224657,
-0.05545416474342346,
-0.03597646206617355,
-0.03705674037337303,
0.03492892161011696,
0.0014526437735185027,
0.05614161491394043,
0.053620971739292145,
0.018184645101428032,
-0.048023175448179245,
0.010704552754759789,
0.05466851219534874,
0.0025922530330717564,
-0.027972599491477013,
-0.01600772514939308,
0.015434851869940758,
-0.008879541419446468,
-0.018135542050004005,
-0.056960005313158035,
-0.038006071001291275,
-0.019739588722586632,
0.0777798667550087,
0.051133062690496445,
0.0340123251080513,
0.03275200352072716,
-0.013421609997749329,
-0.025140967220067978,
0.04533885419368744,
0.04877609759569168,
-0.010491770692169666,
-0.07313141226768494,
0.01823374815285206,
0.007271402981132269,
0.010434484109282494,
-0.009296920150518417,
-0.006854023784399033,
0.026761380955576897,
-0.07129821181297302,
0.02702326700091362,
-0.035910990089178085,
-0.013986299745738506,
0.02173646166920662,
0.05070750042796135,
-0.0562070868909359,
-0.035059865564107895,
-0.0032183220610022545,
0.02268579602241516,
0.06795918196439743,
-0.005659172777086496,
-0.014158162288367748,
-0.01393719669431448,
0.013658943586051464,
-0.0035579544492065907,
-0.05659991502761841,
-0.027448829263448715,
0.030640553683042526,
0.024322576820850372,
0.02664680778980255,
0.032179128378629684,
0.008040690794587135,
-0.031638991087675095,
0.07908929139375687,
-0.048121385276317596,
-0.007958851754665375,
-0.02374970354139805,
0.04075586423277855,
-0.062001291662454605,
-0.05957885459065437,
0.04046124592423439,
0.002551333513110876,
-0.019232185557484627,
-0.0249936580657959,
0.013577104546129704,
-0.005569149740040302,
-0.01598317362368107,
0.057974811643362045,
-0.030640553683042526,
-0.044913291931152344,
-0.011596598662436008,
0.027285151183605194,
-0.023013152182102203,
-0.06809011846780777,
0.019755955785512924,
-0.006240230519324541,
-0.035452693700790405,
0.06504570692777634,
-0.035223543643951416,
-0.02306225523352623,
-0.0010107127018272877,
0.04448772966861725,
-0.04979090020060539,
-0.07365518063306808,
0.04916892573237419,
0.025124600157141685,
-0.07758345454931259,
0.0530971996486187,
0.05551963672041893,
-0.043767545372247696,
0.05411200597882271,
-0.024977289140224457,
-0.022391173988580704,
-0.01137563306838274,
-0.02258758805692196,
-0.023700600489974022,
0.006628965958952904,
0.02920018695294857,
0.025484692305326462,
0.014027219265699387,
0.012521380558609962,
0.049496281892061234,
-0.01637600176036358,
-0.0719529241323471,
0.00904321949928999,
-0.036303818225860596,
-0.09362391382455826,
-0.010246253572404385,
-0.020361565053462982,
-0.014149978756904602,
0.026139404624700546,
0.005720552057027817,
-0.0022771726362407207,
-0.03977379575371742,
0.045862626284360886,
0.018904829397797585,
-0.11071191728115082,
-0.028545474633574486,
0.035059865564107895,
-0.011563862673938274,
-0.04664827883243561,
-0.03142620995640755,
-0.036140140146017075,
0.0018690001452341676,
0.0095915412530303,
0.031262531876564026,
-0.054864924401044846,
-0.07660138607025146,
0.007680598180741072,
-0.09532617032527924,
0.005065839737653732,
-0.016556046903133392,
-0.04340745136141777,
0.043898485600948334,
-0.005368644371628761,
0.011907587759196758,
-0.02422437071800232,
-0.006608506198972464,
-0.04537159204483032,
0.059742532670497894,
0.02103264629840851,
0.04713931307196617,
-0.011825747787952423,
-0.035910990089178085,
0.033423084765672684,
0.008683127351105213,
-0.00822892040014267,
0.016294162720441818,
0.06848295032978058,
-0.020328829064965248,
-0.03797333687543869,
0.03807154297828674,
-0.02492818608880043,
-0.013225196860730648,
-0.009575173258781433,
0.007680598180741072,
-0.0226039569824934,
-0.039020877331495285,
-0.03378317505121231,
-0.020934438332915306,
0.012447725050151348,
-0.0005672471597790718,
-0.030345933511853218,
-0.013667128048837185,
0.011817564256489277,
-0.056796327233314514,
0.025255542248487473,
-0.004505241755396128,
-0.013953564688563347,
0.02073802426457405,
0.04658281058073044,
-0.01870841532945633,
0.03915182128548622,
-0.0024142530746757984,
-0.03571457788348198,
-0.03908634930849075,
-0.05840037390589714,
-0.00702997762709856,
0.012709610164165497,
-0.017186207696795464,
0.0346343033015728,
0.032260969281196594,
-0.044618669897317886,
0.024731772020459175,
0.009861609898507595,
0.039872001856565475,
0.021720094606280327,
0.018364692106842995,
-0.024191634729504585,
-0.013658943586051464,
-0.018904829397797585,
0.00570827629417181,
-0.03849710524082184,
-0.022309334948658943,
0.010933701880276203,
0.0007084195967763662,
-0.00885498896241188,
0.04301462322473526,
-0.005736920051276684,
0.059742532670497894,
0.04186887666583061,
-0.009534253738820553,
-0.06527485698461533,
-0.015148415230214596,
-0.023176830261945724,
-0.011514759622514248,
-0.01887209340929985,
0.023504186421632767,
0.02096717432141304,
-0.023356875404715538,
-0.038006071001291275,
0.01769361086189747,
-0.04560073837637901,
0.0005007529398426414,
0.06763182580471039,
-0.06475108861923218,
-0.0012858966365456581,
-0.021556416526436806,
0.02818538248538971,
0.023929748684167862,
-0.028234485536813736,
0.015786759555339813,
0.015033840201795101,
0.06111742928624153,
-0.008478529751300812,
-0.02113085240125656,
0.012120368890464306,
0.021163588389754295,
-0.023487817496061325,
0.04301462322473526,
-0.02926565706729889,
0.000015025145330582745,
0.07804175466299057,
-0.029003772884607315,
-0.014665564522147179,
0.008797702379524708,
-0.0377441868185997,
-0.007733793929219246,
0.04789223521947861,
0.0004974282346665859,
-0.06913766264915466,
0.00013951006985735148,
-0.015353012830018997,
0.0013298852136358619,
0.005323632620275021,
-0.03659844025969505,
0.007447356823831797,
-0.005618253257125616,
-0.035747312009334564,
0.09139789640903473,
0.03735135868191719,
-0.019232185557484627,
0.013331587426364422
] |
729,738 | minidir | FakeDirectory | FakeDirectory implements Directory protocol in memory. | class FakeDirectory:
"""FakeDirectory implements Directory protocol in memory."""
_dir: typing.Dict[str, bytes]
def __init__(self) -> None:
self._dir = {}
pass
def __iter__(self) -> typing.Iterator[Path]:
paths: typing.List[Path] = []
for key in self._dir:
paths.append(SomePath(key))
return iter(paths)
def create(self, path: Path) -> File:
if str(path) in self._dir:
raise NameCollision()
self._dir[str(path)] = b""
return _FakeDirectoryFile(self._dir, str(path))
def remove(self, path: Path) -> None:
if str(path) not in self._dir:
raise NotFound()
del self._dir[str(path)]
def get(self, path: Path) -> File:
if str(path) not in self._dir:
raise NotFound()
return _FakeDirectoryFile(self._dir, str(path))
| () -> None | [
0.026432648301124573,
0.017257902771234512,
-0.08703829348087311,
0.0112225990742445,
0.015985887497663498,
-0.015291241928935051,
-0.0336497537791729,
0.08545053005218506,
-0.011520304717123508,
-0.01957639865577221,
0.059324607253074646,
0.02917514741420746,
-0.021290460601449013,
0.05070016533136368,
-0.023852532729506493,
0.0369335375726223,
-0.007275744341313839,
0.07549092173576355,
-0.028507566079497337,
0.011439112015068531,
-0.007460682652890682,
0.06715516746044159,
0.04593687504529953,
-0.007248680107295513,
-0.01718573272228241,
0.012296142987906933,
-0.035869013518095016,
0.0013836544239893556,
0.05874723568558693,
-0.0386115126311779,
0.012395378202199936,
-0.03236871585249901,
0.0482824333012104,
0.02982468716800213,
0.015832524746656418,
-0.022048257291316986,
-0.010852722451090813,
0.052215758711099625,
-0.07592394948005676,
-0.044457368552684784,
-0.0012280355440452695,
0.005985686555504799,
0.030077286064624786,
-0.004517456982284784,
0.023311249911785126,
0.031953733414411545,
-0.012151801027357578,
0.03240480273962021,
-0.040271446108818054,
0.02276996709406376,
0.02280605211853981,
0.031358323991298676,
0.0034551892895251513,
-0.0022282812278717756,
0.04990628361701965,
0.01863817498087883,
0.0241412166506052,
-0.0013441859045997262,
-0.001732105272822082,
0.024014918133616447,
0.006256327964365482,
-0.0019114052411168814,
0.06073193997144699,
-0.06773253530263901,
-0.045720361173152924,
-0.03814240172505379,
-0.05921635031700134,
-0.0417148694396019,
0.017420288175344467,
0.0514579601585865,
-0.044457368552684784,
0.002232791855931282,
0.05593256652355194,
0.042580921202898026,
0.02121829055249691,
0.017212796956300735,
-0.008150818757712841,
0.006387138273566961,
0.0610567107796669,
-0.03918888047337532,
-0.03413690999150276,
-0.03173721954226494,
-0.04691118374466896,
-0.019450098276138306,
0.024953141808509827,
0.06001023203134537,
0.07278450578451157,
-0.04727204144001007,
0.02765955589711666,
0.02921123430132866,
-0.033920396119356155,
0.013919991441071033,
0.002789862221106887,
-0.021037861704826355,
-0.0014276336878538132,
-0.03493078798055649,
0.001821191399358213,
0.024484029039740562,
-0.0546695739030838,
0.027533257380127907,
-0.004677586257457733,
0.02343755029141903,
0.00698254955932498,
0.04525125026702881,
-0.006314967293292284,
-0.011944308876991272,
0.01638282835483551,
-0.07253190875053406,
-0.02637851983308792,
0.021958043798804283,
-0.08581138402223587,
-0.009445386938750744,
0.023509720340371132,
0.03016749955713749,
0.00018578408344183117,
0.011150428093969822,
0.004192687105387449,
-0.07018634676933289,
0.015534819103777409,
-0.05163838714361191,
0.04153444245457649,
0.021434802561998367,
-0.05654602125287056,
0.01476800162345171,
0.08487316220998764,
0.03051031194627285,
0.04586470499634743,
-0.02311277948319912,
0.0011321833590045571,
0.03217024728655815,
0.00929202325642109,
0.05044756457209587,
0.027695640921592712,
0.08155328780412674,
0.024808799847960472,
0.0643765777349472,
-0.01959444023668766,
-0.013865863904356956,
-0.019991381093859673,
0.046766843646764755,
0.013216324150562286,
-0.02989685907959938,
0.03633812442421913,
0.01957639865577221,
0.01991921104490757,
0.0005765226669609547,
-0.023924704641103745,
-0.05070016533136368,
-0.02028006687760353,
0.021416760981082916,
-0.03976625204086304,
-0.03115985170006752,
-0.016103167086839676,
0.0900694727897644,
0.012945682741701603,
-0.014073355123400688,
-0.05632950738072395,
0.022860180586576462,
-0.04077664390206337,
0.008710144087672234,
-0.05279312655329704,
-0.033866267651319504,
0.009355172514915466,
-0.037095922976732254,
-0.03115985170006752,
0.010852722451090813,
-0.020406365394592285,
-0.009264959022402763,
-0.011195534840226173,
0.012106694281101227,
-0.014280847273766994,
0.012431464157998562,
0.010293396189808846,
0.02477271482348442,
-0.013243388384580612,
-0.022697797045111656,
0.014280847273766994,
-0.006242796313017607,
0.005972154438495636,
-0.05113319307565689,
0.010717401280999184,
-0.0240690466016531,
-0.013441858813166618,
0.013369687832891941,
0.04745246842503548,
0.05167447403073311,
-0.022553453221917152,
0.06531479954719543,
0.08097591996192932,
0.01680683344602585,
-0.11323638260364532,
0.02762347087264061,
0.0017693184781819582,
0.012702105566859245,
0.02603570744395256,
-0.017654843628406525,
-0.011890181340277195,
-0.014334975741803646,
-0.03588705509901047,
0.03893628343939781,
-0.06769644469022751,
0.03951365128159523,
0.06260839104652405,
-0.06167016550898552,
-0.05203532800078392,
0.01825927570462227,
0.013613265007734299,
0.02412317506968975,
-0.06275273114442825,
0.029481874778866768,
-0.015832524746656418,
-0.022553453221917152,
-0.006612672936171293,
-0.004138558637350798,
0.013613265007734299,
-0.05098884925246239,
0.023221036419272423,
0.03738460689783096,
-0.010979021899402142,
0.03316259756684303,
0.060587599873542786,
0.06693865358829498,
-0.03734852001070976,
-0.028092581778764725,
0.023076694458723068,
-0.03235067427158356,
-0.0004406381049193442,
-0.014903322793543339,
-0.05358700826764107,
-0.0481741763651371,
0.037781547755002975,
-0.0011761626228690147,
-0.008367331698536873,
-0.026486776769161224,
0.05261269956827164,
-0.03702374920248985,
0.04369957372546196,
-0.031628962606191635,
-0.001611444284208119,
0.00981526356190443,
-0.007686217315495014,
-0.03594118356704712,
0.024862928315997124,
0.036482468247413635,
-0.031701136380434036,
-0.024808799847960472,
-0.01703236810863018,
0.010248289443552494,
0.0417148694396019,
-0.008322224952280521,
-0.019414013251662254,
0.012873511761426926,
-0.031971774995326996,
-0.009255937300622463,
0.04424085468053818,
-0.026252221316099167,
-0.058638982474803925,
-0.017727015540003777,
0.030347928404808044,
0.028706036508083344,
-0.01253972016274929,
-0.0056248316541314125,
0.004129537381231785,
0.01058208104223013,
-0.02118220366537571,
-0.05308181047439575,
0.008308692835271358,
-0.018439704552292824,
0.027533257380127907,
0.049004144966602325,
0.05629342049360275,
0.00762306759133935,
0.006969017442315817,
-0.019756825640797615,
-0.00003531025140546262,
0.022030213847756386,
0.017934506759047508,
0.022102385759353638,
-0.0036829791497439146,
0.01626555062830448,
-0.05037539452314377,
-0.027226530015468597,
-0.016130231320858,
-0.013225345872342587,
0.0005424105911515653,
0.049617599695920944,
-0.05178273096680641,
0.03767329081892967,
-0.014028248377144337,
0.001221269485540688,
0.03738460689783096,
-0.01172779593616724,
-0.0482824333012104,
-0.0416787825524807,
0.006522458977997303,
-0.03588705509901047,
-0.16151881217956543,
-0.09035816043615341,
0.07357838749885559,
-0.05918026342988014,
-0.0644126683473587,
0.04857111722230911,
0.023978833109140396,
0.06859858334064484,
0.006125518120825291,
-0.0160941444337368,
-0.040993157774209976,
-0.004727203864604235,
0.000645592634100467,
0.021741529926657677,
-0.00009895327821141109,
-0.01559796929359436,
0.006517948117107153,
0.059901975095272064,
0.11937092244625092,
0.030582483857870102,
-0.026198092848062515,
0.0031326748430728912,
-0.017312031239271164,
0.07303710281848907,
-0.03274761512875557,
0.08263585716485977,
-0.055391281843185425,
0.013901948928833008,
-0.01817808486521244,
-0.0018911071820184588,
0.03341519832611084,
0.03559837117791176,
-0.004386646673083305,
0.02248128317296505,
-0.04153444245457649,
0.011619539931416512,
-0.011592475697398186,
0.012801340781152248,
-0.01236831396818161,
0.0513136200606823,
0.0039400882087647915,
-0.04041578993201256,
0.03828674554824829,
-0.03312651440501213,
0.03339715674519539,
-0.056762535125017166,
-0.023852532729506493,
-0.04084881767630577,
0.0014253782574087381,
-0.026811545714735985,
0.06019065901637077,
0.015832524746656418,
0.04214789345860481,
0.033288899809122086,
0.05820595473051071,
0.022643668577075005,
-0.0040573664009571075,
-0.00834477785974741,
0.027785856276750565,
-0.04752463847398758,
-0.018033741042017937,
0.017862334847450256,
-0.037456776946783066,
0.0029274383559823036,
0.02829105220735073,
0.03428125008940697,
-0.027226530015468597,
-0.0336858406662941,
-0.010419695638120174,
-0.047019440680742264,
0.014163569547235966,
-0.01302687544375658,
-0.011511282995343208,
-0.0014513147762045264,
0.008416948840022087,
-0.05889157950878143,
-0.042869605123996735,
-0.046442072838544846,
0.07816124707460403,
-0.022625625133514404,
0.03702374920248985,
0.003518338780850172,
-0.02504335530102253,
0.10356546193361282,
0.003946854267269373,
0.0320439487695694,
0.01899902895092964,
0.050952762365341187,
-0.01672564074397087,
-0.007857623510062695,
0.07946033030748367,
0.020460493862628937,
0.0112225990742445,
0.020135723054409027,
-0.0018121700268238783,
-0.030420098453760147,
0.006531480234116316,
0.014208676293492317,
0.010555016808211803,
-0.029391661286354065,
0.00807864684611559,
0.012999811209738255,
-0.05549953877925873,
-0.013423816300928593,
0.07015026360750198,
-0.035201430320739746,
-0.04752463847398758,
0.08429578691720963,
-0.019756825640797615,
-0.007244169246405363,
0.044493455439805984,
-0.019107285887002945,
-0.003225143998861313,
0.010771529749035835,
0.03565249964594841,
-0.01090684998780489,
0.015570905059576035,
-0.021669358015060425,
0.06076802685856819,
0.03595922887325287,
-0.03466014936566353,
-0.06881509721279144,
0.06231970340013504,
0.028471481055021286,
-0.009152191691100597,
-0.04987019672989845,
-0.006788589525967836,
0.01563405431807041,
0.0385393425822258,
-0.0027853515930473804,
-0.007090806029736996,
0.01458757370710373,
-0.04467388242483139,
0.02830909565091133,
0.03567054122686386,
-0.011484218761324883,
-0.04214789345860481,
-0.023221036419272423,
0.030113371089100838,
-0.050627995282411575,
-0.05625733733177185,
-0.06080411374568939,
-0.024844884872436523,
0.06502611935138702,
-0.05239618569612503,
-0.004718182608485222,
0.025530509650707245,
0.02668524719774723,
-0.017465393990278244,
-0.014993536286056042,
-0.014217697083950043,
0.044204771518707275,
0.07498572766780853,
0.031304195523262024,
-0.025458339601755142,
-0.03576075658202171,
0.07924381643533707,
-0.041895296424627304,
-0.0018911071820184588,
-0.026107879355549812,
-0.020424408838152885,
-0.018728388473391533,
-0.033288899809122086,
-0.011069235391914845,
0.04337480291724205,
0.030113371089100838,
0.0386836864054203,
-0.09894651174545288,
0.0044340090826153755,
-0.0059450906701385975,
0.020298108458518982,
0.02632439136505127,
0.021651316434144974,
-0.01988312602043152,
0.04016319289803505,
-0.012864490039646626,
-0.04460171237587929,
0.023924704641103745,
-0.004889588803052902,
-0.010843700729310513,
-0.02825496718287468,
0.006829185876995325,
-0.0416787825524807,
-0.08169763535261154,
0.015471669845283031,
-0.035869013518095016,
-0.0005503043066710234,
0.01300883200019598,
0.00005740558844991028,
-0.04240049421787262,
0.060876283794641495,
0.05488608777523041,
0.0578451007604599,
-0.016491085290908813,
0.016373807564377785,
0.01961248368024826,
-0.055679965764284134,
-0.02221064083278179,
0.029066892340779305,
-0.010564037598669529,
-0.035435985773801804,
0.06791295856237411,
-0.03231458738446236,
-0.08545053005218506,
0.016464021056890488,
-0.06206710636615753,
-0.02249932661652565,
0.005534617695957422,
0.007997455075383186,
0.03404669463634491,
-0.04041578993201256,
-0.04752463847398758,
-0.009061978198587894,
-0.0450347363948822,
0.021958043798804283,
0.033541496843099594,
-0.04120967164635658,
-0.048968058079481125,
0.02639656327664852,
0.05611299350857735,
-0.01074446551501751,
-0.02693784609436989,
-0.010365567170083523,
-0.011610518209636211,
-0.033505409955978394,
-0.01865621656179428,
0.02924731932580471,
-0.0062473067082464695,
-0.020442450419068336,
-0.008290649391710758,
-0.019377928227186203,
-0.007555407006293535,
0.07199062407016754,
0.01986508257687092,
0.015047664754092693,
-0.004564818926155567,
0.019774869084358215,
0.009016870521008968,
0.03150266408920288,
0.005160230211913586,
0.044457368552684784,
-0.002670329064130783,
-0.033848222345113754,
-0.039333224296569824,
0.031304195523262024,
0.062175363302230835,
-0.01723986119031906,
-0.037745460867881775,
0.0192516278475523,
-0.012088651768863201,
-0.006847228854894638,
-0.012909596785902977,
0.07534658163785934,
-0.01318925991654396,
0.0006952102412469685,
-0.021976085379719734,
0.021759573370218277,
0.0008502652053721249,
-0.009679942391812801,
-0.06231970340013504,
0.026414604857563972,
-0.06033499911427498,
-0.005088059231638908,
0.01220592949539423,
-0.03126810863614082,
0.051205363124608994,
-0.04943717271089554,
0.015616011805832386,
0.04745246842503548,
0.02053266391158104,
0.04268917813897133,
-0.011547368951141834,
0.04142618551850319,
-0.032278504222631454,
0.02926536276936531,
0.04914848878979683,
0.03141245245933533,
-0.001961022848263383,
0.01930575631558895,
0.03617573902010918,
-0.042580921202898026,
0.015029622241854668,
0.033577583730220795,
-0.05849463865160942,
0.0026026687119156122,
-0.03085312619805336,
-0.013883906416594982,
-0.05066407844424248,
-0.012981767766177654,
-0.0739753320813179,
0.022445198148489,
0.033866267651319504,
-0.033559538424015045,
0.009436365216970444,
-0.05402003228664398,
-0.034858617931604385,
-0.003599531250074506,
-0.027082188054919243,
0.005367721896618605,
-0.01825927570462227,
-0.023996874690055847,
-0.024556200951337814,
0.0008260202594101429,
0.015552861616015434,
-0.0208754763007164,
-0.008940189145505428,
-0.020298108458518982,
0.021326545625925064,
0.0044294982217252254,
-0.005706023890525103,
-0.0034303804859519005,
0.009025892242789268,
-0.02442990243434906,
-0.007356936577707529,
-0.043519146740436554,
0.01641891524195671,
0.04683901369571686,
0.0016745940083637834,
0.04377174377441406,
-0.01137596182525158,
-0.03141245245933533,
-0.03240480273962021,
-0.028056496754288673,
-0.0005373360472731292,
-0.04535950720310211,
-0.05748424306511879,
-0.028489522635936737,
0.008123754523694515,
-0.04012710601091385,
-0.057917270809412,
0.043555229902267456,
0.052576612681150436,
-0.02982468716800213,
-0.044457368552684784,
0.004853503312915564,
-0.011042171157896519,
-0.04633381590247154,
0.007379490416496992,
0.006869782228022814,
-0.04037970304489136,
-0.03137636557221413,
-0.022968437522649765,
0.049653682857751846,
0.049004144966602325,
-0.016274573281407356,
-0.03238676115870476,
-0.03493078798055649,
0.010013733990490437,
-0.06268055737018585,
-0.05225184187293053,
0.03401060774922371,
-0.07036677747964859,
0.05618516355752945,
-0.04236440733075142,
-0.017194753512740135,
0.05116927623748779,
-0.013721521943807602,
-0.0641961544752121,
0.045106906443834305,
0.020009424537420273,
0.04041578993201256,
0.001156992162577808,
0.00917474552989006,
0.00454001035541296,
0.040920987725257874,
-0.009075510315597057,
-0.012485592626035213,
-0.02574702352285385,
-0.016238486394286156,
0.006071389652788639,
0.023311249911785126,
-0.004627968650311232,
0.005254955030977726,
-0.03493078798055649,
0.037456776946783066,
0.039333224296569824,
-0.028435394167900085,
-0.07217105478048325,
-0.0012731425231322646,
-0.007925284095108509,
0.02502531185746193,
0.018304383382201195,
0.013874884694814682,
0.017600715160369873,
-0.026919802650809288,
0.033595625311136246,
-0.04045187681913376,
0.0353638157248497,
0.01557992585003376,
0.05975763127207756,
0.03410082310438156,
-0.02316690795123577,
0.010951957665383816,
-0.05485000088810921,
-0.006937442347407341,
0.006860760971903801,
0.043555229902267456,
0.02058679237961769,
-0.08898691087961197,
0.009084531106054783,
0.049004144966602325,
-0.0016249764012172818,
0.01995529606938362,
-0.0013701223069801927,
0.024502072483301163,
-0.006260838825255632,
0.020460493862628937,
-0.05243226885795593,
0.009661899879574776,
-0.052215758711099625,
-0.03781763091683388,
0.048643290996551514,
0.020749177783727646,
-0.014668766409158707,
0.01890881545841694,
0.06621693819761276,
0.011718775145709515,
-0.06470134854316711,
0.008836443535983562,
0.007826048880815506,
-0.014461275190114975,
-0.012449506670236588,
0.02791215479373932,
-0.02603570744395256,
0.027803897857666016,
-0.01271112635731697,
-0.011772902682423592,
0.02695588767528534,
-0.03182743489742279,
-0.040668386965990067,
-0.018764473497867584,
-0.05427263304591179,
0.004397923592478037,
0.0482102632522583,
0.020063553005456924,
-0.01268406305462122,
-0.02058679237961769,
0.044204771518707275,
-0.0034033162519335747,
-0.024826841428875923,
0.006003729533404112,
-0.005728577263653278,
0.03446167707443237,
0.08140894770622253,
-0.028038453310728073,
0.03792588785290718,
0.019017072394490242,
0.00762306759133935,
0.00505648460239172,
-0.039008453488349915,
0.06646954268217087,
0.037709373980760574,
-0.020658964291214943,
0.02704610303044319,
0.015552861616015434,
-0.034209080040454865,
-0.036464422941207886,
0.08010987192392349,
0.0048715462908148766,
-0.03137636557221413,
-0.015318306162953377,
-0.02921123430132866,
0.017772121354937553,
-0.03125006705522537,
-0.08003769814968109,
-0.0386115126311779,
0.010834679007530212,
0.0011818009661510587,
-0.002180919051170349,
0.04312220588326454,
-0.019197499379515648,
0.04207572340965271
] |
729,739 | minidir | __init__ | null | def __init__(self) -> None:
self._dir = {}
pass
| (self) -> NoneType | [
0.0009170864359475672,
0.013269690796732903,
-0.02465616539120674,
-0.010819767601788044,
-0.001291440799832344,
0.0019845685455948114,
-0.0018167357193306088,
0.09478848427534103,
-0.013949739746749401,
0.004202359355986118,
0.007877243682742119,
0.02612088806927204,
-0.005902483593672514,
0.06695875525474548,
-0.03626932576298714,
0.0018025679746642709,
0.02320888079702854,
0.07309664040803909,
-0.05625232681632042,
-0.013609715737402439,
-0.03103817254304886,
0.01588526740670204,
0.061134736984968185,
0.042686205357313156,
-0.03426405042409897,
0.047359369695186615,
-0.01054077222943306,
-0.014629789628088474,
0.03365374729037285,
-0.07156216353178024,
-0.046208515763282776,
-0.002031430834904313,
0.015431900508701801,
0.034176863729953766,
-0.005584255326539278,
-0.041744597256183624,
-0.013260971754789352,
0.021813906729221344,
-0.11090043187141418,
-0.028056414797902107,
0.06319232285022736,
0.03147410228848457,
-0.02376686967909336,
-0.015370870009064674,
0.03464766591787338,
0.05914689972996712,
0.016016045585274696,
0.005048062186688185,
0.00498267263174057,
0.0008462478872388601,
-0.01041871216148138,
0.027114806696772575,
-0.02458641678094864,
-0.007515422534197569,
-0.015065719373524189,
0.07763030380010605,
0.02662656642496586,
0.0027746905107051134,
-0.01613810658454895,
0.040349625051021576,
-0.03933826833963394,
0.00541424285620451,
0.04157022759318352,
-0.013260971754789352,
-0.029712947085499763,
-0.004864972084760666,
-0.0731663852930069,
0.024080738425254822,
0.02108154445886612,
0.0556594617664814,
-0.021290790289640427,
-0.008801414631307125,
0.013016851618885994,
0.03335731476545334,
0.05980950966477394,
-0.020924611017107964,
-0.07825804501771927,
-0.017995165660977364,
0.01935526542365551,
-0.0014516448136419058,
-0.04010550305247307,
-0.030602242797613144,
-0.06092549115419388,
0.02493515983223915,
0.03454304486513138,
0.04041937366127968,
0.03274701535701752,
-0.039721883833408356,
-0.01449029240757227,
0.03368862345814705,
-0.06354106962680817,
0.04348831623792648,
-0.03021862544119358,
0.010906953364610672,
0.010436149314045906,
-0.017690014094114304,
-0.006403802428394556,
-0.01787310466170311,
-0.025039782747626305,
0.00803417805582285,
-0.027341490611433983,
-0.030916111543774605,
-0.018605465069413185,
-0.007615686394274235,
-0.025022346526384354,
-0.03951263800263405,
0.0019126401748508215,
-0.06130910664796829,
0.013043006882071495,
0.018396219238638878,
-0.04474379122257233,
0.013897428289055824,
0.019860941916704178,
0.08934808522462845,
0.004283006303012371,
-0.009023738093674183,
-0.0498703196644783,
-0.050532933324575424,
0.07456136494874954,
0.005235511809587479,
0.0219882782548666,
0.06497091799974442,
-0.07497985661029816,
0.04477866739034653,
0.07274789363145828,
0.0078118545934557915,
-0.00940735638141632,
-0.01112491823732853,
0.02551058679819107,
0.011682907119393349,
0.06720287352800369,
0.03665294125676155,
-0.022720638662576675,
-0.03468254208564758,
0.035031285136938095,
-0.002391072688624263,
0.020384058356285095,
0.005492710042744875,
-0.03309575840830803,
0.08899934589862823,
0.011351601220667362,
-0.012572203762829304,
0.03259008005261421,
-0.014995970763266087,
0.01930295303463936,
0.06713312119245529,
-0.015641145408153534,
0.038501281291246414,
-0.03958238661289215,
0.0048780497163534164,
0.0009361583506688476,
-0.05126529559493065,
0.02877133898437023,
0.0381525382399559,
-0.012650670483708382,
-0.01939013972878456,
-0.05199765786528587,
0.01128185261040926,
-0.0025087737012654543,
-0.030916111543774605,
-0.016948934644460678,
-0.04568539932370186,
-0.0025044141802936792,
-0.057926297187805176,
-0.03157872334122658,
0.00614660419523716,
-0.014411825686693192,
-0.03905927389860153,
-0.015022126026451588,
0.0002713660360313952,
-0.00924170296639204,
-0.07658407092094421,
-0.08348919451236725,
0.008082130923867226,
-0.02516184374690056,
0.016844311729073524,
0.001471261610276997,
0.037978168576955795,
0.0047341929748654366,
0.025092095136642456,
0.02493515983223915,
-0.023836618289351463,
-0.042023591697216034,
0.04868459329009056,
0.03133460506796837,
0.0013372133253142238,
0.025405963882803917,
0.06092549115419388,
0.05422961339354515,
0.05161403864622116,
-0.05227665230631828,
0.015030845068395138,
-0.021290790289640427,
-0.009110923856496811,
0.026731189340353012,
0.019773757085204124,
0.004729833919554949,
-0.038117665797472,
-0.02167440950870514,
0.039756760001182556,
-0.01928551495075226,
0.024167925119400024,
0.05314851179718971,
-0.0498703196644783,
-0.0034699977841228247,
0.024255109950900078,
-0.02320888079702854,
0.00849626399576664,
-0.022459082305431366,
0.047359369695186615,
0.010558209381997585,
-0.05461323261260986,
0.025353653356432915,
-0.01966913416981697,
0.009468385949730873,
-0.06071624532341957,
0.02111641876399517,
0.01703611947596073,
0.005004469305276871,
0.02669631503522396,
0.05911202356219292,
0.03993112966418266,
-0.02584189362823963,
-0.049695950001478195,
-0.0557640865445137,
-0.03407223895192146,
0.018971646204590797,
-0.039721883833408356,
-0.06800498068332672,
-0.05503172427415848,
0.01347893662750721,
-0.08390768617391586,
-0.008273939602077007,
-0.009006300941109657,
0.014568760059773922,
-0.05478760600090027,
0.01588526740670204,
0.02083742432296276,
-0.0642734244465828,
-0.05130016803741455,
0.02901545912027359,
-0.01881471276283264,
0.015362150967121124,
-0.015327276661992073,
0.010287933051586151,
-0.0009203559020534158,
0.0087883360683918,
0.016957653686404228,
0.016504285857081413,
0.00011184313189005479,
0.05011444166302681,
-0.026905560865998268,
-0.060262877494096756,
0.003938621841371059,
0.012659389525651932,
-0.04418580234050751,
-0.0321890264749527,
0.009738662280142307,
0.011447505094110966,
-0.005728112068027258,
0.013740493915975094,
-0.04014037922024727,
-0.007057696580886841,
0.04708037152886391,
-0.003446021815761924,
0.019826067611575127,
0.033915307372808456,
-0.033305004239082336,
-0.027393803000450134,
-0.015562678687274456,
0.12512916326522827,
0.024795662611722946,
0.009224265813827515,
0.01725408434867859,
-0.055240970104932785,
-0.0175766721367836,
0.0009606793755665421,
-0.03787354379892349,
-0.06584277004003525,
0.04652238264679909,
0.05032368749380112,
-0.04844047129154205,
0.018640341237187386,
0.04889383912086487,
-0.03347937762737274,
0.0012478478020057082,
-0.04415092617273331,
0.04603414237499237,
-0.04055887088179588,
-0.00964275747537613,
0.02817847579717636,
0.03344450145959854,
-0.040349625051021576,
0.02224983647465706,
0.07358487695455551,
-0.03724580630660057,
-0.09332375973463058,
0.004097735974937677,
0.04041937366127968,
-0.0016630706377327442,
-0.015562678687274456,
-0.0056583634577691555,
-0.005824016407132149,
0.02959088608622551,
-0.039163894951343536,
0.012441424652934074,
-0.03456048294901848,
0.013975895941257477,
0.04373243451118469,
0.015902703627943993,
0.02986988052725792,
0.03541490435600281,
0.04474379122257233,
0.07832778990268707,
0.007524141110479832,
-0.011168510653078556,
-0.008566012606024742,
-0.05021906644105911,
-0.010776174254715443,
0.08725562691688538,
-0.06354106962680817,
0.04662700742483139,
-0.013958458788692951,
-0.034734852612018585,
0.04160510003566742,
0.014394388534128666,
0.05803091824054718,
0.034124553203582764,
0.00790775939822197,
0.015213935635983944,
-0.0615532286465168,
-0.0019932871218770742,
0.0013110575964674354,
-0.026452194899320602,
-0.008282658644020557,
0.020017877221107483,
-0.022459082305431366,
-0.06702850013971329,
0.011090043000876904,
-0.06291332840919495,
0.04226771369576454,
-0.0380479171872139,
-0.06354106962680817,
-0.012816323898732662,
0.011787530034780502,
-0.025667522102594376,
0.03318294510245323,
-0.027114806696772575,
0.04157022759318352,
-0.05419474095106125,
0.012240896932780743,
0.03755967691540718,
0.018553154543042183,
0.03783867135643959,
0.03306088596582413,
-0.04425555095076561,
-0.03128229081630707,
0.014359514228999615,
-0.013400468975305557,
-0.012441424652934074,
0.05102117359638214,
0.032415710389614105,
-0.07002769410610199,
-0.007986226119101048,
0.007384643889963627,
-0.0468362532556057,
0.0029468825086951256,
-0.02460385486483574,
0.03989625722169876,
-0.011229541152715683,
0.027725107967853546,
-0.05928639695048332,
-0.036757566034793854,
-0.017707452178001404,
0.03436867147684097,
0.013548685237765312,
0.03342706337571144,
0.032398272305727005,
-0.027707671746611595,
0.014254890382289886,
0.010087406262755394,
0.06866759806871414,
0.044987913221120834,
0.016652502119541168,
-0.009607883170247078,
-0.04739424213767052,
0.052904389798641205,
0.04547615349292755,
0.040000878274440765,
0.0351184718310833,
-0.02106410823762417,
-0.01701868325471878,
-0.022092901170253754,
-0.0003890669613610953,
0.04066349193453789,
-0.02781229466199875,
0.012999414466321468,
0.017942853271961212,
-0.04453454539179802,
0.02378430776298046,
0.09722968935966492,
-0.06953945755958557,
-0.01375793106853962,
0.04331394284963608,
0.026190636679530144,
-0.0278471689671278,
0.04551102593541145,
-0.01996556483209133,
-0.0020575865637511015,
-0.04198871925473213,
0.033828120678663254,
-0.007310535758733749,
0.002173108048737049,
-0.014900065958499908,
0.010348963551223278,
-0.0007187385926954448,
0.011482380330562592,
-0.020732801407575607,
0.07124830037355423,
0.02549315057694912,
-0.01790797896683216,
-0.006159682292491198,
0.024551542475819588,
0.030654553323984146,
0.008757821284234524,
0.005885046441107988,
-0.0011889974121004343,
-0.022127775475382805,
0.015946296975016594,
0.0017775020096451044,
-0.04212821647524834,
0.06068136915564537,
-0.02957344986498356,
-0.027132244780659676,
0.04474379122257233,
-0.020418932661414146,
-0.022197524085640907,
-0.0352754071354866,
-0.05067243054509163,
0.0646570473909378,
-0.03714118152856827,
-0.03271213918924332,
0.048266101628541946,
0.02552802488207817,
0.017384864389896393,
0.014908785000443459,
-0.03888490051031113,
0.06779573857784271,
0.044360172003507614,
-0.015989890322089195,
-0.025004908442497253,
-0.00043238746002316475,
0.036164700984954834,
-0.04191897064447403,
-0.016914060339331627,
-0.04010550305247307,
-0.07539834827184677,
0.00594171741977334,
0.0035855192691087723,
-0.011264415457844734,
-0.0322238989174366,
0.004821378737688065,
0.04369756206870079,
-0.03368862345814705,
-0.027690233662724495,
0.02047124318778515,
0.03606007993221283,
0.009555571712553501,
-0.030131438747048378,
-0.04212821647524834,
0.0006637024926021695,
0.030340684577822685,
-0.05304388701915741,
-0.015920141711831093,
-0.04488328844308853,
-0.006103011313825846,
-0.021029233932495117,
-0.04317444562911987,
-0.04721986874938011,
-0.053811121731996536,
0.0011802788358181715,
-0.0263650082051754,
0.02610345184803009,
0.03286907449364662,
-0.03633907437324524,
-0.04083786532282829,
0.02167440950870514,
-0.02728918008506298,
0.05422961339354515,
-0.021534912288188934,
-0.018622903153300285,
0.03541490435600281,
-0.07832778990268707,
0.012650670483708382,
0.029800131916999817,
0.05450861155986786,
-0.017785917967557907,
0.051090922206640244,
-0.03175309672951698,
-0.05590358376502991,
0.004038885701447725,
-0.027899479493498802,
-0.0234355628490448,
-0.010026375763118267,
-0.014176423661410809,
0.00965147651731968,
-0.056147705763578415,
-0.04362781345844269,
-0.009546853601932526,
-0.011578284204006195,
0.04069836810231209,
0.009477104991674423,
-0.04041937366127968,
-0.04286057502031326,
0.050846803933382034,
0.023836618289351463,
-0.07131804525852203,
0.016853030771017075,
-0.01850084215402603,
0.015135467983782291,
-0.01510931272059679,
-0.027184555307030678,
0.062250714749097824,
-0.019407575950026512,
-0.03640882298350334,
0.013879991136491299,
-0.0014265788486227393,
0.017149461433291435,
0.05123041942715645,
0.06577302515506744,
-0.0008304454968310893,
-0.05625232681632042,
-0.016757125034928322,
0.05091655254364014,
0.013278408907353878,
0.06608689576387405,
0.03728068247437477,
-0.027742546051740646,
-0.058588907122612,
0.005841453559696674,
0.03630419820547104,
-0.01902395859360695,
0.06242508813738823,
-0.045022785663604736,
0.03454304486513138,
-0.009206828661262989,
-0.05102117359638214,
0.007218990474939346,
0.034717414528131485,
0.015902703627943993,
0.05060268193483353,
-0.060262877494096756,
-0.04083786532282829,
0.00205213762819767,
0.017088431864976883,
-0.03891977667808533,
0.04359293729066849,
-0.05325313284993172,
0.041744597256183624,
0.021465161815285683,
-0.03250289335846901,
0.03846640884876251,
-0.07191091030836105,
0.006299179513007402,
0.022982196882367134,
-0.023819182068109512,
-0.016765844076871872,
0.004660085309296846,
-0.010732580907642841,
0.026521943509578705,
-0.006150963716208935,
-0.008391640149056911,
0.0031844640616327524,
0.007681075483560562,
-0.019250640645623207,
0.06061162054538727,
0.006403802428394556,
0.07096930593252182,
0.022929886355996132,
-0.06242508813738823,
0.031212544068694115,
0.006883325055241585,
-0.002770331222563982,
-0.01009612437337637,
-0.07260839641094208,
-0.06971382349729538,
0.016486849635839462,
-0.002907648915424943,
0.005091655068099499,
-0.02521415613591671,
-0.02903289720416069,
-0.013897428289055824,
0.009660194627940655,
-0.01510931272059679,
0.005235511809587479,
-0.027358928695321083,
0.0022156110499054193,
-0.0820244699716568,
0.04153535142540932,
-0.0021164370700716972,
-0.014333358034491539,
0.032415710389614105,
-0.03257264196872711,
0.051160670816898346,
0.0036007766611874104,
-0.011578284204006195,
0.02228471077978611,
0.05925152078270912,
-0.03836178407073021,
0.03166591003537178,
-0.01851828023791313,
-0.05227665230631828,
0.04927745833992958,
0.012406550347805023,
-0.006778701674193144,
-0.010950545780360699,
0.013583559542894363,
-0.013574840500950813,
-0.004520587623119354,
0.024272548034787178,
-0.041744597256183624,
-0.000645720399916172,
-0.009032457135617733,
0.035885706543922424,
-0.03693193569779396,
-0.03538002818822861,
0.04753373935818672,
-0.01232808269560337,
0.007184116169810295,
-0.03370606154203415,
0.03129972890019417,
-0.038501281291246414,
0.00519627844914794,
-0.07567734271287918,
0.0052485899068415165,
0.011063887737691402,
-0.013138911686837673,
-0.03728068247437477,
0.047882482409477234,
0.026173200458288193,
0.0005966783501207829,
-0.022929886355996132,
0.01789054088294506,
0.00438326969742775,
-0.08146648108959198,
-0.018239285796880722,
-0.013199941255152225,
0.0017524361610412598,
0.003555004019290209,
-0.035327717661857605,
-0.023941241204738617,
0.0038361784536391497,
-0.0007132894243113697,
0.02524903044104576,
-0.025440838187932968,
-0.006451754830777645,
-0.019198330119252205,
0.011369038373231888,
0.003609495237469673,
-0.005505788139998913,
-0.040872737765312195,
0.006987947970628738,
0.0004789773956872523,
-0.023888930678367615,
0.03147410228848457,
0.01391486544162035,
0.009468385949730873,
-0.017132025212049484,
-0.009102205745875835,
0.018064914271235466,
0.024429483339190483,
0.0410122349858284,
0.02728918008506298,
-0.03933826833963394,
-0.03752480074763298,
-0.014263609424233437,
-0.0026744266506284475,
-0.00895398948341608,
0.06824910640716553,
0.012947103008627892,
-0.07937402278184891,
0.06061162054538727,
-0.01143878698348999,
-0.035589274019002914,
0.02167440950870514,
0.11090043187141418,
-0.008757821284234524,
-0.005043703131377697,
0.05593845993280411,
-0.04251183196902275,
-0.038222286850214005,
0.007545937784016132,
-0.000674055831041187,
-0.001723010907880962,
-0.02842259593307972,
0.006682797335088253,
0.01989581622183323,
-0.05970488861203194,
0.022807825356721878,
-0.047603487968444824,
0.06901633739471436,
-0.003450381103903055,
-0.0005122169968672097,
-0.009930470958352089,
0.016181698068976402,
-0.014437980949878693,
-0.00896270852535963,
0.04830097407102585,
-0.011874716728925705,
-0.006948714144527912,
0.04844047129154205,
0.05510147288441658,
-0.012153711169958115,
-0.03888490051031113,
0.011185947805643082,
0.012720419093966484,
0.026469631120562553,
0.027672797441482544,
-0.002059766324236989,
-0.07205040752887726,
0.03145666420459747,
-0.008435233496129513,
-0.007707231678068638,
0.027672797441482544,
0.08167573064565659,
-0.026731189340353012,
-0.022493956610560417,
-0.032956261187791824,
-0.0019366162596270442,
0.01347893662750721,
-0.03581595793366432,
-0.008008022792637348,
-0.03581595793366432,
0.0440463051199913,
0.008090849034488201,
-0.045301780104637146,
0.03571133315563202,
0.03248545899987221,
0.025929080322384834,
0.09639270603656769,
0.004808301106095314,
0.007824932225048542,
0.0068048578687012196,
0.021151293069124222,
-0.014961096458137035,
-0.016329914331436157,
0.062320463359355927,
0.006412521004676819,
-0.006538940593600273,
0.03074174001812935,
0.014725694432854652,
-0.00242376746609807,
-0.002425946993753314,
0.06130910664796829,
-0.04547615349292755,
-0.030253499746322632,
-0.005828375928103924,
-0.010479742661118507,
0.019477324560284615,
-0.012798886746168137,
-0.047045499086380005,
-0.1263148933649063,
0.05415986478328705,
-0.003964777570217848,
0.07895553112030029,
0.08090849220752716,
0.04575514793395996,
-0.024412045255303383
] |
729,740 | minidir | __iter__ | null | def __iter__(self) -> typing.Iterator[Path]:
paths: typing.List[Path] = []
for key in self._dir:
paths.append(SomePath(key))
return iter(paths)
| (self) -> Iterator[minidir.Path] | [
0.006121609825640917,
-0.04980170726776123,
-0.09859440475702286,
0.003229723544791341,
0.0010287142358720303,
0.017873840406537056,
0.0019831042736768723,
0.05567556992173195,
0.07927913218736649,
0.029909852892160416,
0.03517110273241997,
0.010981961153447628,
0.0016463932115584612,
0.07740525901317596,
-0.027621569111943245,
0.015405376441776752,
0.0020472933538258076,
0.06789176166057587,
-0.06212600693106651,
0.021026987582445145,
-0.027369316667318344,
0.037189118564128876,
0.06007195636630058,
-0.01614411361515522,
-0.03270263969898224,
0.04799990728497505,
0.036738667637109756,
-0.0051711611449718475,
0.05452241748571396,
-0.037621550261974335,
-0.022360317409038544,
-0.0014189162757247686,
0.024378331378102303,
-0.016522491350769997,
0.01911708153784275,
0.014756728895008564,
-0.05819808691740036,
0.027621569111943245,
-0.0025270222686231136,
0.02117113023996353,
0.05502692237496376,
0.02363959513604641,
0.006720707751810551,
-0.0058648535050451756,
-0.0012770246248692274,
0.004304045811295509,
-0.008608091622591019,
-0.0015360331162810326,
0.051279183477163315,
-0.02502697892487049,
0.019891854375600815,
0.026954904198646545,
0.0005343458033166826,
-0.058306194841861725,
0.009315297938883305,
0.028522469103336334,
-0.012198175303637981,
0.007333319168537855,
0.031207147985696793,
0.04392784461379051,
-0.011315293610095978,
-0.09369351714849472,
0.034648582339286804,
-0.001019705319777131,
0.023297252133488655,
-0.04504495859146118,
-0.07203590124845505,
-0.03953145816922188,
0.010342322289943695,
0.06158546730875969,
-0.05156746879220009,
-0.00036092274240218103,
0.00437386566773057,
-0.0022195903584361076,
-0.04792783781886101,
0.001859230687841773,
-0.0886484831571579,
0.03317110985517502,
0.06396384537220001,
-0.07848633825778961,
-0.05199990049004555,
0.015045016072690487,
-0.07754940539598465,
-0.014936908148229122,
0.011477455496788025,
0.06684672087430954,
0.028972918167710304,
-0.06263051182031631,
-0.005297287367284298,
0.09203585982322693,
-0.032612551003694534,
0.007373859640210867,
-0.0023828784469515085,
-0.0077882735058665276,
0.01363961398601532,
0.023459414020180702,
-0.029261205345392227,
-0.024162115529179573,
0.002891886280849576,
0.008130615577101707,
-0.005184674635529518,
-0.0018930144142359495,
0.08821605145931244,
0.04075668007135391,
0.023963918909430504,
-0.019603567197918892,
-0.03859452158212662,
-0.04846837744116783,
0.023026984184980392,
0.019909871742129326,
-0.07711697369813919,
0.0596034899353981,
0.04576567932963371,
0.009990972466766834,
-0.02385581098496914,
-0.011288266628980637,
-0.025531483814120293,
-0.04205397516489029,
0.056684575974941254,
-0.003137381514534354,
-0.0017601317958906293,
0.06028817221522331,
-0.025801753625273705,
0.06165754050016403,
0.039891816675662994,
0.01751348003745079,
0.002436932409182191,
-0.0028693638741970062,
-0.013954928144812584,
-0.030396338552236557,
0.010369349271059036,
0.0776214748620987,
0.03335128724575043,
0.010405385866761208,
0.016927896067500114,
-0.00404278514906764,
-0.0022511219140142202,
-0.019459422677755356,
-0.03549542650580406,
0.07985570281744003,
0.0071621485985815525,
-0.019261224195361137,
0.04082874953746796,
0.03614407405257225,
-0.000048388141294708475,
0.0030788229778409004,
0.011342320591211319,
0.016324292868375778,
0.019909871742129326,
-0.0033288225531578064,
-0.0327206589281559,
-0.0007573183975182474,
0.05654043331742287,
0.07971156388521194,
-0.038090016692876816,
-0.0014267991064116359,
-0.05052242800593376,
0.05203593894839287,
0.005882871802896261,
-0.02636031061410904,
-0.03385579213500023,
-0.03531524911522865,
-0.012144121341407299,
-0.016918886452913284,
-0.0037905334029346704,
0.027117066085338593,
-0.04980170726776123,
0.0041013434529304504,
0.021639598533511162,
0.009792773984372616,
0.04313505440950394,
-0.060144029557704926,
-0.011900878511369228,
-0.018054019659757614,
-0.06634221971035004,
0.04234226047992706,
0.006013501901179552,
0.07268454879522324,
0.03019814006984234,
0.027351299300789833,
-0.008211696520447731,
-0.01888284645974636,
-0.05545935407280922,
-0.0008181290468201041,
0.04072064161300659,
0.06208997219800949,
0.02185581438243389,
0.014540513046085835,
0.02432427741587162,
-0.011936914175748825,
-0.08619803190231323,
0.01354051474481821,
0.010603583417832851,
0.01886482909321785,
-0.03574768081307411,
0.014117090031504631,
-0.028486432507634163,
-0.010261241346597672,
-0.05416205897927284,
0.0801439881324768,
-0.04781972989439964,
-0.018135100603103638,
-0.0006480843294411898,
0.00614413246512413,
-0.02958552911877632,
0.02641436457633972,
-0.03544137254357338,
-0.023477433249354362,
0.03275669366121292,
0.04064857214689255,
-0.02254049852490425,
-0.07181968539953232,
-0.0014673395780846477,
-0.04915305972099304,
-0.015026998706161976,
0.006666653789579868,
-0.025729680433869362,
-0.03688281401991844,
-0.01593690738081932,
-0.0009701558155938983,
0.03729722648859024,
0.02589184232056141,
-0.007436922751367092,
-0.0636034831404686,
0.017432399094104767,
-0.03227020800113678,
0.0028355801478028297,
-0.019945908337831497,
-0.07949534803628922,
-0.04248640686273575,
0.013387361541390419,
-0.007761246524751186,
0.005702692084014416,
-0.02998192422091961,
0.031891830265522,
-0.010801780968904495,
0.003975217696279287,
0.025639591738581657,
0.004689180292189121,
0.02481076307594776,
0.002340085571631789,
-0.007414400111883879,
-0.022882839664816856,
-0.006355843972414732,
-0.063783660531044,
0.016675643622875214,
0.014657629653811455,
0.03072066232562065,
0.04209000989794731,
0.03942335024476051,
0.03996388986706734,
-0.004009001422673464,
-0.03410804271697998,
-0.014360332861542702,
0.04108100384473801,
-0.0312972366809845,
-0.06850437074899673,
-0.027927875518798828,
0.05751340463757515,
-0.0064008887857198715,
0.030378321185708046,
0.0267927423119545,
-0.012810786254703999,
0.06342330574989319,
-0.02567562647163868,
0.03434227779507637,
0.03300894796848297,
-0.033333271741867065,
-0.009684666059911251,
0.052864763885736465,
-0.003256750525906682,
0.024035990238189697,
-0.01729726418852806,
0.031477417796850204,
-0.006328816991299391,
0.07113499939441681,
-0.00495044095441699,
0.004671162459999323,
-0.10169350355863571,
0.010621601715683937,
-0.012810786254703999,
0.013801775872707367,
-0.04363955557346344,
-0.014045018702745438,
-0.02385581098496914,
-0.010972952470183372,
-0.027657605707645416,
0.04655846953392029,
-0.015990961343050003,
-0.0005211138632148504,
0.08872055262327194,
0.024738691747188568,
-0.016279248520731926,
-0.05178368464112282,
0.06724311411380768,
-0.04302694648504257,
-0.05524313822388649,
-0.07726111263036728,
0.05383773520588875,
-0.002639634534716606,
0.011621599085628986,
-0.015153123997151852,
0.025729680433869362,
0.008450434543192387,
-0.0010715069947764277,
0.00863511860370636,
0.004009001422673464,
0.03567560762166977,
-0.0055135032162070274,
0.014783755876123905,
-0.009612594731152058,
-0.03140534460544586,
-0.003993235528469086,
-0.009747729636728764,
0.004234226420521736,
-0.08259443938732147,
-0.006941428408026695,
0.012441418133676052,
-0.05045035481452942,
0.07171157747507095,
-0.07704489678144455,
0.08425208926200867,
-0.02430626004934311,
-0.021243203431367874,
-0.011063042096793652,
0.04270262271165848,
0.05654043331742287,
0.04021614044904709,
0.009297279641032219,
0.017216183245182037,
0.012657633982598782,
-0.04299090802669525,
-0.032810747623443604,
0.04529721289873123,
0.01680177077651024,
0.0706304982304573,
0.046053968369960785,
-0.0008902010158635676,
0.013027002103626728,
-0.023711666464805603,
0.01479276455938816,
-0.03524317592382431,
-0.004954945761710405,
-0.013666640967130661,
-0.019891854375600815,
-0.015144115313887596,
0.024648601189255714,
-0.005927916616201401,
0.05005395784974098,
0.0008063048007898033,
0.04165757820010185,
0.030306247994303703,
0.021045004948973656,
-0.0017229696968570352,
0.04162154346704483,
0.005324314348399639,
-0.048756662756204605,
0.04432424157857895,
-0.02868463099002838,
0.03654047101736069,
0.0646124929189682,
0.0175314974039793,
-0.05250440537929535,
-0.0327206589281559,
-0.024035990238189697,
-0.04064857214689255,
0.004403144586831331,
-0.021963922306895256,
0.03336930647492409,
0.0028198144864290953,
-0.007409895770251751,
0.0001286596670979634,
-0.03729722648859024,
-0.06983770430088043,
0.03349543362855911,
-0.016099069267511368,
0.0292972419410944,
0.035585518926382065,
-0.013522496446967125,
0.06046835333108902,
0.02616211213171482,
0.023153109475970268,
0.07517103105783463,
0.057189080864191055,
0.01954951323568821,
-0.06025213748216629,
0.06774762272834778,
-0.007477463223040104,
0.009504486806690693,
0.0020529241301119328,
-0.02115311287343502,
-0.04162154346704483,
0.012711687944829464,
0.012486462481319904,
-0.006018006708472967,
-0.08072056621313095,
0.07160346955060959,
-0.017801767215132713,
-0.04136928915977478,
-0.04911702498793602,
0.04302694648504257,
-0.044468384236097336,
-0.029243187978863716,
0.06122510880231857,
0.00027012897771783173,
-0.055783677846193314,
0.024702655151486397,
-0.0007274760864675045,
-0.0363062359392643,
-0.016225194558501244,
0.012522499077022076,
-0.04890080913901329,
0.03711704537272453,
0.023747703060507774,
0.021783743053674698,
0.004186929203569889,
-0.044180095195770264,
-0.030540483072400093,
0.06558546423912048,
0.05974763259291649,
0.008450434543192387,
-0.08735118806362152,
0.010225205682218075,
0.020126087591052055,
0.011639617383480072,
-0.0155675383284688,
0.011936914175748825,
-0.025369321927428246,
-0.00003702132744365372,
-0.019261224195361137,
-0.017639605328440666,
-0.008373858407139778,
-0.009126109071075916,
-0.01705402135848999,
0.027891838923096657,
-0.03418011590838432,
-0.0609368197619915,
-0.03565758839249611,
-0.016729697585105896,
-0.001070380792953074,
-0.021765723824501038,
0.004554045386612415,
0.007914399728178978,
-0.001993239391595125,
0.04111703857779503,
-0.015405376441776752,
-0.020108070224523544,
0.07380165904760361,
0.05538728088140488,
0.006054042372852564,
-0.0350629948079586,
-0.02682877704501152,
0.03585578873753548,
-0.03801794722676277,
0.015450420789420605,
0.04666657745838165,
-0.02544139325618744,
-0.02111707627773285,
-0.056468360126018524,
0.006225213408470154,
0.05023413896560669,
0.017900867387652397,
0.06263051182031631,
-0.05715304613113403,
0.016324292868375778,
-0.038126055151224136,
0.021981939673423767,
0.03917109593749046,
-0.005585575010627508,
-0.045117031782865524,
0.02277473174035549,
-0.02769364044070244,
-0.05618007481098175,
-0.03115309402346611,
-0.010819799266755581,
0.005558548029512167,
-0.006175663787871599,
0.010513493791222572,
-0.0332251638174057,
-0.08309894055128098,
-0.030342284590005875,
-0.043999917805194855,
0.036504436284303665,
-0.018558522686362267,
0.0015191412530839443,
-0.05117107555270195,
0.029387330636382103,
0.003342336043715477,
-0.022234192118048668,
-0.02344139665365219,
0.05481070652604103,
0.017135102301836014,
-0.07971156388521194,
0.02111707627773285,
0.038090016692876816,
0.015477447770535946,
0.009144126437604427,
0.036053985357284546,
-0.0030608049128204584,
-0.017999965697526932,
0.020774735137820244,
-0.01954951323568821,
0.029729673638939857,
0.029459403827786446,
-0.006914401426911354,
0.09045027941465378,
-0.028017964214086533,
-0.05416205897927284,
-0.026738688349723816,
-0.02048644796013832,
0.06918905675411224,
-0.00522521510720253,
-0.05499088764190674,
-0.06180168315768242,
0.042198117822408676,
-0.05070260539650917,
-0.012054030783474445,
-0.020594555884599686,
-0.0359819121658802,
0.020774735137820244,
-0.01754050701856613,
-0.015963934361934662,
0.0028535982128232718,
0.012324300594627857,
-0.028252199292182922,
0.03118913061916828,
-0.0001369648234685883,
-0.03187381476163864,
0.01069367304444313,
0.00431755930185318,
0.009765747003257275,
-0.00796845369040966,
-0.013657631352543831,
0.06342330574989319,
-0.006815302185714245,
-0.00784232746809721,
0.04980170726776123,
0.013459433801472187,
-0.022558515891432762,
0.05120711028575897,
0.040144067257642746,
0.022846803069114685,
0.008833316154778004,
-0.031729668378829956,
0.04569360613822937,
0.006040528882294893,
-0.030126068741083145,
-0.026252202689647675,
0.06472060084342957,
0.008445929735898972,
-0.002139635616913438,
-0.035333264619112015,
-0.03227020800113678,
0.041945867240428925,
0.010819799266755581,
0.0014391865115612745,
0.014711683616042137,
-0.05769358575344086,
-0.05636025220155716,
0.01070268265902996,
0.01354051474481821,
0.02360355854034424,
-0.09419801831245422,
-0.02816210873425007,
0.033801738172769547,
0.004675666801631451,
0.01953149400651455,
0.01999996230006218,
0.030792733654379845,
0.029513457790017128,
0.016918886452913284,
0.014450423419475555,
-0.03744136914610863,
-0.02111707627773285,
0.02117113023996353,
0.027333281934261322,
-0.04176568612456322,
-0.030090032145380974,
-0.015387358143925667,
-0.09455838054418564,
0.0008462821715511382,
-0.02724319137632847,
0.07326111942529678,
-0.006918905768543482,
-0.010306286625564098,
-0.053765662014484406,
-0.02504499815404415,
0.04565757140517235,
-0.04634225368499756,
0.00298648071475327,
0.004139631986618042,
-0.054414309561252594,
-0.00522521510720253,
-0.00653151934966445,
-0.002218464156612754,
-0.07214400917291641,
-0.004963954444974661,
-0.06554942578077316,
-0.01024322398006916,
0.006387375295162201,
0.006027015391737223,
0.02819814532995224,
0.001926798140630126,
0.06904491037130356,
-0.010396376252174377,
-0.04270262271165848,
0.07718904316425323,
0.016981950029730797,
-0.0018412127392366529,
0.047135043889284134,
-0.02180176042020321,
0.03935127705335617,
0.07718904316425323,
-0.010756736621260643,
-0.009135117754340172,
0.001810807385481894,
0.0025315266102552414,
0.022396354004740715,
-0.026954904198646545,
-0.013108083046972752,
-0.05077467858791351,
-0.040792714804410934,
-0.020396357402205467,
0.04659450426697731,
-0.03560353443026543,
-0.0759638175368309,
0.057189080864191055,
-0.012108084745705128,
0.04756747558712959,
-0.00840538926422596,
0.015783753246068954,
-0.018792757764458656,
0.002677922835573554,
-0.02641436457633972,
-0.0006019132561050355,
-0.041729651391506195,
-0.006549537181854248,
-0.023567521944642067,
-0.02544139325618744,
-0.018918883055448532,
-0.04727919027209282,
0.010954934172332287,
-0.03318912535905838,
0.004018010571599007,
-0.047423332929611206,
0.00516665680333972,
-0.023099055513739586,
0.02479274570941925,
0.036072004586458206,
-0.050594497472047806,
0.013225199654698372,
0.023729683831334114,
-0.011558536440134048,
-0.02227022871375084,
-0.017468435689806938,
0.012738714925944805,
-0.00744142709299922,
-0.04320712387561798,
0.02180176042020321,
0.029513457790017128,
0.026270220056176186,
0.014702674932777882,
0.001484231441281736,
-0.04028820991516113,
-0.018054019659757614,
-0.0043671089224517345,
0.010180160403251648,
-0.023279234766960144,
0.002033779863268137,
-0.006657645106315613,
0.001069817808456719,
0.002815309911966324,
-0.05052242800593376,
-0.06500888615846634,
-0.02277473174035549,
0.00041582126868888736,
-0.015801772475242615,
0.0015923393657431006,
0.031459398567676544,
-0.03643236309289932,
-0.09693675488233566,
0.04270262271165848,
-0.020990950986742973,
0.06536924839019775,
-0.010468448512256145,
0.041008930653333664,
0.014423396438360214,
-0.031711652874946594,
0.04727919027209282,
-0.05733322352170944,
0.020378340035676956,
-0.024936890229582787,
0.04890080913901329,
-0.0011328806867823005,
-0.011810787953436375,
0.05448638275265694,
0.027315262705087662,
-0.029873816296458244,
0.021639598533511162,
-0.02322518080472946,
0.0514233261346817,
0.02481076307594776,
0.004900891799479723,
-0.023243198171257973,
0.026198148727416992,
-0.030630571767687798,
0.012180157005786896,
0.044900815933942795,
-0.007351337466388941,
0.050594497472047806,
0.008202686905860901,
0.05949538201093674,
-0.038954880088567734,
-0.06064853444695473,
0.01933329738676548,
-0.051026929169893265,
0.09109892696142197,
-0.02634229138493538,
0.06454041600227356,
-0.021441400051116943,
0.07675661146640778,
-0.029837781563401222,
-0.025999950245022774,
0.04972963407635689,
-0.01091889850795269,
0.025189140811562538,
-0.004128370434045792,
0.017207173630595207,
-0.017414381727576256,
0.06587374955415726,
-0.03481074422597885,
-0.037837766110897064,
-0.00653151934966445,
0.02839634194970131,
-0.014369342476129532,
-0.029657600447535515,
0.009225207380950451,
0.05318908765912056,
-0.0016171140596270561,
0.02818012610077858,
-0.0037544972728937864,
0.03136930987238884,
0.016927896067500114,
0.0034459393937140703,
0.0016542761586606503,
-0.05863051861524582,
0.0318017415702343,
0.0057747638784348965,
-0.017225192859768867,
0.0069008879363536835,
0.03046840988099575,
-0.020738698542118073,
0.025801753625273705,
0.024198152124881744,
-0.00795494019985199,
0.0011734211584553123,
-0.014288261532783508,
-0.038522448390722275,
0.003297290997579694,
0.015315285883843899,
-0.06825212389230728,
-0.05135125294327736,
0.006873860955238342,
0.02616211213171482,
0.02436031401157379,
0.04475667327642441,
0.038090016692876816,
0.006882869638502598
] |
729,741 | minidir | create | null | def create(self, path: Path) -> File:
if str(path) in self._dir:
raise NameCollision()
self._dir[str(path)] = b""
return _FakeDirectoryFile(self._dir, str(path))
| (self, path: minidir.Path) -> minidir.File | [
-0.002269681077450514,
0.051701951771974564,
-0.031791433691978455,
0.0058042071759700775,
-0.008956100791692734,
-0.047305651009082794,
-0.029738614335656166,
0.07535477727651596,
-0.021291175857186317,
0.002269681077450514,
0.09984326362609863,
0.055371589958667755,
-0.015477885492146015,
0.011653830297291279,
-0.038840048015117645,
0.02461565099656582,
0.04272768646478653,
-0.004814131185412407,
-0.053264275193214417,
0.028394291177392006,
0.019728854298591614,
0.04065670073032379,
0.03239092603325844,
0.009328514337539673,
0.026795634999871254,
0.009737261570990086,
-0.06489085406064987,
0.05965889245271683,
0.023707324638962746,
-0.05420893430709839,
-0.004062491003423929,
-0.0057042911648750305,
0.027703963220119476,
0.020328350365161896,
0.00488225556910038,
0.011208750307559967,
-0.016086464747786522,
0.01129958312958479,
-0.04745098203420639,
-0.036823563277721405,
0.04654265567660332,
-0.0028566871769726276,
-0.03155526891350746,
-0.0016667793970555067,
0.005495375953614712,
-0.026777468621730804,
0.013652149587869644,
0.006612617988139391,
-0.07117647677659988,
0.03208209574222565,
0.0014964680885896087,
0.03173693269491196,
-0.0029815821908414364,
-0.007988733239471912,
-0.012489491142332554,
0.011190583929419518,
0.05682491511106491,
-0.01195357833057642,
-0.004995796363800764,
0.007130363956093788,
-0.016077380627393723,
0.05406360328197479,
0.08814401924610138,
-0.07230280339717865,
-0.05591658875346184,
0.019383691251277924,
-0.07172147184610367,
-0.03304492309689522,
0.024433987215161324,
0.05998589098453522,
-0.023016996681690216,
0.009337597526609898,
0.05544425919651985,
0.04879530519247055,
0.04912230372428894,
0.0571155771613121,
0.000701682351063937,
-0.017993951216340065,
0.07332012802362442,
-0.02219950221478939,
-0.06452752649784088,
-0.02790379337966442,
-0.014733058400452137,
0.004950379952788353,
0.007589069195091724,
0.05577125400304794,
0.06078521907329559,
-0.02661397121846676,
-0.010136925615370274,
0.040547702461481094,
0.001445374800823629,
0.007484611589461565,
-0.04984896630048752,
-0.038258716464042664,
0.027467798441648483,
-0.030338110402226448,
0.05239228159189224,
0.0202011838555336,
-0.015359803102910519,
0.04988529905676842,
-0.024815483018755913,
0.021945171058177948,
-0.03059244155883789,
0.0016894876025617123,
0.01853894628584385,
0.011962661519646645,
0.030101945623755455,
-0.0605672188103199,
-0.011644747108221054,
0.0036696395836770535,
-0.06420052796602249,
0.028049126267433167,
0.02721346542239189,
0.018566196784377098,
-0.014669475145637989,
-0.013425067998468876,
0.016758626326918602,
-0.07095848023891449,
0.012216993607580662,
-0.033844251185655594,
0.04312735050916672,
0.004723298363387585,
-0.05275561287999153,
0.04770531505346298,
0.06158454716205597,
0.05184728279709816,
0.02457931824028492,
-0.02452481910586357,
0.03304492309689522,
0.04672432318329811,
-0.02492448315024376,
0.08022341132164001,
0.034498244524002075,
0.03967570886015892,
-0.01297090481966734,
0.020691681653261185,
-0.008560978807508945,
-0.006367369554936886,
0.0033721625804901123,
0.06351020187139511,
0.03300859034061432,
-0.04770531505346298,
0.028049126267433167,
-0.0024524820037186146,
0.05984055995941162,
0.03333558887243271,
-0.010400339961051941,
0.021327508613467216,
-0.04745098203420639,
0.062383875250816345,
-0.03836771845817566,
-0.026068974286317825,
0.002570564392954111,
0.06856049597263336,
0.06031288951635361,
-0.05155662074685097,
-0.019420024007558823,
0.02586914226412773,
0.008878893218934536,
0.006199329160153866,
-0.0054545016027987,
0.0235438272356987,
0.0030224567744880915,
-0.02187250554561615,
-0.022363001480698586,
0.004755089990794659,
-0.011408582329750061,
0.01449689269065857,
0.0062402039766311646,
-0.026359638199210167,
0.0001157406804850325,
-0.004607487004250288,
-0.0027136257849633694,
0.010400339961051941,
-0.06303787231445312,
-0.03873104602098465,
0.027340631932020187,
0.025378646329045296,
0.03442557901144028,
-0.027867460623383522,
-0.001307990401983261,
-0.017621537670493126,
0.03388058394193649,
0.013406901620328426,
0.0437450110912323,
0.028049126267433167,
-0.005531709175556898,
0.03771372139453888,
0.042219020426273346,
0.03589706867933273,
-0.08690869063138962,
0.03669639676809311,
0.02794012799859047,
-0.022653667256236076,
0.035860735923051834,
-0.023434827104210854,
-0.01477847434580326,
-0.036514729261398315,
-0.05809657275676727,
0.036151401698589325,
-0.012898238375782967,
0.046215660870075226,
0.05776957422494888,
-0.03775005415081978,
0.0029656863771378994,
-0.005027587991207838,
0.01377023197710514,
0.02824895828962326,
-0.07898808270692825,
0.03266342729330063,
0.01778503507375717,
-0.011036168783903122,
0.00210391147993505,
-0.008651811629533768,
-0.040511369705200195,
-0.05072095990180969,
0.010409423150122166,
0.033480919897556305,
-0.042909350246191025,
0.0671435073018074,
-0.012389575131237507,
0.055662255734205246,
-0.04072936624288559,
-0.022017838433384895,
0.006866949610412121,
-0.03807705268263817,
-0.06325586885213852,
-0.028103625401854515,
-0.04116536304354668,
-0.051701951771974564,
0.0438176766037941,
-0.0016508836997672915,
-0.01029134076088667,
-0.062420208007097244,
-0.029429782181978226,
-0.025305980816483498,
0.046578988432884216,
-0.0538456030189991,
-0.04886797443032265,
-0.029793113470077515,
0.014260727912187576,
-0.05518992617726326,
0.04298201575875282,
0.06950515508651733,
-0.010681921616196632,
0.004607487004250288,
-0.021690839901566505,
-0.027776628732681274,
0.03286325931549072,
-0.024760983884334564,
-0.0184844471514225,
0.025142481550574303,
-0.06311053782701492,
0.01882052794098854,
0.02855778858065605,
-0.022762665525078773,
-0.013797481544315815,
-0.02494264952838421,
0.0235438272356987,
0.01610463112592697,
-0.040220703929662704,
-0.0403297021985054,
-0.014896556735038757,
0.006353744771331549,
-0.022126836702227592,
-0.06263820827007294,
-0.051919952034950256,
-0.003440287197008729,
0.005581667181104422,
0.019928686320781708,
-0.02292616479098797,
0.009006058797240257,
0.015459719114005566,
-0.049957964569330215,
0.053373273462057114,
-0.030029278248548508,
-0.02824895828962326,
0.012098911218345165,
0.009010599926114082,
0.043926674872636795,
-0.044944003224372864,
-0.029139118269085884,
0.0336625836789608,
-0.013461400754749775,
0.002933894982561469,
0.06608984619379044,
-0.019420024007558823,
0.02486998401582241,
0.013316068798303604,
-0.027776628732681274,
-0.021636340767145157,
0.011871828697621822,
-0.05609825253486633,
-0.015232637524604797,
0.031046604737639427,
-0.022653667256236076,
-0.09831727296113968,
-0.05686124786734581,
0.04280035197734833,
-0.07023181766271591,
-0.029120951890945435,
0.038222383707761765,
-0.04665165767073631,
0.0471966527402401,
-0.005082087591290474,
-0.03457091003656387,
-0.08385671675205231,
0.0437450110912323,
-0.0035878901835530996,
0.03257259353995323,
-0.03391691669821739,
0.010146008804440498,
0.0057724155485630035,
0.038222383707761765,
0.11713780462741852,
0.04450800642371178,
0.009246764704585075,
0.011163334362208843,
-0.010046092793345451,
0.015441552735865116,
-0.01754887029528618,
0.027758462354540825,
-0.07797075808048248,
-0.002613710006698966,
-0.009773594327270985,
0.01126325037330389,
0.03833138570189476,
0.02726796641945839,
-0.008683602325618267,
0.010482089594006538,
-0.05282827839255333,
0.05224694684147835,
0.04868630692362785,
0.02626880630850792,
-0.006276537198573351,
0.0285941231995821,
0.00939209759235382,
-0.021327508613467216,
0.0302654430270195,
-0.03153710067272186,
0.012216993607580662,
-0.030883105471730232,
-0.06848783046007156,
-0.03760472312569618,
0.03767738863825798,
-0.007734401151537895,
0.014233478344976902,
0.017557954415678978,
0.053336940705776215,
0.008978809230029583,
0.017676036804914474,
-0.009401180781424046,
0.008392938412725925,
-0.0040534078143537045,
0.018675195053219795,
-0.042219020426273346,
-0.033589918166399,
0.035170406103134155,
-0.04211002215743065,
0.003497057594358921,
0.010527505539357662,
0.013633983209729195,
-0.0007828639936633408,
0.003154164180159569,
0.010936252772808075,
-0.034189414232969284,
-0.020455515012145042,
0.06300153583288193,
-0.03945770859718323,
0.022817164659500122,
0.03622406721115112,
-0.06449119001626968,
-0.020001351833343506,
-0.003889908781275153,
0.07317479699850082,
0.013388734310865402,
0.03340825438499451,
-0.030029278248548508,
-0.004782339558005333,
0.048359308391809464,
0.006980490405112505,
0.012652990408241749,
0.001813247101381421,
0.005681583192199469,
0.027504131197929382,
0.018048450350761414,
0.07535477727651596,
-0.0037286807782948017,
0.06267453730106354,
-0.022962497547268867,
-0.008978809230029583,
-0.024343153461813927,
0.04577966406941414,
0.017358122393488884,
0.026704803109169006,
-0.005186545196920633,
0.007016823161393404,
0.02992027997970581,
0.032154761254787445,
0.06510885059833527,
0.030737772583961487,
-0.017993951216340065,
-0.02390715666115284,
0.034807078540325165,
-0.05013963207602501,
-0.018675195053219795,
0.040257036685943604,
0.01878419518470764,
0.067179836332798,
-0.015278054401278496,
0.016249964013695717,
0.012825571931898594,
-0.019020359963178635,
-0.02957511506974697,
0.028775786980986595,
0.02888478711247444,
-0.004466696176677942,
-0.06452752649784088,
0.01315256953239441,
-0.04109269753098488,
-0.02797646075487137,
0.006035830359905958,
-0.02290799841284752,
0.014251644723117352,
0.011072501540184021,
0.019710687920451164,
-0.029193617403507233,
0.03898537904024124,
-0.006149371154606342,
0.04232802242040634,
0.02323499508202076,
-0.017966700717806816,
-0.03224559500813484,
0.0026568553876131773,
0.021618174389004707,
-0.04439900442957878,
-0.07262979447841644,
-0.0403660349547863,
-0.04450800642371178,
0.08770801872015,
0.00098496675491333,
-0.023707324638962746,
0.03151893615722656,
0.02456115186214447,
0.0006210683495737612,
-0.036205898970365524,
-0.022690000012516975,
0.02692280150949955,
0.12542174756526947,
-0.01296182069927454,
0.04944930225610733,
0.0019574440084397793,
0.08211272954940796,
-0.008134065195918083,
-0.04272768646478653,
-0.02318049594759941,
-0.015995632857084274,
-0.0671435073018074,
0.02058268152177334,
-0.020019518211483955,
-0.02149100787937641,
0.05515359342098236,
0.06281986832618713,
-0.060676220804452896,
0.010209591127932072,
-0.03328108787536621,
-0.018965860828757286,
-0.015541468746960163,
0.0571155771613121,
-0.037859052419662476,
0.0001488804118707776,
-0.053627606481313705,
-0.026141639798879623,
0.03524307534098625,
0.0046483613550662994,
-0.02826712466776371,
-0.028394291177392006,
0.0054545016027987,
-0.010318590328097343,
-0.025051647797226906,
0.04003903642296791,
-0.01580488309264183,
-0.04745098203420639,
0.023489326238632202,
0.010636504739522934,
0.00723936315625906,
0.018003033474087715,
0.06234753876924515,
0.032772425562143326,
0.009800844825804234,
0.0269046351313591,
0.014169895090162754,
-0.08254872262477875,
0.0013295630924403667,
-0.04280035197734833,
0.0032313719857484102,
-0.02287166565656662,
0.005831457208842039,
-0.07528211176395416,
-0.04785064607858658,
0.0009611231507733464,
-0.05686124786734581,
-0.03909437730908394,
0.02726796641945839,
0.007189405150711536,
0.03438924625515938,
-0.032518092542886734,
-0.07106747478246689,
-0.004584778565913439,
-0.05315527319908142,
-0.005036671180278063,
0.002849874785169959,
-0.09831727296113968,
-0.03913071006536484,
0.027849294245243073,
0.04883164167404175,
-0.020455515012145042,
-0.05293727666139603,
-0.046578988432884216,
-0.04112903028726578,
-0.03760472312569618,
0.01296182069927454,
0.01578671671450138,
-0.02721346542239189,
-0.020292017608880997,
-0.017403539270162582,
0.03066510707139969,
-0.013588566333055496,
0.0974452793598175,
0.0572245791554451,
0.02723163180053234,
-0.05493559688329697,
0.03800438717007637,
0.039930038154125214,
0.023961655795574188,
0.013888314366340637,
-0.003708243602886796,
-0.003551557194441557,
-0.06790649890899658,
-0.080586738884449,
0.03420758247375488,
-0.0017235497944056988,
-0.03204576298594475,
-0.009664595127105713,
0.002022162079811096,
-0.019311023876070976,
0.006975948344916105,
0.007248446345329285,
0.031428102403879166,
-0.022399334236979485,
-0.008374772034585476,
0.005776957608759403,
-0.008501937612891197,
0.001627040095627308,
0.026813803240656853,
-0.04636099189519882,
0.03642389923334122,
-0.022472001612186432,
0.011226917617022991,
0.008933392353355885,
-0.055008262395858765,
0.0016327170887961984,
-0.02459748461842537,
0.022726332768797874,
0.011844579130411148,
0.04581599682569504,
-0.008052315562963486,
0.023725491017103195,
0.059331897646188736,
-0.033589918166399,
0.046215660870075226,
0.015178138390183449,
0.03727772459387779,
-0.012135243974626064,
0.05144762247800827,
0.02014668472111225,
-0.007171238772571087,
0.03262709453701973,
0.009214974008500576,
-0.02623247355222702,
-0.029011953622102737,
-0.04843197762966156,
-0.0470513179898262,
-0.05021229758858681,
-0.05776957422494888,
-0.07964207977056503,
0.005885956808924675,
0.002413877984508872,
-0.03406224772334099,
0.01461497601121664,
-0.03942137584090233,
-0.028339790180325508,
0.026668470352888107,
-0.021600008010864258,
-0.029011953622102737,
-0.0012364595895633101,
0.005250127986073494,
-0.019438190385699272,
-0.028630455955863,
0.006594451609998941,
-0.014178979210555553,
0.03066510707139969,
-0.03153710067272186,
0.06906915456056595,
-0.00084190524648875,
-0.008778977207839489,
0.01616821438074112,
0.018084783107042313,
-0.015932049602270126,
-0.001502145198173821,
0.011136084794998169,
0.009955259971320629,
0.013225235976278782,
0.004700590390712023,
0.044290006160736084,
0.015977466478943825,
-0.025651143863797188,
-0.02327132783830166,
-0.03437108173966408,
-0.007738942746073008,
-0.06118488311767578,
-0.05177461728453636,
-0.010227757506072521,
0.013924647122621536,
-0.04345434531569481,
-0.020728014409542084,
0.0774620920419693,
0.03627856448292732,
0.02120034396648407,
-0.03455274552106857,
0.025433145463466644,
-0.02728613279759884,
-0.09555596113204956,
0.0015112283872440457,
0.013188903219997883,
0.02628697268664837,
-0.034843411296606064,
0.02692280150949955,
0.07789809256792068,
0.02452481910586357,
-0.03898537904024124,
-0.03222743049263954,
-0.04955830052495003,
-0.0019018088933080435,
-0.08124073594808578,
-0.05515359342098236,
0.04472600296139717,
-0.0637281984090805,
-0.015123638324439526,
-0.03569723665714264,
-0.014060895889997482,
-0.03066510707139969,
-0.028684955090284348,
-0.0638008639216423,
0.08182206004858017,
-0.017576120793819427,
0.06910549104213715,
-0.0014010937884449959,
-0.033444587141275406,
0.007312029600143433,
0.0335354208946228,
0.002457023598253727,
-0.007520944345742464,
0.028830287978053093,
-0.0134341511875391,
0.02892111986875534,
0.032826922833919525,
0.014115395955741405,
-0.03493424132466316,
-0.01883869431912899,
0.02049184963107109,
0.014996472746133804,
-0.05108429118990898,
-0.04672432318329811,
0.019638022407889366,
0.011708330363035202,
0.027122633531689644,
0.017576120793819427,
0.037459392100572586,
0.049303971230983734,
-0.05489926040172577,
0.018021199852228165,
-0.029175451025366783,
-0.023707324638962746,
0.04058403521776199,
0.0034289329778403044,
0.01958352141082287,
0.012189743109047413,
0.010899920016527176,
-0.04476233571767807,
-0.05344593897461891,
-0.016913041472434998,
-0.010691004805266857,
-0.003878554794937372,
-0.05257394537329674,
0.024688318371772766,
0.06823349744081497,
0.03388058394193649,
0.014351560734212399,
0.005967705976217985,
0.010990751907229424,
0.028085459023714066,
0.023289494216442108,
0.006576284766197205,
-0.006880574394017458,
-0.040148038417100906,
0.001263709389604628,
0.0336989164352417,
0.03865838050842285,
-0.04508933424949646,
0.006612617988139391,
0.03836771845817566,
0.012716572731733322,
0.003497057594358921,
0.014088146388530731,
0.040475033223629,
-0.03829504922032356,
-0.015695884823799133,
0.003160976804792881,
-0.044617004692554474,
0.014896556735038757,
-0.02154550701379776,
-0.03760472312569618,
0.013316068798303604,
-0.04316368326544762,
-0.046905986964702606,
-0.028103625401854515,
-0.047232985496520996,
0.010827253572642803,
0.021745339035987854,
-0.022126836702227592,
0.015532385557889938,
-0.004332717973738909,
0.04225535690784454,
0.03335375338792801,
-0.014378810301423073,
0.0008583687013015151,
0.050030630081892014,
-0.006585367955267429,
0.05355493724346161,
-0.03591523692011833,
0.007189405150711536,
0.037132393568754196,
-0.0151145551353693,
0.03140993416309357,
0.0109090032055974,
0.08385671675205231,
0.05351860448718071,
-0.06267453730106354,
0.052719276398420334,
-0.00787973403930664,
-0.03095577098429203,
0.010881752707064152,
0.08901601284742355,
0.004169219173491001,
-0.05856890231370926,
-0.007025906350463629,
-0.040874697268009186,
0.034861575812101364,
-0.041238028556108475,
-0.01882052794098854,
-0.025651143863797188,
0.010200507938861847,
-0.01585029996931553,
-0.003926241770386696,
0.04305468127131462,
-0.008633644320070744,
0.025142481550574303
] |
729,742 | minidir | get | null | def get(self, path: Path) -> File:
if str(path) not in self._dir:
raise NotFound()
return _FakeDirectoryFile(self._dir, str(path))
| (self, path: minidir.Path) -> minidir.File | [
0.06846857070922852,
0.007476716302335262,
-0.048995181918144226,
0.04386095702648163,
0.02200382575392723,
-0.04734489694237709,
0.040890440344810486,
0.036856405436992645,
-0.007307103369385004,
0.018309015780687332,
0.0870618000626564,
0.03769988566637039,
-0.03161216154694557,
0.00922327022999525,
-0.0007151243044063449,
0.050058700144290924,
0.027559790760278702,
0.03249231353402138,
-0.014889255166053772,
0.021967152133584023,
0.017328012734651566,
0.014660048298537731,
0.01921667344868183,
0.009599168784916401,
0.009347041137516499,
0.009736692532896996,
-0.033537495881319046,
0.007948881946504116,
0.0465380884706974,
-0.05827346444129944,
0.02152707614004612,
-0.006092309020459652,
0.02046355791389942,
0.05196569859981537,
-0.046758126467466354,
0.0316304974257946,
-0.012468834407627583,
-0.031502142548561096,
-0.04235736280679703,
-0.009525822475552559,
-0.031942218542099,
0.007444627583026886,
0.030585316941142082,
0.010369302704930305,
-0.0014760899357497692,
-0.0066103157587349415,
-0.01598944701254368,
0.0010824277997016907,
-0.06289426982402802,
0.04906852915883064,
0.01569606177508831,
0.017538882791996002,
0.00038592645432800055,
-0.03014524094760418,
0.010341797955334187,
-0.006775344256311655,
0.025524437427520752,
-0.0011655151611194015,
0.018629904836416245,
0.05387269705533981,
-0.016667896881699562,
-0.018098145723342896,
0.039350174367427826,
-0.06524134427309036,
-0.05035208538174629,
0.006922036409378052,
-0.027046367526054382,
-0.04312749579548836,
0.013000593520700932,
0.05596306174993515,
0.005533045157790184,
0.06854191422462463,
0.02579948492348194,
0.01858406327664852,
0.04301747679710388,
0.021618757396936417,
0.02660629153251648,
-0.03192388266324997,
0.06711166352033615,
0.01978510618209839,
-0.04001028835773468,
0.0005300400662235916,
-0.04793166369199753,
-0.017483873292803764,
-0.0028673734050244093,
0.021967152133584023,
0.0784803107380867,
-0.0784803107380867,
0.0006658449419774115,
0.04558458924293518,
0.000056692799262236804,
0.001539121731184423,
-0.04840841516852379,
-0.03366585075855255,
0.01862073689699173,
-0.04426436126232147,
0.026276234537363052,
0.017447199672460556,
-0.02660629153251648,
0.05376267805695534,
-0.002709220862016082,
0.05464283376932144,
-0.01177204679697752,
0.06359105557203293,
0.038873422890901566,
0.038616713136434555,
0.0007815941935405135,
-0.03113541193306446,
0.03166717290878296,
0.013348987326025963,
-0.057099927216768265,
0.04239403456449509,
-0.005720994435250759,
0.04683147370815277,
-0.0060418834909796715,
-0.02081195078790188,
-0.011717036366462708,
-0.00788928847759962,
0.004526828415691853,
-0.022883977741003036,
0.0159711092710495,
0.041917286813259125,
-0.04551124572753906,
0.02204049751162529,
0.07312604784965515,
0.04807835817337036,
-0.009599168784916401,
-0.05519292876124382,
0.06271090358495712,
0.0379565991461277,
0.027724819257855415,
0.0235807653516531,
0.034527670592069626,
0.05621977150440216,
-0.04683147370815277,
0.06223415210843086,
0.020665258169174194,
0.027999866753816605,
-0.003135545179247856,
0.09938394278287888,
0.041953958570957184,
-0.006812017410993576,
0.027798166498541832,
-0.0210136529058218,
0.020335201174020767,
0.03139212355017662,
-0.0019654459320008755,
0.009016984142363071,
-0.044154342263936996,
0.05801675096154213,
0.006504880730062723,
-0.050058700144290924,
0.02229720912873745,
0.04862845316529274,
0.04943526163697243,
-0.05288252606987953,
-0.02889835648238659,
0.040377017110586166,
-0.004006529692560434,
0.0035847898107022047,
-0.03562786057591438,
-0.013624034821987152,
0.014760899357497692,
-0.04232069104909897,
-0.014916759915649891,
0.02965015359222889,
-0.0476016066968441,
0.051305584609508514,
0.011588681489229202,
-0.018134819343686104,
-0.027468107640743256,
0.009846711531281471,
-0.03137378767132759,
-0.018593233078718185,
-0.04829839617013931,
-0.05801675096154213,
0.020866960287094116,
0.04884849116206169,
0.04782164469361305,
-0.01416496280580759,
0.004776663612574339,
-0.028036540374159813,
0.027193060144782066,
0.0032730689272284508,
0.029228413477540016,
0.07081564515829086,
-0.009764197282493114,
0.026166215538978577,
0.042650748044252396,
0.03924015536904335,
-0.06744172424077988,
0.034601014107465744,
0.004352631513029337,
-0.022883977741003036,
-0.018043136224150658,
-0.038873422890901566,
-0.01923501119017601,
-0.027174724265933037,
-0.05805342644453049,
0.05820011720061302,
-0.002411252586171031,
0.01723632961511612,
0.042137324810028076,
-0.01025011483579874,
-0.06905534118413925,
0.00577141996473074,
0.05035208538174629,
0.015503528527915478,
-0.05218573659658432,
0.08420130610466003,
-0.034527670592069626,
-0.037369828671216965,
-0.02182045951485634,
-0.024112524464726448,
-0.006206912454217672,
-0.04536455124616623,
-0.03260233253240585,
0.005656816530972719,
-0.05093885585665703,
0.061427343636751175,
0.05068214237689972,
0.009736692532896996,
-0.010424312204122543,
0.009310368448495865,
0.03168550878763199,
-0.034344304352998734,
-0.0038392089772969484,
-0.021948816254734993,
-0.06722168624401093,
-0.05952034518122673,
0.025267725810408592,
-0.0067799286916852,
0.03421594947576523,
-0.04239403456449509,
-0.008017643354833126,
-0.004116549156606197,
0.0360129252076149,
-0.012239627540111542,
-0.03212558478116989,
-0.02022518217563629,
0.038873422890901566,
-0.05082883685827255,
0.021123671904206276,
0.08310111612081528,
-0.05486287176609039,
0.01163452211767435,
-0.017548050731420517,
-0.011075258255004883,
0.03166717290878296,
-0.008462304249405861,
0.023654112592339516,
0.05244245007634163,
-0.018749091774225235,
0.03850669413805008,
0.033830881118774414,
-0.030438624322414398,
-0.049801990389823914,
-0.036618031561374664,
0.033280786126852036,
0.0253043994307518,
-0.037589866667985916,
0.003245564177632332,
0.02508436143398285,
-0.017447199672460556,
-0.02864164486527443,
-0.07965384423732758,
-0.05497289076447487,
-0.018657410517334938,
0.05871354043483734,
0.018629904836416245,
-0.023727457970380783,
0.028659982606768608,
0.02227887324988842,
-0.044447727501392365,
0.04272409528493881,
-0.02534107118844986,
-0.0135598573833704,
0.028531625866889954,
0.025267725810408592,
0.05222241207957268,
-0.08346784114837646,
-0.012716377153992653,
-0.005794340744614601,
-0.01974843256175518,
-0.031300440430641174,
0.052772507071495056,
-0.027908185496926308,
0.041440535336732864,
-0.02832992561161518,
-0.012193785980343819,
0.030768681317567825,
-0.013394828885793686,
-0.06201411411166191,
-0.054606158286333084,
0.012936415150761604,
-0.005056295543909073,
-0.10840550810098648,
-0.05820011720061302,
0.055302947759628296,
-0.056329790502786636,
-0.024625947698950768,
-0.010580172762274742,
-0.023415736854076385,
0.0683952197432518,
0.002631290815770626,
-0.020206846296787262,
-0.057906731963157654,
0.01242299284785986,
0.0006732941255904734,
0.028293251991271973,
-0.012688872404396534,
-0.022480575367808342,
-0.013770727440714836,
0.043897632509469986,
0.0623808428645134,
0.03850669413805008,
-0.007485884707421064,
0.025396080687642097,
0.008132247254252434,
0.03729648515582085,
-0.007705922704190016,
0.0930761769413948,
-0.04881181940436363,
0.0018256298499181867,
-0.018886616453528404,
0.03348248824477196,
0.01680542156100273,
0.01631033606827259,
-0.017639733850955963,
0.032015565782785416,
0.0042311521247029305,
0.023122353479266167,
0.02053690329194069,
0.002965932246297598,
0.0003183105436619371,
0.04881181940436363,
0.04085376858711243,
-0.016181979328393936,
0.035572849214076996,
-0.001898975926451385,
0.04576795548200607,
-0.06410447508096695,
-0.04943526163697243,
-0.033280786126852036,
0.008819866925477982,
0.009470812976360321,
0.047271549701690674,
-0.011276960372924805,
0.04305415228009224,
-0.03346415236592293,
0.012514675036072731,
-0.05544963851571083,
-0.013220631517469883,
-0.023177362978458405,
-0.038580041378736496,
-0.009310368448495865,
0.0020605665631592274,
0.05801675096154213,
-0.06271090358495712,
0.01598944701254368,
-0.0450344942510128,
0.013981597498059273,
-0.037846580147743225,
-0.013899083249270916,
-0.005574302282184362,
-0.012111271731555462,
-0.008613580837845802,
0.03513277322053909,
-0.0176305640488863,
0.0352611280977726,
0.007687586359679699,
-0.022095507010817528,
-0.02381914108991623,
-0.006028131116181612,
0.06461790204048157,
-0.010534331202507019,
-0.01686043106019497,
-0.016933776438236237,
0.023727457970380783,
0.06685495376586914,
0.01267970446497202,
0.017914781346917152,
-0.026918012648820877,
0.032070573419332504,
0.03135545179247856,
-0.0015013027004897594,
0.041660577058792114,
-0.0345093309879303,
0.03621462732553482,
-0.05394604429602623,
0.0176947433501482,
-0.048481762409210205,
0.06817518174648285,
0.010800210759043694,
0.0047995843924582005,
-0.024699293076992035,
0.01289974246174097,
0.0008652545511722565,
0.026166215538978577,
0.02834826149046421,
0.026184551417827606,
0.02706470526754856,
-0.049801990389823914,
0.05372600629925728,
-0.0415872298181057,
-0.03117208555340767,
0.048738472163677216,
0.006316931452602148,
-0.003642091527581215,
-0.027284743264317513,
-0.014825076796114445,
0.015494360588490963,
0.0029842688236385584,
-0.019638413563370705,
0.04906852915883064,
0.049801990389823914,
0.009424971416592598,
-0.06634153425693512,
0.025927839800715446,
-0.028476616367697716,
-0.025982849299907684,
-0.06260088086128235,
-0.03968023136258125,
-0.040377017110586166,
0.03397757187485695,
-0.029008375480771065,
-0.03487606346607208,
0.037883251905441284,
-0.019840115681290627,
0.05042543262243271,
-0.003218059428036213,
-0.056329790502786636,
-0.03927682712674141,
-0.011441988870501518,
0.030768681317567825,
-0.04235736280679703,
-0.09417637437582016,
-0.0390201173722744,
-0.04932524263858795,
0.04382428526878357,
-0.00606938824057579,
-0.007641745265573263,
0.0278715118765831,
0.04111047834157944,
-0.01532016322016716,
-0.030842028558254242,
-0.014504187740385532,
0.04639139771461487,
0.08471472561359406,
-0.054569486528635025,
0.013706549070775509,
-0.027559790760278702,
0.08112076669931412,
-0.008141415193676949,
-0.008705263026058674,
-0.033849216997623444,
-0.0632609948515892,
-0.03612294793128967,
0.029943538829684258,
-0.009892553091049194,
-0.020921969786286354,
0.038616713136434555,
0.03218059241771698,
-0.11757377535104752,
-0.006591979414224625,
-0.05244245007634163,
0.00010149550507776439,
0.0003922296455129981,
0.04261407628655434,
-0.06205078586935997,
0.04558458924293518,
-0.02301233448088169,
-0.07235591113567352,
-0.01949172094464302,
0.02103198878467083,
-0.021105336025357246,
-0.02686300314962864,
-0.0008171212393790483,
-0.0161269698292017,
-0.0322539396584034,
0.023947495967149734,
-0.034527670592069626,
-0.036819733679294586,
0.011597849428653717,
0.004859177861362696,
-0.007999307475984097,
0.003738358151167631,
0.09593667834997177,
0.029008375480771065,
-0.01113026775419712,
0.07730676978826523,
0.06608482450246811,
-0.06872528046369553,
-0.010415144264698029,
-0.028164895251393318,
0.013963260687887669,
-0.02682632952928543,
0.03018191270530224,
-0.036856405436992645,
-0.009599168784916401,
-0.016832925379276276,
-0.06747839599847794,
-0.018675746396183968,
0.05882355943322182,
-0.0174747034907341,
0.005647648591548204,
-0.04122049733996391,
-0.05137893185019493,
0.035811226814985275,
-0.049251895397901535,
0.04452107101678848,
0.04914187639951706,
-0.09314952790737152,
-0.015998614951968193,
0.03249231353402138,
0.011231118813157082,
-0.005698073655366898,
-0.012193785980343819,
0.009599168784916401,
0.0020009728614240885,
-0.010956071317195892,
0.0020811951253563166,
0.008402710780501366,
-0.03166717290878296,
-0.022883977741003036,
-0.016576215624809265,
0.019565068185329437,
-0.0019253346836194396,
0.049288567155599594,
0.03551784157752991,
0.018043136224150658,
-0.030530307441949844,
-0.004905019421130419,
0.0415872298181057,
0.04232069104909897,
0.011221950873732567,
-0.010222610086202621,
0.02050022967159748,
-0.0943230614066124,
-0.04914187639951706,
0.020115163177251816,
0.019345030188560486,
-0.012028757482767105,
0.012606358155608177,
0.005083800293505192,
-0.060877248644828796,
-0.020426884293556213,
-0.003094287822023034,
0.08478806912899017,
0.0017098805401474237,
0.00922327022999525,
-0.01974843256175518,
0.023214034736156464,
-0.015540201216936111,
0.01367904432117939,
0.01713547855615616,
-0.006193160079419613,
-0.010158432647585869,
0.002509811194613576,
-0.03174051642417908,
-0.023599103093147278,
-0.0018141695763915777,
-0.01040597539395094,
0.04122049733996391,
0.022187190130352974,
0.01923501119017601,
0.014971769414842129,
0.0030530306976288557,
0.0531759113073349,
-0.06557139754295349,
0.04628137871623039,
0.03340914100408554,
-0.0017843727255240083,
0.0006429242785088718,
0.0664515495300293,
0.052002374082803726,
-0.02477264031767845,
0.0045566256158053875,
0.013706549070775509,
-0.007426290772855282,
-0.005931864492595196,
-0.0730893686413765,
0.019840115681290627,
-0.02200382575392723,
-0.07554646581411362,
-0.06054719164967537,
-0.009819206781685352,
-0.011836224235594273,
-0.045987993478775024,
0.0052304924465715885,
-0.014146625995635986,
-0.07180581241846085,
-0.016851263120770454,
0.0032593165524303913,
0.007224589120596647,
0.0038392089772969484,
-0.010726864449679852,
-0.03168550878763199,
0.011295297183096409,
0.014339159242808819,
-0.024625947698950768,
0.01838236302137375,
-0.023892486467957497,
0.059410326182842255,
-0.024240881204605103,
-0.0024777224753051996,
0.048261724412441254,
0.016933776438236237,
-0.004946276545524597,
-0.01567772589623928,
-0.0011861437233164907,
0.002571697114035487,
-0.007229173555970192,
0.018428202718496323,
0.037883251905441284,
0.013844072818756104,
-0.004960028920322657,
-0.023232372477650642,
-0.07000883668661118,
-0.02200382575392723,
-0.008650253526866436,
-0.038066618144512177,
-0.0036604278720915318,
0.026166215538978577,
-0.004082167986780405,
-0.005092968698590994,
0.08816199004650116,
0.04914187639951706,
0.003046154510229826,
0.009383714757859707,
0.025671130046248436,
0.007293350994586945,
-0.050498779863119125,
0.0038758821319788694,
-0.0011884357081726193,
-0.011726205237209797,
-0.016933776438236237,
0.004086751956492662,
0.027413098141551018,
0.037113118916749954,
-0.0536159873008728,
-0.0007374719716608524,
-0.04815170541405678,
0.028659982606768608,
-0.06597480177879333,
-0.025432754307985306,
0.01101108081638813,
-0.023342391476035118,
0.06707499176263809,
-0.045217860490083694,
-0.006092309020459652,
-0.02024351991713047,
-0.055376291275024414,
-0.06964210420846939,
0.05926363542675972,
-0.060657210648059845,
0.07620657980442047,
-0.01013092789798975,
-0.02376413159072399,
0.016677064821124077,
0.03476604446768761,
-0.00652321707457304,
0.00021531086531467736,
-0.030200250446796417,
-0.005514708813279867,
-0.010708528570830822,
0.006119813770055771,
-0.005918112117797136,
-0.0032845293171703815,
-0.027669809758663177,
-0.004767495207488537,
0.027743155136704445,
-0.059153616428375244,
-0.05754000321030617,
0.009984235279262066,
0.008072652854025364,
0.02889835648238659,
-0.0024433413054794073,
0.035572849214076996,
0.025891168043017387,
-0.02178378589451313,
0.02559778280556202,
-0.033555831760168076,
0.059336982667446136,
0.004758327268064022,
0.0014703597407788038,
-0.0057622515596449375,
0.0028169481083750725,
0.02662462741136551,
-0.030952047556638718,
-0.05159896984696388,
-0.05779671296477318,
-0.02686300314962864,
-0.0019253346836194396,
-0.04026699811220169,
0.024002505466341972,
0.05842015519738197,
0.02385581284761429,
0.000735752924811095,
0.04624470695853233,
0.0011540547711774707,
-0.028476616367697716,
0.05350596830248833,
-0.011249455623328686,
0.013147285208106041,
-0.05720994621515274,
0.004533704835921526,
0.03397757187485695,
-0.050242066383361816,
-0.045987993478775024,
0.0025441923644393682,
0.016612887382507324,
-0.0013580485247075558,
0.0018886616453528404,
0.051782336086034775,
0.05112221837043762,
-0.05757667496800423,
-0.008879460394382477,
-0.018198996782302856,
-0.027303079143166542,
-0.006747839506715536,
-0.07180581241846085,
-0.05031541362404823,
0.04221067205071449,
-0.014174130745232105,
0.012487170286476612,
-0.03392256423830986,
-0.05842015519738197,
0.000507692398969084,
0.081047423183918,
0.01441250555217266,
-0.0001387415686622262,
0.021728776395320892,
0.0018680330831557512,
-0.0020857793278992176,
-0.008356869220733643,
-0.009800869971513748,
0.032528989017009735,
0.013009761460125446,
0.037883251905441284,
-0.033519160002470016,
0.03626963868737221,
0.00734836095944047,
-0.02200382575392723,
0.012111271731555462,
-0.0008652545511722565,
0.06029048189520836,
0.0367647260427475,
-0.04734489694237709,
0.05746665596961975,
-0.012239627540111542,
-0.04686814546585083,
0.027541454881429672,
0.10327128320932388,
-0.017300507053732872,
-0.041880615055561066,
-0.025762811303138733,
-0.041880615055561066,
0.05112221837043762,
-0.028531625866889954,
-0.03843334689736366,
-0.017667237669229507,
-0.003234103787690401,
0.01327564101666212,
-0.009690850973129272,
0.03518778458237648,
-0.02840327098965645,
0.015008442103862762
] |
729,743 | minidir | remove | null | def remove(self, path: Path) -> None:
if str(path) not in self._dir:
raise NotFound()
del self._dir[str(path)]
| (self, path: minidir.Path) -> NoneType | [
0.06048315390944481,
0.0674886554479599,
-0.0182073712348938,
-0.021502038463950157,
0.027501801028847694,
-0.03464602679014206,
-0.00913836620748043,
0.07338438183069229,
-0.0023799636401236057,
0.03613729774951935,
0.042414505034685135,
0.03464602679014206,
0.03187157213687897,
-0.025143513455986977,
-0.06277208030223846,
0.0018673393642529845,
0.061592936515808105,
-0.0016982709057629108,
-0.04068047180771828,
-0.08503709733486176,
0.01049091387540102,
0.0065546538680791855,
-0.001057761604897678,
0.027224356308579445,
-0.015146799385547638,
0.05011362209916115,
0.035426344722509384,
0.016230572015047073,
0.03429922088980675,
-0.04175557196140289,
-0.00016676544328220189,
0.026357337832450867,
-0.031455401331186295,
-0.005670295562595129,
-0.03462868556380272,
0.042171742767095566,
-0.008345045149326324,
-0.017808543518185616,
-0.059754859656095505,
-0.026981590315699577,
0.008488103747367859,
0.061038047075271606,
-0.01413238886743784,
-0.03292933106422424,
0.048483628779649734,
-0.0027311057783663273,
-0.0033055050298571587,
0.018415456637740135,
-0.018068648874759674,
0.017565779387950897,
0.007850845344364643,
0.0082279983907938,
-0.006199176423251629,
-0.01576238125562668,
0.032357100397348404,
-0.03613729774951935,
0.018744923174381256,
0.013612178154289722,
0.027883289381861687,
-0.014028346166014671,
0.05743125453591347,
-0.01760045997798443,
-0.019334495067596436,
-0.029079774394631386,
0.0037455165293067694,
-0.03357092663645744,
0.017791204154491425,
-0.014956055209040642,
0.011453303508460522,
-0.013490795157849789,
-0.058541037142276764,
0.009346450679004192,
0.005037372931838036,
0.048206184059381485,
0.0033206779044121504,
0.012675798498094082,
0.03041498176753521,
0.011670058593153954,
0.07865584641695023,
-0.04140876606106758,
0.03915451839566231,
-0.04827554523944855,
-0.04796341806650162,
-0.009242408908903599,
-0.014635259285569191,
0.02644404023885727,
0.08906006067991257,
-0.06714185327291489,
-0.02491808868944645,
0.029912110418081284,
-0.01639530435204506,
0.006836434826254845,
-0.05021766573190689,
-0.03440326079726219,
0.06048315390944481,
0.00017150693747680634,
0.040957916527986526,
-0.04532768577337265,
-0.022421078756451607,
-0.03006817400455475,
0.04203301668167114,
0.018779603764414787,
0.01703689806163311,
0.01584041304886341,
0.005639950279146433,
0.05018298327922821,
0.03676155209541321,
-0.055835939943790436,
-0.0026834197342395782,
0.04043770581483841,
-0.06058719754219055,
0.03644942492246628,
0.003171117277815938,
0.03102189302444458,
0.004144344478845596,
-0.021970229223370552,
-0.03187157213687897,
-0.0722745954990387,
0.023895008489489555,
-0.0007282948936335742,
0.02585446834564209,
-0.002622728468850255,
-0.0584716722369194,
-0.012068886309862137,
0.052784036844968796,
0.035096876323223114,
-0.0025078486651182175,
0.01708024926483631,
-0.0014945217408239841,
0.002867660950869322,
-0.05320020765066147,
-0.0252822358161211,
-0.01354281697422266,
-0.001731867901980877,
-0.022733204066753387,
0.017808543518185616,
0.049107883125543594,
-0.055489134043455124,
0.014175739139318466,
0.06318824738264084,
-0.005952076520770788,
0.028524883091449738,
0.017184291034936905,
-0.008821905590593815,
0.08143030107021332,
0.005878380034118891,
-0.0055662537924945354,
0.006519973278045654,
-0.02339213714003563,
0.022438418120145798,
-0.09051664918661118,
-0.0304323211312294,
0.052471909672021866,
-0.007053188979625702,
0.0153548838570714,
0.0264787208288908,
-0.042761314660310745,
0.026946909725666046,
-0.031212637200951576,
-0.018675561994314194,
0.037524525076150894,
0.025178194046020508,
0.0421023815870285,
-0.03561708703637123,
-0.04994022101163864,
-0.02072172239422798,
-0.0009260833030566573,
0.052471909672021866,
-0.043663010001182556,
0.02158874087035656,
-0.02857690304517746,
0.008713527582585812,
-0.019958747550845146,
-0.008136961609125137,
-0.055350411683321,
-0.006823429372161627,
0.013759571127593517,
0.05600934475660324,
0.009667247533798218,
0.00013601340469904244,
0.015484936535358429,
-0.04109663888812065,
-0.003006383776664734,
-0.017739182338118553,
0.027449781075119972,
0.0252822358161211,
-0.038530267775058746,
0.01731434278190136,
0.033935073763132095,
0.057604655623435974,
-0.06187038496136665,
0.025958510115742683,
0.039431966841220856,
0.029305199161171913,
0.03523559868335724,
0.02954796329140663,
0.028438180685043335,
-0.03835686296224594,
-0.0364147424697876,
-0.02105119079351425,
0.034541986882686615,
0.029045093804597855,
0.02954796329140663,
0.025993190705776215,
-0.02616659365594387,
-0.011349261738359928,
0.03005083277821541,
-0.01277117058634758,
0.012363672256469727,
0.07928010076284409,
0.0065069678239524364,
-0.013551486656069756,
0.06630951166152954,
-0.05160489305853844,
0.03381368890404701,
-0.07941882312297821,
-0.03832218423485756,
-0.014548556879162788,
0.016369294375181198,
0.04917724430561066,
0.011904153041541576,
0.06547717750072479,
0.01551094651222229,
-0.007100875023752451,
0.016039827838540077,
-0.02432851679623127,
-0.06568526476621628,
0.02833413891494274,
0.014106377959251404,
-0.05659891664981842,
0.08059796690940857,
0.024207133799791336,
0.037906013429164886,
-0.04723512381315231,
0.0012116571888327599,
0.016672750934958458,
-0.04352428764104843,
-0.023340117186307907,
-0.06169698014855385,
-0.042414505034685135,
-0.003318510251119733,
-0.05652955546975136,
-0.019109070301055908,
0.05209042504429817,
-0.02438053861260414,
0.05139680951833725,
0.014895363710820675,
-0.030241576954722404,
0.030831148847937584,
-0.08434348553419113,
0.022074270993471146,
0.008071934804320335,
-0.01579706184566021,
0.03010285459458828,
0.028993071988224983,
-0.04775533452630043,
-0.06731525808572769,
-0.00022732120123691857,
-0.03644942492246628,
0.03839154541492462,
-0.052506592124700546,
-0.05139680951833725,
0.008336375467479229,
0.0328252911567688,
0.0334668830037117,
0.0018900985596701503,
0.01354281697422266,
0.05014830455183983,
0.04889979958534241,
0.005813353694975376,
0.0017914753407239914,
-0.026634784415364265,
0.07726861536502838,
-0.05694572255015373,
0.058610398322343826,
0.014097708277404308,
-0.046645551919937134,
-0.024432558566331863,
0.00670204684138298,
0.06790482997894287,
0.003212300594896078,
-0.06780078262090683,
0.04036834463477135,
0.002679084660485387,
0.014184409752488136,
0.04959341138601303,
0.02587180770933628,
0.010646977461874485,
0.004590858705341816,
0.05441403016448021,
0.050356388092041016,
-0.06138485297560692,
-0.04775533452630043,
0.01534621324390173,
0.05052979290485382,
0.02375628426671028,
-0.06408994644880295,
0.020808424800634384,
0.033328160643577576,
-0.008496773429214954,
0.02070438303053379,
0.009225068613886833,
-0.03686559200286865,
0.013932974077761173,
0.048240866512060165,
-0.028403500095009804,
-0.016351953148841858,
0.07067928463220596,
0.0014251603279262781,
0.06707248836755753,
-0.020739063620567322,
-0.01824205182492733,
-0.07879456877708435,
0.037871334701776505,
0.06696844846010208,
0.015328872948884964,
0.0047165765427052975,
0.005574923940002918,
-0.06918801367282867,
0.00209276401437819,
-0.0020689209923148155,
0.01736636459827423,
-0.05954677611589432,
0.011921493336558342,
-0.030553704127669334,
-0.012693138793110847,
-0.041824933141469955,
0.022004909813404083,
-0.02651340141892433,
0.021675443276762962,
0.030848490074276924,
0.032374441623687744,
0.03168082609772682,
-0.04567449167370796,
0.02434585802257061,
0.00024628720711916685,
0.04144344478845596,
-0.00791587121784687,
0.0203228946775198,
0.07057524472475052,
-0.03107391484081745,
-0.022126290947198868,
0.0011487985029816628,
0.012068886309862137,
-0.02580244652926922,
0.0121382474899292,
-0.008345045149326324,
-0.0028113049920648336,
0.020305555313825607,
-0.002058083191514015,
0.07366182655096054,
0.0621478296816349,
-0.01638663373887539,
-0.032686568796634674,
-0.006004097405821085,
-0.00048254954162985086,
-0.01382893230766058,
0.051258087158203125,
-0.009459163062274456,
-0.03464602679014206,
0.0016083178343251348,
-0.02158874087035656,
-0.029131794348359108,
-0.0406457893550396,
-0.014539887197315693,
-0.0590265654027462,
-0.07768478989601135,
0.019386515021324158,
0.009259749203920364,
0.007755473256111145,
0.02217831276357174,
-0.04893447831273079,
-0.01879694312810898,
0.03905047848820686,
0.055177006870508194,
0.052437230944633484,
0.054275307804346085,
0.013109307736158371,
-0.016204560175538063,
0.018346095457673073,
0.012814521789550781,
0.015649668872356415,
0.029079774394631386,
-0.02651340141892433,
0.0164126455783844,
0.03159412369132042,
0.034541986882686615,
-0.030467001721262932,
-0.004907320253551006,
0.008488103747367859,
0.004764262121170759,
-0.051812976598739624,
0.010473573580384254,
-0.046333424746990204,
-0.011592026799917221,
-0.0050330376252532005,
0.008024249225854874,
-0.002273753983899951,
-0.016273923218250275,
0.04099259525537491,
0.027293717488646507,
0.033293478190898895,
-0.07761542499065399,
0.024866066873073578,
0.023513520136475563,
0.013256700709462166,
-0.0038083752151578665,
0.0481715053319931,
-0.019109070301055908,
-0.03256518393754959,
-0.0010030311532318592,
0.03152476251125336,
0.030935192480683327,
0.015580308623611927,
0.033293478190898895,
0.02162342146039009,
0.037559207528829575,
-0.07067928463220596,
0.036067936569452286,
0.012164258398115635,
0.0031667822040617466,
0.02986009046435356,
-0.046402785927057266,
-0.015493606217205524,
-0.013352072797715664,
-0.0053668394684791565,
-0.029599985107779503,
-0.022282354533672333,
0.017244981601834297,
0.06426335126161575,
-0.05177829787135124,
-0.08912941813468933,
-0.053373608738183975,
-0.00584369944408536,
-0.04293471574783325,
0.010508254170417786,
-0.07615883648395538,
-0.047339167445898056,
-0.04019493982195854,
-0.003246981417760253,
-0.014730630442500114,
0.0002036136866081506,
0.013473454862833023,
-0.01445318479090929,
0.00699683278799057,
0.022941287606954575,
-0.032703906297683716,
0.046333424746990204,
0.06048315390944481,
-0.02373894490301609,
-0.0017622135346755385,
-0.04803277924656868,
0.019889386370778084,
-0.032270397990942,
-0.032357100397348404,
-0.06696844846010208,
-0.043905775994062424,
-0.003142939181998372,
-0.005869709886610508,
0.002156706526875496,
-0.03166348487138748,
0.08316434174776077,
0.03532230108976364,
-0.09863193333148956,
0.016577377915382385,
0.00958054605871439,
0.05358169600367546,
0.009485173970460892,
0.024692663922905922,
-0.061592936515808105,
0.007560394238680601,
-0.0656505823135376,
-0.045154280960559845,
-0.014089037664234638,
-0.004660220351070166,
0.026634784415364265,
0.002431984758004546,
0.00394059531390667,
0.018484817817807198,
0.01706290803849697,
0.07414735108613968,
-0.0485529899597168,
0.030467001721262932,
-0.008453422226011753,
0.013906964100897312,
-0.0027419435791671276,
-0.01952523924410343,
0.023340117186307907,
0.03213167563080788,
-0.03098721243441105,
0.024519260972738266,
-0.03721240162849426,
-0.03766324743628502,
-0.013750900514423847,
0.045501090586185455,
-0.0522291474044323,
-0.05954677611589432,
0.016629399731755257,
-0.01943853683769703,
-0.004415287636220455,
-0.013854943215847015,
-0.013889623805880547,
-0.005111069418489933,
0.029964132234454155,
0.023357456550002098,
0.027224356308579445,
0.043038759380578995,
0.02193554863333702,
-0.016551367938518524,
-0.02125927433371544,
-0.020895127207040787,
0.04598661884665489,
-0.019594600424170494,
0.018103329464793205,
0.05781273916363716,
0.0031884575728327036,
-0.027207015082240105,
-0.002442822325974703,
0.04040302336215973,
-0.005492557305842638,
-0.03409113734960556,
-0.023808306083083153,
0.0062165167182683945,
0.014097708277404308,
-0.023045331239700317,
-0.04404449835419655,
-0.030328279361128807,
-0.00879589468240738,
0.057327210903167725,
0.08295625448226929,
0.03492347151041031,
0.05229850858449936,
-0.014869353733956814,
-0.00881757028400898,
0.05833294987678528,
0.025143513455986977,
-0.009762619622051716,
-0.04019493982195854,
0.02982540987432003,
0.009242408908903599,
0.015233500860631466,
-0.008626826107501984,
0.006545983720570803,
0.03946664556860924,
-0.03620665892958641,
-0.011540005914866924,
-0.04595194011926651,
-0.002997713629156351,
0.024415219202637672,
0.061038047075271606,
-0.05271467566490173,
-0.00759507529437542,
-0.00278095924295485,
0.0019215280190110207,
0.06721121072769165,
0.016178550198674202,
-0.020583000034093857,
-0.003162447130307555,
0.03339752182364464,
0.008834910579025745,
-0.06370846182107925,
-0.015103448182344437,
0.03742048516869545,
0.02134597674012184,
0.044564709067344666,
0.014193079434335232,
-0.009849321097135544,
-0.04716576263308525,
0.09107153862714767,
-0.044252581894397736,
0.006251197773963213,
-0.04071515053510666,
0.02493542991578579,
-0.04501555860042572,
-0.031247317790985107,
0.04016026109457016,
-0.021814165636897087,
0.00044272092054598033,
-0.008149966597557068,
0.020808424800634384,
0.012051546014845371,
-0.026548082008957863,
0.05285339802503586,
-0.03683091327548027,
-0.05528105050325394,
-0.010447563603520393,
0.025351596996188164,
-0.04040302336215973,
-0.09675917774438858,
0.011236549355089664,
-0.002226067939773202,
-0.05892252177000046,
0.06315357238054276,
-0.022681182250380516,
-0.018120670691132545,
0.018085990101099014,
0.04099259525537491,
-0.034212518483400345,
-0.054275307804346085,
0.043663010001182556,
0.007517043501138687,
-0.04324684292078018,
0.06166229769587517,
0.029912110418081284,
-0.02618393488228321,
0.08566135168075562,
-0.01950789801776409,
0.010014054365456104,
-0.012753830291330814,
-0.010707668960094452,
-0.010993784293532372,
-0.00898230355232954,
0.012407023459672928,
0.036692190915346146,
-0.005644285120069981,
0.002356120618060231,
0.0492812879383564,
-0.05202106386423111,
-0.07615883648395538,
-0.012554416432976723,
-0.04903852194547653,
-0.09974171966314316,
-0.024519260972738266,
-0.015675680711865425,
-0.01219026930630207,
0.02708563394844532,
0.034854110330343246,
0.02429383620619774,
-0.010239479131996632,
0.05070319399237633,
0.00646795192733407,
-0.08746474236249924,
-0.03561708703637123,
0.014245101250708103,
-0.024467239156365395,
-0.0255596823990345,
-0.020843105390667915,
-0.0364147424697876,
0.02495276927947998,
0.01759178936481476,
0.009606556035578251,
-0.03287731111049652,
-0.09238940477371216,
0.03443794324994087,
-0.09218132495880127,
0.0012463378952816129,
-0.0013807256473228335,
-0.03490613400936127,
0.041582170873880386,
-0.0019106902182102203,
0.020010769367218018,
-0.06207846850156784,
-0.008301694877445698,
-0.05271467566490173,
0.06790482997894287,
-0.020426936447620392,
0.03440326079726219,
-0.0044694761745631695,
-0.05677231773734093,
0.030189557000994682,
0.004447801038622856,
-0.022056929767131805,
-0.001328704645857215,
0.050009582191705704,
-0.006459281779825687,
-0.018918326124548912,
0.013143988326191902,
0.007239597849547863,
-0.02738041989505291,
-0.02223033457994461,
-0.001878177048638463,
0.006255532614886761,
-0.024883408099412918,
-0.04612534120678902,
-0.007239597849547863,
0.04269195348024368,
0.023027990013360977,
-0.02460596337914467,
-0.03221837803721428,
0.0141583988443017,
-0.07706053555011749,
0.02764052525162697,
-0.0021241933573037386,
0.011730749160051346,
0.011566015891730785,
0.03263454511761665,
-0.01458323746919632,
0.0364147424697876,
-0.01458323746919632,
-0.04262258857488632,
-0.05496892333030701,
-0.05899188295006752,
-0.011774100363254547,
-0.0043069105595350266,
-0.020617680624127388,
0.006966487038880587,
0.05257595330476761,
-0.028958391398191452,
0.02158874087035656,
-0.01827673241496086,
0.04931596666574478,
-0.0016614226624369621,
0.03936260566115379,
0.00021418047253973782,
-0.01340409368276596,
-0.013932974077761173,
0.027311056852340698,
-0.013334732502698898,
-0.015623658895492554,
-0.0028893365524709225,
0.01759178936481476,
-0.017218971624970436,
0.01980268396437168,
0.0030865829903632402,
0.07269076257944107,
0.06020570918917656,
-0.004270062316209078,
-0.025646382942795753,
-0.014219090342521667,
-0.025351596996188164,
-0.001390479621477425,
-0.015979135408997536,
-0.010118097066879272,
0.03249582275748253,
-0.015138128772377968,
-0.013117977418005466,
0.016022486612200737,
-0.05174361541867256,
0.007339304778724909,
0.07754606008529663,
-0.05836763232946396,
-0.01855417899787426,
-0.031455401331186295,
0.034489963203668594,
0.02465798333287239,
-0.008912942372262478,
0.03232242166996002,
0.046090662479400635,
0.0652690902352333,
-0.009337780997157097,
-0.04994022101163864,
0.019889386370778084,
0.04036834463477135,
-0.061939746141433716,
0.03367496654391289,
-0.0111238369718194,
0.001097861211746931,
0.07914137840270996,
-0.033952414989471436,
-0.014236430637538433,
0.01676812209188938,
-0.05139680951833725,
0.017548438161611557,
0.06963886320590973,
-0.012259630486369133,
-0.0847596526145935,
-0.014999406412243843,
-0.019230453297495842,
0.018016627058386803,
-0.005059048533439636,
-0.027449781075119972,
-0.004144344478845596,
-0.007954887114465237,
-0.057986143976449966,
0.09127962589263916,
0.0029305198695510626,
-0.02037491649389267,
-0.001788223977200687
] |
729,744 | minidir | File | File is a interface that can read and write content. | class File(typing.Protocol):
"""File is a interface that can read and write content."""
def read(self) -> bytes:
pass
def write(self, content: bytes) -> None:
pass
| (*args, **kwargs) | [
-0.010736407712101936,
-0.048426516354084015,
-0.0530780591070652,
0.006422913633286953,
-0.007842715829610825,
-0.015153569169342518,
-0.049508269876241684,
0.04864286631345749,
0.032362472265958786,
-0.03275911509990692,
0.07932861894369125,
-0.03398510068655014,
-0.015568241477012634,
0.03991672024130821,
-0.03221823647618294,
0.042152345180511475,
-0.027548665180802345,
0.03560773283243179,
-0.04712841287255287,
0.023996908217668533,
-0.006323752924799919,
0.04568607360124588,
0.040421538054943085,
-0.062417201697826385,
-0.0002359294012421742,
0.08156424760818481,
0.0016598161309957504,
-0.038546498864889145,
0.006467986851930618,
-0.04474855214357376,
-0.013873494230210781,
-0.05149148404598236,
0.04078212380409241,
0.028612390160560608,
-0.008081602863967419,
0.00919941533356905,
0.014639736153185368,
0.08754994720220566,
-0.07557854056358337,
-0.0035449976567178965,
-0.08488162606954575,
0.0321100614964962,
0.025655597448349,
-0.02803545445203781,
0.0030627157539129257,
0.022680774331092834,
-0.024141142144799232,
0.04431585222482681,
-0.02073361724615097,
0.0183988306671381,
-0.0139996986836195,
-0.00024466231116093695,
-0.020625440403819084,
-0.02349208854138851,
0.010493013076484203,
0.030307138338685036,
0.009366186335682869,
0.04929191991686821,
-0.041683584451675415,
0.047020237892866135,
-0.009843960404396057,
-0.018804488703608513,
0.0691961944103241,
-0.06941254436969757,
0.004011503886431456,
0.020282885059714317,
-0.0231675636023283,
-0.04893133416771889,
0.00663475738838315,
0.03991672024130821,
0.019273249432444572,
0.004182781558483839,
0.0275666955858469,
0.04179175943136215,
0.048570748418569565,
0.003053701017051935,
-0.02911720983684063,
0.04893133416771889,
0.04031336307525635,
-0.012070571072399616,
0.041359055787324905,
-0.0472005270421505,
-0.025727713480591774,
0.0021353370975703,
-0.007730033248662949,
-0.021184347569942474,
0.03043334372341633,
-0.02223004214465618,
-0.017055653035640717,
0.0019426497165113688,
-0.045145194977521896,
0.02583588846027851,
-0.005309608764946461,
-0.002211961429566145,
0.012981046922504902,
-0.06155179813504219,
-0.010502027347683907,
0.01125925499945879,
-0.10536283254623413,
0.03512094169855118,
-0.06980918347835541,
0.06522975862026215,
0.02495245635509491,
-0.008928976953029633,
-0.02495245635509491,
-0.03768109530210495,
0.014071815647184849,
-0.01275568176060915,
-0.05682813748717308,
0.02378055639564991,
-0.005692729726433754,
0.020012447610497475,
-0.03632890060544014,
0.019345365464687347,
0.02349208854138851,
0.043883148580789566,
-0.01909295655786991,
-0.032092031091451645,
-0.021238435059785843,
0.017308061942458153,
0.021148288622498512,
0.03245261684060097,
-0.021184347569942474,
0.0074686091393232346,
0.052645355463027954,
0.023762527853250504,
-0.007355926558375359,
-0.028432099148631096,
0.005733295809477568,
-0.041034530848264694,
-0.029477793723344803,
0.0010862612398341298,
0.03483247384428978,
0.07258568704128265,
0.008676568046212196,
0.05322229117155075,
-0.024736106395721436,
-0.020661499351263046,
-0.019543686881661415,
0.00840162206441164,
0.02046317793428898,
0.013512909412384033,
0.043378330767154694,
-0.053907401859760284,
-0.010682320222258568,
0.008054559119045734,
0.006215577479451895,
-0.12231031060218811,
-0.04947221279144287,
0.03454400971531868,
-0.0173711646348238,
-0.031100424006581306,
-0.0647970587015152,
0.0183988306671381,
0.030649693682789803,
0.026989759877324104,
-0.022085808217525482,
-0.03131677582859993,
-0.045145194977521896,
-0.03000064194202423,
-0.04784958064556122,
-0.027819104492664337,
0.04244081303477287,
0.011962395161390305,
0.005629627499729395,
0.05167177692055702,
-0.023906761780381203,
-0.0252228956669569,
0.007071966305375099,
-0.006963790860027075,
-0.03174947574734688,
0.025240924209356308,
-0.011042904108762741,
0.010826553218066692,
0.07099911570549011,
-0.004419415257871151,
0.030162904411554337,
-0.00013289516209624708,
0.006945761386305094,
-0.0008603323949500918,
0.0255113635212183,
-0.05931617319583893,
-0.030739840120077133,
0.05686419829726219,
0.05224871262907982,
0.05495309829711914,
-0.024645959958434105,
0.059568580240011215,
0.04330621287226677,
-0.046515416353940964,
-0.02603420987725258,
-0.007675945293158293,
-0.004378849640488625,
-0.03329998999834061,
0.00744156539440155,
-0.07085487991571426,
0.01567641645669937,
0.042476870119571686,
-0.005873022135347128,
0.051311194896698,
-0.007500160485506058,
0.018948722630739212,
0.03380480781197548,
-0.005539481528103352,
-0.047344762831926346,
0.02269880287349224,
0.07287415117025375,
0.010754437185823917,
-0.06649180501699448,
-0.02237427607178688,
-0.02480822242796421,
-0.03668948635458946,
-0.015153569169342518,
0.004173767287284136,
0.08120366185903549,
-0.07702087610960007,
-0.02163507789373398,
0.01479298435151577,
-0.0077165113762021065,
0.062417201697826385,
0.11250240355730057,
0.0633186623454094,
-0.09555492550134659,
0.007153097540140152,
0.04766928777098656,
-0.018452918156981468,
-0.0007927227998152375,
-0.05383528769016266,
-0.012061555869877338,
-0.03187568113207817,
0.03207400441169739,
0.038546498864889145,
-0.02826983481645584,
0.027115965262055397,
0.014179990626871586,
0.0128277987241745,
-0.01970594935119152,
0.010033267550170422,
-0.017299048602581024,
0.023365885019302368,
-0.006044299807399511,
0.0004628441820386797,
0.008910947479307652,
0.05614302679896355,
-0.03488656505942345,
-0.046876002103090286,
0.0041286940686404705,
0.03512094169855118,
0.015297803096473217,
0.03375072032213211,
-0.003846987383440137,
-0.045109137892723083,
-0.06941254436969757,
-0.025150777772068977,
0.024411579594016075,
0.026881584897637367,
-0.07258568704128265,
-0.10464166104793549,
0.0006101768231019378,
0.011872248724102974,
-0.0037320510018616915,
0.007788627874106169,
0.054087694734334946,
0.03641904890537262,
0.02709793485701084,
-0.04821016639471054,
-0.039015255868434906,
-0.03448991850018501,
0.010943743400275707,
0.02659311704337597,
0.11358416080474854,
0.06515764445066452,
0.002699877368286252,
0.0021454785019159317,
-0.0066753230057656765,
-0.044027384370565414,
0.02598012238740921,
0.06288596242666245,
0.05686419829726219,
-0.029405677691102028,
-0.02588997595012188,
-0.0065626404248178005,
0.005097765475511551,
-0.019201131537556648,
-0.010880641639232635,
0.024087052792310715,
-0.005868514999747276,
-0.012575388886034489,
-0.040601830929517746,
-0.01914704404771328,
0.05019338056445122,
0.005449335090816021,
-0.045758191496133804,
0.03692386671900749,
0.05419586971402168,
0.03557167574763298,
-0.1108437180519104,
-0.012557360343635082,
0.09223754703998566,
-0.09916077554225922,
-0.034616123884916306,
0.0026209994684904814,
-0.0038560018874704838,
0.004903951194137335,
-0.021562961861491203,
-0.02659311704337597,
-0.017389193177223206,
-0.0318215936422348,
-0.05794595181941986,
0.012070571072399616,
0.041214823722839355,
-0.03402116149663925,
-0.06663604080677032,
0.023383913561701775,
0.05693631246685982,
0.05325835198163986,
0.011800131760537624,
0.0025353606324642897,
-0.0022795710247009993,
0.03099224902689457,
-0.04438797011971474,
-0.008059066720306873,
0.0309381615370512,
-0.0510227270424366,
0.010556114837527275,
-0.03178553655743599,
0.024736106395721436,
-0.006783498451113701,
-0.025150777772068977,
0.03627481311559677,
0.005354681983590126,
0.09187696129083633,
0.04835439845919609,
-0.023005299270153046,
-0.0806267261505127,
-0.0022480199113488197,
0.016451673582196236,
-0.006170504726469517,
0.045469723641872406,
0.02893691696226597,
0.028107572346925735,
-0.03582408279180527,
0.051311194896698,
-0.011601810343563557,
-0.014143932610750198,
-0.01858813874423504,
-0.03481444716453552,
0.00516086770221591,
0.03571590781211853,
0.041683584451675415,
0.04586636647582054,
0.03560773283243179,
-0.016514776274561882,
-0.009420273825526237,
-0.020661499351263046,
-0.03427356854081154,
-0.01287287101149559,
-0.01876842975616455,
-0.009690712206065655,
-0.03937584161758423,
0.02724216878414154,
0.05351075902581215,
-0.0011538708349689841,
-0.016361527144908905,
-0.03456203639507294,
0.02920735627412796,
0.05354681983590126,
0.012719622813165188,
0.00001880392483144533,
0.04071000590920448,
-0.0001528259163023904,
-0.053943462669849396,
-0.05845076963305473,
-0.020823761820793152,
-0.013332616537809372,
-0.004849863238632679,
0.0172269307076931,
0.02406902424991131,
-0.056106969714164734,
0.023203620687127113,
0.04846257343888283,
-0.011439547874033451,
0.000219167850445956,
-0.016018971800804138,
0.008496275171637535,
0.01783992536365986,
-0.007630872540175915,
0.024519754573702812,
-0.032182179391384125,
0.075650654733181,
0.006540103815495968,
0.018317699432373047,
-0.07251357287168503,
-0.031244657933712006,
-0.025168808177113533,
-0.004002489615231752,
-0.025258952751755714,
0.06706874072551727,
-0.026665233075618744,
0.012368053197860718,
0.036869779229164124,
-0.03014487586915493,
-0.015135539695620537,
0.06504946947097778,
-0.009726770222187042,
0.07673241198062897,
0.03890708088874817,
-0.01774076372385025,
-0.0003372029750607908,
-0.0074055069126188755,
0.03643707558512688,
0.04994097352027893,
-0.019363394007086754,
0.018660254776477814,
0.08791053295135498,
0.0182545967400074,
0.005413276609033346,
-0.07294627279043198,
0.012178746052086353,
0.005715266335755587,
-0.035030797123909,
0.025150777772068977,
0.027783045545220375,
0.059099823236465454,
0.015171598643064499,
0.007576784584671259,
0.008658538572490215,
0.028251806274056435,
-0.011205167509615421,
0.02190551720559597,
0.05928011238574982,
0.03360648825764656,
-0.04799381643533707,
-0.024285374209284782,
0.02152690291404724,
-0.044496145099401474,
-0.037753209471702576,
-0.08545856177806854,
0.042945630848407745,
0.03955613449215889,
-0.007495652884244919,
0.026665233075618744,
0.029784290120005608,
0.009690712206065655,
0.002454229164868593,
-0.04258504509925842,
-0.018290655687451363,
0.028251806274056435,
-0.006436435505747795,
-0.013666157610714436,
-0.005927110090851784,
-0.01661393791437149,
0.10954561084508896,
-0.005246506538242102,
0.01539696380496025,
-0.04871498420834541,
-0.00759481405839324,
-0.024970486760139465,
-0.003840226447209716,
-0.048246223479509354,
0.03818591311573982,
0.032795172184705734,
0.0049895900301635265,
-0.11834387481212616,
0.020661499351263046,
-0.03043334372341633,
-0.015514153987169266,
-0.030884074047207832,
-0.0006000353605486453,
0.027819104492664337,
0.023095445707440376,
0.0006169377593323588,
-0.041070591658353806,
-0.017488354817032814,
0.03876284882426262,
0.017353136092424393,
0.025655597448349,
-0.001245143823325634,
-0.04052971303462982,
-0.05149148404598236,
-0.008207807317376137,
-0.010871626436710358,
-0.04965250566601753,
0.0647970587015152,
0.016559848561882973,
0.00743255065754056,
0.025078661739826202,
0.018128393217921257,
0.058955587446689606,
-0.016037002205848694,
-0.026322677731513977,
0.05448433756828308,
-0.03586014360189438,
-0.03398510068655014,
0.03366057574748993,
0.011169109493494034,
-0.01259341835975647,
0.04911162704229355,
-0.05697237327694893,
-0.028053484857082367,
-0.0033962565939873457,
-0.025673625990748405,
-0.03329998999834061,
-0.008762206882238388,
0.0255113635212183,
-0.007013371214270592,
-0.014684809371829033,
-0.04211628437042236,
0.015604300424456596,
0.002977076917886734,
-0.025673625990748405,
0.04283745586872101,
0.006062329281121492,
0.013008090667426586,
0.0055259596556425095,
-0.0004008687101304531,
-0.05567426607012749,
-0.001376982545480132,
0.016127148643136024,
-0.03432765603065491,
-0.012223819270730019,
-0.03613058105111122,
0.0372483916580677,
0.011024875566363335,
0.010429910384118557,
-0.033263932913541794,
-0.025385158136487007,
-0.052825648337602615,
0.04110664874315262,
-0.011782103218138218,
0.0312266293913126,
-0.02415917068719864,
0.002038429956883192,
-0.050013087689876556,
0.029189325869083405,
0.017812881618738174,
0.0120976148173213,
0.010664290748536587,
-0.03890708088874817,
-0.0067384252324700356,
-0.010033267550170422,
0.05004914849996567,
-0.03144298121333122,
-0.028540274128317833,
-0.028125600889325142,
-0.011051919311285019,
-0.018461933359503746,
-0.062417201697826385,
0.049219802021980286,
-0.007085488177835941,
-0.03825803101062775,
-0.04189993441104889,
0.005800905171781778,
0.034760359674692154,
-0.009510419331490993,
-0.04099847376346588,
0.01834474317729473,
-0.03970036655664444,
0.023149533197283745,
0.003060462186113,
-0.0035247148480266333,
0.031010279431939125,
-0.048967394977808,
0.03814985603094101,
-0.00980790238827467,
0.04489278793334961,
0.07579489052295685,
-0.006909702904522419,
-0.01858813874423504,
-0.050950609147548676,
0.04071000590920448,
0.0856027901172638,
0.05653966963291168,
-0.009158849716186523,
0.04031336307525635,
0.027025818824768066,
0.0013454314321279526,
0.033444225788116455,
-0.014783970080316067,
-0.049508269876241684,
-0.04171964153647423,
-0.003470627125352621,
-0.014783970080316067,
-0.01938142441213131,
0.006089373026043177,
-0.008288939483463764,
-0.019201131537556648,
-0.003657680470496416,
-0.042945630848407745,
0.003804167965427041,
-0.004656048957258463,
-0.007351419422775507,
0.02789122238755226,
-0.03818591311573982,
-0.004741687793284655,
-0.0010479490738362074,
-0.040890298783779144,
-0.017118755728006363,
0.003596831811591983,
-0.03402116149663925,
-0.0422244593501091,
0.0005160867585800588,
-0.04885921627283096,
-0.02003047615289688,
0.002190551720559597,
0.048426516354084015,
-0.05019338056445122,
0.03890708088874817,
0.013837435282766819,
-0.0006744059501215816,
-0.0023145026061683893,
-0.006422913633286953,
0.0072297221049666405,
-0.05524156615138054,
-0.014026742428541183,
0.017163828015327454,
-0.014360283501446247,
0.007171127013862133,
-0.0266832634806633,
0.03286729007959366,
0.020391061902046204,
0.004588439594954252,
0.0063688261434435844,
0.016631966456770897,
-0.022085808217525482,
0.017957115545868874,
-0.04460432007908821,
0.02363632246851921,
-0.019922301173210144,
-0.0706745907664299,
-0.009889033623039722,
-0.00845120195299387,
0.0128277987241745,
0.053943462669849396,
0.005178896710276604,
-0.07680452615022659,
-0.02363632246851921,
-0.033912986516952515,
0.040746062994003296,
0.024465667083859444,
0.016370542347431183,
-0.01891266368329525,
0.03521108999848366,
-0.038221970200538635,
-0.004660556558519602,
0.0030559548176825047,
0.021184347569942474,
-0.02055332437157631,
-0.002249146578833461,
-0.05206841975450516,
0.010718378238379955,
0.07723722606897354,
0.025114720687270164,
-0.028864799067378044,
0.08149212598800659,
0.0016305187018588185,
0.05509733036160469,
-0.013440792448818684,
0.052501123398542404,
0.019038869068026543,
0.026340708136558533,
0.010952758602797985,
0.013594040647149086,
0.005480886436998844,
-0.011728014796972275,
-0.011872248724102974,
-0.012935973703861237,
-0.03905131667852402,
-0.010682320222258568,
0.0012023244053125381,
0.016550835222005844,
0.10961773246526718,
-0.012954003177583218,
-0.032326411455869675,
0.03796956315636635,
-0.02143675647675991,
0.02870253659784794,
-0.048426516354084015,
0.014540575444698334,
0.0029184818267822266,
0.0061885337345302105,
0.005133823957294226,
-0.023618293926119804,
-0.03732050955295563,
-0.03329998999834061,
0.055818501859903336,
-0.004036294296383858,
0.018389815464615822,
-0.01472086738795042,
-0.09843960404396057,
0.013386704958975315,
0.047813523560762405,
0.023419972509145737,
-0.01896675117313862,
0.0048408485017716885,
0.0013375435955822468,
0.003229486057534814,
-0.047957755625247955,
0.0004718588024843484,
-0.004890429321676493,
0.013458821922540665,
-0.03439977392554283,
0.006184026598930359,
-0.009672682732343674,
0.0026074775960296392,
-0.02022879756987095,
-0.05246506258845329,
-0.016487732529640198,
0.023852674290537834,
-0.020751645788550377,
-0.007053936831653118,
0.008496275171637535,
0.003319632261991501,
-0.044496145099401474,
0.029694145545363426,
0.015207656659185886,
-0.0028418577276170254,
0.047344762831926346,
0.02176128327846527,
0.01666802540421486,
-0.031010279431939125,
0.007739047519862652,
0.026376765221357346,
0.008739669807255268,
-0.011547722853720188,
-0.050301555544137955,
-0.08120366185903549,
-0.01774076372385025,
0.011709986254572868,
0.06075851246714592,
0.06562640517950058,
0.009618595242500305,
-0.028918888419866562,
0.011430532671511173,
-0.04049365594983101,
-0.0182545967400074,
-0.01334163174033165,
-0.03703204169869423,
0.00919941533356905,
0.028774654492735863,
-0.002846364863216877,
0.015712475404143333,
0.004570410121232271,
-0.01802923157811165,
0.037753209471702576,
-0.08199694752693176,
0.06735721230506897,
0.04395526647567749,
-0.008437680080533028,
0.04334227368235588,
0.004687600303441286,
0.0020282885525375605,
-0.046731770038604736,
0.03926766663789749,
0.0624532587826252,
-0.017966128885746002,
-0.004176020622253418,
-0.002346053719520569,
-0.033822838217020035,
-0.0035810561385005713,
-0.09014616161584854,
0.012341009452939034,
0.015946855768561363,
-0.028991004452109337,
-0.02504260279238224,
0.006035285536199808,
-0.04745293781161308,
0.05653966963291168
] |
729,747 | minidir | read | null | def read(self) -> bytes:
pass
| (self) -> bytes | [
-0.01278314832597971,
-0.03378164395689964,
-0.04206392168998718,
0.041796211153268814,
0.004362835083156824,
-0.013820524327456951,
-0.03219211846590042,
0.05739031359553337,
0.060402050614356995,
-0.06595703214406967,
0.04929208755493164,
0.0147909726947546,
0.008658742532134056,
0.05367583781480789,
-0.0019774979446083307,
0.014347578398883343,
-0.009662655182182789,
0.02603478915989399,
-0.017919832840561867,
0.049794044345617294,
-0.06926994025707245,
0.02288919873535633,
0.04594571515917778,
-0.011954921297729015,
-0.025700151920318604,
0.07248245924711227,
0.009227626025676727,
-0.038918327540159225,
0.01459855679422617,
-0.004714204464107752,
-0.05317388102412224,
-0.06906916201114655,
0.05906350165605545,
0.05718953162431717,
-0.01525946520268917,
0.03190767392516136,
-0.002147953724488616,
0.026904847472906113,
-0.07254938781261444,
0.033513933420181274,
-0.08887968957424164,
0.008462143130600452,
0.007474962621927261,
-0.025834007188677788,
-0.018756426870822906,
-0.026637136936187744,
0.008198616094887257,
0.012055312283337116,
-0.020396148785948753,
0.010515980422496796,
0.019659947603940964,
0.06194138154387474,
-0.0025641589891165495,
0.0037207496352493763,
0.009528799913823605,
-0.015786519274115562,
-0.003394478000700474,
0.007508426439017057,
-0.0444733090698719,
0.09289534389972687,
-0.04213084653019905,
-0.03430033475160599,
0.014397773891687393,
-0.08827734738588333,
-0.005634457338601351,
0.01288353931158781,
0.018388325348496437,
-0.024344870820641518,
0.025315318256616592,
0.02370905876159668,
0.05317388102412224,
0.025081072002649307,
-0.049158234149217606,
0.03430033475160599,
-0.05257153511047363,
-0.004362835083156824,
-0.017150167375802994,
0.062276020646095276,
-0.015267831273376942,
0.006341378670185804,
0.050162144005298615,
0.0177525132894516,
0.026419622823596,
0.037613242864608765,
0.001895930035971105,
-0.013728499412536621,
0.02837725169956684,
-0.0004705838509835303,
-0.09497009217739105,
0.031138010323047638,
-0.0019733149092644453,
0.06398267298936844,
-0.05959891900420189,
0.05805958807468414,
0.042365092784166336,
-0.08191923797130585,
-0.010114415548741817,
0.033346615731716156,
-0.019927656278014183,
0.008642010390758514,
-0.084864042699337,
0.1183277815580368,
-0.012557268142700195,
-0.041160400956869125,
-0.02240397408604622,
-0.01329347025603056,
-0.020814446732401848,
-0.000913455500267446,
0.021232742816209793,
-0.03097069077193737,
0.016639843583106995,
-0.0024930485524237156,
-0.020613662898540497,
0.03341354429721832,
-0.005048841703683138,
-0.00764646427705884,
0.007441499270498753,
0.0004206496523693204,
-0.037613242864608765,
0.02407716028392315,
0.06796485185623169,
0.040123023092746735,
0.0008486195001751184,
-0.017518267035484314,
0.024612579494714737,
0.08232080191373825,
-0.021450256928801537,
0.002459584968164563,
0.028511106967926025,
-0.014715678989887238,
0.019040867686271667,
0.022755343466997147,
0.033045444637537,
0.03327968716621399,
-0.014924827963113785,
0.03831598162651062,
0.05571712553501129,
-0.00736620556563139,
-0.02211953140795231,
0.025432441383600235,
0.04755197465419769,
0.007997834123671055,
0.12046946585178375,
-0.040591515600681305,
-0.008809329010546207,
0.02019536681473255,
0.02623557113111019,
-0.06455155462026596,
-0.05892964452505112,
-0.014765875414013863,
0.03393223136663437,
0.018354861065745354,
-0.03694396838545799,
0.00639575719833374,
-0.00715705705806613,
0.02697177417576313,
-0.0023278214503079653,
-0.025884201750159264,
-0.05849461629986763,
-0.03737899661064148,
-0.05484706908464432,
-0.008165152743458748,
0.03563888370990753,
-0.024411797523498535,
-0.0029678153805434704,
0.031004155054688454,
-0.05698874965310097,
-0.028159737586975098,
0.01376196276396513,
-0.00976304616779089,
-0.04045766219496727,
0.04253241419792175,
-0.05504785105586052,
-0.0020611572545021772,
0.04554415121674538,
0.0015131884720176458,
-0.007826332002878189,
0.03506999835371971,
-0.0068642497062683105,
-0.016489258036017418,
-0.011921457014977932,
-0.05357544869184494,
-0.00874240230768919,
0.03600698336958885,
0.07971062511205673,
0.02844417840242386,
0.01905759982764721,
0.033815108239650726,
0.04072537273168564,
-0.03670972213149071,
-0.018455252051353455,
0.019509360194206238,
-0.02288919873535633,
-0.007090129889547825,
0.01758519560098648,
-0.07770280539989471,
0.04628035053610802,
0.027456998825073242,
-0.007307644002139568,
0.017125068232417107,
0.007399669382721186,
-0.005793409887701273,
0.019860729575157166,
-0.018388325348496437,
-0.06184099242091179,
0.003373563289642334,
0.02074751816689968,
0.014247187413275242,
-0.02790875919163227,
-0.01418862584978342,
-0.011586819775402546,
-0.02735660783946514,
-0.0023194553796201944,
-0.012808246538043022,
0.04674884304404259,
-0.06502004712820053,
-0.02342461794614792,
-0.04842203110456467,
0.030920496210455894,
0.050630636513233185,
0.09209220856428146,
0.039186038076877594,
-0.06709479540586472,
-0.05541595444083214,
-0.011611917987465858,
-0.008219530805945396,
-0.02752392552793026,
-0.05364237353205681,
-0.053977012634277344,
-0.04641420766711235,
0.019676679745316505,
0.008177701383829117,
0.03133879229426384,
0.039186038076877594,
0.042565878480672836,
0.06642552465200424,
-0.016430696472525597,
0.0030368342995643616,
-0.07000613957643509,
0.00020757975289598107,
-0.016388867050409317,
-0.01805368810892105,
0.016756966710090637,
0.06532122194766998,
-0.009051941335201263,
-0.01325164083391428,
0.05969931185245514,
0.07408872246742249,
-0.010633103549480438,
-0.012908637523651123,
0.040323805063962936,
-0.05832729861140251,
-0.03537117317318916,
-0.054913997650146484,
0.03885140269994736,
-0.013126151636242867,
0.006479416508227587,
-0.09476931393146515,
0.030987422913312912,
0.028427446261048317,
-0.0015592011623084545,
-0.02872862108051777,
0.010030755773186684,
0.014623654074966908,
0.012548902072012424,
0.03935335949063301,
-0.020329222083091736,
0.002436578506603837,
0.0017620750004425645,
0.021918749436736107,
0.0714116171002388,
0.019793801009655,
-0.05002829059958458,
0.007182155270129442,
-0.022822270169854164,
-0.07428950071334839,
0.048857059329748154,
0.03527078032493591,
-0.012816612608730793,
0.004848059266805649,
0.001933576655574143,
0.020697323605418205,
0.025164732709527016,
0.0030619322787970304,
0.0065421611070632935,
-0.012850075960159302,
0.01074186060577631,
-0.007428950164467096,
-0.053140416741371155,
-0.042097385972738266,
0.02799241803586483,
0.0027879478875547647,
-0.024227747693657875,
-0.04313476011157036,
0.09336383640766144,
-0.009737947955727577,
-0.07355330139398575,
-0.00944514013826847,
0.026018057018518448,
-0.023039784282445908,
-0.04808739200234413,
-0.01705814152956009,
-0.03597351908683777,
0.02026229351758957,
-0.05069756507873535,
-0.006747126579284668,
0.006960457656532526,
0.015025218948721886,
-0.06602396070957184,
-0.0016114881727844477,
0.010398857295513153,
0.01812061481177807,
0.04537682980298996,
0.015058683231472969,
-0.0072407168336212635,
-0.007378754671663046,
0.03868408128619194,
0.11678845435380936,
0.04172928258776665,
0.05170147866010666,
-0.03453458100557327,
0.008244629018008709,
0.023307494819164276,
-0.036408547312021255,
0.024512188509106636,
0.007278363220393658,
-0.01232302188873291,
0.003252257127314806,
-0.0141300642862916,
0.036408547312021255,
0.00446740910410881,
0.02770797722041607,
0.03107108175754547,
-0.009010111913084984,
-0.05431164801120758,
-0.008851159363985062,
-0.00014679601008538157,
-0.014397773891687393,
0.01329347025603056,
-0.029832923784852028,
0.011369305662810802,
-0.024846825748682022,
0.08995053172111511,
0.007307644002139568,
0.025817275047302246,
-0.0169326514005661,
-0.03597351908683777,
-0.005843605380505323,
0.008700571954250336,
0.017066506668925285,
-0.004496689885854721,
-0.018656034022569656,
0.020061511546373367,
0.028310323134064674,
-0.03517039120197296,
-0.03851676359772682,
-0.0025537016335874796,
0.029063258320093155,
0.006207523867487907,
0.011193620972335339,
-0.012724586762487888,
0.006563075818121433,
-0.021266207098960876,
-0.014866266399621964,
-0.02250436507165432,
-0.012875174172222614,
-0.03737899661064148,
0.05129991099238396,
0.006943725980818272,
0.027306411415338516,
-0.044874873012304306,
-0.028762083500623703,
-0.08921433240175247,
-0.023558473214507103,
-0.01650599017739296,
-0.04755197465419769,
-0.04269973188638687,
-0.004852242302149534,
-0.03180728480219841,
0.040591515600681305,
0.030201025307178497,
0.03153957426548004,
-0.05571712553501129,
-0.004630545154213905,
0.01720036193728447,
-0.013853988610208035,
-0.05220343545079231,
-0.012481974437832832,
-0.008993379771709442,
0.03858369216322899,
-0.026637136936187744,
0.017652122303843498,
-0.056386400014162064,
-0.00884279329329729,
-0.057992659509181976,
0.008478875271975994,
0.028193200007081032,
0.016255011782050133,
-0.011687210761010647,
-0.016162985935807228,
-0.01167047955095768,
0.040323805063962936,
-0.012055312283337116,
0.0463138148188591,
-0.009595727548003197,
0.024579117074608803,
0.03076990880072117,
-0.02735660783946514,
-0.009486970491707325,
-0.057992659509181976,
-0.0028716071974486113,
0.04062497988343239,
-0.022470900788903236,
-0.011653747409582138,
0.03657586872577667,
0.00939494464546442,
0.01422208920121193,
-0.04939248040318489,
0.03261041268706322,
0.03311236947774887,
-0.015234366990625858,
0.024227747693657875,
0.0024386700242757797,
0.0305021982640028,
0.03751285374164581,
-0.010917545296251774,
-0.0009955462301149964,
0.038717545568943024,
0.03681011497974396,
0.018154079094529152,
0.04350285977125168,
-0.010700030252337456,
-0.0569218210875988,
0.017133435234427452,
-0.005153415724635124,
0.02083117701113224,
-0.04902437701821327,
-0.07134469598531723,
0.02270514704287052,
0.06465194374322891,
0.023106712847948074,
0.013853988610208035,
0.05337466299533844,
-0.013686669059097767,
0.0295819453895092,
-0.05384315550327301,
-0.02158411219716072,
0.029799459502100945,
0.005805958993732929,
-0.054345112293958664,
-0.011946555227041245,
-0.023290762677788734,
0.026754260063171387,
-0.07582883536815643,
-0.03160650283098221,
-0.005475504323840141,
0.002576707862317562,
-0.010700030252337456,
-0.028778815641999245,
-0.059933558106422424,
-0.022839002311229706,
0.04025688022375107,
-0.016087692230939865,
-0.07047463208436966,
0.0043795667588710785,
-0.01646416075527668,
-0.049894437193870544,
-0.002997096162289381,
-0.011101595126092434,
0.013285104185342789,
0.04052458703517914,
-0.009796509519219398,
-0.030100634321570396,
-0.05662064626812935,
0.032325971871614456,
0.012155703268945217,
0.03167342767119408,
0.025181464850902557,
-0.029799459502100945,
-0.02158411219716072,
-0.04551068693399429,
-0.07281709462404251,
-0.025783810764551163,
0.014966657385230064,
-0.03607391193509102,
-0.03443418815732002,
-0.019275113940238953,
0.009562263265252113,
0.07683274894952774,
-0.0067554921843111515,
-0.011185254901647568,
0.06662630289793015,
-0.055114779621362686,
0.00793508905917406,
0.0399891696870327,
0.029799459502100945,
0.01087571494281292,
-0.006793139036744833,
-0.0485558845102787,
-0.004555251449346542,
-0.06220909208059311,
-0.015401686541736126,
-0.010499248281121254,
-0.015393320471048355,
-0.020028047263622284,
-0.04176274687051773,
0.008361752144992352,
-0.03393223136663437,
0.07482492178678513,
-0.015351490117609501,
-0.012080409564077854,
0.05103220418095589,
-0.029364431276917458,
0.006023473106324673,
-0.007558621931821108,
0.003683102782815695,
-0.04541029408574104,
0.031656697392463684,
-0.046179961413145065,
0.012841709889471531,
0.03319602832198143,
0.05180186778306961,
0.014581824652850628,
-0.022738611325621605,
-0.018622571602463722,
-0.021082155406475067,
-0.04527644068002701,
-0.06475233286619186,
-0.014012941159307957,
0.006671832874417305,
0.019224917516112328,
-0.009060307405889034,
0.04996136203408241,
-0.05126645043492317,
-0.010005658492445946,
0.0023278214503079653,
0.008361752144992352,
0.01609605923295021,
-0.11377671360969543,
0.01172067504376173,
0.025164732709527016,
-0.034835752099752426,
-0.010080951265990734,
-0.05969931185245514,
-0.04099307954311371,
0.01795329712331295,
-0.00836593471467495,
-0.03187421336770058,
0.04313476011157036,
0.0075293416157364845,
-0.026653869077563286,
-0.05745724216103554,
-0.011703942902386189,
-0.010080951265990734,
0.09055288136005402,
-0.03681011497974396,
-0.013109419494867325,
-0.012122239917516708,
-0.006274451036006212,
0.01593710668385029,
0.029247308149933815,
0.016020765528082848,
-0.05959891900420189,
0.02063039503991604,
-0.02752392552793026,
0.050162144005298615,
0.01687408983707428,
0.02063039503991604,
0.004321005195379257,
-0.05089834704995155,
0.011938189156353474,
0.07495877891778946,
0.028159737586975098,
0.032593682408332825,
0.07094312459230423,
0.020780982449650764,
-0.015226001851260662,
0.0424320213496685,
-0.03143918514251709,
-0.06706133484840393,
0.03704436123371124,
-0.016355402767658234,
-0.011645381338894367,
-0.06103786081075668,
-0.0037709451280534267,
-0.013184713199734688,
-0.01813734695315361,
-0.01125218253582716,
0.012456877157092094,
-0.03707782179117203,
-0.0005756808677688241,
-0.06960457563400269,
0.03925296664237976,
-0.02817646786570549,
0.03537117317318916,
0.0017704409547150135,
0.006207523867487907,
-0.04939248040318489,
-0.039286430925130844,
-0.015594102442264557,
0.02548263780772686,
0.05123298615217209,
-0.010716762393712997,
0.005446223542094231,
0.0381486639380455,
0.06327993422746658,
-0.05330773815512657,
0.038918327540159225,
0.030267952010035515,
0.04982750862836838,
0.0037374813109636307,
-0.02725621499121189,
-0.004013557452708483,
-0.03684357553720474,
-0.0020653402898460627,
0.0283605195581913,
-0.01889028027653694,
-0.0177525132894516,
-0.02211953140795231,
0.08586795628070831,
0.05846115201711655,
-0.005613542161881924,
-0.03184074908494949,
0.035103462636470795,
-0.04741811752319336,
0.01078369002789259,
-0.02576707862317562,
0.0003077095316257328,
-0.029832923784852028,
-0.014991755597293377,
0.023943305015563965,
0.012582366354763508,
0.06662630289793015,
0.03078664094209671,
-0.003890159772709012,
-0.01520090363919735,
-0.016664942726492882,
0.0004739825089927763,
0.016029130667448044,
0.0340660884976387,
0.0526384636759758,
0.020479809492826462,
-0.026018057018518448,
-0.06157328188419342,
-0.037345532327890396,
-0.01630520634353161,
0.0039549958892166615,
0.003578528529033065,
-0.0013385495403781533,
-0.037445925176143646,
-0.02809280902147293,
0.03560541942715645,
0.023039784282445908,
0.03791441768407822,
0.007901625707745552,
-0.049158234149217606,
0.08104917407035828,
0.04480794817209244,
-0.02797568589448929,
-0.014464701525866985,
0.002032922115176916,
0.014088233932852745,
0.014389407820999622,
-0.02027902565896511,
0.008098225109279156,
0.013695035129785538,
-0.048957452178001404,
0.04996136203408241,
-0.010599639266729355,
-0.02603478915989399,
-0.0024344869889318943,
0.09343075752258301,
0.003319184761494398,
-0.056319475173950195,
0.011009570211172104,
0.026369426399469376,
0.03466843441128731,
-0.08412784337997437,
0.08560024201869965,
0.02491375431418419,
-0.019024135544896126,
0.03078664094209671,
-0.020061511546373367,
-0.022270118817687035,
-0.005391845013946295,
0.0328446589410305,
-0.025449173524975777,
0.01989419385790825,
-0.003578528529033065,
-0.09791490435600281,
-0.0036789197474718094,
-0.03958760201931,
-0.008432862348854542,
0.012758051045238972,
-0.0010948916897177696,
0.04045766219496727,
-0.029364431276917458,
-0.044674091041088104,
-0.01227282639592886,
0.016798797994852066,
0.02211953140795231,
-0.039754923433065414,
0.03105434961616993,
-0.00884279329329729,
0.028795547783374786,
-0.013084322214126587,
-0.04266626760363579,
-0.009110502898693085,
-0.04008955880999565,
0.029498286545276642,
0.0028590583242475986,
0.025683419778943062,
-0.03339681029319763,
-0.033513933420181274,
0.012289558537304401,
0.03257695212960243,
-0.051567621529102325,
0.05665411055088043,
-0.028193200007081032,
0.05354198440909386,
-0.0889466181397438,
0.010683299042284489,
0.02939789555966854,
0.04166235402226448,
-0.00035398363252170384,
0.014949925243854523,
-0.08218694478273392,
-0.005739031359553337,
-0.022805538028478622,
0.05344159156084061,
0.05698874965310097,
-0.018739694729447365,
-0.013594644144177437,
0.011143425479531288,
-0.0487566702067852,
-0.01583671383559704,
0.0068642497062683105,
-0.020044779404997826,
0.04674884304404259,
0.021232742816209793,
0.005939813796430826,
0.028979597613215446,
0.001624037162400782,
-0.007391303312033415,
0.00732437614351511,
-0.0334637388586998,
0.03312910348176956,
0.03234270587563515,
0.014255553483963013,
0.024294674396514893,
0.023675596341490746,
0.01125218253582716,
-0.021734699606895447,
0.053809694945812225,
0.02389311045408249,
0.0403907336294651,
-0.03078664094209671,
0.016623113304376602,
-0.01640559919178486,
0.042632803320884705,
-0.03339681029319763,
0.04668191820383072,
-0.01372013334184885,
0.04527644068002701,
-0.03811519965529442,
0.03898525610566139,
0.0001085610783775337,
0.04504219442605972
] |
Subsets and Splits