반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

feature_vecter API 백터추출 본문

Python

feature_vecter API 백터추출

닉의네임 2021. 9. 23. 16:43
반응형

git https://github.com/900gle/indexer.git

 

GitHub - 900gle/indexer: python tensorflow image indexer

python tensorflow image indexer. Contribute to 900gle/indexer development by creating an account on GitHub.

github.com

개발환경 파이썬 3.7

import tensorflow as tf
import tensorflow_hub as hub
import numpy as np
import json

from flask import Flask
from flask_restful import reqparse, abort, Api, Resource

app = Flask(__name__)
api = Api(app)

def load_img(path):
    img = tf.io.read_file(path)
    img = tf.io.decode_jpeg(img, channels=3)
    img = tf.image.resize_with_pad(img, 224, 224)
    img = tf.image.convert_image_dtype(img, tf.float32)[tf.newaxis, ...]
    return img

parser = reqparse.RequestParser()

def getImageFeatureVectors(filePath):
    module_handle = "https://tfhub.dev/google/imagenet/mobilenet_v2_140_224/feature_vector/4"
    module = hub.load(module_handle)
    img = load_img(filePath)
    features = module(img)
    feature_set = np.squeeze(features)
    return feature_set

class NumpyEncoder(json.JSONEncoder):
    def default(self, obj):
        if isinstance(obj, np.ndarray):
            return obj.tolist()
        return json.JSONEncoder.default(self, obj)

class Api(Resource):
    parser = reqparse.RequestParser()
    parser.add_argument('filePath', type=str, required=True, help="The 'filePath' field cannot be blank.")
    def post(self):
        data = Api.parser.parse_args()
        return {'vectors': json.dumps(getImageFeatureVectors(data['filePath']), cls=NumpyEncoder)}

api.add_resource(Api, '/api')

if __name__ == '__main__':
    app.run(host='0.0.0.0', debug=True)

추출 

{
    "vectors": "[0.5363397598266602, 0.7011880874633789, 0.0, 0.0, 0.0, 0.04533206298947334, 0.0456448569893837, 2.1332991123199463, 0.37074851989746094, 0.0043007745407521725, 0.7999453544616699, 0.19835808873176575, 0.0, 0.0, 0.0, 2.340623140335083, 0.0, 0.045052818953990936, 0.0, 0.0, 0.21421818435192108, 0.1503170132637024, 0.1014857217669487, 0.2445378452539444, 0.5691266655921936, 0.2856391370296478, 0.0029452284798026085, 0.01713383011519909, 0.0, 0.8718018531799316, 0.0, 0.2983147203922272, 0.0, 0.050454460084438324, 0.0, 0.0, 0.00012396306556183845, 0.40308108925819397, 0.18708477914333344, 0.0, 0.03657814860343933, 0.014390702359378338, 0.0, 0.5922098159790039, 0.0, 0.3533697724342346, 0.09681852161884308, 0.0, 0.0024586599320173264, 1.1276434659957886, 1.2484471797943115, 0.012634637765586376, 0.008517265319824219, 0.0, 0.015344610437750816, 1.8697794675827026, 0.0, 0.0, 1.0869109630584717, 0.41051048040390015, 0.0, 0.7509036064147949, 2.236952781677246, 0.0, 0.12553799152374268, 0.0, 1.2503870725631714, 0.0, 0.0, 0.04219726473093033, 1.8684415817260742, 0.0, 0.0, 0.054704129695892334, 0.0, 0.0, 0.0, 0.03303217515349388, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9146987199783325, 1.6190464496612549, 0.17900881171226501, 0.03685547038912773, 0.07702074944972992, 0.5716690421104431, 0.01112281996756792, 0.048240408301353455, 0.0, 0.3657458424568176, 0.030715251341462135, 0.19308261573314667, 0.21279972791671753, 0.0, 0.45374351739883423, 0.0, 0.3523511588573456, 0.6074215769767761, 1.9060795307159424, 0.0, 0.20703479647636414, 1.233926773071289, 1.5029104948043823, 0.026267090812325478, 0.0, 0.411063551902771, 0.0, 0.1529388427734375, 0.0, 0.6613690853118896, 0.35661599040031433, 0.011150335893034935, 2.475522041320801, 0.0, 0.006346634589135647, 0.00864004623144865, 0.0, 0.0, 0.0, 1.6117925643920898, 0.0, 0.0, 1.4368551969528198, 1.4927760362625122, 2.1551876068115234, 0.6967200636863708, 0.23930682241916656, 3.1334128379821777, 0.0, 0.2643316686153412, 3.650062322616577, 0.6958068013191223, 0.0, 0.359045147895813, 0.0, 3.045815944671631, 0.0, 0.0, 0.8367546200752258, 0.5881909728050232, 0.04542635381221771, 0.0, 0.03007330745458603, 0.0, 0.008499154821038246, 0.01750010810792446, 0.2759524881839752, 0.3099276125431061, 0.22849923372268677, 0.13512957096099854, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.22565144300460815, 0.0, 0.10491888225078583, 0.0, 0.022165074944496155, 0.0, 0.0, 0.6500567197799683, 0.016674231737852097, 0.21606522798538208, 0.07088827341794968, 0.0, 0.6558353900909424, 0.795613169670105, 0.0, 0.20223909616470337, 0.008814125321805477, 0.22248899936676025, 1.1095430850982666, 0.4715105891227722, 0.0011200126027688384, 0.16593438386917114, 0.08741892874240875, 0.0, 0.08692388236522675, 0.0798323005437851, 0.02341611124575138, 0.0, 0.0, 0.0, 2.4043002128601074, 0.0, 0.009075622074306011, 0.08505472540855408, 0.08293355256319046, 0.0, 3.414537191390991, 0.06016649678349495, 0.0, 0.701196014881134, 2.0105092525482178, 0.5310143232345581, 0.03918302431702614, 0.011687551625072956, 0.46875283122062683, 1.3555760383605957, 0.017642566934227943, 0.10102291405200958, 0.0, 0.16782625019550323, 0.019133975729346275, 0.0, 0.0, 0.007671725936233997, 0.0, 0.0, 0.6554886698722839, 0.0, 0.038310255855321884, 0.4831685423851013, 1.3588621616363525, 0.0, 0.005094703286886215, 1.1703945398330688, 0.4854494333267212, 2.1725716590881348, 0.43387287855148315, 0.14122572541236877, 0.0, 0.038116395473480225, 0.0, 0.3312177360057831, 0.08792591094970703, 0.2646607458591461, 0.0, 0.0, 2.2066712379455566, 0.0, 0.7893181443214417, 0.0, 0.02467193454504013, 0.17742693424224854, 0.13516578078269958, 0.0, 0.0, 0.3031483590602875, 0.037223152816295624, 0.6579729914665222, 0.023265760391950607, 0.029342880472540855, 0.0, 0.0, 0.0, 0.0, 0.0, 0.039632827043533325, 2.5561776161193848, 0.22117727994918823, 0.0, 0.0, 0.04770885780453682, 0.0013655448565259576, 0.4526560306549072, 0.04222060367465019, 0.02843054011464119, 0.0, 0.004574143327772617, 0.6667953729629517, 1.1508978605270386, 0.026839416474103928, 0.008519795723259449, 0.011298938654363155, 0.12716864049434662, 0.9703917503356934, 0.17491087317466736, 0.5029469132423401, 0.0036325843539088964, 0.9404662251472473, 0.04156583547592163, 1.4251219034194946, 0.004664051346480846, 0.12143738567829132, 0.9905672073364258, 0.0, 0.0, 0.0031365619506686926, 0.012676160782575607, 0.0, 1.2074694633483887, 0.002706746570765972, 0.0, 0.0, 0.7249718308448792, 1.5011041164398193, 1.168335199356079, 1.1650975942611694, 0.5607572197914124, 0.32729634642601013, 0.22437313199043274, 0.0, 0.025555221363902092, 0.142671138048172, 0.1672636717557907, 0.026581404730677605, 0.0, 0.0, 0.05679922178387642, 1.2229574918746948, 3.4512643814086914, 0.0, 0.18432484567165375, 0.0, 2.0200247764587402, 0.3689338266849518, 0.0, 0.0, 0.0, 0.7446264028549194, 0.004642530344426632, 0.0, 0.12511226534843445, 0.13349099457263947, 0.025836467742919922, 0.0, 0.0, 0.38661715388298035, 0.0, 0.020900065079331398, 0.0, 0.04400588944554329, 1.6951497793197632, 0.020788757130503654, 1.0059086084365845, 0.0, 0.17423497140407562, 0.017566291615366936, 0.4082655608654022, 0.2923625111579895, 0.6477169990539551, 0.23984751105308533, 0.05047490820288658, 0.0, 0.5045880675315857, 0.0, 0.0, 1.671077847480774, 0.40069645643234253, 0.016245044767856598, 1.2750301361083984, 0.39264053106307983, 0.300208181142807, 0.0, 0.4104323983192444, 0.0, 2.4406277589150704e-05, 0.145049050450325, 0.0, 1.0085666179656982, 0.06528128683567047, 0.0039004110731184483, 1.018136739730835, 0.2149481475353241, 2.192781448364258, 0.0, 0.0, 0.011439002119004726, 0.11518898606300354, 2.2104310989379883, 0.0, 0.0, 0.5638720989227295, 0.0738103911280632, 0.0, 0.8387234210968018, 0.9617032408714294, 0.1486901491880417, 0.0, 0.0, 2.8731086254119873, 0.003554548602551222, 0.0, 0.06780610978603363, 0.007101234048604965, 1.8970978260040283, 0.0, 0.0, 0.04603158310055733, 0.3108736276626587, 0.006454857066273689, 0.0, 1.0249816179275513, 0.5134560465812683, 0.012271852232515812, 0.0, 0.0, 0.07302268594503403, 0.14251376688480377, 0.18602703511714935, 0.10267377644777298, 0.14458094537258148, 0.011496447026729584, 1.2110610008239746, 0.0, 0.0, 0.0, 0.14589034020900726, 0.0, 0.23458339273929596, 0.0, 1.8524811267852783, 0.00014721130719408393, 0.0, 1.1149678230285645, 0.0, 1.396628737449646, 0.0, 0.0, 2.5875277519226074, 0.0, 0.04780739173293114, 0.4723673164844513, 0.0, 0.0, 0.0, 0.24625593423843384, 0.0, 0.0, 0.0, 0.0, 1.2038463354110718, 0.10492432862520218, 2.6507232189178467, 0.09357934445142746, 1.0559577941894531, 0.026699524372816086, 0.04795484244823456, 0.10654108971357346, 0.0, 0.41192135214805603, 0.0, 0.019514288753271103, 0.0072601912543177605, 0.047629669308662415, 0.1458287090063095, 0.0, 0.03529110550880432, 0.012774749659001827, 0.11431051045656204, 0.0, 0.6084051728248596, 0.0, 0.046320583671331406, 0.16344089806079865, 0.0, 0.0, 0.02321123145520687, 0.043732255697250366, 0.0, 0.0, 1.3900524377822876, 0.0, 0.0, 0.004791785031557083, 0.075041763484478, 1.856702208518982, 0.0, 0.013314325362443924, 0.009204076603055, 0.15514516830444336, 0.0, 0.05705949291586876, 0.025803089141845703, 0.050140492618083954, 0.0, 0.0, 2.274003267288208, 0.0, 0.44960910081863403, 0.25270166993141174, 0.3660622537136078, 0.01958724483847618, 0.0, 0.01468097884207964, 0.012553497217595577, 0.9226181507110596, 3.0524239540100098, 1.8435786962509155, 0.00029666084446944296, 0.08996137976646423, 0.0, 0.48456206917762756, 1.0541030168533325, 0.0, 0.1267957240343094, 0.03184328228235245, 0.23614463210105896, 0.8853287100791931, 0.6079646944999695, 0.0011838406790047884, 0.0, 0.1268664002418518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0074075679294764996, 0.5947166085243225, 1.3027375936508179, 1.0241316556930542, 0.0, 0.007096290588378906, 0.0, 0.2639763653278351, 0.040988385677337646, 0.0, 0.46653446555137634, 0.01611344702541828, 2.385587215423584, 0.018082667142152786, 0.0, 0.0, 0.09036603569984436, 0.2244286984205246, 0.0, 0.11861258000135422, 0.060983121395111084, 0.24863381683826447, 0.0, 0.0, 1.146114706993103, 0.05614287406206131, 0.0, 0.4406859278678894, 0.0, 1.7354110479354858, 1.8731062412261963, 0.36158984899520874, 0.4931163489818573, 0.07544508576393127, 0.11764634400606155, 2.1540093421936035, 0.17547224462032318, 0.7557171583175659, 0.2088613659143448, 0.03318403288722038, 0.0, 0.0, 0.0, 0.0011616628617048264, 0.010926003567874432, 1.1787467002868652, 1.4596892595291138, 0.0, 0.0, 0.0, 1.1326402425765991, 0.0, 1.8309739828109741, 0.08075366169214249, 0.0, 0.08241312950849533, 0.4298108220100403, 0.3444499671459198, 0.20740018784999847, 0.948412299156189, 1.4185370206832886, 0.00032530026510357857, 0.01625397801399231, 0.02116447500884533, 0.0, 0.0, 0.37579065561294556, 0.0, 0.038054630160331726, 0.03999096155166626, 0.935822606086731, 0.6668369770050049, 0.0655142217874527, 0.054546162486076355, 0.6507202386856079, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0325469970703125, 0.0, 0.0, 0.0, 0.020888270810246468, 1.6597284078598022, 0.05397607013583183, 0.0, 0.018758263438940048, 0.47745123505592346, 1.471491813659668, 0.0020899870432913303, 0.0, 0.0017072035698220134, 0.4105416536331177, 0.07822126150131226, 0.5741355419158936, 3.437079906463623, 0.3024252653121948, 0.0, 0.924774169921875, 0.012314708903431892, 0.04658897593617439, 0.7721437811851501, 0.0, 0.23881103098392487, 0.009995976462960243, 0.0385454036295414, 0.0, 0.0, 0.4467906653881073, 0.37343472242355347, 0.10263042896986008, 0.5863357186317444, 1.5000039339065552, 0.10646101832389832, 0.0, 1.793387770652771, 0.0, 0.0, 0.5552084445953369, 0.015318763442337513, 0.9563084840774536, 0.35162073373794556, 0.40839314460754395, 0.3281323313713074, 0.0, 1.2346439361572266, 0.0, 0.2850234806537628, 0.0, 0.022164227440953255, 0.0, 0.14951567351818085, 0.07246699929237366, 0.0, 0.0008973832009360194, 1.7312991619110107, 0.0, 0.5797852277755737, 0.009752877056598663, 0.008673512376844883, 0.0, 0.0, 0.0, 1.848596215248108, 0.04873425140976906, 0.011457370594143867, 0.00029490917222574353, 0.030053624883294106, 3.4703996181488037, 0.0, 0.0, 1.9226723909378052, 0.255751371383667, 1.3640401363372803, 1.6003642082214355, 0.0, 0.0, 0.0, 0.0, 0.566791296005249, 0.0954667404294014, 0.1009601280093193, 0.00854913517832756, 0.3704533576965332, 0.5558788180351257, 0.07254756987094879, 1.6578353643417358, 0.07988539338111877, 0.0851428285241127, 0.007838735356926918, 1.7734060287475586, 0.6031282544136047, 0.009703382849693298, 0.0, 0.0, 0.40906649827957153, 0.4101932942867279, 0.0, 0.053246837109327316, 0.33500826358795166, 0.18840476870536804, 0.0, 0.0, 0.0, 0.0, 0.07989715039730072, 0.5999467372894287, 0.0067465840838849545, 0.07387810200452805, 0.0, 0.005647172685712576, 0.0, 0.4507969319820404, 0.1388162523508072, 0.0, 0.1520252376794815, 0.0, 0.04588937386870384, 0.062489647418260574, 0.0, 0.0, 0.3217198848724365, 0.21135637164115906, 0.20806297659873962, 0.6640563607215881, 0.009206266142427921, 0.0, 0.08476603031158447, 0.12671297788619995, 0.0, 0.31254810094833374, 0.04447469860315323, 0.042023465037345886, 0.0, 0.009259779006242752, 0.5046424269676208, 0.0002760692441370338, 0.8418494462966919, 0.04471272975206375, 0.19887308776378632, 0.00724696135148406, 0.36964812874794006, 0.23855866491794586, 0.04014520347118378, 0.0, 0.05107123404741287, 0.0, 0.0, 0.0, 0.02714996039867401, 1.227285385131836, 0.14795050024986267, 0.0, 0.0, 0.04178861528635025, 0.0, 0.012892285361886024, 0.24529127776622772, 0.009107084013521671, 0.5409285426139832, 0.05255173519253731, 0.0, 0.39373043179512024, 0.030097318813204765, 0.0, 0.0, 0.20046086609363556, 3.5248847007751465, 0.0, 0.059587929397821426, 0.15039469301700592, 0.05821899324655533, 0.018732499331235886, 0.0, 0.16525012254714966, 0.43726465106010437, 0.9341974854469299, 2.227938413619995, 0.0, 0.44126570224761963, 0.05596248432993889, 0.0, 0.06219090148806572, 0.0034995274618268013, 0.0, 0.0, 0.0, 0.0, 0.04224414378404617, 0.0, 0.024488458409905434, 0.0, 0.012822267599403858, 0.0, 0.38388925790786743, 0.1066511794924736, 0.02954324334859848, 0.18193268775939941, 0.006392182316631079, 0.0, 0.0, 0.0, 0.14358803629875183, 0.0, 0.7324973344802856, 0.12057055532932281, 8.399145735893399e-05, 0.018607499077916145, 0.0, 0.12200343608856201, 0.0, 0.11110436171293259, 0.09035243839025497, 0.10326489806175232, 0.0, 0.0, 0.0, 0.0, 0.4892474114894867, 0.3499392569065094, 0.05622357875108719, 0.017980409786105156, 0.0017286465736106038, 0.00023571326164528728, 0.02351825125515461, 0.29052841663360596, 0.0, 0.7006430625915527, 1.1663563251495361, 0.3763107359409332, 0.22087614238262177, 0.00383550301194191, 0.0, 0.07813578099012375, 0.4277460277080536, 0.18759356439113617, 0.05242934450507164, 0.039696644991636276, 0.3729512095451355, 0.5284265279769897, 0.0, 0.0, 0.008012878708541393, 0.05236872285604477, 0.04359559714794159, 1.9694643020629883, 0.009299813769757748, 0.0, 0.33639097213745117, 2.734781265258789, 0.4339611232280731, 0.4289894998073578, 0.0, 0.7604787349700928, 0.39283040165901184, 0.0, 0.007008002605289221, 0.643947184085846, 0.0, 0.01888885721564293, 0.9632651805877686, 0.07581627368927002, 2.6026010513305664, 0.031434934586286545, 0.023609444499015808, 2.469672918319702, 0.6468852162361145, 0.0, 0.0, 0.0, 0.567699134349823, 0.3811088502407074, 0.4280441701412201, 0.06855437904596329, 0.03920356556773186, 0.05113589018583298, 0.7981238961219788, 0.08371884375810623, 0.1191498190164566, 0.021405434235930443, 0.019690893590450287, 0.38074344396591187, 0.5562971234321594, 0.07668881863355637, 0.0, 0.09178679436445236, 1.9555063247680664, 0.043413542211055756, 0.08040619641542435, 0.4810234010219574, 0.5396339297294617, 0.40319177508354187, 0.021216392517089844, 0.0, 0.07434667646884918, 0.0, 1.026857852935791, 0.0, 0.15744882822036743, 0.6627213358879089, 0.0, 0.04276757314801216, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.009590744972229, 1.460911512374878, 2.245382070541382, 0.0, 0.5946961045265198, 0.6726379990577698, 0.0, 0.0, 0.02437562309205532, 0.0, 0.995012104511261, 0.0, 3.092411518096924, 1.2523130178451538, 0.15628309547901154, 0.2514021098613739, 0.01110586803406477, 0.2921101748943329, 0.032827142626047134, 0.5532492399215698, 0.0, 0.8201202154159546, 0.5356215834617615, 0.0, 1.7732771635055542, 0.0021240273490548134, 0.0, 0.21026545763015747, 0.11674326658248901, 0.0, 0.0, 1.7077772617340088, 0.0, 0.01028490997850895, 0.0, 0.6192612051963806, 0.0, 1.471504807472229, 0.0, 0.0, 0.030110377818346024, 0.05337805673480034, 0.007400288712233305, 0.18237003684043884, 0.28560933470726013, 0.00505678029730916, 0.010012003593146801, 0.08047615736722946, 1.7810190916061401, 0.0, 0.10380060970783234, 0.0, 0.0, 0.0, 0.06941061466932297, 0.11546177417039871, 1.804550051689148, 0.0, 1.9046229124069214, 1.205588459968567, 1.0108606815338135, 0.0004469326522666961, 0.02059336006641388, 0.11015832424163818, 0.0, 0.0, 0.029984084889292717, 0.8376603126525879, 0.0024628250394016504, 0.16418732702732086, 0.0, 0.35962769389152527, 1.6170531511306763, 0.07924287021160126, 0.5396497845649719, 1.7441725730895996, 0.0, 0.9232961535453796, 0.2529747486114502, 0.17925295233726501, 0.31756672263145447, 0.0, 0.0, 0.30014631152153015, 0.0, 0.5952181816101074, 0.20110978186130524, 0.0043719010427594185, 1.096006155014038, 0.0, 0.0, 0.0242718867957592, 0.008324846625328064, 0.0, 1.0393173694610596, 0.06676435470581055, 2.377821922302246, 0.012366898357868195, 0.27340880036354065, 0.0, 1.7831486463546753, 0.002582530491054058, 0.0, 0.8626291155815125, 0.0, 0.1968877613544464, 0.0, 0.0, 2.147880792617798, 2.1098947525024414, 0.0, 0.00214539747685194, 0.0, 0.010118679143488407, 0.004054891876876354, 0.0, 0.0, 0.9320866465568542, 0.0, 0.2635551691055298, 1.2842657566070557, 0.1896202266216278, 0.015247880481183529, 0.47141337394714355, 0.5866702198982239, 0.06745857745409012, 0.0, 0.0, 0.529649555683136, 1.1194814443588257, 0.0, 0.0, 0.7523294687271118, 0.06851039826869965, 0.4842885732650757, 0.17991410195827484, 0.0, 0.0, 0.3278869390487671, 0.0, 0.0, 0.0, 1.6261799335479736, 0.13467314839363098, 0.0, 1.2193586826324463, 0.160782590508461, 0.1904442012310028, 0.5513027906417847, 0.0619388222694397, 0.2918570935726166, 0.0, 0.0, 0.198114275932312, 0.0, 1.6228312253952026, 0.04022682085633278, 0.001947101322002709, 0.0, 1.6658940315246582, 0.0, 1.5344336032867432, 0.0, 0.0, 0.1282002180814743, 0.0, 0.0, 0.3716050684452057, 0.0555017925798893, 0.058664605021476746, 0.0, 0.544501543045044, 0.0, 0.8196640014648438, 0.0, 1.3639709949493408, 0.22280557453632355, 1.5356688499450684, 0.0, 0.0, 0.0, 0.024490389972925186, 0.0, 0.040884748101234436, 0.05162954330444336, 0.41019999980926514, 0.6918546557426453, 0.0, 0.2822684943675995, 1.2871953248977661, 0.000725249876268208, 0.8851865530014038, 0.025152839720249176, 0.3289318382740021, 0.0, 0.3452489376068115, 0.0, 0.0, 0.35867249965667725, 0.0, 1.2436447143554688, 0.2874341607093811, 1.7231563329696655, 0.19015179574489594, 1.115280270576477, 0.0, 0.03783891722559929, 0.8887985944747925, 0.0, 0.33071961998939514, 1.3131914138793945, 0.005457615479826927, 0.2618359923362732, 0.0928208976984024, 0.020979132503271103, 0.0, 0.22278104722499847, 0.6542335748672485, 0.2148303985595703, 0.008960762992501259, 0.0, 0.0, 0.0, 0.0, 1.3152492046356201, 0.009928221814334393, 0.020248588174581528, 0.6594177484512329, 0.0, 0.0, 0.0, 0.4046473503112793, 0.0, 0.006757103838026524, 0.0, 1.12484610080719, 0.022877031937241554, 0.0, 0.0, 0.43153926730155945, 0.9771878123283386, 0.0, 0.009654541499912739, 4.764925956726074, 0.011327548883855343, 0.7918128967285156, 0.5074611902236938, 0.0, 0.016691002994775772, 0.0, 1.2339807748794556, 0.6475016474723816, 0.1279715895652771, 0.0, 0.7789738178253174, 0.0, 0.4905628263950348, 0.2451840043067932, 0.8062134385108948, 0.6231980323791504, 0.0, 0.08223196864128113, 0.028273368254303932, 0.6233394145965576, 0.021534249186515808, 0.0, 0.694908857345581, 0.0, 0.7173866033554077, 0.013895424082875252, 0.023632420226931572, 0.11415112018585205, 3.0940144062042236, 0.0, 0.5014288425445557, 0.0, 0.14817476272583008, 1.90082585811615, 0.22996120154857635, 0.0, 2.7871012687683105, 1.106039047241211, 0.559901237487793, 0.7671319842338562, 1.8323404788970947, 0.4972783029079437, 0.0, 0.0, 2.351653575897217, 0.005640399642288685, 1.092010498046875, 0.5487221479415894, 0.00272161141037941, 0.0, 0.0965835228562355, 0.014296133071184158, 0.010683954693377018, 0.0, 0.0, 0.027149735018610954, 0.0, 0.184805229306221, 0.14281582832336426, 0.0, 0.0, 0.3014276921749115, 1.7894333600997925, 1.3795440196990967, 0.0, 1.069760799407959, 0.0, 0.2211180329322815, 0.00011108359467471018, 0.0, 2.9823954105377197, 0.4795408546924591, 0.0, 0.016176851466298103, 2.627920627593994, 0.7458103895187378, 0.0, 0.0, 0.041929781436920166, 0.0, 0.06992137432098389, 0.0, 0.37632977962493896, 1.1300842761993408, 0.44121477007865906, 0.4628390073776245, 0.3831147849559784, 0.041283316910266876, 1.5188730955123901, 0.0, 0.035817358642816544, 0.07319407910108566, 0.00727802375331521, 0.11129175871610641, 0.0, 0.8844254016876221, 0.0, 0.8146612048149109, 0.0358830951154232, 1.8624070882797241, 0.009969711303710938, 0.9531575441360474, 0.1344781517982483, 1.657353401184082, 0.08431652933359146, 0.0, 0.02991504967212677, 0.0, 0.0, 0.31442007422447205, 1.3457144498825073, 0.23026707768440247, 0.0, 0.5559529066085815, 0.0, 0.0, 0.0, 0.5078741312026978, 0.44690442085266113, 0.0, 2.021080255508423, 0.09233924001455307, 0.0, 0.09272731840610504, 0.0, 0.002856021048501134, 0.0, 0.7628628611564636, 0.05686419457197189, 0.7746533155441284, 0.0, 0.041754987090826035, 0.022884413599967957, 0.16063545644283295, 0.09713729470968246, 0.0, 0.0, 0.8400704264640808, 0.0, 0.0, 0.0, 0.0, 0.2422720491886139, 0.5712136030197144, 0.011304500512778759, 2.7603893280029297, 0.0, 0.2820863425731659, 0.0, 0.053883492946624756, 0.10467274487018585, 0.10818106681108475, 2.6752729415893555, 0.0, 0.09891205281019211, 1.5738120079040527, 3.103614091873169, 0.07769981771707535, 0.0, 0.0, 0.0, 1.185666799545288, 0.5204069018363953, 0.15680623054504395, 2.297813653945923, 0.0, 0.9722599387168884, 0.042446136474609375, 0.08237136900424957, 0.012415341101586819, 0.030136283487081528, 0.11059033125638962, 0.6936418414115906, 0.0, 0.0, 0.5857627391815186, 0.0880875289440155, 0.0, 0.18152053654193878, 0.0, 0.0, 0.0, 0.06677404046058655, 0.014369643293321133, 0.0, 0.0, 0.003216354176402092, 0.0, 0.15376833081245422, 0.0452156662940979, 0.01581568643450737, 1.6330041885375977, 0.0, 0.13836222887039185, 0.4069601893424988, 0.0, 0.09830888360738754, 0.11289230734109879, 2.9954419136047363, 0.0, 0.5045167207717896, 0.0, 0.0, 1.217873454093933, 0.0, 0.0, 0.010889238677918911, 0.023810693994164467, 0.0, 1.5569549798965454, 0.0, 0.0, 0.4412268102169037, 0.0, 0.048150189220905304, 0.0, 0.03531484678387642, 3.1210367679595947, 0.1665652096271515, 2.0910143852233887, 0.07374557107686996, 0.008991270326077938, 0.16944600641727448, 0.0, 1.3383605480194092, 0.09135980159044266, 2.136078357696533, 0.0, 1.8972312211990356, 0.0, 0.1357821375131607, 0.0, 0.9524877667427063, 0.007264536339789629, 0.02052038535475731, 1.3317036628723145, 0.055699121206998825, 0.08313979208469391, 0.7230888605117798, 0.0, 0.2815468907356262, 0.32152605056762695, 0.0, 0.0, 0.0, 0.22932764887809753, 0.020417388528585434, 0.06495942920446396, 0.1815367341041565, 0.0, 0.462481290102005, 0.0022688787430524826, 0.0, 0.0025614232290536165, 0.0, 0.20758286118507385, 0.0, 0.041524723172187805, 0.06639993190765381, 0.007980570197105408, 0.0, 0.144447922706604, 0.0, 0.0765857920050621, 0.022262947633862495, 0.0, 0.003985774703323841, 0.16623084247112274, 0.0, 0.01315359678119421, 0.012368066236376762, 1.7194437980651855, 0.18654605746269226, 0.0, 0.0, 0.0, 2.5885093212127686, 0.0, 0.06421992182731628, 0.06979204714298248, 0.16584941744804382, 0.0, 0.0, 0.0, 0.0, 1.62373948097229, 0.0, 0.0, 0.0, 0.14805947244167328, 0.478143572807312, 0.0, 0.0, 0.008817663416266441, 0.0, 0.0, 0.007924440316855907, 0.6790974140167236, 1.0237082242965698, 0.025234971195459366, 0.0, 0.0, 1.3784987926483154, 0.0, 0.018337693065404892, 0.0, 0.7738051414489746, 0.0, 0.9734460711479187, 0.0, 0.0, 0.0, 0.0026874300092458725, 0.08248119801282883, 0.010929604060947895, 0.5727789998054504, 0.963536262512207, 0.7877128720283508, 0.5149758458137512, 0.10931889712810516, 0.0, 0.009570987895131111, 0.1442566066980362, 0.33385783433914185, 0.3965159058570862, 0.5879951119422913, 0.44680365920066833, 2.3745598793029785, 0.04724830016493797, 0.005513570737093687, 2.338339328765869, 0.10361938178539276, 0.0, 0.0, 0.7144885659217834, 0.4744420647621155, 0.46192049980163574, 0.027729559689760208, 0.0, 0.10405922681093216, 0.8057464361190796, 2.150573968887329, 1.8528529835748486e-05, 1.463398814201355, 0.02733686938881874, 0.0, 0.0092133404687047, 0.6595132946968079, 0.0, 0.40752309560775757, 2.081056594848633, 0.3670613765716553, 0.0, 0.0, 0.17820535600185394, 0.10020215064287186, 0.26675859093666077, 0.8879024982452393, 1.289176106452942, 0.0, 0.0, 0.07042600214481354, 0.0, 0.5503900647163391, 0.0, 1.4108091592788696, 0.0, 0.11590210348367691, 1.0226385593414307, 0.10036828368902206, 0.0, 0.04893467202782631, 1.5889480113983154, 0.21292631328105927, 0.0, 0.016207393258810043, 0.08010483533143997, 0.0, 0.0038048101123422384, 2.3286216259002686, 0.09878654032945633, 0.26411008834838867, 0.060642097145318985, 0.028435999527573586, 0.06155751645565033, 0.03653679043054581, 0.9328740239143372, 0.0, 0.8360158205032349, 0.0, 0.0009851796785369515, 0.30096665024757385, 0.34448063373565674, 0.24728922545909882, 0.0008596109109930694, 0.5876306891441345, 1.0267726182937622, 0.07869768142700195, 0.19669124484062195, 0.0, 0.0, 0.6670750379562378, 0.964006781578064, 0.0015814645448699594, 0.8978646993637085, 2.037294864654541, 0.0, 0.22994659841060638, 0.0, 1.1351033449172974, 0.32578974962234497, 0.9739148616790771, 0.0, 0.0, 0.0710933730006218, 0.9224037528038025, 0.07731714099645615, 0.03212478384375572, 0.0, 0.19270393252372742, 0.0, 0.25454550981521606, 0.748039722442627, 0.03215005621314049, 0.0, 0.0, 0.012535863555967808, 0.0, 0.0, 0.6208189129829407, 0.0, 0.09390214085578918, 0.031179048120975494, 0.0, 1.884487271308899, 0.18434657156467438, 0.0, 0.2923028767108917, 0.5349372625350952, 0.0, 0.018365558236837387, 1.1551237106323242, 0.0306211207062006, 0.4407730996608734, 0.16349270939826965, 0.0, 0.0, 0.0, 0.0, 0.020065754652023315, 1.2678333520889282, 0.0, 0.1729063242673874, 0.12708494067192078, 0.9260508418083191, 0.3225703537464142, 0.0, 0.0, 0.019739676266908646, 0.0, 0.0, 0.0, 0.002546378644183278, 0.03902383893728256, 1.4545706510543823, 0.0, 0.6368710994720459, 0.06935999542474747, 0.2502038776874542, 0.2652451992034912, 0.0, 0.1346220076084137, 0.0, 0.26965615153312683, 0.05143233761191368, 0.0, 0.4359497129917145, 0.20051687955856323, 0.016447875648736954, 0.1301131397485733, 0.0, 0.6988545656204224, 0.225228413939476, 1.7120355367660522, 0.0, 0.4158620238304138, 0.4597195088863373, 0.0, 0.0, 0.5275952219963074, 0.12239249050617218, 0.31253066658973694, 0.0, 0.7180054187774658, 0.07214052975177765, 0.05690949410200119, 0.0, 1.634879469871521, 0.005210059229284525, 0.0, 0.06830492615699768, 0.0, 0.7854646444320679, 0.6557407975196838, 0.012028742581605911, 0.0, 0.9979671835899353, 0.0, 0.0, 0.0, 1.3741097450256348, 1.191257357597351, 0.0, 0.10743538290262222, 3.7020883560180664, 0.0, 0.0, 0.20807071030139923, 0.0, 0.0054520489647984505, 0.12158972024917603, 0.0609910748898983, 0.0, 0.0, 0.0, 3.1735429763793945, 3.079936981201172, 0.0, 0.09762834012508392, 0.0, 0.010332428850233555, 0.22715328633785248, 0.0, 0.0, 0.12435531616210938, 0.0, 0.001129753771238029, 1.320728063583374, 0.0, 0.004976340569555759, 2.6387996673583984, 0.06097960099577904, 0.004471808206290007, 0.0, 0.9231905341148376, 0.024634137749671936, 3.345456838607788, 0.0, 2.9295175075531006, 0.0, 0.23022706806659698, 0.02718273550271988, 0.21361897885799408, 0.014530347660183907, 0.38856586813926697, 0.5507293343544006, 0.0, 0.0, 0.028122493997216225, 0.08034709095954895, 0.5161686539649963, 0.0, 0.0, 0.004159202333539724, 0.00047741131857037544, 0.004128203261643648, 1.0192296504974365, 0.07362833619117737, 0.0, 0.9662877321243286, 0.35904616117477417, 1.827622413635254, 3.3423140048980713, 0.31518006324768066, 0.0, 0.0, 0.006014478392899036, 0.04521973803639412, 0.0, 0.21468207240104675, 0.0, 0.3578740358352661, 0.0, 0.05101723596453667, 0.00650784419849515, 0.0, 0.46121126413345337, 1.5756661891937256, 0.0, 0.5337052941322327, 0.14807996153831482, 0.0039275228045880795, 0.0, 0.02951633743941784, 0.0, 0.3662363886833191, 0.0, 0.031012827530503273, 1.6172280311584473, 1.6194243431091309, 0.18067145347595215, 0.9568995833396912, 0.0, 0.22455982863903046, 0.6578031778335571, 0.11868790537118912, 0.01080881804227829, 1.0127663612365723, 0.0, 1.2778587341308594, 0.0, 0.03885231167078018, 1.0577844381332397, 0.545960545539856, 1.1046196222305298, 0.0, 2.3041934967041016, 0.1759888380765915, 0.0, 0.28575602173805237, 0.014281662181019783, 0.031122026965022087, 0.22659993171691895, 0.0, 0.0, 0.0, 0.14803169667720795, 0.006175839342176914, 0.0, 0.0, 0.0, 0.08362776041030884, 0.2639889717102051, 0.02095891907811165, 0.3108445107936859, 0.025247592478990555, 2.116753339767456, 0.6289348006248474, 0.0, 3.875120162963867, 0.0, 0.0, 0.0, 1.0324305295944214, 0.0, 0.049632422626018524, 0.07393208146095276, 0.5448353290557861, 0.6064687967300415, 0.0, 0.9512789249420166]"
}

반응형

'Python' 카테고리의 다른 글

[python] python elasticsearch client  (0) 2022.04.28
[python] 파이썬기초 2  (0) 2022.04.22
Conda  (0) 2022.03.31
[python] 파이썬기초 1  (0) 2022.03.30
python 3.7.9 install for mac  (0) 2020.11.26
Comments