Wallaroo Inference Server Tutorial: Computer Vision Resnet
The following tutorial is available on the Wallaroo Github Repository.
Wallaroo Inference Server: Resnet
This notebook is used in conjunction with the Wallaroo Inference Server Free Edition for the Computer Vision resnet 50 machine learning model. This provides a free license for performing inferences through the Computer Vision resnet 50 machine learning model. For full demonstrations of this model, see Wallaroo Edge Computer Vision Deployment Demonstration.
Prerequisites
- A deployed Wallaroo Inference Server Free Edition with one of the following options:
- Wallaroo.AI ResNet50 Inference Server - x64
- Wallaroo.AI ResNet50 Inference Server - Arm64
- Access via port 8080 to the Wallaroo Inference Server Free Edition.
Computer Vision Resnet Model Schemas
Inputs
The Resnet Model takes the following inputs.
Field | Type | Description |
---|---|---|
tensor | Float | Tensor in the shape (n, 3, 480, 640) float. This is the normalized pixel values of the 640x480 color image. |
Outputs
Field | Type | Description |
---|---|---|
boxes | Variable length List[Float] | The bounding boxes of detected objects with each 4 number sequence representing (x_coordinate, y_coordinate, width, height). List length is 4*n where n is the number of detected objects. |
classes | Variable length List[Int] | Integer values representing the categorical classes that are predicted by the model. List length is n where n is the number of detected objects. |
confidences | Variable length List[Float] | The confidence of detected classes. List length is n where n is the number of detected objects. |
Wallaroo Inference Server API Endpoints
The following HTTPS API endpoints are available for Wallaroo Inference Server.
Pipelines Endpoint
- Endpoint: HTTPS GET
/pipelines
- Returns:
- List of
pipelines
with the following fields.- id (String): The name of the pipeline.
- status (String): The pipeline status.
Running
indicates the pipeline is available for inferences.
- List of
Pipeline Endpoint Example
The following demonstrates using curl
to retrieve the Pipelines endpoint. Replace the HOSTNAME with the address of your Wallaroo Inference Server.
!curl HOSTNAME:8080/pipelines
{"pipelines":[{"id":"resnet50","status":"Running"}]}
Models Endpoint
- Endpoint: GET
/models
- Returns:
- List of
models
with the following fields.- name (String): The name of the model.
- sha (String): The
sha
hash of the model. - status (String): The model status.
Running
indicates the models is available for inferences. - version (String): The model version in UUID format.
- List of
Models Endpoint Example
The following demonstrates using curl
to retrieve the Models endpoint. Replace the HOSTNAME with the address of your Wallaroo Inference Server.
!curl HOSTNAME:8080/models
{"models":[{"name":"resnet50","sha":"af16a04a6ec48ac494065d4439fe9dea590d337b9ca6dc328160ccf04a217b9c","status":"Running","version":"8131edb2-1ca7-4ef5-bb47-fbc770d60972"}]}
Inference Endpoint
Endpoint: HTTPS POST
/pipelines/resnet50
Headers:
Content-Type: application/vnd.apache.arrow.file
: For Apache Arrow tables.Content-Type: application/json; format=pandas-records
: For pandas DataFrame in record format.
Input Parameters: DataFrame in
/pipelines/hf-summarizer-standard
OR Apache Arrow table inapplication/vnd.apache.arrow.file
with the following inputs:tensor (Float Required): The tensor shape is a variable array in the shape (3, {picture width}, {picture height}) float of the the normalized pixel values of the 640x480 color image.
The following code sample is used to convert an image into a 640x480 DataFrame with the appropriate shape for the model:
import cv2 import torch import numpy as np def imageResize(image, width, height): im_pillow = np.array(image) image = cv2.cvtColor(im_pillow, cv2.COLOR_RGB2BGR) self.debug("Resizing to w:"+str(width) + " height:"+str(height)) image = cv2.resize(image, (width, height)) resizedImage = image.copy() # convert the image from BGR to RGB channel ordering and change the # image from channels last to channels first ordering image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) image = image.transpose((2, 0, 1)) # add the batch dimension, scale the raw pixel intensities to the # range [0, 1], and convert the image to a floating point tensor image = np.expand_dims(image, axis=0) image = image / 255.0 tensor = torch.FloatTensor(image) return tensor, resizedImage
Returns:
- Headers
Content-Type: application/json; format=pandas-records
: pandas DataFrame in record format.
- Data
- check_failures (List[Integer]): Whether any validation checks were triggered. For more information, see Wallaroo SDK Essentials Guide: Pipeline Management: Anomaly Testing.
- elapsed (List[Integer]): A list of time in nanoseconds for:
- [0] The time to serialize the input.
- [1…n] How long each step took.
- model_name (String): The name of the model used.
- model_version (String): The version of the model in UUID format.
- original_data: The original input data. Returns
null
if the input may be too long for a proper return. - outputs (List): The outputs of the inference result separated by data type. The number of arrays for each field is determined by the number of detected objects.
- Float: The bounding boxes for each detected object.
- data (List[Float]): The bounding boxes data in the shape returned in the
dim
field. - dim (List[Integer]): The dimension shape returned in the format
[number of objects, 4]
. - v (Integer): The vector shape of the data.
- data (List[Float]): The bounding boxes data in the shape returned in the
- Int64: The class of each detected object.
- data (List[Integer]): The class results in the shape of the
dim
field. - dim (List[Integer]): The dimension shape returned in the format
[number of objects]
. - v (Integer): The vector shape of the data.
- data (List[Integer]): The class results in the shape of the
- Float: The confidences of each detected object.
- data (List[Float]): The confidence values in the shape of the
dim
field. - dim (List[Integer]): The dimension shape returned in the format
[number of objects]
. - v (Integer): The vector shape of the data.
- data (List[Float]): The confidence values in the shape of the
- Float: The bounding boxes for each detected object.
- pipeline_name (String): The name of the pipeline.
- shadow_data: Any shadow deployed data inferences in the same format as outputs.
- time (Integer): The time since UNIX epoch.
- Headers
Inference Endpoint Example
The following example performs an inference using the pandas DataFrame ./data/image_224x224.df.json
from an image converted into a tensor
for inferencing.
Updated the pipeline name based on the pipeline endpoint above.
!curl -X POST HOSTNAME:8080/pipelines/resnet50 \
-H "Content-Type:application/json; format=pandas-records" \
--data @./data/image_224x224.df.json
[{"check_failures":[],"elapsed":[27529757,325302317],"model_name":"resnet50","model_version":"8131edb2-1ca7-4ef5-bb47-fbc770d60972","original_data":null,"outputs":[{"Float":{"data":[-0.9209704995155334,-0.10495197772979736,-0.6216869950294495,-0.7639160752296448,-0.2154858112335205,-0.505703330039978,-0.7874149680137634,-0.5596786141395569,-1.1615943908691406,0.568906307220459,0.25151896476745605,-0.4426764249801636,-0.2803022563457489,-0.18332044780254364,-0.5667626857757568,-0.2607719302177429,0.8765640258789062,-0.33152544498443604,-0.09792342782020569,-0.31929707527160645,-0.03542117774486542,2.243022918701172,1.2097502946853638,0.8100910782814026,-0.7545893788337708,-0.5059118866920471,-0.0510006882250309,-0.08611194789409637,0.04777945578098297,-0.9071007370948792,-1.2397105693817139,-0.6117401123046875,-1.2649085521697998,-0.49369877576828003,0.20755505561828613,-1.5142827033996582,-0.7229145765304565,-1.4517813920974731,0.5931597352027893,-0.705878734588623,-0.49715355038642883,-0.5067124366760254,0.6836690902709961,-0.2999878525733948,-0.38008007407188416,-0.12145837396383286,-0.3811112642288208,-0.3016861081123352,-1.0309451818466187,-1.221230387687683,-0.7402653694152832,0.31255042552948,-0.2385125458240509,-0.3597520589828491,-0.611875057220459,-1.4171234369277954,-0.6953393816947937,-0.8977612257003784,-0.4419158101081848,0.1640137881040573,-0.7315932512283325,-0.7470656633377075,-0.7364163994789124,0.026501402258872986,0.1274559199810028,-0.22767779231071472,-0.08014523983001709,-0.7872171401977539,-0.24927811324596405,-0.3231212794780731,-0.7516193985939026,0.6998400092124939,-0.961872398853302,0.21504326164722443,-1.143547534942627,0.06683613359928131,-0.9779999256134033,0.10952679812908173,1.164833664894104,0.9379342198371887,0.9289938807487488,1.4498789310455322,0.08302754908800125,0.2518922686576843,-0.7904947996139526,0.06390288472175598,0.03906869888305664,-0.05500852316617966,-0.4420778453350067,0.5122808218002319,-0.5220428109169006,0.43826937675476074,1.7422548532485962,-0.5095168352127075,-0.030511990189552307,-0.4733806848526001,-0.40053123235702515,-1.2809487581253052,0.5619056224822998,0.43158140778541565,-0.3192000091075897,-0.5592494010925293,-0.9030879139900208,-0.46101677417755127,-1.1964744329452515,-1.8386478424072266,-1.268721103668213,-0.4987451434135437,-0.9467898607254028,-0.7961544990539551,-1.4408328533172607,1.5324277877807617,0.45404139161109924,0.11730155348777771,-0.41721677780151367,-1.6324219703674316,-1.3549885749816895,0.5803042650222778,-1.0710985660552979,-0.60124671459198,-0.6479066610336304,-1.2841085195541382,-0.7957830429077148,-1.401261806488037,-0.8226445913314819,-0.39799076318740845,-0.33132264018058777,1.0660581588745117,1.3188652992248535,0.5740012526512146,-0.5056800246238708,-0.35661759972572327,0.13007494807243347,-0.47445982694625854,0.19196167588233948,0.21153435111045837,-0.9289034008979797,-0.37291449308395386,0.2660676836967468,0.41866201162338257,-0.19892796874046326,0.7431018352508545,0.18201318383216858,0.4720017910003662,0.5242726802825928,0.21621166169643402,1.60371732711792,0.8835126161575317,-0.12380070984363556,-0.026944845914840698,0.009989067912101746,-0.4380689859390259,0.11144248396158218,0.1770261973142624,-0.4518960118293762,-0.780663013458252,-0.5365955233573914,-0.2538329064846039,-0.8964980840682983,-0.7351016402244568,-0.562610924243927,-0.3931219279766083,-0.8018279075622559,-0.38880228996276855,-0.26731815934181213,-0.8326029777526855,-0.8142890334129333,-0.8159071207046509,-0.553368091583252,-0.88005131483078,-1.0833899974822998,-0.6795664429664612,0.05457449331879616,-0.20487120747566223,-0.5509709119796753,-0.6473774313926697,-0.8227453827857971,-0.48676371574401855,-0.17701402306556702,-0.6249679327011108,-1.0367640256881714,-0.18442967534065247,-0.7315160036087036,-0.26268064975738525,-0.653117299079895,-0.15912845730781555,-1.0511419773101807,-0.11766250431537628,-0.5304980278015137,-0.6946197748184204,0.9431405663490295,-0.16277898848056793,-1.259573221206665,-0.2701641023159027,-0.22112299501895905,0.022292666137218475,-1.0969599485397339,-0.940108597278595,-1.1559655666351318,-0.47618287801742554,-0.3831486999988556,-1.4605140686035156,-0.1628812998533249,-0.27183040976524353,-0.9461800456047058,-1.0246052742004395,-0.8583532571792603,-0.4901716709136963,-0.5817583203315735,-0.37399306893348694,-0.6668270826339722,-0.8859307169914246,-0.7769283056259155,-0.6553910970687866,-0.46439623832702637,-1.036147117614746,-0.4044029414653778,-0.794582188129425,-1.0624295473098755,-1.026174783706665,-0.21227572858333588,-0.5376724004745483,-0.11686201393604279,-0.08071712404489517,-0.6508125066757202,-1.112339735031128,-1.0137107372283936,-0.8185564279556274,-0.18649427592754364,-0.41967037320137024,-0.7899032831192017,-0.4784793257713318,-0.30983883142471313,-0.8027055263519287,-0.4974499046802521,-0.2866147458553314,-0.39197778701782227,-0.6406401991844177,-0.29926228523254395,-0.2155657261610031,-0.42895907163619995,-0.270721435546875,-0.8404824733734131,-1.0142185688018799,-1.1153329610824585,-0.09829577803611755,-0.8000189661979675,-0.5002450346946716,0.04158979654312134,-0.4216550588607788,-0.32672759890556335,-0.3359116315841675,-0.6465327143669128,-0.5420446395874023,-0.677740216255188,-1.3182228803634644,-0.5256472826004028,-0.14031659066677094,0.4651133418083191,-0.4331985414028168,-0.7378721833229065,-0.23489698767662048,-0.2701050043106079,-0.17281773686408997,-0.4927859902381897,-0.6927549839019775,-0.5999431014060974,-0.41988012194633484,-0.7209063172340393,-0.2252274453639984,0.43957704305648804,-0.9043164253234863,-0.01761981099843979,-0.026335589587688446,-0.5445156693458557,-0.3649775981903076,-0.055810511112213135,0.35159868001937866,-0.09406846761703491,1.320417881011963,-0.13321173191070557,-0.03580228239297867,-0.7201567888259888,0.5681303143501282,-0.042611394077539444,-0.43400681018829346,-1.037748098373413,-0.9433113932609558,-0.7705895900726318,-0.8540985584259033,-1.1520943641662598,-0.4646572470664978,-0.8853753209114075,-0.015536494553089142,-0.05845755338668823,-1.240859866142273,0.8901380300521851,-0.7399206161499023,-0.22436794638633728,0.3580622673034668,-0.5407640933990479,0.5826137065887451,-0.0013635698705911636,-0.32652992010116577,-1.0670695304870605,-0.8688358068466187,0.19306589663028717,0.33167946338653564,0.43373188376426697,-1.116331934928894,0.8561619520187378,-0.042152147740125656,0.2573075294494629,-0.16833168268203735,0.5832479596138,0.1577271819114685,0.014928349293768406,-0.24080097675323486,0.9676804542541504,0.26606616377830505,-0.14814026653766632,-1.0207809209823608,-1.389917016029358,-0.449222207069397,-0.8721746206283569,-1.2251662015914917,-0.477140337228775,-0.11569446325302124,-0.5069831609725952,-1.083264708518982,-0.6175448894500732,0.413604736328125,-0.0013798922300338745,-0.5658658742904663,-1.2231775522232056,-0.9018735885620117,0.36560505628585815,-1.1615400314331055,-0.7576948404312134,-0.465523898601532,-0.33407920598983765,-1.156665325164795,-1.0972446203231812,-1.055629014968872,-0.9538413882255554,-0.29831230640411377,0.05566616356372833,0.08730535209178925,-0.11356982588768005,0.30853772163391113,1.0986526012420654,0.8958814144134521,-0.5594778060913086,0.07116948813199997,1.4898041486740112,-0.31238222122192383,0.18415921926498413,-0.17314490675926208,-0.03676576912403107,-0.1623574197292328,-0.6578186750411987,-0.5108855366706848,-0.6480699181556702,-0.9184983968734741,-0.6637812256813049,-0.2757290005683899,-1.3479835987091064,-0.5067780017852783,-0.7547329068183899,-0.6618969440460205,-1.4024516344070435,-0.5912376046180725,-0.7561465501785278,-0.715125560760498,-0.6662845015525818,-0.8036122918128967,-0.6599592566490173,-0.7779589891433716,-0.9233367443084717,-1.4765493869781494,-1.4116783142089844,-1.3740601539611816,-0.5998063087463379,-0.7742412090301514,-1.1175466775894165,-0.384885311126709,-0.24292512238025665,-0.6826799511909485,-1.4004570245742798,0.46205002069473267,-1.286272644996643,-0.3404599726200104,-0.987995982170105,-1.1965181827545166,-0.5511451959609985,-0.12215817719697952,-1.7043112516403198,-0.9024007320404053,-0.5421878099441528,0.9737245440483093,-0.10456550121307373,-0.2992042005062103,0.4214884042739868,0.8037926554679871,1.6214385032653809,1.9543476104736328,-1.2761635780334473,-0.9679189920425415,-0.3349860906600952,1.2094849348068237,-1.3236700296401978,-0.5746944546699524,-0.13343165814876556,1.0152003765106201,-0.4270273447036743,-1.7958765029907227,1.107527494430542,1.1610289812088013,2.011263132095337,1.135374665260315,-0.21055474877357483,0.3953458070755005,0.4075581133365631,0.4029461145401001,-1.2393189668655396,0.833898663520813,0.3117360472679138,0.15228813886642456,0.02698197215795517,0.2560880184173584,-1.1009031534194946,0.2893723249435425,0.6178666949272156,-0.40664979815483093,0.5198152661323547,1.2278573513031006,-0.1146264299750328,1.2391082048416138,0.7967079877853394,-0.7516393661499023,0.7415142059326172,0.12364427745342255,1.3104360103607178,0.6513729095458984,-0.04641484469175339,0.7042532563209534,0.7170249819755554,0.5792890787124634,-0.242716982960701,0.4197053909301758,-0.6950762867927551,0.7933202981948853,-1.0776355266571045,-0.3237878084182739,-2.1705238819122314,-0.06081146001815796,0.8887625336647034,0.4291456341743469,-0.5747496485710144,-0.05979827791452408,1.453162431716919,-0.9694859385490417,1.270255446434021,0.30279359221458435,0.7681897282600403,0.22597730159759521,-0.6870170831680298,-1.5033100843429565,-0.8116369843482971,0.11605732142925262,1.7070167064666748,0.3336390554904938,0.13725842535495758,1.8250784873962402,-1.0757156610488892,-0.16486911475658417,-1.126733660697937,0.5104795098304749,0.3701506555080414,-0.3031306862831116,-0.8433326482772827,0.4124279320240021,-0.01868516206741333,-0.16358380019664764,0.9088908433914185,-0.12194035947322845,-0.12856817245483398,0.41996604204177856,1.6277682781219482,-0.7734174728393555,-0.42266547679901123,0.6842201352119446,0.4692940413951874,0.31813523173332214,1.0468335151672363,-0.5902098417282104,-0.278582364320755,0.05376390740275383,-0.136165589094162,2.089674472808838,-0.040205247700214386,-0.7496594190597534,0.16078267991542816,1.2041277885437012,0.1341906636953354,0.396079957485199,0.13784697651863098,1.0825412273406982,0.11474834382534027,-1.7693212032318115,1.7622990608215332,-0.01557900756597519,2.0813026428222656,0.6545820832252502,0.7808902859687805,-0.1959315836429596,0.7590656280517578,1.7041183710098267,-1.1041723489761353,-0.071625255048275,0.41195791959762573,0.2220793217420578,0.49947935342788696,0.292194664478302,-0.8384259939193726,0.2296275794506073,0.03995368629693985,0.4891844689846039,-0.2948397397994995,0.37786054611206055,1.50634765625,0.22178122401237488,0.4304642677307129,-0.8796026706695557,0.9004719853401184,-0.39326122403144836,0.49855953454971313,1.0545659065246582,0.8854320049285889,-0.2740119993686676,1.529700517654419,-0.20314311981201172,0.179155170917511,0.35442987084388733,-1.1193228960037231,1.0009814500808716,0.18068549036979675,-0.9829123616218567,-0.5442547798156738,1.9677071571350098,0.20984645187854767,1.8926684856414795,-0.3695008158683777,0.17401054501533508,1.0450481176376343,-0.3103210926055908,0.6515191793441772,1.420647382736206,0.606541633605957,0.6521590352058411,-1.1551086902618408,-0.14953894913196564,0.0757220983505249,0.8896767497062683,-0.9432287216186523,-0.08375251293182373,-0.15259894728660583,1.1814416646957397,-1.0809072256088257,-0.3015100359916687,0.42385488748550415,-1.1910933256149292,0.4586171805858612,0.11632023751735687,1.7501803636550903,-0.7920348644256592,0.8074683547019958,0.34176668524742126,0.405336856842041,-0.8041310906410217,-0.6195210218429565,-1.2346075773239136,-0.9814852476119995,0.9744203090667725,1.909523844718933,0.9723700881004333,0.0021057482808828354,1.8349025249481201,0.42266014218330383,0.47549688816070557,0.13202238082885742,0.9839087128639221,0.6754351258277893,1.1667293310165405,-0.2358449548482895,0.5194358825683594,1.6368403434753418,-0.3303961753845215,0.19321447610855103,0.20213022828102112,2.5254693031311035,1.061149001121521,0.1918025016784668,-0.09913367033004761,1.8697506189346313,0.16695894300937653,1.027121901512146,-0.3759192228317261,0.4280250072479248,0.1886344701051712,0.41449612379074097,-0.3027029037475586,-0.8538863658905029,0.874592661857605,-0.5291706323623657,0.5278916954994202,1.1562126874923706,0.3124074637889862,1.5062215328216553,0.24959781765937805,-0.2989508807659149,-0.3633832633495331,0.5433388948440552,2.2704288959503174,-1.2271356582641602,0.5633565783500671,1.2263065576553345,-0.32912546396255493,0.9812907576560974,1.401715636253357,0.12303151190280914,1.5093351602554321,0.5919018387794495,1.1049375534057617,-0.7463673949241638,1.5469328165054321,-0.22748711705207825,-0.7259052395820618,-0.11623119562864304,-0.16353480517864227,-1.0500743389129639,1.2737787961959839,-0.1742296814918518,-0.0981951653957367,1.8143444061279297,-0.36115914583206177,0.41224923729896545,1.010721206665039,0.5128273963928223,1.489839792251587,1.2662956714630127,0.25254613161087036,-0.6062920689582825,0.19718536734580994,-0.01894102618098259,-0.134208083152771,-0.15577495098114014,1.1997627019882202,-1.1146360635757446,0.8346014022827148,0.3525276482105255,-1.252081036567688,1.151665210723877,0.18464268743991852,-0.12615403532981873,-0.11913051456212997,1.3235284090042114,-0.12335963547229767,0.3519168198108673,-0.3647504150867462,-0.5815200805664062,0.3721984624862671,1.1070363521575928,0.7182292938232422,1.2213642597198486,-0.5011804103851318,0.7016568183898926,2.206418037414551,0.25011196732521057,1.3411211967468262,2.2366504669189453,1.3729431629180908,1.3616923093795776,1.0888299942016602,0.8963667750358582,-0.7186436057090759,0.8761733770370483,-1.7245713472366333,-0.3761419653892517,-0.6949666738510132,-0.4744648337364197,0.49517470598220825,-0.26921889185905457,0.6399660110473633,-0.037752799689769745,0.8372378349304199,1.2470911741256714,-0.6462659239768982,-0.01153266429901123,1.2984203100204468,1.7733206748962402,2.1245956420898438,0.43963006138801575,-0.48896047472953796,-0.2035958617925644,-0.5756109356880188,-0.19195324182510376,-0.8748353719711304,1.12523353099823,0.44734707474708557,1.3836877346038818,0.9467954635620117,-0.5018315315246582,0.2198813408613205,0.5050004720687866,-0.4263571500778198,0.3987411856651306,-0.9733580350875854,1.4101943969726562,1.0701072216033936,1.3108763694763184,-0.7049845457077026,0.5588164925575256,0.7547019124031067,1.169978380203247,0.014247231185436249,1.3818862438201904,0.2800585627555847,-0.06990480422973633,0.8397774696350098,1.0387616157531738,1.188425064086914,-0.3978699743747711,1.317960262298584,-1.6830912828445435,-0.441020667552948,0.17136962711811066,0.6412571668624878,-0.20607542991638184,-0.4045804440975189,0.709758996963501,-0.8436398506164551,0.088142991065979,-0.7537981271743774,1.5127508640289307,0.5068806409835815,1.24295973777771,0.20456252992153168,-0.1240159422159195,1.4381592273712158,-0.6329399943351746,-0.6085461974143982,-0.14306750893592834,0.9852379560470581,1.3743023872375488,1.0644738674163818,-0.7184225916862488,-0.443462997674942,1.3264758586883545,0.5000901818275452,0.5828590989112854,1.3036035299301147,-0.8318939805030823,0.9733138680458069,0.7305686473846436,0.5967376232147217,-0.4271482825279236,1.8288979530334473,-0.6398878693580627,1.9975165128707886,0.5041693449020386,0.10683761537075043,1.460059642791748,0.39745214581489563,1.0783624649047852,-0.16698789596557617,0.5964105725288391,0.901760995388031,0.6367858052253723,-0.054806917905807495,1.444382905960083,-0.29926711320877075,0.2149081975221634,2.150785446166992,1.7501527070999146,-1.4081913232803345,-0.3245497941970825,-0.7634434103965759,-1.751070499420166,0.5249605178833008,-0.17399373650550842,-0.30540356040000916,1.035701870918274,-0.4315982758998871,0.008255764842033386,1.558243989944458,-0.5628502368927002,-0.02457357943058014,0.47592630982398987,-0.44818803668022156,-1.5974876880645752,0.56432044506073,1.0088825225830078,0.9638292789459229,1.545628547668457,-0.09768113493919373,0.5089536905288696,-0.0021802783012390137,-0.36748719215393066,0.1737431287765503,0.5180536508560181,0.07436614483594894,1.5711798667907715,1.943305253982544,0.5498442053794861,-0.9930218458175659,-0.6083242893218994,-0.2013009488582611,1.3308700323104858,-0.8167026042938232,0.006207823753356934,0.45975571870803833,-0.49905574321746826,0.9887742400169373,-0.84366774559021,0.604198694229126,0.9432424306869507,0.08083109557628632,1.4405077695846558,-1.499477744102478,0.4067830443382263,1.560760498046875,0.8798314929008484,0.9286937713623047,-0.28648531436920166,-0.22547270357608795,1.3736662864685059,0.7598023414611816,1.6068446636199951,0.1769525110721588,1.287580966949463,-0.01707940548658371,0.2710782289505005,-0.35294991731643677,1.721372127532959,1.8594859838485718,1.8306946754455566,0.0676187202334404,-0.39651060104370117,-0.2584508955478668,-0.16689759492874146,0.5367350578308105,0.948274552822113,0.21949291229248047,-0.2009197622537613,1.1271307468414307,0.7819018363952637,-0.6322094798088074,1.2617113590240479,0.41581693291664124,-0.4077521562576294,1.2407639026641846,0.8363466262817383,0.8975659608840942,-0.5618476867675781,-1.7917808294296265,0.12411904335021973,0.08834147453308105,-0.13419488072395325,0.04226042330265045,-0.37101492285728455,0.9134185314178467,1.3729610443115234,0.40617963671684265,-1.4950063228607178,-0.05630122125148773,0.8978904485702515,-0.03534752130508423,-0.12193681299686432,0.6188242435455322,0.40069499611854553,-0.31796982884407043,0.1747206598520279,0.37870997190475464,-0.41907232999801636,-0.22002571821212769,-0.9488582015037537,-0.9410786032676697,0.6373963356018066,-0.18604668974876404,0.02195214480161667,0.42791739106178284,1.8799998760223389,0.12869909405708313,0.6486508846282959,1.7816200256347656,0.9102027416229248,0.7121638059616089,0.904643177986145,0.48776426911354065,1.327762484550476,0.24968811869621277,2.017207384109497,-0.41420719027519226,-0.5111576914787292,0.09422306716442108,0.34550780057907104,0.6307950019836426,1.557183861732483,0.1778859943151474,0.9294703006744385,-0.32763591408729553,-0.09554643929004669,1.64060640335083,1.2161986827850342,0.4571632146835327,1.463487982749939,-1.483738660812378,-0.6225318312644958,0.5066191554069519,0.79685378074646,-0.35556790232658386,-0.3190082311630249,0.03779152035713196,-0.9741584062576294,0.23171815276145935,-0.3389521837234497,-0.17310641705989838,-1.1170929670333862,0.12941405177116394,0.015663087368011475,-0.23748691380023956,-0.08955245465040207,-1.338668704032898,-0.48760098218917847,-0.4213200509548187,-0.7966384291648865,-0.37229469418525696,-0.08455665409564972,-0.9551592469215393,-0.14154724776744843,-1.0582828521728516,-0.29969489574432373,-0.23903971910476685,-0.8703352212905884,-0.07108908891677856,-0.5732548832893372,-1.1118788719177246,0.556557834148407,0.6183388233184814,0.03212800621986389,0.3973385691642761,0.021344508975744247,-0.706170380115509,0.31151002645492554,-1.613413691520691,-0.7529142498970032,-0.2416715770959854,1.19569993019104,-0.27011939883232117,-0.43977734446525574,-0.7299510836601257,-0.4360605478286743,-1.5170601606369019,-0.49263614416122437,-1.0598011016845703,1.2693921327590942,-0.29401224851608276,1.3838361501693726,1.0566034317016602,0.40418583154678345,0.21227997541427612,0.9324294328689575,-1.2605706453323364,1.5176717042922974,1.1745238304138184,1.8724037408828735,1.5743789672851562,1.8142712116241455,0.1270366609096527,1.253751277923584,-1.1204032897949219,-0.36507704854011536,-0.6184782981872559,1.4403680562973022,-0.05291403830051422,-1.4191648960113525,0.08177758753299713,0.1156747117638588,-0.297759473323822,0.03207244724035263,-1.4184123277664185,-1.5589656829833984,-1.4492018222808838,-1.3548011779785156,-0.7391464114189148,-1.2119114398956299,-1.909700632095337,-0.05207614600658417,0.5909574627876282],"dim":[1,1000],"v":1}}],"pipeline_name":"resnet50","shadow_data":{},"time":1698168182961}]