sha
stringlengths
40
40
text
stringlengths
1
13.4M
id
stringlengths
2
117
tags
sequencelengths
1
7.91k
created_at
stringlengths
25
25
metadata
stringlengths
2
875k
last_modified
stringlengths
25
25
arxiv
sequencelengths
0
25
languages
sequencelengths
0
7.91k
tags_str
stringlengths
17
159k
text_str
stringlengths
1
447k
text_lists
sequencelengths
0
352
processed_texts
sequencelengths
1
353
tokens_length
sequencelengths
1
353
input_texts
sequencelengths
1
40
embeddings
sequencelengths
768
768
2330d906ebe06a5ba89655ac218cf79a4b98bd37
# Dataset of fresnel/フレネル/菲涅尔 (Neural Cloud) This is the dataset of fresnel/フレネル/菲涅尔 (Neural Cloud), containing 13 images and their tags. The core tags of this character are `purple_hair, purple_eyes, short_hair, goggles_on_head, bangs, breasts`, which are pruned in this dataset. Images are crawled from many sites (e.g. danbooru, pixiv, zerochan ...), the auto-crawling system is powered by [DeepGHS Team](https://github.com/deepghs)([huggingface organization](https://huggingface.co/deepghs)). ## List of Packages | Name | Images | Size | Download | Type | Description | |:-----------------|---------:|:----------|:---------------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------| | raw | 13 | 26.31 MiB | [Download](https://huggingface.co/datasets/CyberHarem/fresnel_neuralcloud/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). | | 800 | 13 | 11.98 MiB | [Download](https://huggingface.co/datasets/CyberHarem/fresnel_neuralcloud/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. | | stage3-p480-800 | 32 | 25.65 MiB | [Download](https://huggingface.co/datasets/CyberHarem/fresnel_neuralcloud/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | | 1200 | 13 | 22.55 MiB | [Download](https://huggingface.co/datasets/CyberHarem/fresnel_neuralcloud/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. | | stage3-p480-1200 | 32 | 39.26 MiB | [Download](https://huggingface.co/datasets/CyberHarem/fresnel_neuralcloud/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | ### Load Raw Dataset with Waifuc We provide raw dataset (including tagged images) for [waifuc](https://deepghs.github.io/waifuc/main/tutorials/installation/index.html) loading. If you need this, just run the following code ```python import os import zipfile from huggingface_hub import hf_hub_download from waifuc.source import LocalSource # download raw archive file zip_file = hf_hub_download( repo_id='CyberHarem/fresnel_neuralcloud', repo_type='dataset', filename='dataset-raw.zip', ) # extract files to your directory dataset_dir = 'dataset_dir' os.makedirs(dataset_dir, exist_ok=True) with zipfile.ZipFile(zip_file, 'r') as zf: zf.extractall(dataset_dir) # load the dataset with waifuc source = LocalSource(dataset_dir) for item in source: print(item.image, item.meta['filename'], item.meta['tags']) ``` ## List of Clusters List of tag clustering result, maybe some outfits can be mined here. ### Raw Text Version | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags | |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | 0 | 13 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | ![](samples/0/clu0-sample3.png) | ![](samples/0/clu0-sample4.png) | 1girl, solo, looking_at_viewer, crop_top, goggles, shirt, midriff, navel, black_shorts, jacket, jewelry, open_clothes, white_background, bare_shoulders, long_sleeves, off_shoulder, closed_mouth, full_body | ### Table Version | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | looking_at_viewer | crop_top | goggles | shirt | midriff | navel | black_shorts | jacket | jewelry | open_clothes | white_background | bare_shoulders | long_sleeves | off_shoulder | closed_mouth | full_body | |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:--------------------|:-----------|:----------|:--------|:----------|:--------|:---------------|:---------|:----------|:---------------|:-------------------|:-----------------|:---------------|:---------------|:---------------|:------------| | 0 | 13 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | ![](samples/0/clu0-sample3.png) | ![](samples/0/clu0-sample4.png) | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X |
CyberHarem/fresnel_neuralcloud
[ "task_categories:text-to-image", "size_categories:n<1K", "license:mit", "art", "not-for-all-audiences", "region:us" ]
2024-02-17T17:33:01+00:00
{"license": "mit", "size_categories": ["n<1K"], "task_categories": ["text-to-image"], "tags": ["art", "not-for-all-audiences"]}
2024-02-17T17:36:26+00:00
[]
[]
TAGS #task_categories-text-to-image #size_categories-n<1K #license-mit #art #not-for-all-audiences #region-us
Dataset of fresnel/フレネル/菲涅尔 (Neural Cloud) ========================================== This is the dataset of fresnel/フレネル/菲涅尔 (Neural Cloud), containing 13 images and their tags. The core tags of this character are 'purple\_hair, purple\_eyes, short\_hair, goggles\_on\_head, bangs, breasts', which are pruned in this dataset. Images are crawled from many sites (e.g. danbooru, pixiv, zerochan ...), the auto-crawling system is powered by DeepGHS Team(huggingface organization). List of Packages ---------------- ### Load Raw Dataset with Waifuc We provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code List of Clusters ---------------- List of tag clustering result, maybe some outfits can be mined here. ### Raw Text Version ### Table Version
[ "### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.", "### Raw Text Version", "### Table Version" ]
[ "TAGS\n#task_categories-text-to-image #size_categories-n<1K #license-mit #art #not-for-all-audiences #region-us \n", "### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.", "### Raw Text Version", "### Table Version" ]
[ 44, 61, 5, 4 ]
[ "passage: TAGS\n#task_categories-text-to-image #size_categories-n<1K #license-mit #art #not-for-all-audiences #region-us \n### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.### Raw Text Version### Table Version" ]
[ -0.06056777387857437, 0.1428852677345276, 0.0003680216323118657, 0.11658099293708801, 0.04550790786743164, 0.11912374198436737, 0.16325801610946655, 0.1310805380344391, 0.22002576291561127, -0.007116112392395735, 0.08005616068840027, 0.025980781763792038, 0.10829687118530273, 0.2076374590396881, 0.02867997996509075, -0.16697201132774353, -0.05649708956480026, 0.07042671740055084, 0.08365700393915176, 0.052131183445453644, 0.02592923305928707, -0.09419567137956619, 0.11179038882255554, -0.038744717836380005, -0.12454055994749069, -0.0585198737680912, -0.11416282504796982, 0.020839890465140343, 0.013306557200849056, 0.021944720298051834, 0.0962887778878212, 0.03607887402176857, 0.06416051089763641, -0.12775902450084686, 0.053518541157245636, -0.039031628519296646, -0.05270588397979736, 0.02906504087150097, 0.12017025798559189, 0.027798952534794807, -0.1449868530035019, -0.04997425153851509, -0.1341349184513092, 0.10816025733947754, -0.07523134350776672, -0.09790360182523727, -0.04817730933427811, 0.0996984988451004, 0.042856328189373016, 0.028749780729413033, -0.03289588913321495, 0.06494595110416412, -0.014109360054135323, 0.050710346549749374, 0.10873549431562424, -0.17785607278347015, -0.07059342414140701, 0.21942733228206635, -0.0003579944896046072, -0.013852175325155258, -0.1182907298207283, 0.06007043272256851, 0.07890354096889496, -0.007255760952830315, -0.0483785979449749, -0.0675291121006012, -0.2758270800113678, -0.05189996585249901, -0.02765267714858055, 0.06514670699834824, 0.3095196485519409, 0.11004164814949036, -0.044782571494579315, -0.08295935392379761, -0.006207056809216738, -0.1193556934595108, -0.10545776039361954, 0.12395453453063965, 0.015276663936674595, 0.07426527142524719, -0.09352243691682816, -0.07516352832317352, -0.10534942895174026, -0.103700652718544, -0.06107666715979576, -0.08996964991092682, -0.025395652279257774, 0.04975387454032898, -0.10508036613464355, 0.04146378114819527, -0.09813681244850159, -0.11518322676420212, -0.023586591705679893, -0.06460206210613251, -0.08920851349830627, -0.003244469640776515, 0.028136789798736572, -0.047021325677633286, 0.1665882170200348, 0.02307613380253315, 0.006787101272493601, 0.054903190582990646, -0.0790734738111496, 0.09950575977563858, 0.08764483034610748, -0.010807367041707039, -0.07338257133960724, -0.1363120973110199, 0.0032848292030394077, -0.06858330965042114, 0.025331854820251465, -0.005812880117446184, -0.09158840775489807, -0.07091861963272095, -0.20385250449180603, 0.029226383194327354, 0.026076046749949455, 0.035915788263082504, -0.03213813155889511, -0.055013034492731094, 0.1415221393108368, -0.03551199659705162, -0.060700494796037674, 0.052139509469270706, 0.0175301693379879, 0.07101588696241379, 0.007796936668455601, 0.043514735996723175, 0.04950962960720062, -0.06043723225593567, -0.0906783789396286, 0.007501866668462753, 0.047763608396053314, -0.0005182523746043444, 0.03197629749774933, -0.08443576842546463, -0.03821375593543053, -0.06656645238399506, -0.22550716996192932, 0.02256174385547638, 0.02353413961827755, -0.017254870384931564, 0.014232967048883438, 0.03746093437075615, 0.05370816960930824, -0.06483131647109985, 0.01682276278734207, 0.054385099560022354, -0.09712400287389755, 0.03679494559764862, -0.07082853466272354, 0.14100567996501923, -0.09166330844163895, -0.007849487476050854, -0.07740174978971481, 0.022262275218963623, -0.05757004767656326, 0.0670338124036789, -0.06333911418914795, 0.22295083105564117, -0.07540173828601837, 0.032030586153268814, -0.11676698178052902, -0.015747088938951492, -0.040550898760557175, 0.20228023827075958, -0.24980899691581726, 0.023733986541628838, 0.129234179854393, -0.08680058270692825, -0.15893028676509857, 0.09782561659812927, 0.02804521657526493, 0.07385969907045364, -0.00993076991289854, 0.25308701395988464, 0.012529200874269009, -0.04170221835374832, -0.08124548941850662, 0.10193389654159546, -0.026082845404744148, -0.09846335649490356, 0.0927167758345604, -0.011336571536958218, -0.04001680016517639, 0.008216693997383118, 0.11369086802005768, 0.03300970792770386, -0.046763066202402115, -0.13178405165672302, -0.020311659201979637, -0.12312270700931549, 0.0332891009747982, 0.06242886185646057, 0.03571641445159912, -0.0020737831946462393, 0.033886831253767014, -0.19188402593135834, 0.12185350060462952, -0.02300534024834633, -0.012298239395022392, -0.03587689250707626, 0.049544982612133026, -0.1096111610531807, -0.005026396829634905, -0.03297613188624382, -0.07528192549943924, 0.04695576801896095, 0.032161809504032135, 0.032974738627672195, -0.07662955671548843, 0.05971444770693779, 0.014818688854575157, -0.05143161863088608, 0.09137671440839767, 0.07852409034967422, -0.05769677832722664, -0.04769500717520714, -0.09088637679815292, -0.07534419745206833, -0.0575183741748333, 0.06557203829288483, -0.17107561230659485, -0.01024219486862421, 0.11067692935466766, 0.025439640507102013, 0.040017906576395035, -0.06062997505068779, 0.17756298184394836, -0.030585208907723427, -0.06190725415945053, -0.040943559259176254, 0.09769701957702637, -0.019157059490680695, -0.04555562138557434, 0.01052568107843399, 0.0861014872789383, -0.023098904639482498, 0.15354815125465393, -0.02755286730825901, -0.09308218210935593, -0.09194192290306091, -0.043686799705028534, -0.026820935308933258, -0.10422000288963318, 0.03991572558879852, -0.061963386833667755, 0.002163912169635296, 0.027012988924980164, -0.006405688356608152, 0.030585767701268196, 0.02778414450585842, 0.05820842087268829, -0.021298304200172424, -0.032607581466436386, 0.109773650765419, -0.1722910851240158, 0.1114993542432785, 0.13196797668933868, 0.034958865493535995, 0.21729564666748047, -0.018764061853289604, -0.008318998850882053, 0.010340031236410141, 0.036444034427404404, -0.015703804790973663, 0.18439458310604095, -0.24826371669769287, 0.028264425694942474, 0.0849744975566864, -0.09788601845502853, 0.0013086525723338127, -0.08047153800725937, -0.07494150102138519, -0.027035990729928017, -0.08268488943576813, -0.022495487704873085, 0.021848194301128387, -0.0510525181889534, -0.002697830554097891, -0.0159380491822958, 0.047126319259405136, 0.01982598379254341, -0.05365948751568794, -0.04728511720895767, 0.09874521940946579, 0.03765644133090973, -0.05380381643772125, -0.0917879045009613, -0.12539927661418915, -0.14941422641277313, 0.019937308505177498, 0.04021664708852768, -0.1369117796421051, -0.01622610352933407, -0.05658677592873573, 0.0059041837230324745, 0.07515611499547958, 0.02750200405716896, -0.011549362912774086, -0.027613000944256783, -0.056971535086631775, -0.10828518867492676, 0.03546522557735443, -0.025793982669711113, -0.04754815250635147, 0.0729597732424736, -0.11063029617071152, 0.13915611803531647, 0.10513068735599518, 0.06019572541117668, 0.07167352735996246, -0.020455900579690933, 0.16666162014007568, -0.1135433241724968, 0.07949472218751907, 0.05714169144630432, 0.01617315225303173, -0.0033850963227450848, 0.1392807960510254, 0.07822858542203903, -0.11485456675291061, 0.01649930700659752, 0.0659264624118805, -0.10927750170230865, -0.13765156269073486, -0.08919930458068848, -0.1098841056227684, 0.14360472559928894, 0.10543306916952133, 0.055094171315431595, -0.008754521608352661, 0.19365760684013367, -0.012459862045943737, 0.11629821360111237, -0.060265135020017624, -0.001182127045467496, -0.0967511311173439, 0.028548067435622215, 0.015706980600953102, -0.13472138345241547, -0.020705696195364, 0.13436934351921082, 0.11988531053066254, 0.17751117050647736, 0.05756404623389244, 0.1669720560312271, 0.0620209239423275, 0.08739733695983887, 0.0973203033208847, 0.09824824333190918, -0.003385010873898864, -0.01174256019294262, -0.009840509854257107, -0.11808888614177704, 0.12640166282653809, 0.008536653593182564, 0.03328922018408775, -0.07603447884321213, 0.041852522641420364, -0.19561190903186798, 0.08676237612962723, 0.2662656307220459, 0.13238421082496643, -0.2130252569913864, 0.02187363989651203, 0.057548727840185165, 0.10131470859050751, -0.04166566953063011, 0.03863963857293129, 0.15180446207523346, -0.044378504157066345, 0.14485260844230652, -0.03934125602245331, 0.13761593401432037, -0.08993841707706451, -0.002561005996540189, 0.028425363823771477, -0.052699554711580276, -0.049131326377391815, 0.04007065296173096, 0.08406958729028702, 0.20620964467525482, 0.06231911480426788, 0.02514495514333248, -0.052091311663389206, -0.09191302955150604, 0.1411287933588028, 0.1319933533668518, 0.19725032150745392, 0.004370573908090591, 0.11569846421480179, -0.11193177849054337, -0.09768734127283096, 0.03489493206143379, 0.01887678913772106, -0.0481451116502285, -0.0058238268829882145, 0.08338964730501175, -0.0011851191520690918, -0.020514076575636864, 0.2429020255804062, -0.15395450592041016, -0.028766348958015442, -0.018185274675488472, 0.20947031676769257, 0.03476950153708458, 0.05297542363405228, -0.0028412239626049995, -0.0919366404414177, 0.12701071798801422, 0.009368033148348331, -0.0467972531914711, -0.07945683598518372, -0.07607144862413406, 0.07295151054859161, 0.0033908793702721596, -0.019113952293992043, -0.06424721330404282, 0.057646963745355606, -0.07576420903205872, -0.08068043738603592, 0.02056441828608513, -0.027442919090390205, -0.036279067397117615, -0.0699404925107956, -0.03204023838043213, -0.07006490975618362, 0.007021276280283928, 0.00880422256886959, 0.008445353247225285, 0.025229379534721375, -0.1443626582622528, 0.06101659685373306, -0.07046619057655334, -0.0022374021355062723, 0.1308000385761261, -0.04215288162231445, -0.014171579852700233, -0.030100012198090553, -0.04281031712889671, 0.18909983336925507, 0.1812591701745987, -0.10724806040525436, -0.00840049423277378, 0.12792575359344482, -0.024788103997707367, -0.3187218904495239, -0.0044951667077839375, -0.0730748325586319, -0.032930366694927216, 0.025424007326364517, -0.15653270483016968, 0.1306859701871872, 0.085330069065094, -0.05402332916855812, 0.19986344873905182, -0.15700657665729523, -0.10088611394166946, 0.07355795800685883, 0.09669850766658783, 0.15795643627643585, -0.21399495005607605, -0.03792818263173103, -0.08970680832862854, -0.22459501028060913, 0.1646786779165268, -0.2396935224533081, 0.156635120511055, -0.020555861294269562, -0.025779446586966515, -0.007073562126606703, -0.022447878494858742, 0.1552649736404419, 0.13479048013687134, 0.08684605360031128, -0.04376395419239998, 0.007372909691184759, 0.10759281367063522, -0.01300759892910719, 0.0799500122666359, -0.055568937212228775, -0.044278986752033234, -0.1711588203907013, -0.003979063127189875, 0.017878515645861626, 0.07270903885364532, 0.0418451763689518, -0.08257319033145905, -0.11704827100038528, 0.05039593577384949, -0.029647110030055046, 0.056016530841588974, 0.2601388692855835, 0.0009578251629136503, 0.06289535760879517, 0.1650095134973526, 0.015400785021483898, -0.007668273523449898, -0.15260030329227448, -0.06366822123527527, -0.07826440036296844, 0.09279736131429672, -0.20341956615447998, 0.009507115930318832, 0.06797578185796738, 0.07756782323122025, 0.06056210398674011, 0.06808006018400192, 0.025644270703196526, 0.11793660372495651, 0.11555102467536926, -0.014873293228447437, -0.14824643731117249, -0.01621919870376587, -0.24955067038536072, -0.0752980038523674, -0.0320480577647686, 0.026848237961530685, 0.016784338280558586, 0.06355622410774231, -0.0030241634231060743, 0.021652499213814735, -0.07937014847993851, 0.06967651098966599, 0.054862674325704575, 0.018068386241793633, -0.12295238673686981, 0.14207366108894348, 0.10010931640863419, 0.04827810451388359, -0.08624263107776642, 0.12117664515972137, -0.05673356354236603, -0.1370745450258255, -0.01682531088590622, 0.11165004968643188, 0.00014100936823524535, 0.0004935812903568149, 0.02096729353070259, -0.03333625569939613, -0.042932625859975815, 0.03048074245452881, 0.06342718750238419, -0.010729954577982426, 0.07596728205680847, -0.10791993141174316, -0.04687481373548508, 0.024307526648044586, 0.014110393822193146, 0.06940905749797821, -0.12563923001289368, -0.04805508255958557, 0.007414479274302721, 0.13298064470291138, -0.0728113055229187, -0.0738530308008194, -0.13202457129955292, -0.0027793431654572487, -0.1338719129562378, 0.11949334293603897, -0.11953870952129364, 0.01482993084937334, -0.05028591305017471, 0.011604771949350834, -0.10020553320646286, -0.04508832097053528, -0.06261864304542542, 0.0044020903296768665, 0.03626343607902527, 0.10994866490364075, -0.005957553628832102, -0.008207251317799091, 0.030091965571045876, -0.018999403342604637, 0.06955747306346893, -0.029411084949970245, -0.07538049668073654, -0.04806162416934967, -0.1989845335483551, -0.04527199640870094, 0.003410330507904291, 0.03321712836623192, 0.004623680375516415, 0.15833838284015656, -0.03707785904407501, -0.08590704202651978, 0.04353218153119087, 0.0652938038110733, 0.2666322886943817, -0.10946350544691086, -0.03649890422821045, -0.13939198851585388, 0.020626481622457504, -0.012075553648173809, -0.004263607785105705, 0.13064728677272797, 0.08477837592363358, 0.034025806933641434, -0.01924707368016243, 0.08928635716438293, -0.1535450667142868, 0.014840158633887768, -0.033418234437704086, -0.07545237988233566, 0.007907957769930363, -0.014803584665060043, 0.00814065895974636, -0.046861518174409866, 0.25522497296333313, -0.046116817742586136, -0.05723104625940323, -0.017082147300243378, 0.08544308692216873, 0.0047895824536681175, -0.06947914510965347, 0.2634406089782715, 0.04018643870949745, -0.0039778598584234715, -0.013495702296495438, 0.099449522793293, 0.05957156792283058, 0.09271302074193954, 0.1058599203824997, 0.06516046077013016, -0.1121901348233223, 0.04891026020050049, 0.03695819526910782, -0.1004725843667984, 0.04338885098695755, 0.08166947215795517, 0.07950348407030106, 0.08240049332380295, -0.057370375841856, -0.17359165847301483, 0.14249111711978912, -0.06677894294261932, 0.07965173572301865, 0.036392319947481155, -0.02797710709273815, -0.06319268047809601, -0.08678070455789566, -0.045195501297712326, -0.09141606837511063, 0.04105047509074211, -0.026313280686736107, -0.06289491057395935, 0.1199011281132698, 0.05083626136183739, 0.04622003808617592, 0.16335052251815796, -0.10374338924884796, -0.000652807648293674, 0.056707024574279785, 0.008289371617138386, -0.10799606889486313, -0.09240186959505081, -0.0015545097412541509, 0.07335227727890015, -0.11094158887863159, -0.036993179470300674, 0.01751025952398777, 0.020582405850291252, 0.052113957703113556, -0.05165733024477959, -0.10801023244857788, -0.08909494429826736, 0.010169940069317818, 0.022660668939352036, 0.059437211602926254, 0.06114402785897255, 0.03039679490029812, 0.00011986211757175624, -0.017174091190099716, -0.0006339222309179604, -0.0059051793068647385, -0.1025652214884758, 0.03840850293636322, -0.10034070909023285, -0.07313410192728043, -0.030885927379131317, -0.08101606369018555, 0.02300078421831131, 0.3453886806964874, 0.20442481338977814, -0.08212518692016602, 0.021090539172291756, 0.042666252702474594, 0.003516490338370204, 0.003060156712308526, 0.10731480270624161, -0.04813481867313385, 0.10991828143596649, -0.022141344845294952, -0.0197146013379097, -0.01260988600552082, -0.09692873060703278, -0.10128097236156464, 0.0002710081171244383, 0.07393507659435272, 0.015493339858949184, -0.07097756117582321, 0.15805882215499878, -0.1830165982246399, 0.06653062254190445, 0.1936807632446289, -0.07987210899591446, -0.06747440993785858, -0.07793527841567993, -0.13487623631954193, 0.1091650128364563, 0.004508719313889742, -0.08995653688907623, 0.08238770812749863, -0.024726303294301033, 0.017737194895744324, -0.1950419843196869, -0.06308768689632416, -0.02741464227437973, -0.15539702773094177, 0.26015955209732056, -0.04986026510596275, -0.008282771334052086, 0.033257730305194855, -0.036555565893650055, -0.11852088570594788, 0.045155368745326996, -0.009476977400481701, 0.09040364623069763, -0.05746915936470032, 0.07197123765945435, -0.08917789906263351, 0.011704953387379646, -0.005678537767380476, 0.012317708693444729, 0.013050038367509842, 0.18221138417720795, 0.03749677911400795, -0.04659546539187431, -0.006557867396622896, -0.05775422975420952, 0.10418994724750519, 0.07276900857686996, -0.046183012425899506, -0.07196108251810074, 0.001075794454663992, 0.07309549301862717, 0.03212188556790352, -0.19071587920188904, -0.10896573960781097, -0.07350149750709534, -0.06297793984413147, -0.07585617899894714, -0.0067582991905510426, -0.1431884467601776, 0.013586513698101044, -0.027436701580882072, 0.009041723795235157, -0.029728572815656662, 0.0315636545419693, 0.21211880445480347, -0.03636613115668297, -0.01574229821562767, -0.19566787779331207, 0.05434812232851982, -0.007541419006884098, -0.10589005053043365, -0.14510110020637512 ]
2dd80cfaf4e152479da599944b4935b0e469f801
# Dataset of hannah/ハンナ/汉娜 (Neural Cloud) This is the dataset of hannah/ハンナ/汉娜 (Neural Cloud), containing 12 images and their tags. The core tags of this character are `animal_ears, brown_hair, long_hair, animal_ear_fluff, bangs, hair_ornament, multicolored_hair, white_hair, bow, grey_eyes, twintails, streaked_hair, tail, very_long_hair, ahoge, hair_between_eyes, hair_bow, breasts, low_twintails`, which are pruned in this dataset. Images are crawled from many sites (e.g. danbooru, pixiv, zerochan ...), the auto-crawling system is powered by [DeepGHS Team](https://github.com/deepghs)([huggingface organization](https://huggingface.co/deepghs)). ## List of Packages | Name | Images | Size | Download | Type | Description | |:-----------------|---------:|:----------|:--------------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------| | raw | 12 | 24.07 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hannah_neuralcloud/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). | | 800 | 12 | 11.40 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hannah_neuralcloud/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. | | stage3-p480-800 | 34 | 27.59 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hannah_neuralcloud/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | | 1200 | 12 | 19.66 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hannah_neuralcloud/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. | | stage3-p480-1200 | 34 | 41.56 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hannah_neuralcloud/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | ### Load Raw Dataset with Waifuc We provide raw dataset (including tagged images) for [waifuc](https://deepghs.github.io/waifuc/main/tutorials/installation/index.html) loading. If you need this, just run the following code ```python import os import zipfile from huggingface_hub import hf_hub_download from waifuc.source import LocalSource # download raw archive file zip_file = hf_hub_download( repo_id='CyberHarem/hannah_neuralcloud', repo_type='dataset', filename='dataset-raw.zip', ) # extract files to your directory dataset_dir = 'dataset_dir' os.makedirs(dataset_dir, exist_ok=True) with zipfile.ZipFile(zip_file, 'r') as zf: zf.extractall(dataset_dir) # load the dataset with waifuc source = LocalSource(dataset_dir) for item in source: print(item.image, item.meta['filename'], item.meta['tags']) ``` ## List of Clusters List of tag clustering result, maybe some outfits can be mined here. ### Raw Text Version | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags | |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:----------------------------------------------------------| | 0 | 12 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | ![](samples/0/clu0-sample3.png) | ![](samples/0/clu0-sample4.png) | 1girl, looking_at_viewer, solo, smile, white_shirt, skirt | ### Table Version | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | looking_at_viewer | solo | smile | white_shirt | skirt | |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------------------|:-------|:--------|:--------------|:--------| | 0 | 12 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | ![](samples/0/clu0-sample3.png) | ![](samples/0/clu0-sample4.png) | X | X | X | X | X | X |
CyberHarem/hannah_neuralcloud
[ "task_categories:text-to-image", "size_categories:n<1K", "license:mit", "art", "not-for-all-audiences", "region:us" ]
2024-02-17T17:33:59+00:00
{"license": "mit", "size_categories": ["n<1K"], "task_categories": ["text-to-image"], "tags": ["art", "not-for-all-audiences"]}
2024-02-17T17:36:59+00:00
[]
[]
TAGS #task_categories-text-to-image #size_categories-n<1K #license-mit #art #not-for-all-audiences #region-us
Dataset of hannah/ハンナ/汉娜 (Neural Cloud) ======================================= This is the dataset of hannah/ハンナ/汉娜 (Neural Cloud), containing 12 images and their tags. The core tags of this character are 'animal\_ears, brown\_hair, long\_hair, animal\_ear\_fluff, bangs, hair\_ornament, multicolored\_hair, white\_hair, bow, grey\_eyes, twintails, streaked\_hair, tail, very\_long\_hair, ahoge, hair\_between\_eyes, hair\_bow, breasts, low\_twintails', which are pruned in this dataset. Images are crawled from many sites (e.g. danbooru, pixiv, zerochan ...), the auto-crawling system is powered by DeepGHS Team(huggingface organization). List of Packages ---------------- ### Load Raw Dataset with Waifuc We provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code List of Clusters ---------------- List of tag clustering result, maybe some outfits can be mined here. ### Raw Text Version ### Table Version
[ "### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.", "### Raw Text Version", "### Table Version" ]
[ "TAGS\n#task_categories-text-to-image #size_categories-n<1K #license-mit #art #not-for-all-audiences #region-us \n", "### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.", "### Raw Text Version", "### Table Version" ]
[ 44, 61, 5, 4 ]
[ "passage: TAGS\n#task_categories-text-to-image #size_categories-n<1K #license-mit #art #not-for-all-audiences #region-us \n### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.### Raw Text Version### Table Version" ]
[ -0.06056777387857437, 0.1428852677345276, 0.0003680216323118657, 0.11658099293708801, 0.04550790786743164, 0.11912374198436737, 0.16325801610946655, 0.1310805380344391, 0.22002576291561127, -0.007116112392395735, 0.08005616068840027, 0.025980781763792038, 0.10829687118530273, 0.2076374590396881, 0.02867997996509075, -0.16697201132774353, -0.05649708956480026, 0.07042671740055084, 0.08365700393915176, 0.052131183445453644, 0.02592923305928707, -0.09419567137956619, 0.11179038882255554, -0.038744717836380005, -0.12454055994749069, -0.0585198737680912, -0.11416282504796982, 0.020839890465140343, 0.013306557200849056, 0.021944720298051834, 0.0962887778878212, 0.03607887402176857, 0.06416051089763641, -0.12775902450084686, 0.053518541157245636, -0.039031628519296646, -0.05270588397979736, 0.02906504087150097, 0.12017025798559189, 0.027798952534794807, -0.1449868530035019, -0.04997425153851509, -0.1341349184513092, 0.10816025733947754, -0.07523134350776672, -0.09790360182523727, -0.04817730933427811, 0.0996984988451004, 0.042856328189373016, 0.028749780729413033, -0.03289588913321495, 0.06494595110416412, -0.014109360054135323, 0.050710346549749374, 0.10873549431562424, -0.17785607278347015, -0.07059342414140701, 0.21942733228206635, -0.0003579944896046072, -0.013852175325155258, -0.1182907298207283, 0.06007043272256851, 0.07890354096889496, -0.007255760952830315, -0.0483785979449749, -0.0675291121006012, -0.2758270800113678, -0.05189996585249901, -0.02765267714858055, 0.06514670699834824, 0.3095196485519409, 0.11004164814949036, -0.044782571494579315, -0.08295935392379761, -0.006207056809216738, -0.1193556934595108, -0.10545776039361954, 0.12395453453063965, 0.015276663936674595, 0.07426527142524719, -0.09352243691682816, -0.07516352832317352, -0.10534942895174026, -0.103700652718544, -0.06107666715979576, -0.08996964991092682, -0.025395652279257774, 0.04975387454032898, -0.10508036613464355, 0.04146378114819527, -0.09813681244850159, -0.11518322676420212, -0.023586591705679893, -0.06460206210613251, -0.08920851349830627, -0.003244469640776515, 0.028136789798736572, -0.047021325677633286, 0.1665882170200348, 0.02307613380253315, 0.006787101272493601, 0.054903190582990646, -0.0790734738111496, 0.09950575977563858, 0.08764483034610748, -0.010807367041707039, -0.07338257133960724, -0.1363120973110199, 0.0032848292030394077, -0.06858330965042114, 0.025331854820251465, -0.005812880117446184, -0.09158840775489807, -0.07091861963272095, -0.20385250449180603, 0.029226383194327354, 0.026076046749949455, 0.035915788263082504, -0.03213813155889511, -0.055013034492731094, 0.1415221393108368, -0.03551199659705162, -0.060700494796037674, 0.052139509469270706, 0.0175301693379879, 0.07101588696241379, 0.007796936668455601, 0.043514735996723175, 0.04950962960720062, -0.06043723225593567, -0.0906783789396286, 0.007501866668462753, 0.047763608396053314, -0.0005182523746043444, 0.03197629749774933, -0.08443576842546463, -0.03821375593543053, -0.06656645238399506, -0.22550716996192932, 0.02256174385547638, 0.02353413961827755, -0.017254870384931564, 0.014232967048883438, 0.03746093437075615, 0.05370816960930824, -0.06483131647109985, 0.01682276278734207, 0.054385099560022354, -0.09712400287389755, 0.03679494559764862, -0.07082853466272354, 0.14100567996501923, -0.09166330844163895, -0.007849487476050854, -0.07740174978971481, 0.022262275218963623, -0.05757004767656326, 0.0670338124036789, -0.06333911418914795, 0.22295083105564117, -0.07540173828601837, 0.032030586153268814, -0.11676698178052902, -0.015747088938951492, -0.040550898760557175, 0.20228023827075958, -0.24980899691581726, 0.023733986541628838, 0.129234179854393, -0.08680058270692825, -0.15893028676509857, 0.09782561659812927, 0.02804521657526493, 0.07385969907045364, -0.00993076991289854, 0.25308701395988464, 0.012529200874269009, -0.04170221835374832, -0.08124548941850662, 0.10193389654159546, -0.026082845404744148, -0.09846335649490356, 0.0927167758345604, -0.011336571536958218, -0.04001680016517639, 0.008216693997383118, 0.11369086802005768, 0.03300970792770386, -0.046763066202402115, -0.13178405165672302, -0.020311659201979637, -0.12312270700931549, 0.0332891009747982, 0.06242886185646057, 0.03571641445159912, -0.0020737831946462393, 0.033886831253767014, -0.19188402593135834, 0.12185350060462952, -0.02300534024834633, -0.012298239395022392, -0.03587689250707626, 0.049544982612133026, -0.1096111610531807, -0.005026396829634905, -0.03297613188624382, -0.07528192549943924, 0.04695576801896095, 0.032161809504032135, 0.032974738627672195, -0.07662955671548843, 0.05971444770693779, 0.014818688854575157, -0.05143161863088608, 0.09137671440839767, 0.07852409034967422, -0.05769677832722664, -0.04769500717520714, -0.09088637679815292, -0.07534419745206833, -0.0575183741748333, 0.06557203829288483, -0.17107561230659485, -0.01024219486862421, 0.11067692935466766, 0.025439640507102013, 0.040017906576395035, -0.06062997505068779, 0.17756298184394836, -0.030585208907723427, -0.06190725415945053, -0.040943559259176254, 0.09769701957702637, -0.019157059490680695, -0.04555562138557434, 0.01052568107843399, 0.0861014872789383, -0.023098904639482498, 0.15354815125465393, -0.02755286730825901, -0.09308218210935593, -0.09194192290306091, -0.043686799705028534, -0.026820935308933258, -0.10422000288963318, 0.03991572558879852, -0.061963386833667755, 0.002163912169635296, 0.027012988924980164, -0.006405688356608152, 0.030585767701268196, 0.02778414450585842, 0.05820842087268829, -0.021298304200172424, -0.032607581466436386, 0.109773650765419, -0.1722910851240158, 0.1114993542432785, 0.13196797668933868, 0.034958865493535995, 0.21729564666748047, -0.018764061853289604, -0.008318998850882053, 0.010340031236410141, 0.036444034427404404, -0.015703804790973663, 0.18439458310604095, -0.24826371669769287, 0.028264425694942474, 0.0849744975566864, -0.09788601845502853, 0.0013086525723338127, -0.08047153800725937, -0.07494150102138519, -0.027035990729928017, -0.08268488943576813, -0.022495487704873085, 0.021848194301128387, -0.0510525181889534, -0.002697830554097891, -0.0159380491822958, 0.047126319259405136, 0.01982598379254341, -0.05365948751568794, -0.04728511720895767, 0.09874521940946579, 0.03765644133090973, -0.05380381643772125, -0.0917879045009613, -0.12539927661418915, -0.14941422641277313, 0.019937308505177498, 0.04021664708852768, -0.1369117796421051, -0.01622610352933407, -0.05658677592873573, 0.0059041837230324745, 0.07515611499547958, 0.02750200405716896, -0.011549362912774086, -0.027613000944256783, -0.056971535086631775, -0.10828518867492676, 0.03546522557735443, -0.025793982669711113, -0.04754815250635147, 0.0729597732424736, -0.11063029617071152, 0.13915611803531647, 0.10513068735599518, 0.06019572541117668, 0.07167352735996246, -0.020455900579690933, 0.16666162014007568, -0.1135433241724968, 0.07949472218751907, 0.05714169144630432, 0.01617315225303173, -0.0033850963227450848, 0.1392807960510254, 0.07822858542203903, -0.11485456675291061, 0.01649930700659752, 0.0659264624118805, -0.10927750170230865, -0.13765156269073486, -0.08919930458068848, -0.1098841056227684, 0.14360472559928894, 0.10543306916952133, 0.055094171315431595, -0.008754521608352661, 0.19365760684013367, -0.012459862045943737, 0.11629821360111237, -0.060265135020017624, -0.001182127045467496, -0.0967511311173439, 0.028548067435622215, 0.015706980600953102, -0.13472138345241547, -0.020705696195364, 0.13436934351921082, 0.11988531053066254, 0.17751117050647736, 0.05756404623389244, 0.1669720560312271, 0.0620209239423275, 0.08739733695983887, 0.0973203033208847, 0.09824824333190918, -0.003385010873898864, -0.01174256019294262, -0.009840509854257107, -0.11808888614177704, 0.12640166282653809, 0.008536653593182564, 0.03328922018408775, -0.07603447884321213, 0.041852522641420364, -0.19561190903186798, 0.08676237612962723, 0.2662656307220459, 0.13238421082496643, -0.2130252569913864, 0.02187363989651203, 0.057548727840185165, 0.10131470859050751, -0.04166566953063011, 0.03863963857293129, 0.15180446207523346, -0.044378504157066345, 0.14485260844230652, -0.03934125602245331, 0.13761593401432037, -0.08993841707706451, -0.002561005996540189, 0.028425363823771477, -0.052699554711580276, -0.049131326377391815, 0.04007065296173096, 0.08406958729028702, 0.20620964467525482, 0.06231911480426788, 0.02514495514333248, -0.052091311663389206, -0.09191302955150604, 0.1411287933588028, 0.1319933533668518, 0.19725032150745392, 0.004370573908090591, 0.11569846421480179, -0.11193177849054337, -0.09768734127283096, 0.03489493206143379, 0.01887678913772106, -0.0481451116502285, -0.0058238268829882145, 0.08338964730501175, -0.0011851191520690918, -0.020514076575636864, 0.2429020255804062, -0.15395450592041016, -0.028766348958015442, -0.018185274675488472, 0.20947031676769257, 0.03476950153708458, 0.05297542363405228, -0.0028412239626049995, -0.0919366404414177, 0.12701071798801422, 0.009368033148348331, -0.0467972531914711, -0.07945683598518372, -0.07607144862413406, 0.07295151054859161, 0.0033908793702721596, -0.019113952293992043, -0.06424721330404282, 0.057646963745355606, -0.07576420903205872, -0.08068043738603592, 0.02056441828608513, -0.027442919090390205, -0.036279067397117615, -0.0699404925107956, -0.03204023838043213, -0.07006490975618362, 0.007021276280283928, 0.00880422256886959, 0.008445353247225285, 0.025229379534721375, -0.1443626582622528, 0.06101659685373306, -0.07046619057655334, -0.0022374021355062723, 0.1308000385761261, -0.04215288162231445, -0.014171579852700233, -0.030100012198090553, -0.04281031712889671, 0.18909983336925507, 0.1812591701745987, -0.10724806040525436, -0.00840049423277378, 0.12792575359344482, -0.024788103997707367, -0.3187218904495239, -0.0044951667077839375, -0.0730748325586319, -0.032930366694927216, 0.025424007326364517, -0.15653270483016968, 0.1306859701871872, 0.085330069065094, -0.05402332916855812, 0.19986344873905182, -0.15700657665729523, -0.10088611394166946, 0.07355795800685883, 0.09669850766658783, 0.15795643627643585, -0.21399495005607605, -0.03792818263173103, -0.08970680832862854, -0.22459501028060913, 0.1646786779165268, -0.2396935224533081, 0.156635120511055, -0.020555861294269562, -0.025779446586966515, -0.007073562126606703, -0.022447878494858742, 0.1552649736404419, 0.13479048013687134, 0.08684605360031128, -0.04376395419239998, 0.007372909691184759, 0.10759281367063522, -0.01300759892910719, 0.0799500122666359, -0.055568937212228775, -0.044278986752033234, -0.1711588203907013, -0.003979063127189875, 0.017878515645861626, 0.07270903885364532, 0.0418451763689518, -0.08257319033145905, -0.11704827100038528, 0.05039593577384949, -0.029647110030055046, 0.056016530841588974, 0.2601388692855835, 0.0009578251629136503, 0.06289535760879517, 0.1650095134973526, 0.015400785021483898, -0.007668273523449898, -0.15260030329227448, -0.06366822123527527, -0.07826440036296844, 0.09279736131429672, -0.20341956615447998, 0.009507115930318832, 0.06797578185796738, 0.07756782323122025, 0.06056210398674011, 0.06808006018400192, 0.025644270703196526, 0.11793660372495651, 0.11555102467536926, -0.014873293228447437, -0.14824643731117249, -0.01621919870376587, -0.24955067038536072, -0.0752980038523674, -0.0320480577647686, 0.026848237961530685, 0.016784338280558586, 0.06355622410774231, -0.0030241634231060743, 0.021652499213814735, -0.07937014847993851, 0.06967651098966599, 0.054862674325704575, 0.018068386241793633, -0.12295238673686981, 0.14207366108894348, 0.10010931640863419, 0.04827810451388359, -0.08624263107776642, 0.12117664515972137, -0.05673356354236603, -0.1370745450258255, -0.01682531088590622, 0.11165004968643188, 0.00014100936823524535, 0.0004935812903568149, 0.02096729353070259, -0.03333625569939613, -0.042932625859975815, 0.03048074245452881, 0.06342718750238419, -0.010729954577982426, 0.07596728205680847, -0.10791993141174316, -0.04687481373548508, 0.024307526648044586, 0.014110393822193146, 0.06940905749797821, -0.12563923001289368, -0.04805508255958557, 0.007414479274302721, 0.13298064470291138, -0.0728113055229187, -0.0738530308008194, -0.13202457129955292, -0.0027793431654572487, -0.1338719129562378, 0.11949334293603897, -0.11953870952129364, 0.01482993084937334, -0.05028591305017471, 0.011604771949350834, -0.10020553320646286, -0.04508832097053528, -0.06261864304542542, 0.0044020903296768665, 0.03626343607902527, 0.10994866490364075, -0.005957553628832102, -0.008207251317799091, 0.030091965571045876, -0.018999403342604637, 0.06955747306346893, -0.029411084949970245, -0.07538049668073654, -0.04806162416934967, -0.1989845335483551, -0.04527199640870094, 0.003410330507904291, 0.03321712836623192, 0.004623680375516415, 0.15833838284015656, -0.03707785904407501, -0.08590704202651978, 0.04353218153119087, 0.0652938038110733, 0.2666322886943817, -0.10946350544691086, -0.03649890422821045, -0.13939198851585388, 0.020626481622457504, -0.012075553648173809, -0.004263607785105705, 0.13064728677272797, 0.08477837592363358, 0.034025806933641434, -0.01924707368016243, 0.08928635716438293, -0.1535450667142868, 0.014840158633887768, -0.033418234437704086, -0.07545237988233566, 0.007907957769930363, -0.014803584665060043, 0.00814065895974636, -0.046861518174409866, 0.25522497296333313, -0.046116817742586136, -0.05723104625940323, -0.017082147300243378, 0.08544308692216873, 0.0047895824536681175, -0.06947914510965347, 0.2634406089782715, 0.04018643870949745, -0.0039778598584234715, -0.013495702296495438, 0.099449522793293, 0.05957156792283058, 0.09271302074193954, 0.1058599203824997, 0.06516046077013016, -0.1121901348233223, 0.04891026020050049, 0.03695819526910782, -0.1004725843667984, 0.04338885098695755, 0.08166947215795517, 0.07950348407030106, 0.08240049332380295, -0.057370375841856, -0.17359165847301483, 0.14249111711978912, -0.06677894294261932, 0.07965173572301865, 0.036392319947481155, -0.02797710709273815, -0.06319268047809601, -0.08678070455789566, -0.045195501297712326, -0.09141606837511063, 0.04105047509074211, -0.026313280686736107, -0.06289491057395935, 0.1199011281132698, 0.05083626136183739, 0.04622003808617592, 0.16335052251815796, -0.10374338924884796, -0.000652807648293674, 0.056707024574279785, 0.008289371617138386, -0.10799606889486313, -0.09240186959505081, -0.0015545097412541509, 0.07335227727890015, -0.11094158887863159, -0.036993179470300674, 0.01751025952398777, 0.020582405850291252, 0.052113957703113556, -0.05165733024477959, -0.10801023244857788, -0.08909494429826736, 0.010169940069317818, 0.022660668939352036, 0.059437211602926254, 0.06114402785897255, 0.03039679490029812, 0.00011986211757175624, -0.017174091190099716, -0.0006339222309179604, -0.0059051793068647385, -0.1025652214884758, 0.03840850293636322, -0.10034070909023285, -0.07313410192728043, -0.030885927379131317, -0.08101606369018555, 0.02300078421831131, 0.3453886806964874, 0.20442481338977814, -0.08212518692016602, 0.021090539172291756, 0.042666252702474594, 0.003516490338370204, 0.003060156712308526, 0.10731480270624161, -0.04813481867313385, 0.10991828143596649, -0.022141344845294952, -0.0197146013379097, -0.01260988600552082, -0.09692873060703278, -0.10128097236156464, 0.0002710081171244383, 0.07393507659435272, 0.015493339858949184, -0.07097756117582321, 0.15805882215499878, -0.1830165982246399, 0.06653062254190445, 0.1936807632446289, -0.07987210899591446, -0.06747440993785858, -0.07793527841567993, -0.13487623631954193, 0.1091650128364563, 0.004508719313889742, -0.08995653688907623, 0.08238770812749863, -0.024726303294301033, 0.017737194895744324, -0.1950419843196869, -0.06308768689632416, -0.02741464227437973, -0.15539702773094177, 0.26015955209732056, -0.04986026510596275, -0.008282771334052086, 0.033257730305194855, -0.036555565893650055, -0.11852088570594788, 0.045155368745326996, -0.009476977400481701, 0.09040364623069763, -0.05746915936470032, 0.07197123765945435, -0.08917789906263351, 0.011704953387379646, -0.005678537767380476, 0.012317708693444729, 0.013050038367509842, 0.18221138417720795, 0.03749677911400795, -0.04659546539187431, -0.006557867396622896, -0.05775422975420952, 0.10418994724750519, 0.07276900857686996, -0.046183012425899506, -0.07196108251810074, 0.001075794454663992, 0.07309549301862717, 0.03212188556790352, -0.19071587920188904, -0.10896573960781097, -0.07350149750709534, -0.06297793984413147, -0.07585617899894714, -0.0067582991905510426, -0.1431884467601776, 0.013586513698101044, -0.027436701580882072, 0.009041723795235157, -0.029728572815656662, 0.0315636545419693, 0.21211880445480347, -0.03636613115668297, -0.01574229821562767, -0.19566787779331207, 0.05434812232851982, -0.007541419006884098, -0.10589005053043365, -0.14510110020637512 ]
8e661bb46ab5fc89dd0a0b53b5ac214b4f59c308
# Dataset of dushevnaya/ドゥシェーヴヌイ/杜莎妮 (Neural Cloud) This is the dataset of dushevnaya/ドゥシェーヴヌイ/杜莎妮 (Neural Cloud), containing 30 images and their tags. The core tags of this character are `long_hair, animal_ears, braid, grey_hair, bangs, hair_between_eyes, breasts, green_eyes, blue_eyes, large_breasts, white_hair`, which are pruned in this dataset. Images are crawled from many sites (e.g. danbooru, pixiv, zerochan ...), the auto-crawling system is powered by [DeepGHS Team](https://github.com/deepghs)([huggingface organization](https://huggingface.co/deepghs)). ## List of Packages | Name | Images | Size | Download | Type | Description | |:-----------------|---------:|:----------|:------------------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------| | raw | 30 | 44.58 MiB | [Download](https://huggingface.co/datasets/CyberHarem/dushevnaya_neuralcloud/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). | | 800 | 30 | 23.31 MiB | [Download](https://huggingface.co/datasets/CyberHarem/dushevnaya_neuralcloud/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. | | stage3-p480-800 | 69 | 48.72 MiB | [Download](https://huggingface.co/datasets/CyberHarem/dushevnaya_neuralcloud/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | | 1200 | 30 | 39.63 MiB | [Download](https://huggingface.co/datasets/CyberHarem/dushevnaya_neuralcloud/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. | | stage3-p480-1200 | 69 | 76.02 MiB | [Download](https://huggingface.co/datasets/CyberHarem/dushevnaya_neuralcloud/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | ### Load Raw Dataset with Waifuc We provide raw dataset (including tagged images) for [waifuc](https://deepghs.github.io/waifuc/main/tutorials/installation/index.html) loading. If you need this, just run the following code ```python import os import zipfile from huggingface_hub import hf_hub_download from waifuc.source import LocalSource # download raw archive file zip_file = hf_hub_download( repo_id='CyberHarem/dushevnaya_neuralcloud', repo_type='dataset', filename='dataset-raw.zip', ) # extract files to your directory dataset_dir = 'dataset_dir' os.makedirs(dataset_dir, exist_ok=True) with zipfile.ZipFile(zip_file, 'r') as zf: zf.extractall(dataset_dir) # load the dataset with waifuc source = LocalSource(dataset_dir) for item in source: print(item.image, item.meta['filename'], item.meta['tags']) ``` ## List of Clusters List of tag clustering result, maybe some outfits can be mined here. ### Raw Text Version | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags | |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | 0 | 6 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | ![](samples/0/clu0-sample3.png) | ![](samples/0/clu0-sample4.png) | blush, white_background, 1girl, open_mouth, simple_background, solo, green_hairband, holding, looking_at_viewer, bare_shoulders, collarbone, dress, hair_flower, official_alternate_costume, smile, upper_body | ### Table Version | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | blush | white_background | 1girl | open_mouth | simple_background | solo | green_hairband | holding | looking_at_viewer | bare_shoulders | collarbone | dress | hair_flower | official_alternate_costume | smile | upper_body | |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------------------|:--------|:-------------|:--------------------|:-------|:-----------------|:----------|:--------------------|:-----------------|:-------------|:--------|:--------------|:-----------------------------|:--------|:-------------| | 0 | 6 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | ![](samples/0/clu0-sample3.png) | ![](samples/0/clu0-sample4.png) | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X |
CyberHarem/dushevnaya_neuralcloud
[ "region:us" ]
2024-02-17T17:42:52+00:00
{"license": "mit", "size_categories": ["n<1K"], "task_categories": ["text-to-image"], "tags": ["art", "not-for-all-audiences"]}
2024-02-17T17:42:52+00:00
[]
[]
TAGS #region-us
Dataset of dushevnaya/ドゥシェーヴヌイ/杜莎妮 (Neural Cloud) ================================================= This is the dataset of dushevnaya/ドゥシェーヴヌイ/杜莎妮 (Neural Cloud), containing 30 images and their tags. The core tags of this character are 'long\_hair, animal\_ears, braid, grey\_hair, bangs, hair\_between\_eyes, breasts, green\_eyes, blue\_eyes, large\_breasts, white\_hair', which are pruned in this dataset. Images are crawled from many sites (e.g. danbooru, pixiv, zerochan ...), the auto-crawling system is powered by DeepGHS Team(huggingface organization). List of Packages ---------------- ### Load Raw Dataset with Waifuc We provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code List of Clusters ---------------- List of tag clustering result, maybe some outfits can be mined here. ### Raw Text Version ### Table Version
[ "### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.", "### Raw Text Version", "### Table Version" ]
[ "TAGS\n#region-us \n", "### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.", "### Raw Text Version", "### Table Version" ]
[ 6, 61, 5, 4 ]
[ "passage: TAGS\n#region-us \n### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.### Raw Text Version### Table Version" ]
[ -0.0782691016793251, 0.1713314652442932, 0.0006788515602238476, 0.06202508881688118, 0.07492441684007645, 0.11804241687059402, 0.068992979824543, 0.12710197269916534, 0.2940976023674011, -0.0028676651418209076, 0.08066996186971664, 0.05289466679096222, 0.10027284175157547, 0.20345626771450043, 0.043829839676618576, -0.11962341517210007, -0.017669137567281723, 0.049030810594558716, 0.04801924154162407, 0.031303416937589645, 0.006360742729157209, -0.08579397201538086, 0.11210249364376068, -0.05554251745343208, -0.15921150147914886, -0.017286306247115135, -0.08860521763563156, 0.04456626623868942, 0.032750826328992844, -0.02926957979798317, 0.15081341564655304, -0.039704639464616776, 0.012167775072157383, -0.18717060983181, 0.04819584637880325, -0.03066466748714447, -0.02842988446354866, 0.03351893648505211, 0.09131427854299545, -0.016615254804491997, -0.207439586520195, -0.02611558325588703, -0.09873192012310028, 0.11009044945240021, -0.11169176548719406, -0.17718879878520966, -0.07470736652612686, -0.023627670481801033, 0.029708247631788254, -0.005968320183455944, -0.021175479516386986, 0.1180475652217865, -0.05274030566215515, 0.0452406145632267, 0.07592888176441193, -0.17469990253448486, -0.020684560760855675, 0.2258053869009018, -0.000533627753611654, -0.043160803616046906, -0.1149664893746376, 0.04240228980779648, 0.10431867092847824, -0.0007310837390832603, -0.09042003750801086, -0.048595864325761795, -0.35918742418289185, 0.0008366484544239938, -0.056803129613399506, 0.03418123722076416, 0.32887494564056396, 0.04211227223277092, -0.026805639266967773, 0.012795323505997658, -0.008672916330397129, -0.13874061405658722, -0.042465828359127045, 0.09160690009593964, 0.01980273239314556, 0.11017297208309174, -0.025758424773812294, -0.06760629266500473, -0.07401745766401291, -0.1127716451883316, -0.04715115576982498, 0.013540188781917095, 0.0024651272688061, 0.06886780261993408, -0.15977147221565247, 0.046835463494062424, -0.11619153618812561, -0.06729737669229507, 0.003738841973245144, -0.04631146788597107, -0.13177387416362762, -0.017447588965296745, -0.03312491998076439, -0.036114323884248734, 0.15894152224063873, 0.07307834923267365, -0.024197963997721672, 0.05916448310017586, -0.09024956822395325, 0.07163874059915543, 0.11321468651294708, -0.0021626169327646494, -0.020738443359732628, -0.12938548624515533, -0.026897631585597992, -0.1706358790397644, -0.004352218471467495, -0.01788405515253544, -0.06179780885577202, -0.04214901849627495, -0.1817583292722702, 0.08571667969226837, -0.015134954825043678, 0.016899751499295235, -0.04333145171403885, -0.0703747496008873, 0.08808855712413788, -0.05024510622024536, -0.03472509607672691, 0.026762375608086586, 0.022183984518051147, 0.05256914347410202, -0.028884783387184143, 0.058131396770477295, 0.04341939464211464, -0.10918553918600082, -0.11815111339092255, 0.001314738648943603, 0.02502906695008278, 0.02053566835820675, 0.02082216367125511, -0.11733970791101456, -0.01558759156614542, -0.06618884205818176, -0.2205229103565216, 0.021188251674175262, 0.02806120738387108, -0.009388504549860954, 0.03617588430643082, 0.038544125854969025, 0.08279464393854141, -0.035423241555690765, 0.028165455907583237, -0.011475427076220512, -0.07674682885408401, 0.0012349921744316816, -0.04792783036828041, 0.09162280708551407, -0.10514667630195618, 0.00838211365044117, -0.10994287580251694, 0.04355943948030472, -0.05497511103749275, 0.04609588533639908, -0.0882914736866951, 0.21645191311836243, -0.08973435312509537, 0.09264103323221207, -0.12840420007705688, -0.015947889536619186, -0.014733427204191685, 0.1895894557237625, -0.2744033634662628, 0.020839404314756393, 0.18254826962947845, -0.13297022879123688, -0.15198442339897156, 0.08302802592515945, 0.025282513350248337, 0.023933926597237587, 0.005928543396294117, 0.3154495358467102, 0.028276553377509117, -0.054924365133047104, -0.033349085599184036, 0.0949203372001648, -0.07716827094554901, -0.13684234023094177, 0.08672541379928589, -0.08080707490444183, -0.12872439622879028, 0.002910110168159008, 0.1379132866859436, 0.06577962636947632, -0.042217519134283066, -0.14715328812599182, -0.04812714084982872, -0.12872381508350372, 0.025106271728873253, 0.06033487245440483, 0.018664123490452766, -0.016390299424529076, 0.11720491945743561, -0.16982120275497437, 0.1453498899936676, -0.02270236238837242, 0.014229143038392067, -0.010744906030595303, 0.08801485598087311, -0.14738501608371735, 0.003960087429732084, -0.057637594640254974, -0.18567657470703125, 0.06961484998464584, -0.017933610826730728, -0.02184310369193554, -0.14987485110759735, 0.06960662454366684, 0.01775727979838848, 0.01610487699508667, 0.07513075321912766, 0.11854545027017593, -0.027001628652215004, -0.03526812791824341, -0.040609054267406464, -0.06139003485441208, -0.09143785387277603, 0.042078305035829544, -0.17144794762134552, -0.022342268377542496, 0.09607600420713425, 0.05091731995344162, 0.047043826431035995, -0.09445680677890778, 0.16734623908996582, -0.012810449115931988, -0.021703723818063736, -0.04175679758191109, 0.09502705186605453, -0.02337375283241272, -0.027171988040208817, 0.04087866097688675, 0.1348739117383957, -0.050268057733774185, 0.13690409064292908, -0.057755641639232635, -0.07090648263692856, -0.13546490669250488, -0.032362841069698334, -0.04580121487379074, -0.055406130850315094, 0.02530217543244362, -0.0638435110449791, -0.008929979987442493, 0.027636894956231117, 0.011867348104715347, 0.03976242616772652, 0.0010647084563970566, 0.039884187281131744, -0.06283259391784668, -0.04475078359246254, 0.08979903906583786, -0.14153578877449036, 0.13017670810222626, 0.1548607498407364, 0.09398756176233292, 0.19869378209114075, -0.05540585517883301, -0.030251655727624893, -0.006221574265509844, 0.027302686125040054, -0.0234314426779747, 0.13570481538772583, -0.2304256707429886, 0.018981654196977615, 0.0632794052362442, -0.05070279911160469, 0.05982239916920662, -0.06666424870491028, -0.06428668648004532, -0.020558886229991913, -0.07562469691038132, -0.004873244557529688, 0.055410128086805344, -0.07319782674312592, -0.027912894263863564, 0.005682504735887051, 0.048107486218214035, 0.05091983079910278, -0.04490493983030319, -0.024051586166024208, 0.10318094491958618, -0.05242162570357323, -0.001956409076228738, -0.09699133038520813, -0.20061475038528442, -0.07683201879262924, 0.03749701753258705, 0.012686741538345814, -0.1782303899526596, -0.02182368002831936, 0.015571420080959797, -0.0005885511636734009, 0.02102380432188511, 0.019699841737747192, -0.017882470041513443, -0.0379965715110302, -0.06261364370584488, -0.10445302724838257, 0.025324715301394463, -0.03162125125527382, -0.033499982208013535, 0.012177559547126293, -0.09860336035490036, 0.16050630807876587, 0.1523320972919464, 0.08912317454814911, 0.08699183911085129, 0.008748688735067844, 0.16279011964797974, -0.09695642441511154, 0.004469653125852346, 0.021767210215330124, -0.050920434296131134, -0.005965229589492083, 0.08209779113531113, 0.08082360774278641, -0.15494157373905182, 0.018908163532614708, 0.0543694868683815, -0.12218262255191803, -0.19919289648532867, -0.13883544504642487, -0.09922003000974655, 0.06303247064352036, 0.05103341490030289, 0.034624118357896805, -0.010672153905034065, 0.17105621099472046, 0.05982644855976105, 0.0486404225230217, -0.1428423374891281, -0.02460026927292347, -0.16966454684734344, 0.002757852664217353, -0.0393519327044487, -0.13412247598171234, -0.01257904339581728, 0.10171857476234436, 0.15026144683361053, 0.19925230741500854, 0.1369573324918747, 0.1462295800447464, 0.07378077507019043, 0.12389872968196869, 0.08001554012298584, 0.11791837960481644, 0.007123004179447889, -0.014309537597000599, 0.002516792854294181, -0.07063206285238266, 0.08147571980953217, 0.0022119865752756596, 0.0605446994304657, -0.08389987051486969, 0.04079882428050041, -0.24412894248962402, 0.10172483325004578, 0.19875691831111908, 0.1477867215871811, -0.16685660183429718, 0.033716827630996704, 0.06092038005590439, 0.09544587880373001, -0.021225405856966972, 0.06805597990751266, 0.11926437169313431, -0.056570377200841904, 0.08238404989242554, -0.02590072527527809, 0.10148770362138748, -0.1260180026292801, -0.014588882215321064, 0.03226074203848839, 0.012797361239790916, -0.03250692039728165, 0.04173775762319565, 0.13141852617263794, 0.23573435842990875, 0.03997403383255005, -0.022563813254237175, -0.03158510476350784, -0.0947912335395813, 0.11316228657960892, 0.09511429071426392, 0.17308980226516724, 0.02715504728257656, -0.026836352422833443, -0.13129755854606628, -0.10040093958377838, 0.0227973535656929, 0.05861163139343262, -0.057935912162065506, -0.005450135562568903, 0.04250800982117653, 0.003319334937259555, -0.039727240800857544, 0.21224133670330048, -0.15367969870567322, -0.008013186044991016, -0.05313076823949814, 0.19082501530647278, 0.07349207997322083, 0.05833743140101433, 0.010834872722625732, -0.05234970152378082, 0.12391029298305511, 0.009903869591653347, -0.029065636917948723, -0.0925149992108345, -0.12136323750019073, 0.12722928822040558, -0.0166308730840683, 0.0067931292578577995, -0.03992994502186775, 0.040707606822252274, -0.04534587636590004, -0.1114664301276207, 0.028186608105897903, -0.03539889305830002, 0.04395008832216263, -0.06505563855171204, 0.028432032093405724, -0.0015447791665792465, -0.02816837653517723, 0.005071008112281561, 0.008692817762494087, 0.03428511321544647, -0.12590950727462769, 0.09903928637504578, -0.01839926838874817, 0.00026679711299948394, 0.19848255813121796, -0.059296075254678726, 0.048263221979141235, -0.05115743726491928, -0.0531097874045372, 0.2962591052055359, 0.09854505956172943, -0.08514504134654999, 0.01579204946756363, 0.15498726069927216, -0.05359715595841408, -0.2745394706726074, -0.010338416323065758, -0.11054588109254837, -0.04931481555104256, -0.00428891321644187, -0.21132445335388184, 0.13620024919509888, 0.08737215399742126, -0.03788558766245842, 0.20697170495986938, -0.1376582831144333, -0.058269746601581573, 0.13096188008785248, 0.04740595072507858, 0.18163368105888367, -0.1691356599330902, -0.09822220355272293, -0.05633697286248207, -0.18459823727607727, 0.19619829952716827, -0.2551858127117157, 0.14095211029052734, -0.016858883202075958, -0.02015899121761322, 0.013343329541385174, -0.032390840351581573, 0.17870700359344482, 0.17118580639362335, 0.09028629213571548, -0.03614218905568123, -0.027773352339863777, 0.05067148059606552, -0.02091216668486595, 0.09926161170005798, 0.0604645274579525, -0.044952165335416794, -0.2030806690454483, 0.007950189523398876, 0.002130689797922969, 0.05424343794584274, 0.06660958379507065, -0.06726537644863129, -0.07011843472719193, 0.03919307142496109, -0.04593970999121666, 0.04729544371366501, 0.25972288846969604, 0.048021189868450165, 0.12272493541240692, 0.13662809133529663, -0.022702278569340706, 0.04565810039639473, -0.1779639720916748, -0.043278828263282776, -0.06364697217941284, 0.08373844623565674, -0.1729801893234253, 0.012996361590921879, 0.06508798152208328, 0.06398752331733704, 0.0544704906642437, 0.08569569140672684, -0.04117128625512123, 0.10043715685606003, 0.10433736443519592, -0.08219175040721893, -0.1104559525847435, -0.010279890149831772, -0.30478352308273315, -0.03859839215874672, 0.013586127199232578, 0.039399269968271255, 0.05150894075632095, 0.04493645578622818, -0.03069326840341091, 0.024256771430373192, -0.12393663078546524, 0.06998983025550842, 0.11429065465927124, 0.00007048869883874431, -0.14093168079853058, 0.2070103883743286, 0.07930930703878403, 0.028438521549105644, -0.03365367650985718, 0.10828312486410141, -0.047540463507175446, -0.1389262080192566, -0.05967939272522926, 0.16269217431545258, -0.01511400006711483, -0.07056109607219696, 0.07473193109035492, 0.013738715089857578, -0.03233823552727699, 0.05695698782801628, 0.08469821512699127, 0.047506820410490036, 0.05321677401661873, -0.12893874943256378, -0.04196557775139809, -0.022851405665278435, 0.009219184517860413, 0.030036386102437973, -0.1246168464422226, -0.060450632125139236, -0.008253621868789196, 0.1644619256258011, -0.06766534596681595, -0.11098070442676544, -0.16560660302639008, 0.014222568832337856, -0.11772167682647705, 0.05131305009126663, -0.07679920643568039, 0.007714639883488417, -0.002477305242791772, -0.013271083123981953, -0.07955095916986465, -0.021626558154821396, -0.08528143912553787, 0.03715040162205696, 0.0451025515794754, 0.08554545789957047, -0.02449800632894039, -0.01591237634420395, 0.07945942133665085, -0.004142080433666706, 0.06233455613255501, 0.06133263558149338, -0.030972527340054512, 0.019579606130719185, -0.18920844793319702, -0.07893180102109909, 0.005038782022893429, -0.0031933689024299383, 0.0491497777402401, 0.07328370958566666, -0.0667262002825737, -0.09221488237380981, 0.009593320079147816, 0.05174986645579338, 0.35610076785087585, -0.10780904442071915, -0.07151659578084946, -0.042884547263383865, -0.025017259642481804, -0.011214805766940117, -0.0712784081697464, 0.1639699637889862, 0.10475271195173264, -0.00595061993226409, 0.020548716187477112, 0.11637922376394272, -0.08310417085886002, 0.008417515084147453, -0.05460365116596222, -0.0760418102145195, 0.04343283176422119, 0.02551163360476494, -0.00167221634183079, -0.04773712530732155, 0.31763067841529846, -0.09588004648685455, 0.014271760359406471, -0.04525895044207573, 0.10142628848552704, -0.013568473048508167, -0.049505822360515594, 0.19125880300998688, 0.0690581351518631, -0.027273453772068024, -0.02429463528096676, 0.14261804521083832, 0.03825964778661728, 0.07587044686079025, 0.08744160085916519, 0.02027530036866665, -0.043559104204177856, 0.06550077348947525, 0.008885785937309265, -0.12580673396587372, 0.07385725528001785, 0.000971433415543288, 0.0643680989742279, 0.027282528579235077, -0.011522684246301651, -0.12463640421628952, 0.08613652735948563, -0.06008153036236763, 0.09451187402009964, 0.04401373118162155, -0.04770113527774811, -0.0981668010354042, -0.06640388071537018, -0.007755555212497711, -0.0846017450094223, 0.024180229753255844, -0.03126339241862297, -0.052123889327049255, 0.1584843397140503, 0.038394611328840256, 0.053216151893138885, 0.24191181361675262, -0.05967429280281067, 0.009463030844926834, 0.009551020339131355, 0.015317494980990887, -0.09182219952344894, -0.060445405542850494, -0.02403363585472107, 0.01496109925210476, -0.12349699437618256, -0.05633312091231346, 0.022609084844589233, 0.02007927931845188, 0.0800197646021843, -0.07298406213521957, -0.08484110981225967, -0.10433057695627213, 0.04129774868488312, -0.029381006956100464, -0.018356045708060265, 0.0775408074259758, 0.032031476497650146, 0.0057264515198767185, 0.006402465980499983, -0.005185678135603666, 0.07725846022367477, -0.09406187385320663, 0.09569565951824188, -0.04652835801243782, -0.03062240220606327, -0.060759905725717545, -0.07749731093645096, 0.010213516652584076, 0.35091066360473633, 0.2006552517414093, -0.05598721280694008, 0.027606692165136337, 0.06510226428508759, 0.021786430850625038, 0.028562039136886597, 0.12395979464054108, -0.04525807127356529, 0.07000932097434998, -0.015701618045568466, -0.02097930572926998, -0.008631848730146885, -0.11027368158102036, -0.08253615349531174, 0.022485660389065742, 0.053610026836395264, 0.01734129525721073, -0.06781865656375885, 0.16110050678253174, -0.22766096889972687, 0.0780225321650505, 0.1530517190694809, -0.09715926647186279, -0.06894906610250473, -0.10425470769405365, -0.10361126065254211, 0.09173394739627838, 0.029764655977487564, -0.07387305796146393, 0.05963210389018059, 0.0049270931631326675, 0.04564095288515091, -0.2415907233953476, -0.14056368172168732, -0.007071319501847029, -0.15418560802936554, 0.22260840237140656, -0.042267508804798126, -0.022383619099855423, 0.039036110043525696, -0.023752089589834213, -0.14029894769191742, -0.0007237425306811929, -0.015447912737727165, 0.08976513147354126, -0.09967036545276642, 0.038552120327949524, -0.09554473310709, -0.03346416354179382, -0.017134293913841248, 0.007610469125211239, 0.027194634079933167, 0.1556265950202942, 0.05915703624486923, -0.030865546315908432, -0.02086382545530796, -0.08916891366243362, 0.12550705671310425, 0.12374212592840195, -0.059347350150346756, -0.025914831086993217, 0.014870533719658852, 0.09025503695011139, 0.01221372652798891, -0.19190819561481476, -0.1133725717663765, -0.06563086062669754, -0.0435340479016304, -0.0021199178881943226, -0.03772011026740074, -0.029831837862730026, 0.014269874431192875, -0.004495176952332258, 0.009093096479773521, -0.009526616893708706, 0.017235806211829185, 0.1899855136871338, 0.006507963873445988, -0.0032288057263940573, -0.11404676735401154, 0.06669576466083527, -0.01696980930864811, -0.11552683264017105, -0.13105948269367218 ]
f5599486ea67d96ec6238d206149b5ac5b6bee7f
# Dataset of abigail/アビゲイル/阿比盖尔 (Neural Cloud) This is the dataset of abigail/アビゲイル/阿比盖尔 (Neural Cloud), containing 30 images and their tags. The core tags of this character are `animal_ears, blonde_hair, long_hair, blue_eyes, breasts, goggles_on_head, large_breasts, tail, bangs, fang`, which are pruned in this dataset. Images are crawled from many sites (e.g. danbooru, pixiv, zerochan ...), the auto-crawling system is powered by [DeepGHS Team](https://github.com/deepghs)([huggingface organization](https://huggingface.co/deepghs)). ## List of Packages | Name | Images | Size | Download | Type | Description | |:-----------------|---------:|:----------|:---------------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------| | raw | 30 | 29.39 MiB | [Download](https://huggingface.co/datasets/CyberHarem/abigail_neuralcloud/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). | | 800 | 30 | 19.44 MiB | [Download](https://huggingface.co/datasets/CyberHarem/abigail_neuralcloud/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. | | stage3-p480-800 | 65 | 36.79 MiB | [Download](https://huggingface.co/datasets/CyberHarem/abigail_neuralcloud/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | | 1200 | 30 | 26.80 MiB | [Download](https://huggingface.co/datasets/CyberHarem/abigail_neuralcloud/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. | | stage3-p480-1200 | 65 | 48.75 MiB | [Download](https://huggingface.co/datasets/CyberHarem/abigail_neuralcloud/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | ### Load Raw Dataset with Waifuc We provide raw dataset (including tagged images) for [waifuc](https://deepghs.github.io/waifuc/main/tutorials/installation/index.html) loading. If you need this, just run the following code ```python import os import zipfile from huggingface_hub import hf_hub_download from waifuc.source import LocalSource # download raw archive file zip_file = hf_hub_download( repo_id='CyberHarem/abigail_neuralcloud', repo_type='dataset', filename='dataset-raw.zip', ) # extract files to your directory dataset_dir = 'dataset_dir' os.makedirs(dataset_dir, exist_ok=True) with zipfile.ZipFile(zip_file, 'r') as zf: zf.extractall(dataset_dir) # load the dataset with waifuc source = LocalSource(dataset_dir) for item in source: print(item.image, item.meta['filename'], item.meta['tags']) ``` ## List of Clusters List of tag clustering result, maybe some outfits can be mined here. ### Raw Text Version | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags | |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:------------------------------------------------------------------------------------------------------------| | 0 | 30 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | ![](samples/0/clu0-sample3.png) | ![](samples/0/clu0-sample4.png) | 1girl, solo, smile, open_mouth, shirt, cleavage, holding, goggles, shorts, blush, gloves, looking_at_viewer | ### Table Version | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | smile | open_mouth | shirt | cleavage | holding | goggles | shorts | blush | gloves | looking_at_viewer | |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:--------|:-------------|:--------|:-----------|:----------|:----------|:---------|:--------|:---------|:--------------------| | 0 | 30 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | ![](samples/0/clu0-sample3.png) | ![](samples/0/clu0-sample4.png) | X | X | X | X | X | X | X | X | X | X | X | X |
CyberHarem/abigail_neuralcloud
[ "region:us" ]
2024-02-17T17:43:00+00:00
{"license": "mit", "size_categories": ["n<1K"], "task_categories": ["text-to-image"], "tags": ["art", "not-for-all-audiences"]}
2024-02-17T17:43:00+00:00
[]
[]
TAGS #region-us
Dataset of abigail/アビゲイル/阿比盖尔 (Neural Cloud) ============================================ This is the dataset of abigail/アビゲイル/阿比盖尔 (Neural Cloud), containing 30 images and their tags. The core tags of this character are 'animal\_ears, blonde\_hair, long\_hair, blue\_eyes, breasts, goggles\_on\_head, large\_breasts, tail, bangs, fang', which are pruned in this dataset. Images are crawled from many sites (e.g. danbooru, pixiv, zerochan ...), the auto-crawling system is powered by DeepGHS Team(huggingface organization). List of Packages ---------------- ### Load Raw Dataset with Waifuc We provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code List of Clusters ---------------- List of tag clustering result, maybe some outfits can be mined here. ### Raw Text Version ### Table Version
[ "### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.", "### Raw Text Version", "### Table Version" ]
[ "TAGS\n#region-us \n", "### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.", "### Raw Text Version", "### Table Version" ]
[ 6, 61, 5, 4 ]
[ "passage: TAGS\n#region-us \n### Load Raw Dataset with Waifuc\n\n\nWe provide raw dataset (including tagged images) for waifuc loading. If you need this, just run the following code\n\n\nList of Clusters\n----------------\n\n\nList of tag clustering result, maybe some outfits can be mined here.### Raw Text Version### Table Version" ]
[ -0.0782691016793251, 0.1713314652442932, 0.0006788515602238476, 0.06202508881688118, 0.07492441684007645, 0.11804241687059402, 0.068992979824543, 0.12710197269916534, 0.2940976023674011, -0.0028676651418209076, 0.08066996186971664, 0.05289466679096222, 0.10027284175157547, 0.20345626771450043, 0.043829839676618576, -0.11962341517210007, -0.017669137567281723, 0.049030810594558716, 0.04801924154162407, 0.031303416937589645, 0.006360742729157209, -0.08579397201538086, 0.11210249364376068, -0.05554251745343208, -0.15921150147914886, -0.017286306247115135, -0.08860521763563156, 0.04456626623868942, 0.032750826328992844, -0.02926957979798317, 0.15081341564655304, -0.039704639464616776, 0.012167775072157383, -0.18717060983181, 0.04819584637880325, -0.03066466748714447, -0.02842988446354866, 0.03351893648505211, 0.09131427854299545, -0.016615254804491997, -0.207439586520195, -0.02611558325588703, -0.09873192012310028, 0.11009044945240021, -0.11169176548719406, -0.17718879878520966, -0.07470736652612686, -0.023627670481801033, 0.029708247631788254, -0.005968320183455944, -0.021175479516386986, 0.1180475652217865, -0.05274030566215515, 0.0452406145632267, 0.07592888176441193, -0.17469990253448486, -0.020684560760855675, 0.2258053869009018, -0.000533627753611654, -0.043160803616046906, -0.1149664893746376, 0.04240228980779648, 0.10431867092847824, -0.0007310837390832603, -0.09042003750801086, -0.048595864325761795, -0.35918742418289185, 0.0008366484544239938, -0.056803129613399506, 0.03418123722076416, 0.32887494564056396, 0.04211227223277092, -0.026805639266967773, 0.012795323505997658, -0.008672916330397129, -0.13874061405658722, -0.042465828359127045, 0.09160690009593964, 0.01980273239314556, 0.11017297208309174, -0.025758424773812294, -0.06760629266500473, -0.07401745766401291, -0.1127716451883316, -0.04715115576982498, 0.013540188781917095, 0.0024651272688061, 0.06886780261993408, -0.15977147221565247, 0.046835463494062424, -0.11619153618812561, -0.06729737669229507, 0.003738841973245144, -0.04631146788597107, -0.13177387416362762, -0.017447588965296745, -0.03312491998076439, -0.036114323884248734, 0.15894152224063873, 0.07307834923267365, -0.024197963997721672, 0.05916448310017586, -0.09024956822395325, 0.07163874059915543, 0.11321468651294708, -0.0021626169327646494, -0.020738443359732628, -0.12938548624515533, -0.026897631585597992, -0.1706358790397644, -0.004352218471467495, -0.01788405515253544, -0.06179780885577202, -0.04214901849627495, -0.1817583292722702, 0.08571667969226837, -0.015134954825043678, 0.016899751499295235, -0.04333145171403885, -0.0703747496008873, 0.08808855712413788, -0.05024510622024536, -0.03472509607672691, 0.026762375608086586, 0.022183984518051147, 0.05256914347410202, -0.028884783387184143, 0.058131396770477295, 0.04341939464211464, -0.10918553918600082, -0.11815111339092255, 0.001314738648943603, 0.02502906695008278, 0.02053566835820675, 0.02082216367125511, -0.11733970791101456, -0.01558759156614542, -0.06618884205818176, -0.2205229103565216, 0.021188251674175262, 0.02806120738387108, -0.009388504549860954, 0.03617588430643082, 0.038544125854969025, 0.08279464393854141, -0.035423241555690765, 0.028165455907583237, -0.011475427076220512, -0.07674682885408401, 0.0012349921744316816, -0.04792783036828041, 0.09162280708551407, -0.10514667630195618, 0.00838211365044117, -0.10994287580251694, 0.04355943948030472, -0.05497511103749275, 0.04609588533639908, -0.0882914736866951, 0.21645191311836243, -0.08973435312509537, 0.09264103323221207, -0.12840420007705688, -0.015947889536619186, -0.014733427204191685, 0.1895894557237625, -0.2744033634662628, 0.020839404314756393, 0.18254826962947845, -0.13297022879123688, -0.15198442339897156, 0.08302802592515945, 0.025282513350248337, 0.023933926597237587, 0.005928543396294117, 0.3154495358467102, 0.028276553377509117, -0.054924365133047104, -0.033349085599184036, 0.0949203372001648, -0.07716827094554901, -0.13684234023094177, 0.08672541379928589, -0.08080707490444183, -0.12872439622879028, 0.002910110168159008, 0.1379132866859436, 0.06577962636947632, -0.042217519134283066, -0.14715328812599182, -0.04812714084982872, -0.12872381508350372, 0.025106271728873253, 0.06033487245440483, 0.018664123490452766, -0.016390299424529076, 0.11720491945743561, -0.16982120275497437, 0.1453498899936676, -0.02270236238837242, 0.014229143038392067, -0.010744906030595303, 0.08801485598087311, -0.14738501608371735, 0.003960087429732084, -0.057637594640254974, -0.18567657470703125, 0.06961484998464584, -0.017933610826730728, -0.02184310369193554, -0.14987485110759735, 0.06960662454366684, 0.01775727979838848, 0.01610487699508667, 0.07513075321912766, 0.11854545027017593, -0.027001628652215004, -0.03526812791824341, -0.040609054267406464, -0.06139003485441208, -0.09143785387277603, 0.042078305035829544, -0.17144794762134552, -0.022342268377542496, 0.09607600420713425, 0.05091731995344162, 0.047043826431035995, -0.09445680677890778, 0.16734623908996582, -0.012810449115931988, -0.021703723818063736, -0.04175679758191109, 0.09502705186605453, -0.02337375283241272, -0.027171988040208817, 0.04087866097688675, 0.1348739117383957, -0.050268057733774185, 0.13690409064292908, -0.057755641639232635, -0.07090648263692856, -0.13546490669250488, -0.032362841069698334, -0.04580121487379074, -0.055406130850315094, 0.02530217543244362, -0.0638435110449791, -0.008929979987442493, 0.027636894956231117, 0.011867348104715347, 0.03976242616772652, 0.0010647084563970566, 0.039884187281131744, -0.06283259391784668, -0.04475078359246254, 0.08979903906583786, -0.14153578877449036, 0.13017670810222626, 0.1548607498407364, 0.09398756176233292, 0.19869378209114075, -0.05540585517883301, -0.030251655727624893, -0.006221574265509844, 0.027302686125040054, -0.0234314426779747, 0.13570481538772583, -0.2304256707429886, 0.018981654196977615, 0.0632794052362442, -0.05070279911160469, 0.05982239916920662, -0.06666424870491028, -0.06428668648004532, -0.020558886229991913, -0.07562469691038132, -0.004873244557529688, 0.055410128086805344, -0.07319782674312592, -0.027912894263863564, 0.005682504735887051, 0.048107486218214035, 0.05091983079910278, -0.04490493983030319, -0.024051586166024208, 0.10318094491958618, -0.05242162570357323, -0.001956409076228738, -0.09699133038520813, -0.20061475038528442, -0.07683201879262924, 0.03749701753258705, 0.012686741538345814, -0.1782303899526596, -0.02182368002831936, 0.015571420080959797, -0.0005885511636734009, 0.02102380432188511, 0.019699841737747192, -0.017882470041513443, -0.0379965715110302, -0.06261364370584488, -0.10445302724838257, 0.025324715301394463, -0.03162125125527382, -0.033499982208013535, 0.012177559547126293, -0.09860336035490036, 0.16050630807876587, 0.1523320972919464, 0.08912317454814911, 0.08699183911085129, 0.008748688735067844, 0.16279011964797974, -0.09695642441511154, 0.004469653125852346, 0.021767210215330124, -0.050920434296131134, -0.005965229589492083, 0.08209779113531113, 0.08082360774278641, -0.15494157373905182, 0.018908163532614708, 0.0543694868683815, -0.12218262255191803, -0.19919289648532867, -0.13883544504642487, -0.09922003000974655, 0.06303247064352036, 0.05103341490030289, 0.034624118357896805, -0.010672153905034065, 0.17105621099472046, 0.05982644855976105, 0.0486404225230217, -0.1428423374891281, -0.02460026927292347, -0.16966454684734344, 0.002757852664217353, -0.0393519327044487, -0.13412247598171234, -0.01257904339581728, 0.10171857476234436, 0.15026144683361053, 0.19925230741500854, 0.1369573324918747, 0.1462295800447464, 0.07378077507019043, 0.12389872968196869, 0.08001554012298584, 0.11791837960481644, 0.007123004179447889, -0.014309537597000599, 0.002516792854294181, -0.07063206285238266, 0.08147571980953217, 0.0022119865752756596, 0.0605446994304657, -0.08389987051486969, 0.04079882428050041, -0.24412894248962402, 0.10172483325004578, 0.19875691831111908, 0.1477867215871811, -0.16685660183429718, 0.033716827630996704, 0.06092038005590439, 0.09544587880373001, -0.021225405856966972, 0.06805597990751266, 0.11926437169313431, -0.056570377200841904, 0.08238404989242554, -0.02590072527527809, 0.10148770362138748, -0.1260180026292801, -0.014588882215321064, 0.03226074203848839, 0.012797361239790916, -0.03250692039728165, 0.04173775762319565, 0.13141852617263794, 0.23573435842990875, 0.03997403383255005, -0.022563813254237175, -0.03158510476350784, -0.0947912335395813, 0.11316228657960892, 0.09511429071426392, 0.17308980226516724, 0.02715504728257656, -0.026836352422833443, -0.13129755854606628, -0.10040093958377838, 0.0227973535656929, 0.05861163139343262, -0.057935912162065506, -0.005450135562568903, 0.04250800982117653, 0.003319334937259555, -0.039727240800857544, 0.21224133670330048, -0.15367969870567322, -0.008013186044991016, -0.05313076823949814, 0.19082501530647278, 0.07349207997322083, 0.05833743140101433, 0.010834872722625732, -0.05234970152378082, 0.12391029298305511, 0.009903869591653347, -0.029065636917948723, -0.0925149992108345, -0.12136323750019073, 0.12722928822040558, -0.0166308730840683, 0.0067931292578577995, -0.03992994502186775, 0.040707606822252274, -0.04534587636590004, -0.1114664301276207, 0.028186608105897903, -0.03539889305830002, 0.04395008832216263, -0.06505563855171204, 0.028432032093405724, -0.0015447791665792465, -0.02816837653517723, 0.005071008112281561, 0.008692817762494087, 0.03428511321544647, -0.12590950727462769, 0.09903928637504578, -0.01839926838874817, 0.00026679711299948394, 0.19848255813121796, -0.059296075254678726, 0.048263221979141235, -0.05115743726491928, -0.0531097874045372, 0.2962591052055359, 0.09854505956172943, -0.08514504134654999, 0.01579204946756363, 0.15498726069927216, -0.05359715595841408, -0.2745394706726074, -0.010338416323065758, -0.11054588109254837, -0.04931481555104256, -0.00428891321644187, -0.21132445335388184, 0.13620024919509888, 0.08737215399742126, -0.03788558766245842, 0.20697170495986938, -0.1376582831144333, -0.058269746601581573, 0.13096188008785248, 0.04740595072507858, 0.18163368105888367, -0.1691356599330902, -0.09822220355272293, -0.05633697286248207, -0.18459823727607727, 0.19619829952716827, -0.2551858127117157, 0.14095211029052734, -0.016858883202075958, -0.02015899121761322, 0.013343329541385174, -0.032390840351581573, 0.17870700359344482, 0.17118580639362335, 0.09028629213571548, -0.03614218905568123, -0.027773352339863777, 0.05067148059606552, -0.02091216668486595, 0.09926161170005798, 0.0604645274579525, -0.044952165335416794, -0.2030806690454483, 0.007950189523398876, 0.002130689797922969, 0.05424343794584274, 0.06660958379507065, -0.06726537644863129, -0.07011843472719193, 0.03919307142496109, -0.04593970999121666, 0.04729544371366501, 0.25972288846969604, 0.048021189868450165, 0.12272493541240692, 0.13662809133529663, -0.022702278569340706, 0.04565810039639473, -0.1779639720916748, -0.043278828263282776, -0.06364697217941284, 0.08373844623565674, -0.1729801893234253, 0.012996361590921879, 0.06508798152208328, 0.06398752331733704, 0.0544704906642437, 0.08569569140672684, -0.04117128625512123, 0.10043715685606003, 0.10433736443519592, -0.08219175040721893, -0.1104559525847435, -0.010279890149831772, -0.30478352308273315, -0.03859839215874672, 0.013586127199232578, 0.039399269968271255, 0.05150894075632095, 0.04493645578622818, -0.03069326840341091, 0.024256771430373192, -0.12393663078546524, 0.06998983025550842, 0.11429065465927124, 0.00007048869883874431, -0.14093168079853058, 0.2070103883743286, 0.07930930703878403, 0.028438521549105644, -0.03365367650985718, 0.10828312486410141, -0.047540463507175446, -0.1389262080192566, -0.05967939272522926, 0.16269217431545258, -0.01511400006711483, -0.07056109607219696, 0.07473193109035492, 0.013738715089857578, -0.03233823552727699, 0.05695698782801628, 0.08469821512699127, 0.047506820410490036, 0.05321677401661873, -0.12893874943256378, -0.04196557775139809, -0.022851405665278435, 0.009219184517860413, 0.030036386102437973, -0.1246168464422226, -0.060450632125139236, -0.008253621868789196, 0.1644619256258011, -0.06766534596681595, -0.11098070442676544, -0.16560660302639008, 0.014222568832337856, -0.11772167682647705, 0.05131305009126663, -0.07679920643568039, 0.007714639883488417, -0.002477305242791772, -0.013271083123981953, -0.07955095916986465, -0.021626558154821396, -0.08528143912553787, 0.03715040162205696, 0.0451025515794754, 0.08554545789957047, -0.02449800632894039, -0.01591237634420395, 0.07945942133665085, -0.004142080433666706, 0.06233455613255501, 0.06133263558149338, -0.030972527340054512, 0.019579606130719185, -0.18920844793319702, -0.07893180102109909, 0.005038782022893429, -0.0031933689024299383, 0.0491497777402401, 0.07328370958566666, -0.0667262002825737, -0.09221488237380981, 0.009593320079147816, 0.05174986645579338, 0.35610076785087585, -0.10780904442071915, -0.07151659578084946, -0.042884547263383865, -0.025017259642481804, -0.011214805766940117, -0.0712784081697464, 0.1639699637889862, 0.10475271195173264, -0.00595061993226409, 0.020548716187477112, 0.11637922376394272, -0.08310417085886002, 0.008417515084147453, -0.05460365116596222, -0.0760418102145195, 0.04343283176422119, 0.02551163360476494, -0.00167221634183079, -0.04773712530732155, 0.31763067841529846, -0.09588004648685455, 0.014271760359406471, -0.04525895044207573, 0.10142628848552704, -0.013568473048508167, -0.049505822360515594, 0.19125880300998688, 0.0690581351518631, -0.027273453772068024, -0.02429463528096676, 0.14261804521083832, 0.03825964778661728, 0.07587044686079025, 0.08744160085916519, 0.02027530036866665, -0.043559104204177856, 0.06550077348947525, 0.008885785937309265, -0.12580673396587372, 0.07385725528001785, 0.000971433415543288, 0.0643680989742279, 0.027282528579235077, -0.011522684246301651, -0.12463640421628952, 0.08613652735948563, -0.06008153036236763, 0.09451187402009964, 0.04401373118162155, -0.04770113527774811, -0.0981668010354042, -0.06640388071537018, -0.007755555212497711, -0.0846017450094223, 0.024180229753255844, -0.03126339241862297, -0.052123889327049255, 0.1584843397140503, 0.038394611328840256, 0.053216151893138885, 0.24191181361675262, -0.05967429280281067, 0.009463030844926834, 0.009551020339131355, 0.015317494980990887, -0.09182219952344894, -0.060445405542850494, -0.02403363585472107, 0.01496109925210476, -0.12349699437618256, -0.05633312091231346, 0.022609084844589233, 0.02007927931845188, 0.0800197646021843, -0.07298406213521957, -0.08484110981225967, -0.10433057695627213, 0.04129774868488312, -0.029381006956100464, -0.018356045708060265, 0.0775408074259758, 0.032031476497650146, 0.0057264515198767185, 0.006402465980499983, -0.005185678135603666, 0.07725846022367477, -0.09406187385320663, 0.09569565951824188, -0.04652835801243782, -0.03062240220606327, -0.060759905725717545, -0.07749731093645096, 0.010213516652584076, 0.35091066360473633, 0.2006552517414093, -0.05598721280694008, 0.027606692165136337, 0.06510226428508759, 0.021786430850625038, 0.028562039136886597, 0.12395979464054108, -0.04525807127356529, 0.07000932097434998, -0.015701618045568466, -0.02097930572926998, -0.008631848730146885, -0.11027368158102036, -0.08253615349531174, 0.022485660389065742, 0.053610026836395264, 0.01734129525721073, -0.06781865656375885, 0.16110050678253174, -0.22766096889972687, 0.0780225321650505, 0.1530517190694809, -0.09715926647186279, -0.06894906610250473, -0.10425470769405365, -0.10361126065254211, 0.09173394739627838, 0.029764655977487564, -0.07387305796146393, 0.05963210389018059, 0.0049270931631326675, 0.04564095288515091, -0.2415907233953476, -0.14056368172168732, -0.007071319501847029, -0.15418560802936554, 0.22260840237140656, -0.042267508804798126, -0.022383619099855423, 0.039036110043525696, -0.023752089589834213, -0.14029894769191742, -0.0007237425306811929, -0.015447912737727165, 0.08976513147354126, -0.09967036545276642, 0.038552120327949524, -0.09554473310709, -0.03346416354179382, -0.017134293913841248, 0.007610469125211239, 0.027194634079933167, 0.1556265950202942, 0.05915703624486923, -0.030865546315908432, -0.02086382545530796, -0.08916891366243362, 0.12550705671310425, 0.12374212592840195, -0.059347350150346756, -0.025914831086993217, 0.014870533719658852, 0.09025503695011139, 0.01221372652798891, -0.19190819561481476, -0.1133725717663765, -0.06563086062669754, -0.0435340479016304, -0.0021199178881943226, -0.03772011026740074, -0.029831837862730026, 0.014269874431192875, -0.004495176952332258, 0.009093096479773521, -0.009526616893708706, 0.017235806211829185, 0.1899855136871338, 0.006507963873445988, -0.0032288057263940573, -0.11404676735401154, 0.06669576466083527, -0.01696980930864811, -0.11552683264017105, -0.13105948269367218 ]